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

52 lines
1.4 KiB
JavaScript
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
import { Link } from 'react-router-dom';
import Icon from 'flavours/glitch/components/icon';
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}>
<Icon id={icon} fixedWidth className='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'>
<Icon id={icon} fixedWidth className='column-link__icon' />
{text}
2018-01-23 02:05:13 +01:00
{badgeElement}
</Link>
);
2017-06-29 07:00:54 +02:00
} else {
const handleOnClick = (e) => {
e.preventDefault();
e.stopPropagation();
return onClick(e);
}
2017-06-29 07:00:54 +02:00
return (
<a href='#' onClick={onClick && handleOnClick} className='column-link' tabIndex='0'>
<Icon id={icon} fixedWidth className='column-link__icon' />
2017-06-29 07:00:54 +02:00
{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;