mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 12:48:07 +01:00
d6eacb79c6
Port 1b70d7ed7c
to glitch-soc
Co-authored-by: Claire <claire.github-309c@sitedethib.com>
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
50 lines
1.1 KiB
JavaScript
50 lines
1.1 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import { PureComponent } from 'react';
|
|
|
|
import { withOptionalRouter, WithOptionalRouterPropTypes } from 'flavours/glitch/utils/react_router';
|
|
|
|
class Permalink extends PureComponent {
|
|
|
|
static propTypes = {
|
|
className: PropTypes.string,
|
|
href: PropTypes.string.isRequired,
|
|
to: PropTypes.string.isRequired,
|
|
children: PropTypes.node,
|
|
onInterceptClick: PropTypes.func,
|
|
...WithOptionalRouterPropTypes,
|
|
};
|
|
|
|
handleClick = (e) => {
|
|
if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
|
|
if (this.props.onInterceptClick && this.props.onInterceptClick()) {
|
|
e.preventDefault();
|
|
return;
|
|
}
|
|
|
|
if (this.props.history) {
|
|
e.preventDefault();
|
|
this.props.history.push(this.props.to);
|
|
}
|
|
}
|
|
};
|
|
|
|
render () {
|
|
const {
|
|
children,
|
|
className,
|
|
href,
|
|
to,
|
|
onInterceptClick,
|
|
...other
|
|
} = this.props;
|
|
|
|
return (
|
|
<a target='_blank' href={href} onClick={this.handleClick} {...other} className={`permalink${className ? ' ' + className : ''}`}>
|
|
{children}
|
|
</a>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default withOptionalRouter(Permalink);
|