import { h } from 'preact'; import PropTypes from 'prop-types'; /* global timeAgo */ export const PublishDate = ({ readablePublishDate, publishedTimestamp, publishedAtInt, }) => { const timeAgoIndicator = timeAgo({ oldTimeInSeconds: publishedAtInt, formatter: (x) => x, maxDisplayedAge: 60 * 60 * 24 * 7, }); const timeAgoText = () => { if (timeAgoIndicator) { return ` (${timeAgoIndicator})`; } return ''; }; return ( ); }; PublishDate.defaultProps = { publishedTimestamp: null, publishedAtInt: null, }; PublishDate.propTypes = { readablePublishDate: PropTypes.string.isRequired, publishedTimestamp: PropTypes.string, publishedAtInt: PropTypes.number, }; PublishDate.displayName = 'PublishDate';