레이아웃 시스템: 섹션/컬럼 및 컬럼 간 DnD 구현

This commit is contained in:
2025-11-18 08:16:42 +09:00
parent d21252eb1f
commit dc55449efb
4 changed files with 399 additions and 25 deletions
+172 -25
View File
@@ -1,6 +1,6 @@
"use client";
import type { CSSProperties } from "react";
import type { CSSProperties, ReactNode } from "react";
import { useState } from "react";
import {
DndContext,
@@ -9,6 +9,7 @@ import {
useSensor,
useSensors,
DragEndEvent,
useDroppable,
} from "@dnd-kit/core";
import {
SortableContext,
@@ -36,6 +37,7 @@ export default function EditorPage() {
const selectBlock = useEditorStore((state) => state.selectBlock);
const replaceBlocks = useEditorStore((state) => state.replaceBlocks);
const reorderBlocks = useEditorStore((state) => state.reorderBlocks);
const moveBlock = useEditorStore((state) => state.moveBlock);
const [editingBlockId, setEditingBlockId] = useState<string | null>(null);
const [editingText, setEditingText] = useState("");
@@ -156,9 +158,64 @@ export default function EditorPage() {
const handleDragEnd = (event: DragEndEvent) => {
const { active, over } = event;
if (!over || active.id === over.id) return;
reorderBlocks(String(active.id), String(over.id));
const activeId = String(active.id);
const overId = String(over.id);
// 컬럼 droppable에 드롭한 경우: 해당 섹션/컬럼으로 이동만 수행한다.
if (overId.startsWith("column:")) {
const [, sectionId, columnId] = overId.split(":");
moveBlock(activeId, sectionId || null, columnId || null);
return;
}
const activeBlock = blocks.find((b) => b.id === activeId);
const overBlock = blocks.find((b) => b.id === overId);
if (!activeBlock || !overBlock) {
reorderBlocks(activeId, overId);
return;
}
const activeSectionId = activeBlock.sectionId ?? null;
const activeColumnId = activeBlock.columnId ?? null;
const overSectionId = overBlock.sectionId ?? null;
const overColumnId = overBlock.columnId ?? null;
// 같은 섹션/컬럼 내에서는 순서만 변경한다.
if (activeSectionId === overSectionId && activeColumnId === overColumnId) {
reorderBlocks(activeId, overId);
return;
}
// 다른 컬럼/섹션으로 이동: 위치를 변경한 뒤, 블록 기준 드롭이면 순서 재배치까지 진행한다.
moveBlock(activeId, overSectionId, overColumnId);
reorderBlocks(activeId, overId);
};
const rootBlocks = blocks.filter((block) => !block.sectionId);
const renderBlocks = (targetBlocks: Block[]) =>
targetBlocks.map((block) => {
const isSelected = block.id === selectedBlockId;
const isEditing = block.id === editingBlockId;
return (
<SortableEditorBlock
key={block.id}
block={block}
isSelected={isSelected}
isEditing={isEditing}
editingText={editingText}
startEditing={startEditing}
commitEditing={commitEditing}
setEditingText={setEditingText}
selectBlock={selectBlock}
allBlocks={blocks}
renderBlocks={renderBlocks}
/>
);
});
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">
@@ -218,24 +275,7 @@ export default function EditorPage() {
items={blocks.map((b) => b.id)}
strategy={verticalListSortingStrategy}
>
{blocks.map((block) => {
const isSelected = block.id === selectedBlockId;
const isEditing = block.id === editingBlockId;
return (
<SortableEditorBlock
key={block.id}
block={block}
isSelected={isSelected}
isEditing={isEditing}
editingText={editingText}
startEditing={startEditing}
commitEditing={commitEditing}
setEditingText={setEditingText}
selectBlock={selectBlock}
/>
);
})}
{renderBlocks(rootBlocks)}
</SortableContext>
</DndContext>
)}
@@ -350,6 +390,55 @@ export default function EditorPage() {
return (
<>
<div className="space-y-1">
<label className="flex flex-col gap-1 text-xs text-slate-400">
<span></span>
<select
className="rounded border border-slate-700 bg-slate-900 px-2 py-1 text-xs outline-none focus:border-sky-500"
aria-label="섹션 레이아웃"
value={(() => {
const cols = sectionProps.columns ?? [];
if (cols.length === 1 && cols[0].span === 12) return "1col";
if (cols.length === 2 && cols[0].span === 6 && cols[1].span === 6) return "2col";
if (
cols.length === 3 &&
cols[0].span === 4 &&
cols[1].span === 4 &&
cols[2].span === 4
)
return "3col";
return "custom";
})()}
onChange={(e) => {
const preset = e.target.value;
if (preset === "custom") return;
const cols =
preset === "1col"
? [{ id: `${selectedBlock.id}_col_1`, span: 12 }]
: preset === "2col"
? [
{ id: `${selectedBlock.id}_col_1`, span: 6 },
{ id: `${selectedBlock.id}_col_2`, span: 6 },
]
: [
{ id: `${selectedBlock.id}_col_1`, span: 4 },
{ id: `${selectedBlock.id}_col_2`, span: 4 },
{ id: `${selectedBlock.id}_col_3`, span: 4 },
];
updateBlock(selectedBlockId, { columns: cols } as any);
}}
>
<option value="1col">1 (100%)</option>
<option value="2col">2 (50 / 50)</option>
<option value="3col">3 (33 / 33 / 33)</option>
<option value="custom" disabled>
</option>
</select>
</label>
</div>
<div className="space-y-1">
<label className="flex flex-col gap-1 text-xs text-slate-400">
<span></span>
@@ -548,6 +637,8 @@ interface SortableEditorBlockProps {
commitEditing: () => void;
setEditingText: (value: string) => void;
selectBlock: (id: string) => void;
allBlocks: Block[];
renderBlocks: (targetBlocks: Block[]) => ReactNode;
}
function SortableEditorBlock({
@@ -559,6 +650,8 @@ function SortableEditorBlock({
commitEditing,
setEditingText,
selectBlock,
allBlocks,
renderBlocks,
}: SortableEditorBlockProps) {
const { attributes, listeners, setNodeRef, transform, transition } = useSortable({
id: block.id,
@@ -703,13 +796,45 @@ function SortableEditorBlock({
? "py-10"
: "py-6";
const columns = sectionProps.columns && sectionProps.columns.length > 0
? sectionProps.columns
: [{ id: `${block.id}_col_fallback`, span: 12 }];
return (
<div
className={`w-full ${bgClass} ${pyClass} rounded border border-dashed border-slate-700 flex items-center justify-center`}
<div className={`w-full ${bgClass} ${pyClass} rounded border border-dashed border-slate-700`}
>
<span className="text-[11px] text-slate-400 px-2 text-center">
. ( / .)
</span>
<div className="flex gap-3">
{columns.map((col) => {
const basis = `${(col.span / 12) * 100}%`;
const columnBlocks = allBlocks.filter(
(b) => b.sectionId === block.id && b.columnId === col.id,
);
const droppableId = `column:${block.id}:${col.id}`;
return (
<ColumnDroppable
key={col.id}
id={droppableId}
sectionId={block.id}
columnId={col.id}
>
<div
className="border border-slate-800/80 bg-slate-950/40 rounded flex flex-col gap-2 items-stretch justify-start px-2 py-2"
style={{ flexBasis: basis }}
>
{columnBlocks.length === 0 ? (
<span className="text-[11px] text-slate-500 px-2 text-center">
(span {col.span}/12)
</span>
) : (
<div className="flex flex-col gap-2">
{renderBlocks(columnBlocks)}
</div>
)}
</div>
</ColumnDroppable>
);
})}
</div>
</div>
);
})()}
@@ -718,3 +843,25 @@ function SortableEditorBlock({
</div>
);
}
interface ColumnDroppableProps {
id: string;
sectionId: string;
columnId: string;
children: ReactNode;
}
function ColumnDroppable({ id, sectionId, columnId, children }: ColumnDroppableProps) {
const { setNodeRef } = useDroppable({ id });
return (
<div
ref={setNodeRef}
data-section-id={sectionId}
data-column-id={columnId}
className="flex-1"
>
{children}
</div>
);
}
+92
View File
@@ -30,6 +30,11 @@ export interface ImageBlockProps {
export interface SectionBlockProps {
background: "default" | "muted" | "primary";
paddingY: "sm" | "md" | "lg";
// 레이아웃 컬럼 정의 (12 그리드 기준 span)
columns: Array<{
id: string;
span: number;
}>;
}
// 공통 블록 모델
@@ -37,6 +42,9 @@ export interface Block {
id: string;
type: BlockType;
props: TextBlockProps | ButtonBlockProps | ImageBlockProps | SectionBlockProps;
// 레이아웃 트리 상 위치 정보 (루트 텍스트/버튼/이미지 블록은 null)
sectionId?: string | null;
columnId?: string | null;
}
// 에디터 상태 인터페이스
@@ -51,6 +59,7 @@ export interface EditorState {
selectBlock: (id: string | null) => void;
replaceBlocks: (blocks: Block[]) => void;
reorderBlocks: (activeId: string, overId: string) => void;
moveBlock: (id: string, sectionId: string | null, columnId: string | null) => void;
}
// 간단한 ID 생성기 (추후 uuid 라이브러리로 교체 가능)
@@ -66,6 +75,25 @@ const createEditorState = (set: any, get: any): EditorState => ({
// 텍스트 블록 추가: 기본 텍스트와 함께 생성 후 선택 상태로 만든다
addTextBlock: () => {
const id = createId();
const { selectedBlockId, blocks } = get();
let sectionId: string | null = null;
let columnId: string | null = null;
if (selectedBlockId) {
const target = blocks.find((b: Block) => b.id === selectedBlockId);
if (target) {
if (target.type === "section") {
const sProps = target.props as SectionBlockProps;
sectionId = target.id;
columnId = sProps.columns?.[0]?.id ?? null;
} else {
sectionId = (target as any).sectionId ?? null;
columnId = (target as any).columnId ?? null;
}
}
}
const newBlock: Block = {
id,
type: "text",
@@ -74,6 +102,8 @@ const createEditorState = (set: any, get: any): EditorState => ({
align: "left",
size: "base",
},
sectionId,
columnId,
};
set((state: EditorState) => ({
@@ -85,6 +115,25 @@ const createEditorState = (set: any, get: any): EditorState => ({
// 이미지 블록 추가: 기본 플레이스홀더와 함께 생성 후 선택 상태로 만든다
addImageBlock: () => {
const id = createId();
const { selectedBlockId, blocks } = get();
let sectionId: string | null = null;
let columnId: string | null = null;
if (selectedBlockId) {
const target = blocks.find((b: Block) => b.id === selectedBlockId);
if (target) {
if (target.type === "section") {
const sProps = target.props as SectionBlockProps;
sectionId = target.id;
columnId = sProps.columns?.[0]?.id ?? null;
} else {
sectionId = (target as any).sectionId ?? null;
columnId = (target as any).columnId ?? null;
}
}
}
const newBlock: Block = {
id,
type: "image",
@@ -92,6 +141,8 @@ const createEditorState = (set: any, get: any): EditorState => ({
src: "",
alt: "이미지 설명",
},
sectionId,
columnId,
};
set((state: EditorState) => ({
@@ -109,7 +160,15 @@ const createEditorState = (set: any, get: any): EditorState => ({
props: {
background: "default",
paddingY: "md",
columns: [
{
id: `${id}_col_1`,
span: 12,
},
],
},
sectionId: null,
columnId: null,
};
set((state: EditorState) => ({
@@ -121,6 +180,24 @@ const createEditorState = (set: any, get: any): EditorState => ({
// 버튼 블록 추가: 기본 라벨/링크와 함께 생성 후 선택 상태로 만든다
addButtonBlock: () => {
const id = createId();
const { selectedBlockId, blocks } = get();
let sectionId: string | null = null;
let columnId: string | null = null;
if (selectedBlockId) {
const target = blocks.find((b: Block) => b.id === selectedBlockId);
if (target) {
if (target.type === "section") {
const sProps = target.props as SectionBlockProps;
sectionId = target.id;
columnId = sProps.columns?.[0]?.id ?? null;
} else {
sectionId = (target as any).sectionId ?? null;
columnId = (target as any).columnId ?? null;
}
}
}
const newBlock: Block = {
id,
type: "button",
@@ -128,6 +205,8 @@ const createEditorState = (set: any, get: any): EditorState => ({
label: "버튼",
href: "#",
},
sectionId,
columnId,
};
set((state: EditorState) => ({
@@ -185,6 +264,19 @@ const createEditorState = (set: any, get: any): EditorState => ({
return { blocks: updated };
});
},
moveBlock: (id, sectionId, columnId) => {
set((state: EditorState) => ({
blocks: state.blocks.map((block: Block) =>
block.id === id
? {
...block,
sectionId,
columnId,
}
: block,
),
}));
},
});
// React 컴포넌트에서 사용하는 전역 훅 스토어