aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/comments-list.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/organisms/layout/comments-list.stories.tsx')
-rw-r--r--src/components/organisms/layout/comments-list.stories.tsx91
1 files changed, 91 insertions, 0 deletions
diff --git a/src/components/organisms/layout/comments-list.stories.tsx b/src/components/organisms/layout/comments-list.stories.tsx
new file mode 100644
index 0000000..5ed0f2a
--- /dev/null
+++ b/src/components/organisms/layout/comments-list.stories.tsx
@@ -0,0 +1,91 @@
+import { ComponentMeta, ComponentStory } from '@storybook/react';
+import CommentsListComponent from './comments-list';
+import { comments } from './comments-list.fixture';
+
+const saveComment = async () => {
+ /** Do nothing. */
+};
+
+/**
+ * CommentsList - Storybook Meta
+ */
+export default {
+ title: 'Organisms/Layout/CommentsList',
+ component: CommentsListComponent,
+ args: {
+ saveComment,
+ },
+ argTypes: {
+ comments: {
+ control: {
+ type: null,
+ },
+ description: 'An array of comments.',
+ type: {
+ name: 'object',
+ required: true,
+ value: {},
+ },
+ },
+ depth: {
+ control: {
+ type: 'number',
+ min: 0,
+ max: 4,
+ },
+ description: 'The maximum depth. Use `0` to not display nested comments.',
+ type: {
+ name: 'number',
+ required: true,
+ },
+ },
+ Notice: {
+ control: {
+ type: null,
+ },
+ description: 'A component to display a success or error message.',
+ table: {
+ category: 'Options',
+ },
+ type: {
+ name: 'function',
+ required: false,
+ },
+ },
+ saveComment: {
+ control: {
+ type: null,
+ },
+ description: 'A callback function to save the comment form data.',
+ table: {
+ category: 'Events',
+ },
+ type: {
+ name: 'function',
+ required: true,
+ },
+ },
+ },
+} as ComponentMeta<typeof CommentsListComponent>;
+
+const Template: ComponentStory<typeof CommentsListComponent> = (args) => (
+ <CommentsListComponent {...args} />
+);
+
+/**
+ * Layout Stories - Without child comments
+ */
+export const WithoutChildComments = Template.bind({});
+WithoutChildComments.args = {
+ comments,
+ depth: 0,
+};
+
+/**
+ * Layout Stories - With child comments
+ */
+export const WithChildComments = Template.bind({});
+WithChildComments.args = {
+ comments,
+ depth: 1,
+};