From bcd462d6e60871b86008e072f4b914138fc5c328 Mon Sep 17 00:00:00 2001
From: joonhoekim <26rote@gmail.com>
Date: Mon, 11 Aug 2025 09:34:40 +0000
Subject: (김준회) 리치텍스트에디터 (결재템플릿을 위한 공통컴포넌트),
command-menu 에러 수정, 결재 템플릿 관리, 결재선 관리, ECC RFQ+PR Item 수신시
비즈니스테이블(ProcurementRFQ) 데이터 적재, WSDL 오류 수정
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
components/rich-text-editor/HistoryMenu.tsx | 43 +++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
create mode 100644 components/rich-text-editor/HistoryMenu.tsx
(limited to 'components/rich-text-editor/HistoryMenu.tsx')
diff --git a/components/rich-text-editor/HistoryMenu.tsx b/components/rich-text-editor/HistoryMenu.tsx
new file mode 100644
index 00000000..e5bb819c
--- /dev/null
+++ b/components/rich-text-editor/HistoryMenu.tsx
@@ -0,0 +1,43 @@
+'use client'
+
+import React from 'react'
+import type { Editor } from '@tiptap/react'
+import { Toggle } from '@/components/ui/toggle'
+import { Tooltip, TooltipContent, TooltipTrigger } from '@/components/ui/tooltip'
+import { Undo, Redo } from 'lucide-react'
+
+interface HistoryMenuProps {
+ editor: Editor | null
+ disabled?: boolean
+ executeCommand: (command: () => void) => void
+}
+
+export function HistoryMenu({ editor, disabled, executeCommand }: HistoryMenuProps) {
+ if (!editor) return null
+ return (
+ <>
+
+
+ executeCommand(() => editor.chain().focus().undo().run())} disabled={!editor.can().undo() || disabled}>
+
+
+
+
+ 실행 취소 (Ctrl+Z)
+
+
+
+
+ executeCommand(() => editor.chain().focus().redo().run())} disabled={!editor.can().redo() || disabled}>
+
+
+
+
+ 다시 실행 (Ctrl+Y)
+
+
+ >
+ )
+}
+
+
--
cgit v1.2.3