Files
dify/web/app/components/workflow/context.tsx
yyh 88196c186e refactor(web): workflow hotkeys and history state (#35736)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-04-30 09:43:16 +00:00

30 lines
870 B
TypeScript

import type { StateCreator } from 'zustand'
import type { SliceFromInjection } from './store/workflow'
import {
createContext,
useRef,
} from 'react'
import {
createWorkflowStore,
} from './store/workflow'
type WorkflowStore = ReturnType<typeof createWorkflowStore>
export const WorkflowContext = createContext<WorkflowStore | null>(null)
type WorkflowProviderProps = {
children: React.ReactNode
injectWorkflowStoreSliceFn?: StateCreator<SliceFromInjection>
}
export const WorkflowContextProvider = ({ children, injectWorkflowStoreSliceFn }: WorkflowProviderProps) => {
const storeRef = useRef<WorkflowStore | undefined>(undefined)
if (!storeRef.current)
storeRef.current = createWorkflowStore({ injectWorkflowStoreSliceFn })
return (
<WorkflowContext.Provider value={storeRef.current}>
{children}
</WorkflowContext.Provider>
)
}