2017-05-02 17:04:16 -07:00
|
|
|
import React from 'react';
|
2017-04-21 11:05:35 -07:00
|
|
|
import PropTypes from 'prop-types';
|
2016-12-02 06:05:50 -08:00
|
|
|
|
2017-05-02 17:04:16 -07:00
|
|
|
class Permalink extends React.PureComponent {
|
2016-12-02 06:05:50 -08:00
|
|
|
|
2017-05-12 05:44:10 -07:00
|
|
|
static contextTypes = {
|
2017-05-20 08:31:47 -07:00
|
|
|
router: PropTypes.object,
|
2017-05-12 05:44:10 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
className: PropTypes.string,
|
|
|
|
href: PropTypes.string.isRequired,
|
|
|
|
to: PropTypes.string.isRequired,
|
2017-05-20 08:31:47 -07:00
|
|
|
children: PropTypes.node,
|
2017-05-12 05:44:10 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
handleClick = (e) => {
|
2017-05-15 13:36:38 -07:00
|
|
|
if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
|
2016-12-02 06:05:50 -08:00
|
|
|
e.preventDefault();
|
2017-06-20 11:40:03 -07:00
|
|
|
this.context.router.history.push(this.props.to);
|
2016-12-02 06:05:50 -08:00
|
|
|
}
|
2017-04-21 11:05:35 -07:00
|
|
|
}
|
2016-12-02 06:05:50 -08:00
|
|
|
|
|
|
|
render () {
|
2017-04-22 19:26:55 -07:00
|
|
|
const { href, children, className, ...other } = this.props;
|
2016-12-02 06:05:50 -08:00
|
|
|
|
2017-05-02 17:04:16 -07:00
|
|
|
return (
|
|
|
|
<a href={href} onClick={this.handleClick} {...other} className={'permalink ' + className}>
|
|
|
|
{children}
|
|
|
|
</a>
|
|
|
|
);
|
2016-12-02 06:05:50 -08:00
|
|
|
}
|
|
|
|
|
2017-04-21 11:05:35 -07:00
|
|
|
}
|
|
|
|
|
2016-12-02 06:05:50 -08:00
|
|
|
export default Permalink;
|