You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.3 KiB
42 lines
1.3 KiB
import PropTypes from 'prop-types'; |
|
|
|
import classNames from 'classnames'; |
|
import { NavLink } from 'react-router-dom'; |
|
|
|
import { Icon } from 'mastodon/components/icon'; |
|
|
|
const ColumnLink = ({ icon, text, to, href, method, badge, transparent, ...other }) => { |
|
const className = classNames('column-link', { 'column-link--transparent': transparent }); |
|
const badgeElement = typeof badge !== 'undefined' ? <span className='column-link__badge'>{badge}</span> : null; |
|
const iconElement = typeof icon === 'string' ? <Icon id={icon} fixedWidth className='column-link__icon' /> : icon; |
|
|
|
if (href) { |
|
return ( |
|
<a href={href} className={className} data-method={method} title={text} {...other}> |
|
{iconElement} |
|
<span>{text}</span> |
|
{badgeElement} |
|
</a> |
|
); |
|
} else { |
|
return ( |
|
<NavLink to={to} className={className} title={text} {...other}> |
|
{iconElement} |
|
<span>{text}</span> |
|
{badgeElement} |
|
</NavLink> |
|
); |
|
} |
|
}; |
|
|
|
ColumnLink.propTypes = { |
|
icon: PropTypes.oneOfType([PropTypes.string, PropTypes.node]).isRequired, |
|
text: PropTypes.string.isRequired, |
|
to: PropTypes.string, |
|
href: PropTypes.string, |
|
method: PropTypes.string, |
|
badge: PropTypes.node, |
|
transparent: PropTypes.bool, |
|
}; |
|
|
|
export default ColumnLink;
|
|
|