import PropTypes from 'prop-types';
import classNames from 'classnames';
import { useRouteMatch, NavLink } from 'react-router-dom';
import { Icon }  from 'mastodon/components/icon';
const ColumnLink = ({ icon, activeIcon, iconComponent, activeIconComponent, text, to, href, method, badge, transparent, ...other }) => {
  const match = useRouteMatch(to);
  const className = classNames('column-link', { 'column-link--transparent': transparent });
  const badgeElement = typeof badge !== 'undefined' ? {badge} : null;
  const iconElement = (typeof icon === 'string' || iconComponent) ?  : icon;
  const activeIconElement = activeIcon ?? (activeIconComponent ?  : iconElement);
  const active = match?.isExact;
  if (href) {
    return (
      
        {active ? activeIconElement : iconElement}
        {text}
        {badgeElement}
      
    );
  } else {
    return (
      
        {active ? activeIconElement : iconElement}
        {text}
        {badgeElement}
      
    );
  }
};
ColumnLink.propTypes = {
  icon: PropTypes.oneOfType([PropTypes.string, PropTypes.node]).isRequired,
  iconComponent: PropTypes.func,
  activeIcon: PropTypes.node,
  activeIconComponent: PropTypes.func,
  text: PropTypes.string.isRequired,
  to: PropTypes.string,
  href: PropTypes.string,
  method: PropTypes.string,
  badge: PropTypes.node,
  transparent: PropTypes.bool,
};
export default ColumnLink;