2017-05-03 10:04:16 +10:00
|
|
|
import React from 'react';
|
2017-04-22 04:05:35 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2017-10-08 11:55:58 +11:00
|
|
|
import { Link } from 'react-router-dom';
|
2016-12-13 00:27:52 +11:00
|
|
|
|
2018-01-21 23:20:20 +11:00
|
|
|
const ColumnLink = ({ icon, text, to, href, method, badge }) => {
|
|
|
|
const badgeElement = typeof badge !== 'undefined' ? <span className='column-link__badge'>{badge}</span> : null;
|
|
|
|
|
2016-12-13 00:27:52 +11:00
|
|
|
if (href) {
|
|
|
|
return (
|
2017-07-26 21:46:53 +10:00
|
|
|
<a href={href} className='column-link' data-method={method}>
|
2017-04-23 12:26:55 +10:00
|
|
|
<i className={`fa fa-fw fa-${icon} column-link__icon`} />
|
2016-12-13 00:27:52 +11:00
|
|
|
{text}
|
2018-01-21 23:20:20 +11:00
|
|
|
{badgeElement}
|
2016-12-13 00:27:52 +11:00
|
|
|
</a>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return (
|
2017-07-26 21:46:53 +10:00
|
|
|
<Link to={to} className='column-link'>
|
2017-04-23 12:26:55 +10:00
|
|
|
<i className={`fa fa-fw fa-${icon} column-link__icon`} />
|
2016-12-13 00:27:52 +11:00
|
|
|
{text}
|
2018-01-21 23:20:20 +11:00
|
|
|
{badgeElement}
|
2016-12-13 00:27:52 +11:00
|
|
|
</Link>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ColumnLink.propTypes = {
|
2017-04-22 04:05:35 +10:00
|
|
|
icon: PropTypes.string.isRequired,
|
|
|
|
text: PropTypes.string.isRequired,
|
|
|
|
to: PropTypes.string,
|
|
|
|
href: PropTypes.string,
|
|
|
|
method: PropTypes.string,
|
2018-01-21 23:20:20 +11:00
|
|
|
badge: PropTypes.node,
|
2016-12-13 00:27:52 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
export default ColumnLink;
|