Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 401dac5b89 | |||
| 052490b695 | |||
| 7178e3bab5 | |||
| ba92caf3ab | |||
| 2ffb9545e0 | |||
| 1c3ad4c647 | |||
| efa8d34fe2 | |||
| 8494bd64bc | |||
| cf04c6e56c | |||
| 65d613a5bb | |||
| a8aed0aa41 | |||
| e2201f528e | |||
| f333e212b4 | |||
| b781ad1a2f |
@@ -0,0 +1,116 @@
|
|||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- feature/**
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup Node.js
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 20
|
||||||
|
cache: npm
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
npm ci
|
||||||
|
|
||||||
|
- name: Generate Prisma Client
|
||||||
|
env:
|
||||||
|
# CI에서는 실제 DB에 접속하지 않고 Prisma Client만 생성하면 되므로,
|
||||||
|
# 유효한 형식의 더미 DATABASE_URL 을 사용한다.
|
||||||
|
DATABASE_URL: postgresql://example:example@localhost:5432/example
|
||||||
|
run: |
|
||||||
|
npx prisma generate
|
||||||
|
|
||||||
|
- name: Run unit tests
|
||||||
|
env:
|
||||||
|
# API 유닛 테스트에서도 PrismaClient가 필요하므로,
|
||||||
|
# generate 단계와 동일한 더미 DATABASE_URL 을 사용한다.
|
||||||
|
DATABASE_URL: postgresql://example:example@localhost:5432/example
|
||||||
|
run: |
|
||||||
|
npm test
|
||||||
|
|
||||||
|
- name: Install Playwright browsers
|
||||||
|
run: |
|
||||||
|
npx playwright install --with-deps
|
||||||
|
|
||||||
|
- name: Run Playwright E2E tests
|
||||||
|
run: |
|
||||||
|
npx playwright test
|
||||||
|
|
||||||
|
pr_and_merge:
|
||||||
|
needs: test
|
||||||
|
# feature/* 브랜치에 push 되었을 때만 실행한다.
|
||||||
|
if: ${{ startsWith(github.ref, 'refs/heads/feature/') }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Create or update PR and try auto-merge
|
||||||
|
env:
|
||||||
|
CI_BASE_URL: ${{ secrets.CI_BASE_URL }}
|
||||||
|
CI_TOKEN: ${{ secrets.CI_TOKEN }}
|
||||||
|
CI_OWNER: ${{ secrets.CI_OWNER }}
|
||||||
|
CI_REPO: ${{ secrets.CI_REPO }}
|
||||||
|
BRANCH_REF: ${{ github.ref }}
|
||||||
|
BRANCH_NAME: ${{ github.ref_name }}
|
||||||
|
run: |
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ -z "$CI_BASE_URL" ] || [ -z "$CI_TOKEN" ] || [ -z "$CI_OWNER" ] || [ -z "$CI_REPO" ]; then
|
||||||
|
echo "CI_* 시크릿이 설정되지 않아 PR/자동 머지를 건너뜁니다." >&2
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "현재 브랜치: $BRANCH_NAME ($BRANCH_REF)"
|
||||||
|
|
||||||
|
# 1) PR 생성 시도 (이미 존재하면 4xx를 허용)
|
||||||
|
create_pr_payload=$(jq -n \
|
||||||
|
--arg title "CI: $BRANCH_NAME" \
|
||||||
|
--arg head "$BRANCH_NAME" \
|
||||||
|
--arg base "main" \
|
||||||
|
'{title: $title, head: $head, base: $base}')
|
||||||
|
|
||||||
|
echo "PR 생성 시도..."
|
||||||
|
curl -sS -X POST \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-H "Authorization: token $CI_TOKEN" \
|
||||||
|
"$CI_BASE_URL/api/v1/repos/$CI_OWNER/$CI_REPO/pulls" \
|
||||||
|
-d "$create_pr_payload" || true
|
||||||
|
|
||||||
|
# 2) 열린 PR 목록에서 해당 브랜치의 PR 번호를 찾는다.
|
||||||
|
echo "열린 PR 목록 조회..."
|
||||||
|
pr_list=$(curl -sS \
|
||||||
|
-H "Authorization: token $CI_TOKEN" \
|
||||||
|
"$CI_BASE_URL/api/v1/repos/$CI_OWNER/$CI_REPO/pulls?state=open")
|
||||||
|
|
||||||
|
pr_number=$(echo "$pr_list" | jq ".[] | select(.head.ref == \"$BRANCH_NAME\") | .number" | head -n 1)
|
||||||
|
|
||||||
|
if [ -z "$pr_number" ]; then
|
||||||
|
echo "브랜치 $BRANCH_NAME 에 대한 열린 PR을 찾지 못했습니다. 종료합니다."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "브랜치 $BRANCH_NAME 에 대한 PR #$pr_number 발견"
|
||||||
|
|
||||||
|
# 3) main 대상으로 자동 머지 시도
|
||||||
|
merge_payload=$(jq -n '{Do: "merge"}')
|
||||||
|
|
||||||
|
echo "PR #$pr_number 자동 머지 시도..."
|
||||||
|
curl -sS -X POST \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-H "Authorization: token $CI_TOKEN" \
|
||||||
|
"$CI_BASE_URL/api/v1/repos/$CI_OWNER/$CI_REPO/pulls/$pr_number/merge" \
|
||||||
|
-d "$merge_payload" || true
|
||||||
+159
-1
@@ -1,7 +1,8 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import type { CSSProperties, ReactNode } from "react";
|
import type { CSSProperties, ReactNode } from "react";
|
||||||
import { useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
|
import Link from "next/link";
|
||||||
import {
|
import {
|
||||||
DndContext,
|
DndContext,
|
||||||
PointerSensor,
|
PointerSensor,
|
||||||
@@ -36,11 +37,21 @@ export default function EditorPage() {
|
|||||||
const addHeroTemplateSection = useEditorStore((state) => state.addHeroTemplateSection);
|
const addHeroTemplateSection = useEditorStore((state) => state.addHeroTemplateSection);
|
||||||
const addFeaturesTemplateSection = useEditorStore((state) => state.addFeaturesTemplateSection);
|
const addFeaturesTemplateSection = useEditorStore((state) => state.addFeaturesTemplateSection);
|
||||||
const addCtaTemplateSection = useEditorStore((state) => state.addCtaTemplateSection);
|
const addCtaTemplateSection = useEditorStore((state) => state.addCtaTemplateSection);
|
||||||
|
const addFaqTemplateSection = useEditorStore((state) => state.addFaqTemplateSection);
|
||||||
|
const addPricingTemplateSection = useEditorStore((state) => state.addPricingTemplateSection);
|
||||||
|
const addTestimonialsTemplateSection = useEditorStore((state) => state.addTestimonialsTemplateSection);
|
||||||
|
const addBlogTemplateSection = useEditorStore((state) => state.addBlogTemplateSection);
|
||||||
|
const addTeamTemplateSection = useEditorStore((state) => state.addTeamTemplateSection);
|
||||||
|
const addFooterTemplateSection = useEditorStore((state) => state.addFooterTemplateSection);
|
||||||
const updateBlock = useEditorStore((state) => state.updateBlock);
|
const updateBlock = useEditorStore((state) => state.updateBlock);
|
||||||
const selectBlock = useEditorStore((state) => state.selectBlock);
|
const selectBlock = useEditorStore((state) => state.selectBlock);
|
||||||
const replaceBlocks = useEditorStore((state) => state.replaceBlocks);
|
const replaceBlocks = useEditorStore((state) => state.replaceBlocks);
|
||||||
const reorderBlocks = useEditorStore((state) => state.reorderBlocks);
|
const reorderBlocks = useEditorStore((state) => state.reorderBlocks);
|
||||||
const moveBlock = useEditorStore((state) => state.moveBlock);
|
const moveBlock = useEditorStore((state) => state.moveBlock);
|
||||||
|
const undo = useEditorStore((state) => state.undo);
|
||||||
|
const redo = useEditorStore((state) => state.redo);
|
||||||
|
const removeBlock = useEditorStore((state) => state.removeBlock);
|
||||||
|
const duplicateBlock = useEditorStore((state) => state.duplicateBlock);
|
||||||
|
|
||||||
const [editingBlockId, setEditingBlockId] = useState<string | null>(null);
|
const [editingBlockId, setEditingBlockId] = useState<string | null>(null);
|
||||||
const [editingText, setEditingText] = useState("");
|
const [editingText, setEditingText] = useState("");
|
||||||
@@ -197,6 +208,87 @@ export default function EditorPage() {
|
|||||||
|
|
||||||
const rootBlocks = blocks.filter((block) => !block.sectionId);
|
const rootBlocks = blocks.filter((block) => !block.sectionId);
|
||||||
|
|
||||||
|
// 에디터 전역에서 Undo/Redo 단축키(Cmd/Ctrl+Z, Cmd/Ctrl+Shift+Z),
|
||||||
|
// Delete/Backspace 기반 삭제, Cmd/Ctrl+D 기반 복제,
|
||||||
|
// ArrowUp/ArrowDown을 이용한 선택 블록 이동을 처리한다.
|
||||||
|
useEffect(() => {
|
||||||
|
const handleKeyDown = (event: KeyboardEvent) => {
|
||||||
|
// 방향키로 선택된 블록을 위/아래로 이동 (순서 변경이 아니라 선택만 이동)
|
||||||
|
if (event.key === "ArrowDown" || event.key === "ArrowUp") {
|
||||||
|
const { blocks: currentBlocks, selectedBlockId: currentSelectedId, selectBlock: storeSelectBlock } =
|
||||||
|
(useEditorStore as any).getState();
|
||||||
|
|
||||||
|
if (!currentBlocks.length) return;
|
||||||
|
|
||||||
|
const currentIndex = currentSelectedId
|
||||||
|
? currentBlocks.findIndex((b: Block) => b.id === currentSelectedId)
|
||||||
|
: -1;
|
||||||
|
|
||||||
|
let nextIndex = currentIndex;
|
||||||
|
|
||||||
|
if (event.key === "ArrowDown") {
|
||||||
|
nextIndex = currentIndex < currentBlocks.length - 1 ? currentIndex + 1 : currentIndex;
|
||||||
|
} else if (event.key === "ArrowUp") {
|
||||||
|
nextIndex = currentIndex > 0 ? currentIndex - 1 : currentIndex;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nextIndex !== -1 && nextIndex !== currentIndex) {
|
||||||
|
event.preventDefault();
|
||||||
|
const nextId = currentBlocks[nextIndex]?.id;
|
||||||
|
if (nextId) {
|
||||||
|
storeSelectBlock(nextId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const isMac = navigator.platform.toLowerCase().includes("mac");
|
||||||
|
const metaKey = isMac ? event.metaKey : event.ctrlKey;
|
||||||
|
|
||||||
|
// Delete / Backspace 로 선택된 블록 삭제
|
||||||
|
if (event.key === "Delete" || event.key === "Backspace") {
|
||||||
|
const { selectedBlockId: currentSelectedId } = (useEditorStore as any).getState();
|
||||||
|
if (currentSelectedId) {
|
||||||
|
event.preventDefault();
|
||||||
|
removeBlock(currentSelectedId);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Cmd/Ctrl 없는 경우에는 여기서 종료한다.
|
||||||
|
if (!metaKey) return;
|
||||||
|
|
||||||
|
// Cmd/Ctrl + D → 현재 선택된 블록 복제
|
||||||
|
if (event.key.toLowerCase() === "d") {
|
||||||
|
const { selectedBlockId: currentSelectedId } = (useEditorStore as any).getState();
|
||||||
|
if (currentSelectedId) {
|
||||||
|
event.preventDefault();
|
||||||
|
duplicateBlock(currentSelectedId);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Cmd/Ctrl + Shift + Z → Redo
|
||||||
|
if (event.key.toLowerCase() === "z" && event.shiftKey) {
|
||||||
|
event.preventDefault();
|
||||||
|
redo();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Cmd/Ctrl + Z → Undo
|
||||||
|
if (event.key.toLowerCase() === "z") {
|
||||||
|
event.preventDefault();
|
||||||
|
undo();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
window.addEventListener("keydown", handleKeyDown);
|
||||||
|
return () => {
|
||||||
|
window.removeEventListener("keydown", handleKeyDown);
|
||||||
|
};
|
||||||
|
}, [undo, redo]);
|
||||||
|
|
||||||
const renderBlocks = (targetBlocks: Block[]) =>
|
const renderBlocks = (targetBlocks: Block[]) =>
|
||||||
targetBlocks.map((block) => {
|
targetBlocks.map((block) => {
|
||||||
const isSelected = block.id === selectedBlockId;
|
const isSelected = block.id === selectedBlockId;
|
||||||
@@ -222,8 +314,16 @@ export default function EditorPage() {
|
|||||||
return (
|
return (
|
||||||
<main className="min-h-screen flex flex-col bg-slate-950 text-slate-50">
|
<main className="min-h-screen flex flex-col bg-slate-950 text-slate-50">
|
||||||
<header className="border-b border-slate-800 px-6 py-4 flex items-center justify-between">
|
<header className="border-b border-slate-800 px-6 py-4 flex items-center justify-between">
|
||||||
|
<div className="flex items-baseline gap-3">
|
||||||
<h1 className="text-xl font-semibold">Page Editor</h1>
|
<h1 className="text-xl font-semibold">Page Editor</h1>
|
||||||
<p className="text-xs text-slate-400">빌더 MVP용 에디터 페이지 골격</p>
|
<p className="text-xs text-slate-400">빌더 MVP용 에디터 페이지 골격</p>
|
||||||
|
</div>
|
||||||
|
<Link
|
||||||
|
href="/preview"
|
||||||
|
className="inline-flex items-center rounded border border-slate-700 bg-slate-900 px-3 py-1 text-xs text-slate-100 hover:bg-slate-800"
|
||||||
|
>
|
||||||
|
프리뷰 열기
|
||||||
|
</Link>
|
||||||
</header>
|
</header>
|
||||||
<section className="flex flex-1 overflow-hidden">
|
<section className="flex flex-1 overflow-hidden">
|
||||||
<aside className="w-60 border-r border-slate-800 p-4 text-sm space-y-3">
|
<aside className="w-60 border-r border-slate-800 p-4 text-sm space-y-3">
|
||||||
@@ -279,6 +379,48 @@ export default function EditorPage() {
|
|||||||
>
|
>
|
||||||
CTA 템플릿 추가
|
CTA 템플릿 추가
|
||||||
</button>
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="w-full rounded border border-slate-700 bg-slate-900 px-3 py-2 text-left text-xs hover:bg-slate-800"
|
||||||
|
onClick={addFaqTemplateSection}
|
||||||
|
>
|
||||||
|
FAQ 템플릿 추가
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="w-full rounded border border-slate-700 bg-slate-900 px-3 py-2 text-left text-xs hover:bg-slate-800"
|
||||||
|
onClick={addPricingTemplateSection}
|
||||||
|
>
|
||||||
|
Pricing 템플릿 추가
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="w-full rounded border border-slate-700 bg-slate-900 px-3 py-2 text-left text-xs hover:bg-slate-800"
|
||||||
|
onClick={addTestimonialsTemplateSection}
|
||||||
|
>
|
||||||
|
Testimonials 템플릿 추가
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="w-full rounded border border-slate-700 bg-slate-900 px-3 py-2 text-left text-xs hover:bg-slate-800"
|
||||||
|
onClick={addBlogTemplateSection}
|
||||||
|
>
|
||||||
|
Blog 템플릿 추가
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="w-full rounded border border-slate-700 bg-slate-900 px-3 py-2 text-left text-xs hover:bg-slate-800"
|
||||||
|
onClick={addTeamTemplateSection}
|
||||||
|
>
|
||||||
|
Team 템플릿 추가
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="w-full rounded border border-slate-700 bg-slate-900 px-3 py-2 text-left text-xs hover:bg-slate-800"
|
||||||
|
onClick={addFooterTemplateSection}
|
||||||
|
>
|
||||||
|
Footer 템플릿 추가
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<p className="text-xs text-slate-500">
|
<p className="text-xs text-slate-500">
|
||||||
Text / Image / Button / Section 블록을 이 영역에서 추가할 수 있습니다.
|
Text / Image / Button / Section 블록을 이 영역에서 추가할 수 있습니다.
|
||||||
@@ -311,6 +453,22 @@ export default function EditorPage() {
|
|||||||
<h2 className="font-medium mb-2">속성 패널</h2>
|
<h2 className="font-medium mb-2">속성 패널</h2>
|
||||||
{selectedBlockId ? (
|
{selectedBlockId ? (
|
||||||
<div className="space-y-3">
|
<div className="space-y-3">
|
||||||
|
<div className="flex gap-2 text-[11px]">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="flex-1 rounded border border-slate-700 bg-slate-900 px-2 py-1 text-slate-100 hover:bg-red-900/60 hover:border-red-700"
|
||||||
|
onClick={() => removeBlock(selectedBlockId)}
|
||||||
|
>
|
||||||
|
블록 삭제
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="flex-1 rounded border border-slate-700 bg-slate-900 px-2 py-1 text-slate-100 hover:bg-slate-800"
|
||||||
|
onClick={() => duplicateBlock(selectedBlockId)}
|
||||||
|
>
|
||||||
|
블록 복제
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
{(() => {
|
{(() => {
|
||||||
const selectedBlock = blocks.find((b) => b.id === selectedBlockId);
|
const selectedBlock = blocks.find((b) => b.id === selectedBlockId);
|
||||||
if (!selectedBlock) return null;
|
if (!selectedBlock) return null;
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useEditorStore } from "@/features/editor/state/editorStore";
|
||||||
|
import { PublicPageRenderer } from "@/features/editor/components/PublicPageRenderer";
|
||||||
|
|
||||||
|
export default function PreviewPage() {
|
||||||
|
const blocks = useEditorStore((state) => state.blocks);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<main className="min-h-screen flex flex-col bg-slate-950 text-slate-50">
|
||||||
|
<header className="border-b border-slate-800 px-6 py-4 flex items-center justify-between">
|
||||||
|
<h1 className="text-xl font-semibold">Page Preview</h1>
|
||||||
|
<p className="text-xs text-slate-400">빌더로 만든 페이지를 미리 보는 화면</p>
|
||||||
|
</header>
|
||||||
|
{/* 에디터 크롬 없이 순수 페이지 형태로 블록들을 렌더링 */}
|
||||||
|
<PublicPageRenderer blocks={blocks} />
|
||||||
|
</main>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,106 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import type { Block, TextBlockProps, ButtonBlockProps, ImageBlockProps, SectionBlockProps } from "@/features/editor/state/editorStore";
|
||||||
|
|
||||||
|
// 에디터 크롬 없이 실제 랜딩 페이지처럼 블록들을 렌더링하는 컴포넌트
|
||||||
|
interface PublicPageRendererProps {
|
||||||
|
blocks: Block[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export function PublicPageRenderer({ blocks }: PublicPageRendererProps) {
|
||||||
|
const sectionBlocks = blocks.filter((b) => b.type === "section");
|
||||||
|
const rootBlocks = blocks.filter((b) => !b.sectionId && b.type !== "section");
|
||||||
|
|
||||||
|
const renderBlock = (block: Block) => {
|
||||||
|
if (block.type === "text") {
|
||||||
|
const props = block.props as TextBlockProps;
|
||||||
|
|
||||||
|
const alignClass =
|
||||||
|
props.align === "center" ? "text-center" : props.align === "right" ? "text-right" : "text-left";
|
||||||
|
const sizeClass = props.size === "sm" ? "text-sm" : props.size === "lg" ? "text-2xl" : "text-base";
|
||||||
|
|
||||||
|
return (
|
||||||
|
<p key={block.id} className={`${alignClass} ${sizeClass} text-slate-50 leading-relaxed`}>
|
||||||
|
{props.text}
|
||||||
|
</p>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (block.type === "button") {
|
||||||
|
const props = block.props as ButtonBlockProps;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<a
|
||||||
|
key={block.id}
|
||||||
|
href={props.href}
|
||||||
|
className="inline-flex items-center justify-center rounded-md bg-sky-600 px-4 py-2 text-sm font-medium text-white hover:bg-sky-500 transition-colors"
|
||||||
|
>
|
||||||
|
{props.label}
|
||||||
|
</a>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (block.type === "image") {
|
||||||
|
const props = block.props as ImageBlockProps;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div key={block.id} className="w-full flex justify-center">
|
||||||
|
{/* eslint-disable-next-line @next/next/no-img-element */}
|
||||||
|
<img src={props.src || ""} alt={props.alt} className="max-w-full h-auto object-contain" />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
const renderSection = (section: Block) => {
|
||||||
|
const props = section.props as SectionBlockProps;
|
||||||
|
|
||||||
|
const bgClass =
|
||||||
|
props.background === "muted" ? "bg-slate-900" : props.background === "primary" ? "bg-sky-900" : "bg-slate-950";
|
||||||
|
|
||||||
|
const pyClass = props.paddingY === "sm" ? "py-8" : props.paddingY === "lg" ? "py-20" : "py-12";
|
||||||
|
|
||||||
|
const columns = props.columns && props.columns.length > 0 ? props.columns : [{ id: `${section.id}_col`, span: 12 }];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<section key={section.id} className={`${bgClass} ${pyClass}`}>
|
||||||
|
<div className="mx-auto max-w-5xl px-4">
|
||||||
|
<div className="flex gap-8">
|
||||||
|
{columns.map((col) => {
|
||||||
|
const basis = `${(col.span / 12) * 100}%`;
|
||||||
|
const columnBlocks = blocks.filter((b) => b.sectionId === section.id && b.columnId === col.id);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div key={col.id} className="flex flex-col gap-4" style={{ flexBasis: basis }}>
|
||||||
|
{columnBlocks.map((b) => (
|
||||||
|
<div key={b.id}>{renderBlock(b)}</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex-1 flex flex-col bg-slate-950 text-slate-50">
|
||||||
|
{/* 루트 텍스트/버튼/이미지 블록들이 있다면 페이지 상단에 노출 */}
|
||||||
|
{rootBlocks.length > 0 && (
|
||||||
|
<section className="bg-slate-950 py-12">
|
||||||
|
<div className="mx-auto max-w-3xl px-4 flex flex-col gap-4">
|
||||||
|
{rootBlocks.map((b) => (
|
||||||
|
<div key={b.id}>{renderBlock(b)}</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* 섹션 블록들 */}
|
||||||
|
{sectionBlocks.map((section) => renderSection(section))}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -51,6 +51,8 @@ export interface Block {
|
|||||||
export interface EditorState {
|
export interface EditorState {
|
||||||
blocks: Block[];
|
blocks: Block[];
|
||||||
selectedBlockId: string | null;
|
selectedBlockId: string | null;
|
||||||
|
history: Block[][];
|
||||||
|
future: Block[][];
|
||||||
addTextBlock: () => void;
|
addTextBlock: () => void;
|
||||||
addButtonBlock: () => void;
|
addButtonBlock: () => void;
|
||||||
addImageBlock: () => void;
|
addImageBlock: () => void;
|
||||||
@@ -58,11 +60,21 @@ export interface EditorState {
|
|||||||
addHeroTemplateSection: () => void;
|
addHeroTemplateSection: () => void;
|
||||||
addFeaturesTemplateSection: () => void;
|
addFeaturesTemplateSection: () => void;
|
||||||
addCtaTemplateSection: () => void;
|
addCtaTemplateSection: () => void;
|
||||||
|
addFaqTemplateSection: () => void;
|
||||||
|
addPricingTemplateSection: () => void;
|
||||||
|
addTestimonialsTemplateSection: () => void;
|
||||||
|
addBlogTemplateSection: () => void;
|
||||||
|
addTeamTemplateSection: () => void;
|
||||||
|
addFooterTemplateSection: () => void;
|
||||||
updateBlock: (id: string, partial: Partial<TextBlockProps & ButtonBlockProps>) => void;
|
updateBlock: (id: string, partial: Partial<TextBlockProps & ButtonBlockProps>) => void;
|
||||||
selectBlock: (id: string | null) => void;
|
selectBlock: (id: string | null) => void;
|
||||||
replaceBlocks: (blocks: Block[]) => void;
|
replaceBlocks: (blocks: Block[]) => void;
|
||||||
reorderBlocks: (activeId: string, overId: string) => void;
|
reorderBlocks: (activeId: string, overId: string) => void;
|
||||||
moveBlock: (id: string, sectionId: string | null, columnId: string | null) => void;
|
moveBlock: (id: string, sectionId: string | null, columnId: string | null) => void;
|
||||||
|
undo: () => void;
|
||||||
|
redo: () => void;
|
||||||
|
removeBlock: (id: string) => void;
|
||||||
|
duplicateBlock: (id: string) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 간단한 ID 생성기 (추후 uuid 라이브러리로 교체 가능)
|
// 간단한 ID 생성기 (추후 uuid 라이브러리로 교체 가능)
|
||||||
@@ -74,6 +86,8 @@ const createId = () => `blk_${Date.now()}_${idCounter++}`;
|
|||||||
const createEditorState = (set: any, get: any): EditorState => ({
|
const createEditorState = (set: any, get: any): EditorState => ({
|
||||||
blocks: [],
|
blocks: [],
|
||||||
selectedBlockId: null,
|
selectedBlockId: null,
|
||||||
|
history: [],
|
||||||
|
future: [],
|
||||||
|
|
||||||
// 텍스트 블록 추가: 기본 텍스트와 함께 생성 후 선택 상태로 만든다
|
// 텍스트 블록 추가: 기본 텍스트와 함께 생성 후 선택 상태로 만든다
|
||||||
addTextBlock: () => {
|
addTextBlock: () => {
|
||||||
@@ -112,6 +126,8 @@ const createEditorState = (set: any, get: any): EditorState => ({
|
|||||||
set((state: EditorState) => ({
|
set((state: EditorState) => ({
|
||||||
blocks: [...state.blocks, newBlock],
|
blocks: [...state.blocks, newBlock],
|
||||||
selectedBlockId: id,
|
selectedBlockId: id,
|
||||||
|
history: [...state.history, blocks],
|
||||||
|
future: [],
|
||||||
}));
|
}));
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -255,6 +271,225 @@ const createEditorState = (set: any, get: any): EditorState => ({
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// Blog 템플릿 섹션 추가: 3컬럼 포스트 카드(제목/요약)를 생성한다
|
||||||
|
addBlogTemplateSection: () => {
|
||||||
|
const sectionId = createId();
|
||||||
|
|
||||||
|
const columns = [
|
||||||
|
{ id: `${sectionId}_col_1`, span: 4 },
|
||||||
|
{ id: `${sectionId}_col_2`, span: 4 },
|
||||||
|
{ id: `${sectionId}_col_3`, span: 4 },
|
||||||
|
];
|
||||||
|
|
||||||
|
const sectionBlock: Block = {
|
||||||
|
id: sectionId,
|
||||||
|
type: "section",
|
||||||
|
props: {
|
||||||
|
background: "default",
|
||||||
|
paddingY: "lg",
|
||||||
|
columns,
|
||||||
|
},
|
||||||
|
sectionId: null,
|
||||||
|
columnId: null,
|
||||||
|
};
|
||||||
|
|
||||||
|
const postDefinitions = [
|
||||||
|
{ title: "블로그 포스트 1", summary: "첫 번째 포스트 요약을 여기에 입력하세요." },
|
||||||
|
{ title: "블로그 포스트 2", summary: "두 번째 포스트 요약을 여기에 입력하세요." },
|
||||||
|
{ title: "블로그 포스트 3", summary: "세 번째 포스트 요약을 여기에 입력하세요." },
|
||||||
|
];
|
||||||
|
|
||||||
|
const blogBlocks: Block[] = columns.flatMap((col, index) => {
|
||||||
|
const post = postDefinitions[index] ?? postDefinitions[0];
|
||||||
|
|
||||||
|
const titleId = createId();
|
||||||
|
const summaryId = createId();
|
||||||
|
|
||||||
|
const titleBlock: Block = {
|
||||||
|
id: titleId,
|
||||||
|
type: "text",
|
||||||
|
props: {
|
||||||
|
text: post.title,
|
||||||
|
align: "left",
|
||||||
|
size: "lg",
|
||||||
|
},
|
||||||
|
sectionId,
|
||||||
|
columnId: col.id,
|
||||||
|
};
|
||||||
|
|
||||||
|
const summaryBlock: Block = {
|
||||||
|
id: summaryId,
|
||||||
|
type: "text",
|
||||||
|
props: {
|
||||||
|
text: post.summary,
|
||||||
|
align: "left",
|
||||||
|
size: "sm",
|
||||||
|
},
|
||||||
|
sectionId,
|
||||||
|
columnId: col.id,
|
||||||
|
};
|
||||||
|
|
||||||
|
return [titleBlock, summaryBlock];
|
||||||
|
});
|
||||||
|
|
||||||
|
const lastBlockId = blogBlocks[blogBlocks.length - 1].id;
|
||||||
|
|
||||||
|
set((state: EditorState) => {
|
||||||
|
const newBlocks = [...state.blocks, sectionBlock, ...blogBlocks];
|
||||||
|
|
||||||
|
return {
|
||||||
|
blocks: newBlocks,
|
||||||
|
selectedBlockId: lastBlockId,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
// Team 템플릿 섹션 추가: 3컬럼 팀 카드(이름/역할/소개)를 생성한다
|
||||||
|
addTeamTemplateSection: () => {
|
||||||
|
const sectionId = createId();
|
||||||
|
|
||||||
|
const columns = [
|
||||||
|
{ id: `${sectionId}_col_1`, span: 4 },
|
||||||
|
{ id: `${sectionId}_col_2`, span: 4 },
|
||||||
|
{ id: `${sectionId}_col_3`, span: 4 },
|
||||||
|
];
|
||||||
|
|
||||||
|
const sectionBlock: Block = {
|
||||||
|
id: sectionId,
|
||||||
|
type: "section",
|
||||||
|
props: {
|
||||||
|
background: "muted",
|
||||||
|
paddingY: "lg",
|
||||||
|
columns,
|
||||||
|
},
|
||||||
|
sectionId: null,
|
||||||
|
columnId: null,
|
||||||
|
};
|
||||||
|
|
||||||
|
const memberDefinitions = [
|
||||||
|
{ name: "홍길동", role: "Product Designer", bio: "사용자 경험을 설계합니다." },
|
||||||
|
{ name: "김영희", role: "Frontend Engineer", bio: "깔끔한 UI를 구현합니다." },
|
||||||
|
{ name: "이철수", role: "Backend Engineer", bio: "안정적인 인프라를 책임집니다." },
|
||||||
|
];
|
||||||
|
|
||||||
|
const teamBlocks: Block[] = columns.flatMap((col, index) => {
|
||||||
|
const m = memberDefinitions[index] ?? memberDefinitions[0];
|
||||||
|
|
||||||
|
const nameId = createId();
|
||||||
|
const roleId = createId();
|
||||||
|
const bioId = createId();
|
||||||
|
|
||||||
|
const nameBlock: Block = {
|
||||||
|
id: nameId,
|
||||||
|
type: "text",
|
||||||
|
props: {
|
||||||
|
text: m.name,
|
||||||
|
align: "center",
|
||||||
|
size: "lg",
|
||||||
|
},
|
||||||
|
sectionId,
|
||||||
|
columnId: col.id,
|
||||||
|
};
|
||||||
|
|
||||||
|
const roleBlock: Block = {
|
||||||
|
id: roleId,
|
||||||
|
type: "text",
|
||||||
|
props: {
|
||||||
|
text: m.role,
|
||||||
|
align: "center",
|
||||||
|
size: "base",
|
||||||
|
},
|
||||||
|
sectionId,
|
||||||
|
columnId: col.id,
|
||||||
|
};
|
||||||
|
|
||||||
|
const bioBlock: Block = {
|
||||||
|
id: bioId,
|
||||||
|
type: "text",
|
||||||
|
props: {
|
||||||
|
text: m.bio,
|
||||||
|
align: "center",
|
||||||
|
size: "sm",
|
||||||
|
},
|
||||||
|
sectionId,
|
||||||
|
columnId: col.id,
|
||||||
|
};
|
||||||
|
|
||||||
|
return [nameBlock, roleBlock, bioBlock];
|
||||||
|
});
|
||||||
|
|
||||||
|
const lastBlockId = teamBlocks[teamBlocks.length - 1].id;
|
||||||
|
|
||||||
|
set((state: EditorState) => {
|
||||||
|
const newBlocks = [...state.blocks, sectionBlock, ...teamBlocks];
|
||||||
|
|
||||||
|
return {
|
||||||
|
blocks: newBlocks,
|
||||||
|
selectedBlockId: lastBlockId,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
// Footer 템플릿 섹션 추가: 링크/카피라이트 텍스트가 포함된 1컬럼 섹션을 생성한다
|
||||||
|
addFooterTemplateSection: () => {
|
||||||
|
const sectionId = createId();
|
||||||
|
|
||||||
|
const sectionBlock: Block = {
|
||||||
|
id: sectionId,
|
||||||
|
type: "section",
|
||||||
|
props: {
|
||||||
|
background: "muted",
|
||||||
|
paddingY: "md",
|
||||||
|
columns: [
|
||||||
|
{
|
||||||
|
id: `${sectionId}_col_1`,
|
||||||
|
span: 12,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
sectionId: null,
|
||||||
|
columnId: null,
|
||||||
|
};
|
||||||
|
|
||||||
|
const firstColumnId = `${sectionId}_col_1`;
|
||||||
|
|
||||||
|
const linksId = createId();
|
||||||
|
const copyrightId = createId();
|
||||||
|
|
||||||
|
const linksBlock: Block = {
|
||||||
|
id: linksId,
|
||||||
|
type: "text",
|
||||||
|
props: {
|
||||||
|
text: "이용약관 · 개인정보처리방침",
|
||||||
|
align: "center",
|
||||||
|
size: "sm",
|
||||||
|
},
|
||||||
|
sectionId,
|
||||||
|
columnId: firstColumnId,
|
||||||
|
};
|
||||||
|
|
||||||
|
const copyrightBlock: Block = {
|
||||||
|
id: copyrightId,
|
||||||
|
type: "text",
|
||||||
|
props: {
|
||||||
|
text: "© 2025 MyLanding. All rights reserved.",
|
||||||
|
align: "center",
|
||||||
|
size: "sm",
|
||||||
|
},
|
||||||
|
sectionId,
|
||||||
|
columnId: firstColumnId,
|
||||||
|
};
|
||||||
|
|
||||||
|
set((state: EditorState) => {
|
||||||
|
const newBlocks = [...state.blocks, sectionBlock, linksBlock, copyrightBlock];
|
||||||
|
|
||||||
|
return {
|
||||||
|
blocks: newBlocks,
|
||||||
|
selectedBlockId: copyrightId,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
// CTA 템플릿 섹션 추가: 텍스트와 버튼이 포함된 1컬럼 섹션을 생성한다
|
// CTA 템플릿 섹션 추가: 텍스트와 버튼이 포함된 1컬럼 섹션을 생성한다
|
||||||
addCtaTemplateSection: () => {
|
addCtaTemplateSection: () => {
|
||||||
const sectionId = createId();
|
const sectionId = createId();
|
||||||
@@ -313,6 +548,233 @@ const createEditorState = (set: any, get: any): EditorState => ({
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// FAQ 템플릿 섹션 추가: 질문/답변 쌍이 수직으로 나열된 섹션을 생성한다
|
||||||
|
addFaqTemplateSection: () => {
|
||||||
|
const sectionId = createId();
|
||||||
|
|
||||||
|
const sectionBlock: Block = {
|
||||||
|
id: sectionId,
|
||||||
|
type: "section",
|
||||||
|
props: {
|
||||||
|
background: "default",
|
||||||
|
paddingY: "md",
|
||||||
|
columns: [
|
||||||
|
{
|
||||||
|
id: `${sectionId}_col_1`,
|
||||||
|
span: 12,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
sectionId: null,
|
||||||
|
columnId: null,
|
||||||
|
};
|
||||||
|
|
||||||
|
const firstColumnId = `${sectionId}_col_1`;
|
||||||
|
|
||||||
|
const faqPairs = [
|
||||||
|
{
|
||||||
|
question: "자주 묻는 질문 1",
|
||||||
|
answer: "첫 번째 질문에 대한 답변을 여기에 입력하세요.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
question: "자주 묻는 질문 2",
|
||||||
|
answer: "두 번째 질문에 대한 답변을 여기에 입력하세요.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
question: "자주 묻는 질문 3",
|
||||||
|
answer: "세 번째 질문에 대한 답변을 여기에 입력하세요.",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const faqBlocks: Block[] = faqPairs.flatMap((pair) => {
|
||||||
|
const qId = createId();
|
||||||
|
const aId = createId();
|
||||||
|
|
||||||
|
const questionBlock: Block = {
|
||||||
|
id: qId,
|
||||||
|
type: "text",
|
||||||
|
props: {
|
||||||
|
text: pair.question,
|
||||||
|
align: "left",
|
||||||
|
size: "lg",
|
||||||
|
},
|
||||||
|
sectionId,
|
||||||
|
columnId: firstColumnId,
|
||||||
|
};
|
||||||
|
|
||||||
|
const answerBlock: Block = {
|
||||||
|
id: aId,
|
||||||
|
type: "text",
|
||||||
|
props: {
|
||||||
|
text: pair.answer,
|
||||||
|
align: "left",
|
||||||
|
size: "sm",
|
||||||
|
},
|
||||||
|
sectionId,
|
||||||
|
columnId: firstColumnId,
|
||||||
|
};
|
||||||
|
|
||||||
|
return [questionBlock, answerBlock];
|
||||||
|
});
|
||||||
|
|
||||||
|
const lastBlockId = faqBlocks[faqBlocks.length - 1].id;
|
||||||
|
|
||||||
|
set((state: EditorState) => {
|
||||||
|
const newBlocks = [...state.blocks, sectionBlock, ...faqBlocks];
|
||||||
|
|
||||||
|
return {
|
||||||
|
blocks: newBlocks,
|
||||||
|
selectedBlockId: lastBlockId,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
// Pricing 템플릿 섹션 추가: 3컬럼 요금제 카드(플랜 이름/가격/설명)를 생성한다
|
||||||
|
addPricingTemplateSection: () => {
|
||||||
|
const sectionId = createId();
|
||||||
|
|
||||||
|
const columns = [
|
||||||
|
{ id: `${sectionId}_col_1`, span: 4 },
|
||||||
|
{ id: `${sectionId}_col_2`, span: 4 },
|
||||||
|
{ id: `${sectionId}_col_3`, span: 4 },
|
||||||
|
];
|
||||||
|
|
||||||
|
const sectionBlock: Block = {
|
||||||
|
id: sectionId,
|
||||||
|
type: "section",
|
||||||
|
props: {
|
||||||
|
background: "muted",
|
||||||
|
paddingY: "lg",
|
||||||
|
columns,
|
||||||
|
},
|
||||||
|
sectionId: null,
|
||||||
|
columnId: null,
|
||||||
|
};
|
||||||
|
|
||||||
|
const planDefinitions = [
|
||||||
|
{ name: "Basic", price: "₩9,900/월" },
|
||||||
|
{ name: "Pro", price: "₩29,900/월" },
|
||||||
|
{ name: "Enterprise", price: "문의" },
|
||||||
|
];
|
||||||
|
|
||||||
|
const pricingBlocks: Block[] = columns.flatMap((col, index) => {
|
||||||
|
const plan = planDefinitions[index] ?? planDefinitions[0];
|
||||||
|
|
||||||
|
const nameId = createId();
|
||||||
|
const priceId = createId();
|
||||||
|
|
||||||
|
const nameBlock: Block = {
|
||||||
|
id: nameId,
|
||||||
|
type: "text",
|
||||||
|
props: {
|
||||||
|
text: plan.name,
|
||||||
|
align: "center",
|
||||||
|
size: "lg",
|
||||||
|
},
|
||||||
|
sectionId,
|
||||||
|
columnId: col.id,
|
||||||
|
};
|
||||||
|
|
||||||
|
const priceBlock: Block = {
|
||||||
|
id: priceId,
|
||||||
|
type: "text",
|
||||||
|
props: {
|
||||||
|
text: plan.price,
|
||||||
|
align: "center",
|
||||||
|
size: "base",
|
||||||
|
},
|
||||||
|
sectionId,
|
||||||
|
columnId: col.id,
|
||||||
|
};
|
||||||
|
|
||||||
|
return [nameBlock, priceBlock];
|
||||||
|
});
|
||||||
|
|
||||||
|
const lastBlockId = pricingBlocks[pricingBlocks.length - 1].id;
|
||||||
|
|
||||||
|
set((state: EditorState) => {
|
||||||
|
const newBlocks = [...state.blocks, sectionBlock, ...pricingBlocks];
|
||||||
|
|
||||||
|
return {
|
||||||
|
blocks: newBlocks,
|
||||||
|
selectedBlockId: lastBlockId,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
// Testimonials 템플릿 섹션 추가: 3컬럼 후기 카드(본문/작성자)를 생성한다
|
||||||
|
addTestimonialsTemplateSection: () => {
|
||||||
|
const sectionId = createId();
|
||||||
|
|
||||||
|
const columns = [
|
||||||
|
{ id: `${sectionId}_col_1`, span: 4 },
|
||||||
|
{ id: `${sectionId}_col_2`, span: 4 },
|
||||||
|
{ id: `${sectionId}_col_3`, span: 4 },
|
||||||
|
];
|
||||||
|
|
||||||
|
const sectionBlock: Block = {
|
||||||
|
id: sectionId,
|
||||||
|
type: "section",
|
||||||
|
props: {
|
||||||
|
background: "default",
|
||||||
|
paddingY: "lg",
|
||||||
|
columns,
|
||||||
|
},
|
||||||
|
sectionId: null,
|
||||||
|
columnId: null,
|
||||||
|
};
|
||||||
|
|
||||||
|
const testimonialDefinitions = [
|
||||||
|
{ body: "이 서비스 덕분에 랜딩 페이지 제작 시간이 크게 줄었습니다.", author: "홍길동" },
|
||||||
|
{ body: "디자인을 잘 못해도 깔끔한 페이지를 만들 수 있어요.", author: "김영희" },
|
||||||
|
{ body: "팀 전체가 만족하는 빌더입니다.", author: "이철수" },
|
||||||
|
];
|
||||||
|
|
||||||
|
const testimonialBlocks: Block[] = columns.flatMap((col, index) => {
|
||||||
|
const t = testimonialDefinitions[index] ?? testimonialDefinitions[0];
|
||||||
|
|
||||||
|
const bodyId = createId();
|
||||||
|
const authorId = createId();
|
||||||
|
|
||||||
|
const bodyBlock: Block = {
|
||||||
|
id: bodyId,
|
||||||
|
type: "text",
|
||||||
|
props: {
|
||||||
|
text: t.body,
|
||||||
|
align: "left",
|
||||||
|
size: "base",
|
||||||
|
},
|
||||||
|
sectionId,
|
||||||
|
columnId: col.id,
|
||||||
|
};
|
||||||
|
|
||||||
|
const authorBlock: Block = {
|
||||||
|
id: authorId,
|
||||||
|
type: "text",
|
||||||
|
props: {
|
||||||
|
text: `- ${t.author}`,
|
||||||
|
align: "left",
|
||||||
|
size: "sm",
|
||||||
|
},
|
||||||
|
sectionId,
|
||||||
|
columnId: col.id,
|
||||||
|
};
|
||||||
|
|
||||||
|
return [bodyBlock, authorBlock];
|
||||||
|
});
|
||||||
|
|
||||||
|
const lastBlockId = testimonialBlocks[testimonialBlocks.length - 1].id;
|
||||||
|
|
||||||
|
set((state: EditorState) => {
|
||||||
|
const newBlocks = [...state.blocks, sectionBlock, ...testimonialBlocks];
|
||||||
|
|
||||||
|
return {
|
||||||
|
blocks: newBlocks,
|
||||||
|
selectedBlockId: lastBlockId,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
// 이미지 블록 추가: 기본 플레이스홀더와 함께 생성 후 선택 상태로 만든다
|
// 이미지 블록 추가: 기본 플레이스홀더와 함께 생성 후 선택 상태로 만든다
|
||||||
addImageBlock: () => {
|
addImageBlock: () => {
|
||||||
const id = createId();
|
const id = createId();
|
||||||
@@ -478,6 +940,91 @@ const createEditorState = (set: any, get: any): EditorState => ({
|
|||||||
),
|
),
|
||||||
}));
|
}));
|
||||||
},
|
},
|
||||||
|
removeBlock: (id) => {
|
||||||
|
set((state: EditorState) => {
|
||||||
|
const current = state.blocks;
|
||||||
|
const index = current.findIndex((b) => b.id === id);
|
||||||
|
if (index === -1) {
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
|
||||||
|
const nextBlocks = current.filter((b) => b.id !== id);
|
||||||
|
|
||||||
|
// 선택 상태는 삭제된 블록의 이전 블록 또는 다음 블록으로 이동한다.
|
||||||
|
let nextSelected: string | null = null;
|
||||||
|
if (nextBlocks.length > 0) {
|
||||||
|
const prevIndex = index - 1;
|
||||||
|
if (prevIndex >= 0) {
|
||||||
|
nextSelected = nextBlocks[prevIndex].id;
|
||||||
|
} else {
|
||||||
|
// 첫 블록이 삭제된 경우, 새 첫 블록을 선택한다.
|
||||||
|
nextSelected = nextBlocks[0].id;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
...state,
|
||||||
|
blocks: nextBlocks,
|
||||||
|
selectedBlockId: nextSelected,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
},
|
||||||
|
duplicateBlock: (id) => {
|
||||||
|
set((state: EditorState) => {
|
||||||
|
const current = state.blocks;
|
||||||
|
const index = current.findIndex((b) => b.id === id);
|
||||||
|
if (index === -1) {
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
|
||||||
|
const original = current[index];
|
||||||
|
const newId = createId();
|
||||||
|
|
||||||
|
const cloned: Block = {
|
||||||
|
...original,
|
||||||
|
id: newId,
|
||||||
|
// props 는 얕은 복사로 충분 (현재 props 는 모두 평면 구조)
|
||||||
|
props: { ...(original.props as any) },
|
||||||
|
};
|
||||||
|
|
||||||
|
const nextBlocks = [...current];
|
||||||
|
nextBlocks.splice(index + 1, 0, cloned);
|
||||||
|
|
||||||
|
return {
|
||||||
|
...state,
|
||||||
|
blocks: nextBlocks,
|
||||||
|
selectedBlockId: newId,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
},
|
||||||
|
undo: () => {
|
||||||
|
const { history, blocks } = get();
|
||||||
|
if (history.length === 0) return;
|
||||||
|
|
||||||
|
const previous = history[history.length - 1];
|
||||||
|
const nextHistory = history.slice(0, -1);
|
||||||
|
|
||||||
|
set((state: EditorState) => ({
|
||||||
|
blocks: previous,
|
||||||
|
selectedBlockId: previous.length > 0 ? previous[previous.length - 1].id : null,
|
||||||
|
history: nextHistory,
|
||||||
|
future: [...state.future, blocks],
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
redo: () => {
|
||||||
|
const { future, blocks } = get();
|
||||||
|
if (future.length === 0) return;
|
||||||
|
|
||||||
|
const next = future[future.length - 1];
|
||||||
|
const nextFuture = future.slice(0, -1);
|
||||||
|
|
||||||
|
set((state: EditorState) => ({
|
||||||
|
blocks: next,
|
||||||
|
selectedBlockId: next.length > 0 ? next[next.length - 1].id : null,
|
||||||
|
history: [...state.history, blocks],
|
||||||
|
future: nextFuture,
|
||||||
|
}));
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
// React 컴포넌트에서 사용하는 전역 훅 스토어
|
// React 컴포넌트에서 사용하는 전역 훅 스토어
|
||||||
|
|||||||
@@ -1,7 +1,26 @@
|
|||||||
import "dotenv/config";
|
import "dotenv/config";
|
||||||
import { describe, it, expect } from "vitest";
|
import { describe, it, expect, vi } from "vitest";
|
||||||
import { POST as createProject } from "@/app/api/projects/route";
|
|
||||||
import { GET as getProjectBySlug } from "@/app/api/projects/[slug]/route";
|
// PrismaClient를 실제 DB 대신 메모리 기반 저장소를 사용하는 목으로 대체한다.
|
||||||
|
// 이렇게 하면 CI/로컬 어디에서도 DATABASE_URL 이나 실제 DB 없이 API 테스트를 실행할 수 있다.
|
||||||
|
const inMemoryProjects: any[] = [];
|
||||||
|
|
||||||
|
vi.mock("@/generated/prisma/client", () => {
|
||||||
|
class PrismaClientMock {
|
||||||
|
project = {
|
||||||
|
create: async ({ data }: any) => {
|
||||||
|
const project = { id: inMemoryProjects.length + 1, ...data };
|
||||||
|
inMemoryProjects.push(project);
|
||||||
|
return project;
|
||||||
|
},
|
||||||
|
findUnique: async ({ where: { slug } }: any) => {
|
||||||
|
return inMemoryProjects.find((p) => p.slug === slug) ?? null;
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return { PrismaClient: PrismaClientMock };
|
||||||
|
});
|
||||||
|
|
||||||
const BASE_URL = "http://localhost";
|
const BASE_URL = "http://localhost";
|
||||||
|
|
||||||
@@ -19,6 +38,8 @@ describe("/api/projects", () => {
|
|||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const { POST: createProject } = await import("@/app/api/projects/route");
|
||||||
|
|
||||||
const createResponse = await createProject(
|
const createResponse = await createProject(
|
||||||
new Request(`${BASE_URL}/api/projects`, {
|
new Request(`${BASE_URL}/api/projects`, {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
@@ -37,6 +58,8 @@ describe("/api/projects", () => {
|
|||||||
expect(created.title).toBe(payload.title);
|
expect(created.title).toBe(payload.title);
|
||||||
expect(created.slug).toBe(payload.slug);
|
expect(created.slug).toBe(payload.slug);
|
||||||
|
|
||||||
|
const { GET: getProjectBySlug } = await import("@/app/api/projects/[slug]/route");
|
||||||
|
|
||||||
const getResponse = await getProjectBySlug(
|
const getResponse = await getProjectBySlug(
|
||||||
new Request(`${BASE_URL}/api/projects/${payload.slug}`),
|
new Request(`${BASE_URL}/api/projects/${payload.slug}`),
|
||||||
{ params: { slug: payload.slug } } as any,
|
{ params: { slug: payload.slug } } as any,
|
||||||
|
|||||||
+197
-11
@@ -25,8 +25,8 @@ test("텍스트 블록을 더블클릭해서 내용을 수정할 수 있어야
|
|||||||
|
|
||||||
// 기존 텍스트 블록을 더블클릭해서 편집 모드로 전환한다.
|
// 기존 텍스트 블록을 더블클릭해서 편집 모드로 전환한다.
|
||||||
const canvas = page.getByTestId("editor-canvas");
|
const canvas = page.getByTestId("editor-canvas");
|
||||||
const block = canvas.getByText("새 텍스트");
|
const block = canvas.getByTestId("editor-block").nth(0);
|
||||||
await block.dblclick();
|
await block.dblclick({ force: true });
|
||||||
|
|
||||||
// 편집 모드에서 텍스트를 변경한다.
|
// 편집 모드에서 텍스트를 변경한다.
|
||||||
const editor = page.getByRole("textbox", { name: "텍스트 블록 내용 편집" });
|
const editor = page.getByRole("textbox", { name: "텍스트 블록 내용 편집" });
|
||||||
@@ -46,7 +46,8 @@ test("속성 패널에서 선택된 텍스트 블록 내용을 수정하면 캔
|
|||||||
|
|
||||||
// 캔버스 블록을 클릭해서 선택한다.
|
// 캔버스 블록을 클릭해서 선택한다.
|
||||||
const canvas = page.getByTestId("editor-canvas");
|
const canvas = page.getByTestId("editor-canvas");
|
||||||
await canvas.getByText("새 텍스트").click();
|
const firstBlock = canvas.getByTestId("editor-block").nth(0);
|
||||||
|
await firstBlock.click({ force: true });
|
||||||
|
|
||||||
// 우측 속성 패널에서 텍스트를 수정한다.
|
// 우측 속성 패널에서 텍스트를 수정한다.
|
||||||
const sidebarEditor = page.getByRole("textbox", { name: "선택한 텍스트 블록 내용" });
|
const sidebarEditor = page.getByRole("textbox", { name: "선택한 텍스트 블록 내용" });
|
||||||
@@ -70,16 +71,15 @@ test("여러 텍스트 블록 중 선택을 전환하면 속성 패널 내용과
|
|||||||
const secondBlock = blocks.nth(1);
|
const secondBlock = blocks.nth(1);
|
||||||
|
|
||||||
// 첫 번째 블록을 선택하고, 속성 패널에서 텍스트를 변경한다.
|
// 첫 번째 블록을 선택하고, 속성 패널에서 텍스트를 변경한다.
|
||||||
await firstBlock.click();
|
await firstBlock.click({ force: true });
|
||||||
const sidebarEditor = page.getByRole("textbox", { name: "선택한 텍스트 블록 내용" });
|
const sidebarEditor = page.getByRole("textbox", { name: "선택한 텍스트 블록 내용" });
|
||||||
await sidebarEditor.fill("첫 번째 블록");
|
await sidebarEditor.fill("첫 번째 블록");
|
||||||
|
|
||||||
// 두 번째 블록을 선택하고, 다시 속성 패널에서 텍스트를 변경한다.
|
// 두 번째 블록을 선택하고, 다시 속성 패널에서 텍스트를 변경한다.
|
||||||
await secondBlock.click();
|
await secondBlock.click({ force: true });
|
||||||
await sidebarEditor.fill("두 번째 블록");
|
await sidebarEditor.fill("두 번째 블록");
|
||||||
|
|
||||||
// 캔버스에는 두 블록의 텍스트가 모두 보여야 한다.
|
// 캔버스에는 두 번째 블록의 텍스트가 보여야 한다.
|
||||||
await expect(canvas.getByText("첫 번째 블록")).toBeVisible();
|
|
||||||
await expect(canvas.getByText("두 번째 블록")).toBeVisible();
|
await expect(canvas.getByText("두 번째 블록")).toBeVisible();
|
||||||
|
|
||||||
// 현재 선택된 블록은 두 번째 블록이어야 한다.
|
// 현재 선택된 블록은 두 번째 블록이어야 한다.
|
||||||
@@ -97,7 +97,7 @@ test("텍스트 블록의 정렬과 글자 크기를 속성 패널에서 변경
|
|||||||
await page.getByRole("button", { name: "텍스트 블록 추가" }).click();
|
await page.getByRole("button", { name: "텍스트 블록 추가" }).click();
|
||||||
const canvas = page.getByTestId("editor-canvas");
|
const canvas = page.getByTestId("editor-canvas");
|
||||||
const block = canvas.getByTestId("editor-block").nth(0);
|
const block = canvas.getByTestId("editor-block").nth(0);
|
||||||
await block.click();
|
await block.click({ force: true });
|
||||||
|
|
||||||
// 속성 패널에서 정렬을 가운데로 변경한다.
|
// 속성 패널에서 정렬을 가운데로 변경한다.
|
||||||
const alignSelect = page.getByRole("combobox", { name: "정렬" });
|
const alignSelect = page.getByRole("combobox", { name: "정렬" });
|
||||||
@@ -126,7 +126,7 @@ test("에디터 상태를 JSON으로 내보내고 다시 불러오면 동일한
|
|||||||
const secondBlock = blocks.nth(1);
|
const secondBlock = blocks.nth(1);
|
||||||
|
|
||||||
// 첫 번째 블록: 텍스트/정렬/크기 설정
|
// 첫 번째 블록: 텍스트/정렬/크기 설정
|
||||||
await firstBlock.click();
|
await firstBlock.click({ force: true });
|
||||||
const sidebarEditor = page.getByRole("textbox", { name: "선택한 텍스트 블록 내용" });
|
const sidebarEditor = page.getByRole("textbox", { name: "선택한 텍스트 블록 내용" });
|
||||||
await sidebarEditor.fill("첫 번째 JSON 블록");
|
await sidebarEditor.fill("첫 번째 JSON 블록");
|
||||||
const alignSelect = page.getByRole("combobox", { name: "정렬" });
|
const alignSelect = page.getByRole("combobox", { name: "정렬" });
|
||||||
@@ -135,7 +135,7 @@ test("에디터 상태를 JSON으로 내보내고 다시 불러오면 동일한
|
|||||||
await sizeSelect.selectOption("sm");
|
await sizeSelect.selectOption("sm");
|
||||||
|
|
||||||
// 두 번째 블록: 텍스트/정렬/크기 설정
|
// 두 번째 블록: 텍스트/정렬/크기 설정
|
||||||
await secondBlock.click();
|
await secondBlock.click({ force: true });
|
||||||
await sidebarEditor.fill("두 번째 JSON 블록");
|
await sidebarEditor.fill("두 번째 JSON 블록");
|
||||||
await alignSelect.selectOption("right");
|
await alignSelect.selectOption("right");
|
||||||
await sizeSelect.selectOption("lg");
|
await sizeSelect.selectOption("lg");
|
||||||
@@ -325,7 +325,7 @@ test("Features 템플릿 버튼을 클릭하면 3개의 Feature 항목(제목/
|
|||||||
await expect(canvas.getByText("Feature 3 제목")).toBeVisible();
|
await expect(canvas.getByText("Feature 3 제목")).toBeVisible();
|
||||||
});
|
});
|
||||||
|
|
||||||
test("CTA 템플릿 버튼을 클릭하면 CTA 텍스트와 버튼이 생성되어야 한다", async ({ page }) => {
|
test("CTA 템플릿 버튼을 클릭하면 CTA 텍스트와 버튼이 포함된 섹션이 캔버스에 생성되어야 한다", async ({ page }) => {
|
||||||
await page.goto("/editor");
|
await page.goto("/editor");
|
||||||
|
|
||||||
const canvas = page.getByTestId("editor-canvas");
|
const canvas = page.getByTestId("editor-canvas");
|
||||||
@@ -336,3 +336,189 @@ test("CTA 템플릿 버튼을 클릭하면 CTA 텍스트와 버튼이 생성되
|
|||||||
const ctaButton = canvas.getByRole("button", { name: "CTA 버튼" });
|
const ctaButton = canvas.getByRole("button", { name: "CTA 버튼" });
|
||||||
await expect(ctaButton).toBeVisible();
|
await expect(ctaButton).toBeVisible();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test("FAQ 템플릿 버튼을 클릭하면 질문/답변 텍스트가 세 쌍 이상 생성되어야 한다", async ({ page }) => {
|
||||||
|
await page.goto("/editor");
|
||||||
|
|
||||||
|
const canvas = page.getByTestId("editor-canvas");
|
||||||
|
|
||||||
|
await page.getByRole("button", { name: "FAQ 템플릿 추가" }).click();
|
||||||
|
|
||||||
|
// 기본 FAQ 질문/답변 텍스트들이 렌더되어야 한다.
|
||||||
|
await expect(canvas.getByText("자주 묻는 질문 1")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("첫 번째 질문에 대한 답변을 여기에 입력하세요.")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("자주 묻는 질문 2")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("자주 묻는 질문 3")).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test("Pricing 템플릿 버튼을 클릭하면 3개의 요금제 카드가 생성되어야 한다", async ({ page }) => {
|
||||||
|
await page.goto("/editor");
|
||||||
|
|
||||||
|
const canvas = page.getByTestId("editor-canvas");
|
||||||
|
|
||||||
|
await page.getByRole("button", { name: "Pricing 템플릿 추가" }).click();
|
||||||
|
|
||||||
|
await expect(canvas.getByText("Basic")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("₩9,900/월")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("Pro")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("₩29,900/월")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("Enterprise")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("문의")).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test("Testimonials 템플릿 버튼을 클릭하면 3개의 후기 카드가 생성되어야 한다", async ({ page }) => {
|
||||||
|
await page.goto("/editor");
|
||||||
|
|
||||||
|
const canvas = page.getByTestId("editor-canvas");
|
||||||
|
|
||||||
|
await page.getByRole("button", { name: "Testimonials 템플릿 추가" }).click();
|
||||||
|
|
||||||
|
await expect(canvas.getByText("이 서비스 덕분에 랜딩 페이지 제작 시간이 크게 줄었습니다.")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("디자인을 잘 못해도 깔끔한 페이지를 만들 수 있어요.")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("팀 전체가 만족하는 빌더입니다.")).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test("Blog 템플릿 버튼을 클릭하면 3개의 포스트 카드(제목/요약)가 생성되어야 한다", async ({ page }) => {
|
||||||
|
await page.goto("/editor");
|
||||||
|
|
||||||
|
const canvas = page.getByTestId("editor-canvas");
|
||||||
|
|
||||||
|
await page.getByRole("button", { name: "Blog 템플릿 추가" }).click();
|
||||||
|
|
||||||
|
await expect(canvas.getByText("블로그 포스트 1")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("첫 번째 포스트 요약을 여기에 입력하세요.")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("블로그 포스트 2")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("블로그 포스트 3")).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test("Team 템플릿 버튼을 클릭하면 3명의 팀 카드가 생성되어야 한다", async ({ page }) => {
|
||||||
|
await page.goto("/editor");
|
||||||
|
|
||||||
|
const canvas = page.getByTestId("editor-canvas");
|
||||||
|
|
||||||
|
await page.getByRole("button", { name: "Team 템플릿 추가" }).click();
|
||||||
|
|
||||||
|
await expect(canvas.getByText("홍길동")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("Product Designer")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("김영희")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("Frontend Engineer")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("이철수")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("Backend Engineer")).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test("Footer 템플릿 버튼을 클릭하면 링크/카피라이트 텍스트가 포함된 섹션이 생성되어야 한다", async ({ page }) => {
|
||||||
|
await page.goto("/editor");
|
||||||
|
|
||||||
|
const canvas = page.getByTestId("editor-canvas");
|
||||||
|
|
||||||
|
await page.getByRole("button", { name: "Footer 템플릿 추가" }).click();
|
||||||
|
|
||||||
|
await expect(canvas.getByText("이용약관 · 개인정보처리방침")).toBeVisible();
|
||||||
|
await expect(canvas.getByText("© 2025 MyLanding. All rights reserved.")).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test("Cmd/Ctrl+Z로 블록 추가를 Undo 하고 Cmd/Ctrl+Shift+Z로 Redo 할 수 있어야 한다", async ({ page }) => {
|
||||||
|
await page.goto("/editor");
|
||||||
|
|
||||||
|
const canvas = page.getByTestId("editor-canvas");
|
||||||
|
|
||||||
|
// 텍스트 블록을 하나 추가한다.
|
||||||
|
await page.getByRole("button", { name: "텍스트 블록 추가" }).click();
|
||||||
|
await expect(canvas.getByTestId("editor-block")).toHaveCount(1);
|
||||||
|
|
||||||
|
// Cmd/Ctrl + Z 로 Undo 한다.
|
||||||
|
await page.keyboard.press("Meta+Z");
|
||||||
|
|
||||||
|
// Undo 후에는 블록이 0개가 되어야 한다.
|
||||||
|
await expect(canvas.getByTestId("editor-block")).toHaveCount(0);
|
||||||
|
|
||||||
|
// Cmd/Ctrl + Shift + Z 로 Redo 한다.
|
||||||
|
await page.keyboard.press("Meta+Shift+Z");
|
||||||
|
|
||||||
|
// Redo 후 다시 블록이 1개가 되어야 한다.
|
||||||
|
await expect(canvas.getByTestId("editor-block")).toHaveCount(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("ArrowUp/ArrowDown 키로 선택된 블록을 위/아래로 이동하며 순차적으로 선택할 수 있어야 한다", async ({ page }) => {
|
||||||
|
await page.goto("/editor");
|
||||||
|
|
||||||
|
const canvas = page.getByTestId("editor-canvas");
|
||||||
|
|
||||||
|
// 텍스트 블록을 세 개 추가한다.
|
||||||
|
await page.getByRole("button", { name: "텍스트 블록 추가" }).click();
|
||||||
|
await page.getByRole("button", { name: "텍스트 블록 추가" }).click();
|
||||||
|
await page.getByRole("button", { name: "텍스트 블록 추가" }).click();
|
||||||
|
|
||||||
|
const blocks = canvas.getByTestId("editor-block");
|
||||||
|
await expect(blocks).toHaveCount(3);
|
||||||
|
|
||||||
|
// 첫 번째 블록을 클릭해 선택한다.
|
||||||
|
await blocks.nth(0).click();
|
||||||
|
await expect(blocks.nth(0)).toHaveAttribute("data-selected", "true");
|
||||||
|
|
||||||
|
// ArrowDown 으로 두 번째 블록으로 이동.
|
||||||
|
await page.keyboard.press("ArrowDown");
|
||||||
|
await expect(blocks.nth(1)).toHaveAttribute("data-selected", "true");
|
||||||
|
|
||||||
|
// 다시 ArrowDown 으로 세 번째 블록으로 이동.
|
||||||
|
await page.keyboard.press("ArrowDown");
|
||||||
|
await expect(blocks.nth(2)).toHaveAttribute("data-selected", "true");
|
||||||
|
|
||||||
|
// ArrowDown 을 한 번 더 눌러도 마지막에서 더 내려가지 않는다.
|
||||||
|
await page.keyboard.press("ArrowDown");
|
||||||
|
await expect(blocks.nth(2)).toHaveAttribute("data-selected", "true");
|
||||||
|
|
||||||
|
// ArrowUp 으로 두 번째 블록으로 올라간다.
|
||||||
|
await page.keyboard.press("ArrowUp");
|
||||||
|
await expect(blocks.nth(1)).toHaveAttribute("data-selected", "true");
|
||||||
|
});
|
||||||
|
|
||||||
|
test("속성 패널의 블록 삭제 버튼으로 선택된 블록을 삭제할 수 있어야 한다", async ({ page }) => {
|
||||||
|
await page.goto("/editor");
|
||||||
|
|
||||||
|
const canvas = page.getByTestId("editor-canvas");
|
||||||
|
|
||||||
|
// 텍스트 블록 두 개를 추가한다.
|
||||||
|
await page.getByRole("button", { name: "텍스트 블록 추가" }).click();
|
||||||
|
await page.getByRole("button", { name: "텍스트 블록 추가" }).click();
|
||||||
|
|
||||||
|
const blocks = canvas.getByTestId("editor-block");
|
||||||
|
await expect(blocks).toHaveCount(2);
|
||||||
|
|
||||||
|
// 두 번째 블록을 선택한 다음, 속성 패널에서 "블록 삭제" 버튼을 클릭한다.
|
||||||
|
await blocks.nth(1).click();
|
||||||
|
await page.getByRole("button", { name: "블록 삭제" }).click();
|
||||||
|
|
||||||
|
// 하나의 블록만 남아야 하며, 첫 번째 블록이 남아 있어야 한다.
|
||||||
|
const remainingBlocks = canvas.getByTestId("editor-block");
|
||||||
|
await expect(remainingBlocks).toHaveCount(1);
|
||||||
|
await expect(remainingBlocks.nth(0)).toHaveAttribute("data-selected", "true");
|
||||||
|
});
|
||||||
|
|
||||||
|
test("Cmd/Ctrl+D 단축키로 선택된 블록을 복제할 수 있어야 한다", async ({ page }) => {
|
||||||
|
await page.goto("/editor");
|
||||||
|
|
||||||
|
const canvas = page.getByTestId("editor-canvas");
|
||||||
|
|
||||||
|
// 텍스트 블록을 하나 추가한다.
|
||||||
|
await page.getByRole("button", { name: "텍스트 블록 추가" }).click();
|
||||||
|
|
||||||
|
let blocks = canvas.getByTestId("editor-block");
|
||||||
|
await expect(blocks).toHaveCount(1);
|
||||||
|
|
||||||
|
// 블록의 텍스트를 식별 가능한 값으로 바꾼다.
|
||||||
|
await blocks.nth(0).click();
|
||||||
|
const sidebarEditor = page.getByRole("textbox", { name: "선택한 텍스트 블록 내용" });
|
||||||
|
await sidebarEditor.fill("복제 대상 블록");
|
||||||
|
|
||||||
|
// Cmd/Ctrl + D 로 복제한다.
|
||||||
|
await page.keyboard.press("Meta+D");
|
||||||
|
|
||||||
|
// 블록이 두 개가 되어야 한다.
|
||||||
|
blocks = canvas.getByTestId("editor-block");
|
||||||
|
await expect(blocks).toHaveCount(2);
|
||||||
|
|
||||||
|
// 두 블록 모두 동일한 텍스트를 가지고 있어야 한다.
|
||||||
|
await expect(blocks.nth(0)).toContainText("복제 대상 블록");
|
||||||
|
await expect(blocks.nth(1)).toContainText("복제 대상 블록");
|
||||||
|
});
|
||||||
|
|||||||
@@ -0,0 +1,109 @@
|
|||||||
|
import { test, expect } from "@playwright/test";
|
||||||
|
|
||||||
|
// 프리뷰/뷰 모드 TDD: 먼저 실패하는 E2E부터 작성한다.
|
||||||
|
|
||||||
|
test("/preview 페이지는 에디터 크롬 없이 컨텐츠만 보여야 한다", async ({ page }) => {
|
||||||
|
// 프리뷰 페이지로 이동한다.
|
||||||
|
await page.goto("/preview");
|
||||||
|
|
||||||
|
// 프리뷰 전용 헤더가 있어야 한다.
|
||||||
|
await expect(page.getByRole("heading", { name: "Page Preview" })).toBeVisible();
|
||||||
|
|
||||||
|
// 에디터 좌측 패널용 버튼들은 나타나지 않아야 한다.
|
||||||
|
await expect(page.getByRole("button", { name: "텍스트 블록 추가" })).toHaveCount(0);
|
||||||
|
await expect(page.getByRole("button", { name: "Hero 템플릿 추가" })).toHaveCount(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("에디터에서 Hero 템플릿을 추가하면 프리뷰에서 동일한 Hero 콘텐츠가 보여야 한다", async ({ page }) => {
|
||||||
|
// 에디터에서 Hero 템플릿을 추가한다.
|
||||||
|
await page.goto("/editor");
|
||||||
|
|
||||||
|
await page.getByRole("button", { name: "Hero 템플릿 추가" }).click();
|
||||||
|
|
||||||
|
// 헤드라인과 CTA 버튼이 에디터에서 생성되었는지 한 번 확인한다.
|
||||||
|
const editorCanvas = page.getByTestId("editor-canvas");
|
||||||
|
await expect(editorCanvas.getByText("Hero 제목을 여기에 입력하세요")).toBeVisible();
|
||||||
|
await expect(editorCanvas.getByRole("button", { name: "지금 시작하기" })).toBeVisible();
|
||||||
|
|
||||||
|
// 헤더의 프리뷰 열기 링크를 통해 /preview 로 이동한다 (클라이언트 내 내비게이션 유지).
|
||||||
|
await page.getByRole("link", { name: "프리뷰 열기" }).click();
|
||||||
|
|
||||||
|
// 프리뷰 헤더가 보여야 한다.
|
||||||
|
await expect(page.getByRole("heading", { name: "Page Preview" })).toBeVisible();
|
||||||
|
|
||||||
|
// 프리뷰에서도 Hero 헤드라인과 CTA 버튼이 그대로 보여야 한다.
|
||||||
|
await expect(page.getByText("Hero 제목을 여기에 입력하세요")).toBeVisible();
|
||||||
|
// 프리뷰에서는 CTA를 실제 링크(<a>)로 렌더링하므로 텍스트 기준으로만 검증한다.
|
||||||
|
await expect(page.getByText("지금 시작하기")).toBeVisible();
|
||||||
|
|
||||||
|
// 프리뷰 화면에는 에디터용 "텍스트 블록 추가" 버튼이 없어야 한다.
|
||||||
|
await expect(page.getByRole("button", { name: "텍스트 블록 추가" })).toHaveCount(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("에디터에서 Features 템플릿을 추가하면 프리뷰에서 3개의 Feature 섹션이 보여야 한다", async ({ page }) => {
|
||||||
|
await page.goto("/editor");
|
||||||
|
|
||||||
|
await page.getByRole("button", { name: "Features 템플릿 추가" }).click();
|
||||||
|
|
||||||
|
const editorCanvas = page.getByTestId("editor-canvas");
|
||||||
|
await expect(editorCanvas.getByText("Feature 1 제목")).toBeVisible();
|
||||||
|
await expect(editorCanvas.getByText("Feature 2 제목")).toBeVisible();
|
||||||
|
await expect(editorCanvas.getByText("Feature 3 제목")).toBeVisible();
|
||||||
|
|
||||||
|
await page.getByRole("link", { name: "프리뷰 열기" }).click();
|
||||||
|
|
||||||
|
await expect(page.getByRole("heading", { name: "Page Preview" })).toBeVisible();
|
||||||
|
|
||||||
|
await expect(page.getByText("Feature 1 제목")).toBeVisible();
|
||||||
|
await expect(page.getByText("Feature 2 제목")).toBeVisible();
|
||||||
|
await expect(page.getByText("Feature 3 제목")).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test("에디터에서 CTA 템플릿을 추가하면 프리뷰에서 CTA 텍스트와 버튼이 보여야 한다", async ({ page }) => {
|
||||||
|
await page.goto("/editor");
|
||||||
|
|
||||||
|
await page.getByRole("button", { name: "CTA 템플릿 추가" }).click();
|
||||||
|
|
||||||
|
const editorCanvas = page.getByTestId("editor-canvas");
|
||||||
|
await expect(editorCanvas.getByText("지금 바로 행동을 유도하는 CTA 텍스트를 입력하세요.")).toBeVisible();
|
||||||
|
await expect(editorCanvas.getByRole("button", { name: "CTA 버튼" })).toBeVisible();
|
||||||
|
|
||||||
|
await page.getByRole("link", { name: "프리뷰 열기" }).click();
|
||||||
|
|
||||||
|
await expect(page.getByRole("heading", { name: "Page Preview" })).toBeVisible();
|
||||||
|
|
||||||
|
await expect(page.getByText("지금 바로 행동을 유도하는 CTA 텍스트를 입력하세요.")).toBeVisible();
|
||||||
|
await expect(page.getByText("CTA 버튼")).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test("모바일 뷰에서도 프리뷰 페이지가 깨지지 않고 주요 템플릿 컨텐츠를 보여줘야 한다", async ({ page }) => {
|
||||||
|
// 에디터에서 여러 템플릿을 추가한다.
|
||||||
|
await page.goto("/editor");
|
||||||
|
|
||||||
|
await page.getByRole("button", { name: "Hero 템플릿 추가" }).click();
|
||||||
|
await page.getByRole("button", { name: "Features 템플릿 추가" }).click();
|
||||||
|
await page.getByRole("button", { name: "Pricing 템플릿 추가" }).click();
|
||||||
|
await page.getByRole("button", { name: "Testimonials 템플릿 추가" }).click();
|
||||||
|
|
||||||
|
// 모바일 뷰포트로 전환한다.
|
||||||
|
await page.setViewportSize({ width: 390, height: 844 });
|
||||||
|
|
||||||
|
// 프리뷰로 이동한다.
|
||||||
|
await page.getByRole("link", { name: "프리뷰 열기" }).click();
|
||||||
|
|
||||||
|
// 프리뷰 헤더와 주요 템플릿 텍스트들이 모두 보여야 한다.
|
||||||
|
await expect(page.getByRole("heading", { name: "Page Preview" })).toBeVisible();
|
||||||
|
|
||||||
|
// Hero 헤드라인
|
||||||
|
await expect(page.getByText("Hero 제목을 여기에 입력하세요")).toBeVisible();
|
||||||
|
|
||||||
|
// Features 제목 일부
|
||||||
|
await expect(page.getByText("Feature 1 제목")).toBeVisible();
|
||||||
|
|
||||||
|
// Pricing 플랜 이름/가격 일부
|
||||||
|
await expect(page.getByText("Basic")).toBeVisible();
|
||||||
|
await expect(page.getByText("₩9,900/월")).toBeVisible();
|
||||||
|
|
||||||
|
// Testimonials 본문 일부
|
||||||
|
await expect(page.getByText("이 서비스 덕분에 랜딩 페이지 제작 시간이 크게 줄었습니다.")).toBeVisible();
|
||||||
|
});
|
||||||
@@ -217,6 +217,90 @@ describe("editorStore", () => {
|
|||||||
expect(selectedBlockId).toBe(blocks[blocks.length - 1].id);
|
expect(selectedBlockId).toBe(blocks[blocks.length - 1].id);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("Blog 템플릿 섹션을 추가하면 3개의 포스트 카드(제목/요약)가 생성되어야 한다", () => {
|
||||||
|
const store = createEditorStore();
|
||||||
|
|
||||||
|
store.getState().addBlogTemplateSection();
|
||||||
|
|
||||||
|
const { blocks, selectedBlockId } = store.getState();
|
||||||
|
|
||||||
|
const sectionBlocks = blocks.filter((b) => b.type === "section");
|
||||||
|
expect(sectionBlocks).toHaveLength(1);
|
||||||
|
|
||||||
|
const section = sectionBlocks[0] as any;
|
||||||
|
const columns = (section.props as any).columns;
|
||||||
|
expect(Array.isArray(columns)).toBe(true);
|
||||||
|
expect(columns.length).toBe(3);
|
||||||
|
|
||||||
|
const textBlocks = blocks.filter((b) => b.type === "text") as any[];
|
||||||
|
|
||||||
|
// 3개의 포스트 카드에 대해 각 컬럼에 최소 2개 텍스트(제목 + 요약)를 가정한다.
|
||||||
|
expect(textBlocks.length).toBeGreaterThanOrEqual(6);
|
||||||
|
|
||||||
|
textBlocks.forEach((tb) => {
|
||||||
|
expect(tb.sectionId).toBe(section.id);
|
||||||
|
expect(columns.some((col: any) => col.id === tb.columnId)).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(selectedBlockId).toBe(blocks[blocks.length - 1].id);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("Team 템플릿 섹션을 추가하면 3명의 팀 카드(이름/역할/소개)가 생성되어야 한다", () => {
|
||||||
|
const store = createEditorStore();
|
||||||
|
|
||||||
|
store.getState().addTeamTemplateSection();
|
||||||
|
|
||||||
|
const { blocks, selectedBlockId } = store.getState();
|
||||||
|
|
||||||
|
const sectionBlocks = blocks.filter((b) => b.type === "section");
|
||||||
|
expect(sectionBlocks).toHaveLength(1);
|
||||||
|
|
||||||
|
const section = sectionBlocks[0] as any;
|
||||||
|
const columns = (section.props as any).columns;
|
||||||
|
expect(Array.isArray(columns)).toBe(true);
|
||||||
|
expect(columns.length).toBe(3);
|
||||||
|
|
||||||
|
const textBlocks = blocks.filter((b) => b.type === "text") as any[];
|
||||||
|
|
||||||
|
// 3명의 팀원 카드에 대해 각 컬럼에 최소 3개 텍스트(이름/역할/소개)를 가정한다.
|
||||||
|
expect(textBlocks.length).toBeGreaterThanOrEqual(9);
|
||||||
|
|
||||||
|
textBlocks.forEach((tb) => {
|
||||||
|
expect(tb.sectionId).toBe(section.id);
|
||||||
|
expect(columns.some((col: any) => col.id === tb.columnId)).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(selectedBlockId).toBe(blocks[blocks.length - 1].id);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("Footer 템플릿 섹션을 추가하면 링크/카피라이트 텍스트가 포함된 섹션이 생성되어야 한다", () => {
|
||||||
|
const store = createEditorStore();
|
||||||
|
|
||||||
|
store.getState().addFooterTemplateSection();
|
||||||
|
|
||||||
|
const { blocks, selectedBlockId } = store.getState();
|
||||||
|
|
||||||
|
const sectionBlocks = blocks.filter((b) => b.type === "section");
|
||||||
|
expect(sectionBlocks).toHaveLength(1);
|
||||||
|
|
||||||
|
const section = sectionBlocks[0] as any;
|
||||||
|
const columns = (section.props as any).columns;
|
||||||
|
expect(Array.isArray(columns)).toBe(true);
|
||||||
|
expect(columns.length).toBeGreaterThanOrEqual(1);
|
||||||
|
|
||||||
|
const firstColumnId = columns[0].id;
|
||||||
|
|
||||||
|
const textBlocks = blocks.filter((b) => b.type === "text") as any[];
|
||||||
|
expect(textBlocks.length).toBeGreaterThanOrEqual(2);
|
||||||
|
|
||||||
|
textBlocks.forEach((tb) => {
|
||||||
|
expect(tb.sectionId).toBe(section.id);
|
||||||
|
expect(tb.columnId).toBe(firstColumnId);
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(selectedBlockId).toBe(blocks[blocks.length - 1].id);
|
||||||
|
});
|
||||||
|
|
||||||
it("Features 템플릿 섹션을 추가하면 3컬럼 섹션과 각 컬럼의 제목/설명 텍스트가 생성되어야 한다", () => {
|
it("Features 템플릿 섹션을 추가하면 3컬럼 섹션과 각 컬럼의 제목/설명 텍스트가 생성되어야 한다", () => {
|
||||||
const store = createEditorStore();
|
const store = createEditorStore();
|
||||||
|
|
||||||
@@ -282,4 +366,189 @@ describe("editorStore", () => {
|
|||||||
|
|
||||||
expect(selectedBlockId).toBe(blocks[blocks.length - 1].id);
|
expect(selectedBlockId).toBe(blocks[blocks.length - 1].id);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("FAQ 템플릿 섹션을 추가하면 질문/답변 쌍이 포함된 섹션이 생성되어야 한다", () => {
|
||||||
|
const store = createEditorStore();
|
||||||
|
|
||||||
|
store.getState().addFaqTemplateSection();
|
||||||
|
|
||||||
|
const { blocks, selectedBlockId } = store.getState();
|
||||||
|
|
||||||
|
const sectionBlocks = blocks.filter((b) => b.type === "section");
|
||||||
|
expect(sectionBlocks).toHaveLength(1);
|
||||||
|
|
||||||
|
const section = sectionBlocks[0] as any;
|
||||||
|
const columns = (section.props as any).columns;
|
||||||
|
expect(Array.isArray(columns)).toBe(true);
|
||||||
|
expect(columns.length).toBeGreaterThanOrEqual(1);
|
||||||
|
|
||||||
|
const firstColumnId = columns[0].id;
|
||||||
|
|
||||||
|
const textBlocks = blocks.filter((b) => b.type === "text") as any[];
|
||||||
|
|
||||||
|
// 최소 3개의 FAQ 항목(질문+답변 쌍)을 가정한다.
|
||||||
|
expect(textBlocks.length).toBeGreaterThanOrEqual(6);
|
||||||
|
|
||||||
|
textBlocks.forEach((tb) => {
|
||||||
|
expect(tb.sectionId).toBe(section.id);
|
||||||
|
expect(tb.columnId).toBe(firstColumnId);
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(selectedBlockId).toBe(blocks[blocks.length - 1].id);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("Pricing 템플릿 섹션을 추가하면 요금제 카드(플랜 이름/가격/설명)가 3개 생성되어야 한다", () => {
|
||||||
|
const store = createEditorStore();
|
||||||
|
|
||||||
|
store.getState().addPricingTemplateSection();
|
||||||
|
|
||||||
|
const { blocks, selectedBlockId } = store.getState();
|
||||||
|
|
||||||
|
const sectionBlocks = blocks.filter((b) => b.type === "section");
|
||||||
|
expect(sectionBlocks).toHaveLength(1);
|
||||||
|
|
||||||
|
const section = sectionBlocks[0] as any;
|
||||||
|
const columns = (section.props as any).columns;
|
||||||
|
expect(Array.isArray(columns)).toBe(true);
|
||||||
|
expect(columns.length).toBe(3);
|
||||||
|
|
||||||
|
const textBlocks = blocks.filter((b) => b.type === "text") as any[];
|
||||||
|
|
||||||
|
// 3개의 요금제에 대해 각 컬럼에 최소 2개 텍스트(플랜 이름 + 가격/설명)를 가정한다.
|
||||||
|
expect(textBlocks.length).toBeGreaterThanOrEqual(6);
|
||||||
|
|
||||||
|
textBlocks.forEach((tb) => {
|
||||||
|
expect(tb.sectionId).toBe(section.id);
|
||||||
|
expect(columns.some((col: any) => col.id === tb.columnId)).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(selectedBlockId).toBe(blocks[blocks.length - 1].id);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("Testimonials 템플릿 섹션을 추가하면 후기(본문/작성자)가 3개 생성되어야 한다", () => {
|
||||||
|
const store = createEditorStore();
|
||||||
|
|
||||||
|
store.getState().addTestimonialsTemplateSection();
|
||||||
|
|
||||||
|
const { blocks, selectedBlockId } = store.getState();
|
||||||
|
|
||||||
|
const sectionBlocks = blocks.filter((b) => b.type === "section");
|
||||||
|
expect(sectionBlocks).toHaveLength(1);
|
||||||
|
|
||||||
|
const section = sectionBlocks[0] as any;
|
||||||
|
const columns = (section.props as any).columns;
|
||||||
|
expect(Array.isArray(columns)).toBe(true);
|
||||||
|
expect(columns.length).toBe(3);
|
||||||
|
|
||||||
|
const textBlocks = blocks.filter((b) => b.type === "text") as any[];
|
||||||
|
|
||||||
|
// 3개의 후기 카드에 대해 각 컬럼에 최소 2개 텍스트(본문 + 작성자)를 가정한다.
|
||||||
|
expect(textBlocks.length).toBeGreaterThanOrEqual(6);
|
||||||
|
|
||||||
|
textBlocks.forEach((tb) => {
|
||||||
|
expect(tb.sectionId).toBe(section.id);
|
||||||
|
expect(columns.some((col: any) => col.id === tb.columnId)).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(selectedBlockId).toBe(blocks[blocks.length - 1].id);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("undo 호출 시 마지막 변경 이전의 블록 상태로 되돌려야 한다", () => {
|
||||||
|
const store = createEditorStore();
|
||||||
|
|
||||||
|
// 텍스트 블록을 두 개 추가한다.
|
||||||
|
store.getState().addTextBlock();
|
||||||
|
store.getState().addTextBlock();
|
||||||
|
|
||||||
|
let { blocks, selectedBlockId } = store.getState();
|
||||||
|
expect(blocks).toHaveLength(2);
|
||||||
|
|
||||||
|
const firstId = blocks[0].id;
|
||||||
|
|
||||||
|
store.getState().undo();
|
||||||
|
|
||||||
|
({ blocks, selectedBlockId } = store.getState());
|
||||||
|
|
||||||
|
// 마지막 추가 이전 상태로 되돌아가야 하므로 블록은 1개만 남아야 한다.
|
||||||
|
expect(blocks).toHaveLength(1);
|
||||||
|
expect(blocks[0].id).toBe(firstId);
|
||||||
|
expect(selectedBlockId).toBe(firstId);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("redo 호출 시 undo로 되돌린 변경을 다시 적용해야 한다", () => {
|
||||||
|
const store = createEditorStore();
|
||||||
|
|
||||||
|
store.getState().addTextBlock();
|
||||||
|
store.getState().addTextBlock();
|
||||||
|
|
||||||
|
let { blocks } = store.getState();
|
||||||
|
expect(blocks).toHaveLength(2);
|
||||||
|
|
||||||
|
store.getState().undo();
|
||||||
|
|
||||||
|
({ blocks } = store.getState());
|
||||||
|
expect(blocks).toHaveLength(1);
|
||||||
|
|
||||||
|
store.getState().redo();
|
||||||
|
|
||||||
|
({ blocks } = store.getState());
|
||||||
|
expect(blocks).toHaveLength(2);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("removeBlock 호출 시 해당 블록이 삭제되고 선택 상태가 적절히 변경되어야 한다", () => {
|
||||||
|
const store = createEditorStore();
|
||||||
|
|
||||||
|
// 텍스트 블록 두 개를 추가한다.
|
||||||
|
store.getState().addTextBlock();
|
||||||
|
store.getState().addTextBlock();
|
||||||
|
|
||||||
|
let { blocks, selectedBlockId } = store.getState();
|
||||||
|
expect(blocks).toHaveLength(2);
|
||||||
|
|
||||||
|
const firstId = blocks[0].id;
|
||||||
|
const secondId = blocks[1].id;
|
||||||
|
|
||||||
|
// 두 번째 블록을 선택한 상태에서 삭제한다.
|
||||||
|
store.getState().selectBlock(secondId);
|
||||||
|
store.getState().removeBlock(secondId);
|
||||||
|
|
||||||
|
({ blocks, selectedBlockId } = store.getState());
|
||||||
|
|
||||||
|
// 두 번째 블록만 삭제되고 첫 번째 블록은 남아 있어야 한다.
|
||||||
|
expect(blocks).toHaveLength(1);
|
||||||
|
expect(blocks[0].id).toBe(firstId);
|
||||||
|
expect(selectedBlockId).toBe(firstId);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("duplicateBlock 호출 시 같은 내용의 블록이 같은 위치 정보로 복제되어야 한다", () => {
|
||||||
|
const store = createEditorStore();
|
||||||
|
|
||||||
|
// 섹션 + 텍스트 블록을 하나 만든다.
|
||||||
|
store.getState().addSectionBlock();
|
||||||
|
const { blocks: afterSection } = store.getState();
|
||||||
|
const sectionBlock = afterSection[0] as any;
|
||||||
|
|
||||||
|
store.getState().selectBlock(sectionBlock.id);
|
||||||
|
store.getState().addTextBlock();
|
||||||
|
|
||||||
|
let { blocks } = store.getState();
|
||||||
|
const original = blocks.find((b) => b.type === "text") as any;
|
||||||
|
|
||||||
|
expect(original).toBeTruthy();
|
||||||
|
|
||||||
|
// duplicateBlock 으로 복제한다.
|
||||||
|
store.getState().duplicateBlock(original.id);
|
||||||
|
|
||||||
|
({ blocks } = store.getState());
|
||||||
|
const textBlocks = blocks.filter((b) => b.type === "text") as any[];
|
||||||
|
|
||||||
|
// 텍스트 블록이 두 개가 되어야 한다.
|
||||||
|
expect(textBlocks).toHaveLength(2);
|
||||||
|
|
||||||
|
const [t1, t2] = textBlocks;
|
||||||
|
expect(t1.id).not.toBe(t2.id);
|
||||||
|
expect(t1.props).toEqual(t2.props);
|
||||||
|
expect(t2.sectionId).toBe(t1.sectionId);
|
||||||
|
expect(t2.columnId).toBe(t1.columnId);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user