From 5b762b1b669454a89899c4bdf6008027d9615acf Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 30 Nov 2023 19:30:43 +0100 Subject: refactor(pages): refine Article pages * use rehype to update code blocks class names * fix widget heading level (after a level 1 it should always be a level 2 and not 3) * replace Spinner with LoadingPage and LoadingPageComments components to keep layout coherent * refactor useArticle and useComments hooks * fix URLs in JSON LD schema * add Cypress tests --- .../templates/page/loading-page-comments.tsx | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/components/templates/page/loading-page-comments.tsx (limited to 'src/components/templates/page/loading-page-comments.tsx') diff --git a/src/components/templates/page/loading-page-comments.tsx b/src/components/templates/page/loading-page-comments.tsx new file mode 100644 index 0000000..9235dcb --- /dev/null +++ b/src/components/templates/page/loading-page-comments.tsx @@ -0,0 +1,34 @@ +import { + forwardRef, + type ForwardRefRenderFunction, + type HTMLAttributes, +} from 'react'; +import { useIntl } from 'react-intl'; +import { Spinner } from '../../atoms'; +import styles from './page.module.scss'; + +export type LoadingPageCommentsProps = Omit< + HTMLAttributes, + 'children' +>; + +const LoadingPageCommentsWithRef: ForwardRefRenderFunction< + HTMLDivElement, + LoadingPageCommentsProps +> = ({ className = '', ...props }, ref) => { + const wrapperClass = `${styles.comments} ${className}`; + const intl = useIntl(); + const loadingMsg = intl.formatMessage({ + defaultMessage: 'The comments are loading...', + description: 'LoadingPageComments: loading message', + id: 'gYbxP4', + }); + + return ( +
+ {loadingMsg} +
+ ); +}; + +export const LoadingPageComments = forwardRef(LoadingPageCommentsWithRef); -- cgit v1.2.3