aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/templates/page/page-comments.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-12-14 15:30:34 +0100
committerArmand Philippot <git@armandphilippot.com>2023-12-14 16:30:04 +0100
commit7063b199b4748a9c354ed37e64cdc84c512f2c0c (patch)
tree7506c3003c56b49a248e9adb40be610780bb540e /src/components/templates/page/page-comments.tsx
parent85c4c42bd601270d7be0f34a0767a34bb85e29bb (diff)
refactor(pages): rewrite helpers to output schema in json-ld format
* make sure url are absolutes * nest breadcrumb schema in webpage schema * trim HTML tags from content/description * use a regular script instead of next/script (with the latter the schema is not updated on route change) * place the script in document head * add keywords, wordCount and readingTime keys in BlogPosting schema * fix breadcrumbs in search page (without query) * add tests (a `MatchInlineSnapshot` will be better but Prettier 3 is not supported yet)
Diffstat (limited to 'src/components/templates/page/page-comments.tsx')
-rw-r--r--src/components/templates/page/page-comments.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/templates/page/page-comments.tsx b/src/components/templates/page/page-comments.tsx
index 5f5208f..01c4eea 100644
--- a/src/components/templates/page/page-comments.tsx
+++ b/src/components/templates/page/page-comments.tsx
@@ -10,6 +10,7 @@ import {
createComment,
type CreateCommentInput,
} from '../../../services/graphql';
+import { COMMENTS_SECTION_ID } from '../../../utils/constants';
import { Heading, Link, Section } from '../../atoms';
import { Card, CardBody } from '../../molecules';
import {
@@ -27,7 +28,7 @@ const link = (chunks: ReactNode) => (
export type PageCommentsProps = Omit<
HTMLAttributes<HTMLDivElement>,
- 'children' | 'onSubmit'
+ 'children' | 'id' | 'onSubmit'
> &
Pick<CommentsListProps, 'depth'> & {
/**
@@ -139,7 +140,7 @@ const PageCommentsWithRef: ForwardRefRenderFunction<
);
return (
- <div {...props} className={wrapperClass} ref={ref}>
+ <div {...props} className={wrapperClass} id={COMMENTS_SECTION_ID} ref={ref}>
<Section className={styles.comments__body}>
<Heading className={styles.heading} level={2}>
{commentsListTitle}