2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-06-20 14:40:03 -04:00
|
|
|
import Link from 'react-router-dom/Link';
|
2016-12-12 08:27:52 -05:00
|
|
|
|
2017-04-21 12:17:55 -04:00
|
|
|
const ColumnLink = ({ icon, text, to, href, method, hideOnMobile }) => {
|
2016-12-12 08:27:52 -05:00
|
|
|
if (href) {
|
|
|
|
return (
|
2017-04-22 23:21:38 -04:00
|
|
|
<a href={href} className={`column-link ${hideOnMobile ? 'hidden-on-mobile' : ''}`} data-method={method}>
|
2017-04-22 22:26:55 -04:00
|
|
|
<i className={`fa fa-fw fa-${icon} column-link__icon`} />
|
2016-12-12 08:27:52 -05:00
|
|
|
{text}
|
|
|
|
</a>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return (
|
2017-04-22 22:26:55 -04:00
|
|
|
<Link to={to} className={`column-link ${hideOnMobile ? 'hidden-on-mobile' : ''}`}>
|
|
|
|
<i className={`fa fa-fw fa-${icon} column-link__icon`} />
|
2016-12-12 08:27:52 -05:00
|
|
|
{text}
|
|
|
|
</Link>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ColumnLink.propTypes = {
|
2017-04-21 14:05:35 -04:00
|
|
|
icon: PropTypes.string.isRequired,
|
|
|
|
text: PropTypes.string.isRequired,
|
|
|
|
to: PropTypes.string,
|
|
|
|
href: PropTypes.string,
|
|
|
|
method: PropTypes.string,
|
2017-05-20 11:31:47 -04:00
|
|
|
hideOnMobile: PropTypes.bool,
|
2016-12-12 08:27:52 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
export default ColumnLink;
|