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 && ( { permaLink } ); 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 ) );