import ButtonLink from '@components/atoms/buttons/button-link'; import Heading, { type HeadingLevel } from '@components/atoms/headings/heading'; import Arrow from '@components/atoms/icons/arrow'; import Link from '@components/atoms/links/link'; import ResponsiveImage, { type ResponsiveImageProps, } from '@components/molecules/images/responsive-image'; import Meta, { type MetaData } from '@components/molecules/layout/meta'; import { type Article, type Meta as MetaType } from '@ts/types/app'; import useReadingTime from '@utils/hooks/use-reading-time'; import { FC, ReactNode } from 'react'; import { useIntl } from 'react-intl'; import styles from './summary.module.scss'; export type Cover = Pick< ResponsiveImageProps, 'alt' | 'src' | 'width' | 'height' >; export type SummaryMeta = Pick< MetaType<'article'>, | 'author' | 'commentsCount' | 'cover' | 'dates' | 'thematics' | 'topics' | 'wordsCount' >; export type SummaryProps = Pick & { /** * The post metadata. */ meta: SummaryMeta; /** * The heading level (hn). */ titleLevel?: HeadingLevel; /** * The post url. */ url: string; }; /** * Summary component * * Render a page summary. */ const Summary: FC = ({ intro, meta, title, titleLevel = 2, url, }) => { const intl = useIntl(); const readMore = intl.formatMessage( { defaultMessage: 'Read more about {title}', description: 'Summary: read more link', id: 'Zpgv+f', }, { title, a11y: (chunks: ReactNode) => ( {chunks} ), } ); const { author, commentsCount, cover, dates, thematics, topics, wordsCount } = meta; const readingTime = useReadingTime(wordsCount, true); const getMeta = (): MetaData => { return { author: author?.name, publication: { date: dates.publication }, update: dates.update && dates.publication !== dates.update ? { date: dates.update } : undefined, readingTime, thematics: thematics?.map((thematic) => ( {thematic.name} )), topics: topics?.map((topic) => ( {topic.name} )), comments: { about: title, count: commentsCount || 0, target: `${url}#comments`, }, }; }; return (
{cover && }
{title}
<> {readMore}
); }; export default Summary;