Initial commit
This commit is contained in:
35
web/context/workspace-context.tsx
Normal file
35
web/context/workspace-context.tsx
Normal file
@@ -0,0 +1,35 @@
|
||||
'use client'
|
||||
|
||||
import { createContext, useContext } from 'use-context-selector'
|
||||
import useSWR from 'swr'
|
||||
import { fetchWorkspaces } from '@/service/common'
|
||||
import type { IWorkspace } from '@/models/common'
|
||||
|
||||
export type WorkspacesContextValue = {
|
||||
workspaces: IWorkspace[]
|
||||
}
|
||||
|
||||
const WorkspacesContext = createContext<WorkspacesContextValue>({
|
||||
workspaces: []
|
||||
})
|
||||
|
||||
interface IWorkspaceProviderProps {
|
||||
children: React.ReactNode
|
||||
}
|
||||
export const WorkspaceProvider = ({
|
||||
children
|
||||
}: IWorkspaceProviderProps) => {
|
||||
const { data } = useSWR({ url: '/workspaces' }, fetchWorkspaces)
|
||||
|
||||
return (
|
||||
<WorkspacesContext.Provider value={{
|
||||
workspaces: data?.workspaces || []
|
||||
}}>
|
||||
{children}
|
||||
</WorkspacesContext.Provider>
|
||||
)
|
||||
}
|
||||
|
||||
export const useWorkspacesContext = () => useContext(WorkspacesContext)
|
||||
|
||||
export default WorkspacesContext
|
Reference in New Issue
Block a user