91 lines
2.2 KiB
JavaScript
91 lines
2.2 KiB
JavaScript
import ContentThumbnailTemplate from "../app/components/content/ContentThumbnailTemplate";
|
|
|
|
const mockPost = {
|
|
slug: "sample-article",
|
|
frontmatter: {
|
|
title: "Sample Article Title",
|
|
description:
|
|
"This is a sample article description that explains what the article covers.",
|
|
author: "Sample Author",
|
|
date: "2025-01-15",
|
|
},
|
|
};
|
|
|
|
const mockSlugOrder = ["sample-article", "another-article", "third-article"];
|
|
|
|
export default {
|
|
title: "Components/ContentThumbnailTemplate",
|
|
component: ContentThumbnailTemplate,
|
|
parameters: {
|
|
docs: {
|
|
description: {
|
|
component:
|
|
"The ContentThumbnailTemplate component displays blog post previews with background images, content, and metadata in both vertical and horizontal layouts.",
|
|
},
|
|
},
|
|
},
|
|
argTypes: {
|
|
post: {
|
|
control: "object",
|
|
description: "Blog post object with frontmatter",
|
|
},
|
|
slugOrder: {
|
|
control: "object",
|
|
description: "Array of slugs for consistent background cycling",
|
|
},
|
|
variant: {
|
|
control: { type: "select" },
|
|
options: ["vertical", "horizontal"],
|
|
description: "Layout variant for the thumbnail",
|
|
},
|
|
},
|
|
};
|
|
|
|
export const Vertical = {
|
|
args: {
|
|
post: mockPost,
|
|
slugOrder: mockSlugOrder,
|
|
variant: "vertical",
|
|
},
|
|
};
|
|
|
|
export const Horizontal = {
|
|
args: {
|
|
post: mockPost,
|
|
slugOrder: mockSlugOrder,
|
|
variant: "horizontal",
|
|
},
|
|
};
|
|
|
|
export const SecondStyle = {
|
|
args: {
|
|
post: { ...mockPost, slug: "another-article" },
|
|
slugOrder: mockSlugOrder,
|
|
variant: "vertical",
|
|
},
|
|
};
|
|
|
|
export const ThirdStyle = {
|
|
args: {
|
|
post: { ...mockPost, slug: "third-article" },
|
|
slugOrder: mockSlugOrder,
|
|
variant: "vertical",
|
|
},
|
|
};
|
|
|
|
export const LongContent = {
|
|
args: {
|
|
post: {
|
|
...mockPost,
|
|
frontmatter: {
|
|
...mockPost.frontmatter,
|
|
title: "This is a Very Long Article Title That Tests Text Wrapping",
|
|
description:
|
|
"This is a longer description that tests how the component handles extended text content and ensures proper wrapping and display within the thumbnail.",
|
|
},
|
|
},
|
|
slugOrder: mockSlugOrder,
|
|
variant: "vertical",
|
|
},
|
|
};
|