Files
dify/web/app/components/workflow/note-node/hooks.ts
Stephen Zhou a84c2d36a3 style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

44 lines
1.6 KiB
TypeScript

import type { EditorState } from 'lexical'
import type { NoteTheme } from './types'
import { useCallback } from 'react'
import { useNodeDataUpdate, useWorkflowHistory, WorkflowHistoryEvent } from '../hooks'
import { useSetWorkflowNoteShowAuthor } from '../persistence/local-storage-options'
export const useNote = (id: string) => {
const { handleNodeDataUpdateWithSyncDraft } = useNodeDataUpdate()
const { saveStateToHistory } = useWorkflowHistory()
const setShowAuthorStorage = useSetWorkflowNoteShowAuthor()
const handleThemeChange = useCallback(
(theme: NoteTheme) => {
handleNodeDataUpdateWithSyncDraft({ id, data: { theme } })
saveStateToHistory(WorkflowHistoryEvent.NoteChange, { nodeId: id })
},
[handleNodeDataUpdateWithSyncDraft, id, saveStateToHistory],
)
const handleEditorChange = useCallback(
(editorState: EditorState) => {
if (!editorState?.isEmpty())
handleNodeDataUpdateWithSyncDraft({ id, data: { text: JSON.stringify(editorState) } })
else handleNodeDataUpdateWithSyncDraft({ id, data: { text: '' } })
},
[handleNodeDataUpdateWithSyncDraft, id],
)
const handleShowAuthorChange = useCallback(
(showAuthor: boolean) => {
setShowAuthorStorage(String(showAuthor))
handleNodeDataUpdateWithSyncDraft({ id, data: { showAuthor } })
saveStateToHistory(WorkflowHistoryEvent.NoteChange, { nodeId: id })
},
[handleNodeDataUpdateWithSyncDraft, id, saveStateToHistory, setShowAuthorStorage],
)
return {
handleThemeChange,
handleEditorChange,
handleShowAuthorChange,
}
}