Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Card, ExternalLink } from '@automattic/components';
import { localize } from 'i18n-calypso';
import { get } from 'lodash';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import SectionHeader from 'calypso/components/section-header';
import { getSiteComment } from 'calypso/state/comments/selectors';
const CommentPermalink = ( { isLoading, permaLink, translate } ) =>
! isLoading && (
<Card className="comment__comment-permalink">
<SectionHeader label={ translate( 'Comment Permalink' ) } />
<ExternalLink icon href={ permaLink }>
{ permaLink }
</ExternalLink>
</Card>
);
CommentPermalink.propTypes = {
siteId: PropTypes.number,
commentId: PropTypes.number.isRequired,
isLoading: PropTypes.bool.isRequired,
permaLink: PropTypes.string,
translate: PropTypes.func.isRequired,
};
const mapStateToProps = ( state, { siteId, commentId } ) => {
const comment = getSiteComment( state, siteId, commentId );
return {
isLoading: typeof comment === 'undefined',
permaLink: get( comment, 'URL', '' ),
};
};
export default connect( mapStateToProps )( localize( CommentPermalink ) );