mastodon/app/javascript/flavours/glitch/features/ui/components/column_link.js

46 lines
1.2 KiB
JavaScript
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
import { Link } from 'react-router-dom';
2018-01-23 02:05:13 +01:00
const ColumnLink = ({ icon, text, to, onClick, href, method, badge }) => {
const badgeElement = typeof badge !== 'undefined' ? <span className='column-link__badge'>{badge}</span> : null;
if (href) {
return (
<a href={href} className='column-link' data-method={method}>
<i className={`fa fa-fw fa-${icon} column-link__icon`} />
{text}
2018-01-23 02:05:13 +01:00
{badgeElement}
</a>
);
2017-06-29 07:00:54 +02:00
} else if (to) {
return (
<Link to={to} className='column-link'>
<i className={`fa fa-fw fa-${icon} column-link__icon`} />
{text}
2018-01-23 02:05:13 +01:00
{badgeElement}
</Link>
);
2017-06-29 07:00:54 +02:00
} else {
return (
2017-08-01 22:46:52 +02:00
<a onClick={onClick} className='column-link' role='button' tabIndex='0' data-method={method}>
2017-06-29 07:00:54 +02:00
<i className={`fa fa-fw fa-${icon} column-link__icon`} />
{text}
2018-01-23 02:05:13 +01:00
{badgeElement}
2017-06-29 07:00:54 +02:00
</a>
);
}
};
ColumnLink.propTypes = {
icon: PropTypes.string.isRequired,
text: PropTypes.string.isRequired,
to: PropTypes.string,
2017-06-29 07:00:54 +02:00
onClick: PropTypes.func,
href: PropTypes.string,
method: PropTypes.string,
2018-01-23 02:05:13 +01:00
badge: PropTypes.node,
};
export default ColumnLink;