Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import page from '@automattic/calypso-router';
import PropTypes from 'prop-types';
import { PureComponent } from 'react';
export default class CommentLink extends PureComponent {
static propTypes = {
commentId: PropTypes.number,
href: PropTypes.string,
};
handleClick = ( event ) => {
event.preventDefault();
window.scrollTo( 0, 0 );
const { commentId, href } = this.props;
const { path } = window.history.state;
const newPath = path.includes( '#' )
? path.replace( /[#].*/, `#comment-${ commentId }` )
: `${ path }#comment-${ commentId }`;
window.history.replaceState( { ...window.history.state, path: newPath }, null );
page( href );
};
render() {
const { href, commentId, ...props } = this.props;
return <a href={ href } { ...props } onClick={ this.handleClick } />;
}
}