mirror change from https://github.com/binhkid2/FullStack-Blog-Nestjs-Nextjs-Postgres
This commit is contained in:
243
frontend/components/dashboard/tiptap-editor.tsx
Normal file
243
frontend/components/dashboard/tiptap-editor.tsx
Normal file
@@ -0,0 +1,243 @@
|
||||
"use client";
|
||||
|
||||
import { useEditor, EditorContent } from "@tiptap/react";
|
||||
import StarterKit from "@tiptap/starter-kit";
|
||||
import Placeholder from "@tiptap/extension-placeholder";
|
||||
import Underline from "@tiptap/extension-underline";
|
||||
import Highlight from "@tiptap/extension-highlight";
|
||||
import TextAlign from "@tiptap/extension-text-align";
|
||||
import Link from "@tiptap/extension-link";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Separator } from "@/components/ui/separator";
|
||||
import {
|
||||
Bold,
|
||||
Italic,
|
||||
UnderlineIcon,
|
||||
Strikethrough,
|
||||
Highlighter,
|
||||
Heading1,
|
||||
Heading2,
|
||||
Heading3,
|
||||
List,
|
||||
ListOrdered,
|
||||
Quote,
|
||||
Code,
|
||||
Code2,
|
||||
AlignLeft,
|
||||
AlignCenter,
|
||||
AlignRight,
|
||||
Minus,
|
||||
Undo2,
|
||||
Redo2,
|
||||
Link2,
|
||||
Link2Off,
|
||||
} from "lucide-react";
|
||||
import { useCallback, useEffect } from "react";
|
||||
|
||||
interface Props {
|
||||
value?: string;
|
||||
onChange: (html: string) => void;
|
||||
placeholder?: string;
|
||||
minHeight?: string;
|
||||
}
|
||||
|
||||
export function TiptapEditor({
|
||||
value = "",
|
||||
onChange,
|
||||
placeholder = "Write your post content here…",
|
||||
minHeight = "320px",
|
||||
}: Props) {
|
||||
const editor = useEditor({
|
||||
immediatelyRender: false,
|
||||
extensions: [
|
||||
StarterKit.configure({
|
||||
bulletList: { keepMarks: true, keepAttributes: false },
|
||||
orderedList: { keepMarks: true, keepAttributes: false },
|
||||
}),
|
||||
Underline,
|
||||
Highlight.configure({ multicolor: false }),
|
||||
TextAlign.configure({ types: ["heading", "paragraph"] }),
|
||||
Placeholder.configure({ placeholder }),
|
||||
Link.configure({
|
||||
openOnClick: false,
|
||||
HTMLAttributes: { class: "text-primary underline underline-offset-2" },
|
||||
}),
|
||||
],
|
||||
content: value,
|
||||
onUpdate: ({ editor }) => {
|
||||
onChange(editor.getHTML());
|
||||
},
|
||||
});
|
||||
|
||||
// Sync external value changes (e.g. when edit form opens with existing content)
|
||||
useEffect(() => {
|
||||
if (!editor) return;
|
||||
const current = editor.getHTML();
|
||||
if (value !== current) {
|
||||
editor.commands.setContent(value || "", { emitUpdate: false });
|
||||
}
|
||||
}, [value, editor]);
|
||||
|
||||
const setLink = useCallback(() => {
|
||||
if (!editor) return;
|
||||
const prev = editor.getAttributes("link").href as string | undefined;
|
||||
const url = window.prompt("URL", prev ?? "https://");
|
||||
if (url === null) return; // cancelled
|
||||
if (url === "") {
|
||||
editor.chain().focus().extendMarkRange("link").unsetLink().run();
|
||||
} else {
|
||||
editor.chain().focus().extendMarkRange("link").setLink({ href: url }).run();
|
||||
}
|
||||
}, [editor]);
|
||||
|
||||
if (!editor) return null;
|
||||
|
||||
const btn = (active: boolean) =>
|
||||
`h-7 w-7 p-0 ${active ? "bg-muted text-foreground" : "text-muted-foreground hover:text-foreground hover:bg-muted/60"}`;
|
||||
|
||||
return (
|
||||
<div className="rounded-xl border bg-background overflow-hidden">
|
||||
{/* ── Toolbar ─────────────────────────────────────────────────────────── */}
|
||||
<div className="flex flex-wrap items-center gap-0.5 border-b bg-muted/30 p-1.5">
|
||||
{/* History */}
|
||||
<Button type="button" variant="ghost" size="sm" className={btn(false)}
|
||||
onClick={() => editor.chain().focus().undo().run()}
|
||||
disabled={!editor.can().undo()}>
|
||||
<Undo2 className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
<Button type="button" variant="ghost" size="sm" className={btn(false)}
|
||||
onClick={() => editor.chain().focus().redo().run()}
|
||||
disabled={!editor.can().redo()}>
|
||||
<Redo2 className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
|
||||
<Separator orientation="vertical" className="mx-1 h-5" />
|
||||
|
||||
{/* Headings */}
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive("heading", { level: 1 }))}
|
||||
onClick={() => editor.chain().focus().toggleHeading({ level: 1 }).run()}>
|
||||
<Heading1 className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive("heading", { level: 2 }))}
|
||||
onClick={() => editor.chain().focus().toggleHeading({ level: 2 }).run()}>
|
||||
<Heading2 className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive("heading", { level: 3 }))}
|
||||
onClick={() => editor.chain().focus().toggleHeading({ level: 3 }).run()}>
|
||||
<Heading3 className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
|
||||
<Separator orientation="vertical" className="mx-1 h-5" />
|
||||
|
||||
{/* Inline marks */}
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive("bold"))}
|
||||
onClick={() => editor.chain().focus().toggleBold().run()}>
|
||||
<Bold className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive("italic"))}
|
||||
onClick={() => editor.chain().focus().toggleItalic().run()}>
|
||||
<Italic className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive("underline"))}
|
||||
onClick={() => editor.chain().focus().toggleUnderline().run()}>
|
||||
<UnderlineIcon className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive("strike"))}
|
||||
onClick={() => editor.chain().focus().toggleStrike().run()}>
|
||||
<Strikethrough className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive("highlight"))}
|
||||
onClick={() => editor.chain().focus().toggleHighlight().run()}>
|
||||
<Highlighter className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive("code"))}
|
||||
onClick={() => editor.chain().focus().toggleCode().run()}>
|
||||
<Code className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
|
||||
<Separator orientation="vertical" className="mx-1 h-5" />
|
||||
|
||||
{/* Link */}
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive("link"))}
|
||||
onClick={setLink}>
|
||||
<Link2 className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
{editor.isActive("link") && (
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(false)}
|
||||
onClick={() => editor.chain().focus().unsetLink().run()}>
|
||||
<Link2Off className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
)}
|
||||
|
||||
<Separator orientation="vertical" className="mx-1 h-5" />
|
||||
|
||||
{/* Lists */}
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive("bulletList"))}
|
||||
onClick={() => editor.chain().focus().toggleBulletList().run()}>
|
||||
<List className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive("orderedList"))}
|
||||
onClick={() => editor.chain().focus().toggleOrderedList().run()}>
|
||||
<ListOrdered className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive("blockquote"))}
|
||||
onClick={() => editor.chain().focus().toggleBlockquote().run()}>
|
||||
<Quote className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive("codeBlock"))}
|
||||
onClick={() => editor.chain().focus().toggleCodeBlock().run()}>
|
||||
<Code2 className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
|
||||
<Separator orientation="vertical" className="mx-1 h-5" />
|
||||
|
||||
{/* Alignment */}
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive({ textAlign: "left" }))}
|
||||
onClick={() => editor.chain().focus().setTextAlign("left").run()}>
|
||||
<AlignLeft className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive({ textAlign: "center" }))}
|
||||
onClick={() => editor.chain().focus().setTextAlign("center").run()}>
|
||||
<AlignCenter className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
<Button type="button" variant="ghost" size="sm"
|
||||
className={btn(editor.isActive({ textAlign: "right" }))}
|
||||
onClick={() => editor.chain().focus().setTextAlign("right").run()}>
|
||||
<AlignRight className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
|
||||
<Separator orientation="vertical" className="mx-1 h-5" />
|
||||
|
||||
{/* Divider */}
|
||||
<Button type="button" variant="ghost" size="sm" className={btn(false)}
|
||||
onClick={() => editor.chain().focus().setHorizontalRule().run()}>
|
||||
<Minus className="h-3.5 w-3.5" />
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
{/* ── Editor area ─────────────────────────────────────────────────────── */}
|
||||
<EditorContent
|
||||
editor={editor}
|
||||
className="tiptap-content px-4 py-3 text-sm focus-within:outline-none"
|
||||
style={{ minHeight }}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user