mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-06-04 11:14:10 +08:00
51 lines
1.8 KiB
TypeScript
51 lines
1.8 KiB
TypeScript
import { create } from 'zustand'
|
|
import type { App, AppSSO } from '@/types/app'
|
|
import type { IChatItem } from '@/app/components/base/chat/chat/type'
|
|
|
|
type State = {
|
|
appDetail?: App & Partial<AppSSO>
|
|
appSidebarExpand: string
|
|
currentLogItem?: IChatItem
|
|
currentLogModalActiveTab: string
|
|
showPromptLogModal: boolean
|
|
showAgentLogModal: boolean
|
|
showMessageLogModal: boolean
|
|
}
|
|
|
|
type Action = {
|
|
setAppDetail: (appDetail?: App & Partial<AppSSO>) => void
|
|
setAppSiderbarExpand: (state: string) => void
|
|
setCurrentLogItem: (item?: IChatItem) => void
|
|
setCurrentLogModalActiveTab: (tab: string) => void
|
|
setShowPromptLogModal: (showPromptLogModal: boolean) => void
|
|
setShowAgentLogModal: (showAgentLogModal: boolean) => void
|
|
setShowMessageLogModal: (showMessageLogModal: boolean) => void
|
|
}
|
|
|
|
export const useStore = create<State & Action>(set => ({
|
|
appDetail: undefined,
|
|
setAppDetail: appDetail => set(() => ({ appDetail })),
|
|
appSidebarExpand: '',
|
|
setAppSiderbarExpand: appSidebarExpand => set(() => ({ appSidebarExpand })),
|
|
currentLogItem: undefined,
|
|
currentLogModalActiveTab: 'DETAIL',
|
|
setCurrentLogItem: currentLogItem => set(() => ({ currentLogItem })),
|
|
setCurrentLogModalActiveTab: currentLogModalActiveTab => set(() => ({ currentLogModalActiveTab })),
|
|
showPromptLogModal: false,
|
|
setShowPromptLogModal: showPromptLogModal => set(() => ({ showPromptLogModal })),
|
|
showAgentLogModal: false,
|
|
setShowAgentLogModal: showAgentLogModal => set(() => ({ showAgentLogModal })),
|
|
showMessageLogModal: false,
|
|
setShowMessageLogModal: showMessageLogModal => set(() => {
|
|
if (showMessageLogModal) {
|
|
return { showMessageLogModal }
|
|
}
|
|
else {
|
|
return {
|
|
showMessageLogModal,
|
|
currentLogModalActiveTab: 'DETAIL',
|
|
}
|
|
}
|
|
}),
|
|
}))
|