aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/comment.stories.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-11-07 16:55:58 +0100
committerArmand Philippot <git@armandphilippot.com>2023-11-11 18:15:27 +0100
commitbd9c9ae7e2ae973969569dd434836de9f38b07d4 (patch)
tree84905097c4f2c2db36794c20910e3893189a65e1 /src/components/organisms/layout/comment.stories.tsx
parentc9c1c90b30e243563bb4f731da15b3fe657556d2 (diff)
refactor(components): split Comment component into 3 components
* add ApprovedComment, PendingComment and ReplyCommentForm components * let consumer handle reply form visibility * move structured data into article page (each article already has the comments data and already handle json ltd schema so I prefered to move the schema in the final consumer instead of adding a script element foreach comment)
Diffstat (limited to 'src/components/organisms/layout/comment.stories.tsx')
-rw-r--r--src/components/organisms/layout/comment.stories.tsx115
1 files changed, 0 insertions, 115 deletions
diff --git a/src/components/organisms/layout/comment.stories.tsx b/src/components/organisms/layout/comment.stories.tsx
deleted file mode 100644
index 7426fc3..0000000
--- a/src/components/organisms/layout/comment.stories.tsx
+++ /dev/null
@@ -1,115 +0,0 @@
-import type { ComponentMeta, ComponentStory } from '@storybook/react';
-import { UserComment } from './comment';
-import { data } from './comment.fixture';
-
-const saveComment = async () => {
- /** Do nothing. */
-};
-
-/**
- * Comment - Storybook Meta
- */
-export default {
- title: 'Organisms/Layout/Comment',
- component: UserComment,
- args: {
- canReply: true,
- onSubmit: saveComment,
- },
- argTypes: {
- author: {
- description: 'The author data.',
- type: {
- name: 'object',
- required: true,
- value: {},
- },
- },
- canReply: {
- control: {
- type: 'boolean',
- },
- description: 'Enable or disable the reply button.',
- table: {
- category: 'Options',
- defaultValue: { summary: true },
- },
- type: {
- name: 'boolean',
- required: false,
- },
- },
- content: {
- control: {
- type: 'text',
- },
- description: 'The comment body.',
- type: {
- name: 'string',
- required: true,
- },
- },
- id: {
- control: {
- type: 'number',
- },
- description: 'The comment id.',
- type: {
- name: 'number',
- required: true,
- },
- },
- parentId: {
- control: {
- type: null,
- },
- description: 'The parent id if it is a reply.',
- type: {
- name: 'number',
- required: false,
- },
- },
- publication: {
- description: 'The publication date.',
- type: {
- name: 'object',
- required: true,
- value: {},
- },
- },
- onSubmit: {
- control: {
- type: null,
- },
- description: 'A callback function to save the comment form data.',
- table: {
- category: 'Events',
- },
- type: {
- name: 'function',
- required: true,
- },
- },
- },
-} as ComponentMeta<typeof UserComment>;
-
-const Template: ComponentStory<typeof UserComment> = (args) => (
- <UserComment {...args} />
-);
-
-/**
- * Layout Stories - Approved
- */
-export const Approved = Template.bind({});
-Approved.args = {
- ...data,
-};
-
-/**
- * Layout Stories - Unapproved
- */
-export const Unapproved = Template.bind({});
-Unapproved.args = {
- ...data,
- approved: false,
-};