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';
|
2016-12-02 09:05:50 -05:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class Permalink extends React.PureComponent {
|
2016-12-02 09:05:50 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static contextTypes = {
|
2017-05-20 11:31:47 -04:00
|
|
|
router: PropTypes.object,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
className: PropTypes.string,
|
|
|
|
href: PropTypes.string.isRequired,
|
|
|
|
to: PropTypes.string.isRequired,
|
2017-05-20 11:31:47 -04:00
|
|
|
children: PropTypes.node,
|
2018-10-02 10:01:28 -04:00
|
|
|
onInterceptClick: PropTypes.func,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
handleClick = (e) => {
|
2018-10-02 10:01:28 -04:00
|
|
|
if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
|
|
|
|
if (this.props.onInterceptClick && this.props.onInterceptClick()) {
|
|
|
|
e.preventDefault();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.context.router) {
|
|
|
|
e.preventDefault();
|
2019-04-15 16:23:05 -04:00
|
|
|
let state = {...this.context.router.history.location.state};
|
|
|
|
state.mastodonBackSteps = (state.mastodonBackSteps || 0) + 1;
|
|
|
|
this.context.router.history.push(this.props.to, state);
|
2018-10-02 10:01:28 -04:00
|
|
|
}
|
2016-12-02 09:05:50 -05:00
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-12-02 09:05:50 -05:00
|
|
|
|
|
|
|
render () {
|
2018-01-05 23:04:13 -05:00
|
|
|
const {
|
|
|
|
children,
|
|
|
|
className,
|
|
|
|
href,
|
|
|
|
to,
|
2018-10-02 10:01:28 -04:00
|
|
|
onInterceptClick,
|
2018-01-05 23:04:13 -05:00
|
|
|
...other
|
|
|
|
} = this.props;
|
2016-12-02 09:05:50 -05:00
|
|
|
|
2017-05-02 20:04:16 -04:00
|
|
|
return (
|
2017-07-11 09:27:59 -04:00
|
|
|
<a target='_blank' href={href} onClick={this.handleClick} {...other} className={`permalink${className ? ' ' + className : ''}`}>
|
2017-05-02 20:04:16 -04:00
|
|
|
{children}
|
|
|
|
</a>
|
|
|
|
);
|
2016-12-02 09:05:50 -05:00
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|