video 블록 및 리펙터링
CI / pr_and_merge (push) Has been skipped
CI / test (push) Failing after 46m46s
CI / test (pull_request) Failing after 43m8s
CI / pr_and_merge (pull_request) Has been skipped

This commit is contained in:
2025-11-27 10:07:59 +09:00
parent 672cca5271
commit 48e13d2a75
223 changed files with 8979 additions and 2125 deletions
+21 -2
View File
@@ -1,6 +1,6 @@
"use client";
import type { Block, SectionBlockProps, TextBlockProps } from "@/features/editor/state/editorStore";
import type { Block, SectionBlockProps, TextBlockProps, ImageBlockProps } from "@/features/editor/state/editorStore";
export function createBlogTemplateBlocks(opts: {
sectionId: string;
@@ -42,21 +42,40 @@ export function createBlogTemplateBlocks(opts: {
const blogBlocks: Block[] = columns.flatMap((col, index) => {
const post = postDefinitions[index] ?? postDefinitions[0];
const imageId = createId();
const titleId = createId();
const summaryId = createId();
const imageProps: ImageBlockProps = {
src: "https://via.placeholder.com/400x250/1e293b/94a3b8?text=Blog+Image",
alt: post.title,
align: "center",
widthMode: "auto",
borderRadius: "md",
};
const titleProps: TextBlockProps = {
text: post.title,
align: "left",
size: "lg",
bold: true,
} as any;
const summaryProps: TextBlockProps = {
text: post.summary,
align: "left",
size: "sm",
color: "muted",
} as any;
const imageBlock: Block = {
id: imageId,
type: "image",
props: imageProps,
sectionId,
columnId: col.id,
};
const titleBlock: Block = {
id: titleId,
type: "text",
@@ -73,7 +92,7 @@ export function createBlogTemplateBlocks(opts: {
columnId: col.id,
};
return [titleBlock, summaryBlock];
return [imageBlock, titleBlock, summaryBlock];
});
const blocks: Block[] = [sectionBlock, ...blogBlocks];