mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-22 14:54:22 +00:00
21 lines
730 B
TypeScript
21 lines
730 B
TypeScript
import * as React from "react"
|
|
import {ManagedResource} from "../hooks/useManagedViewSet"
|
|
import {WithChildren, WithResource} from "../types/ExtraTypes"
|
|
import {SophonNotebook} from "../types/SophonTypes"
|
|
|
|
|
|
const notebookContext = React.createContext<ManagedResource<SophonNotebook> | undefined>(undefined)
|
|
const NotebookContext = notebookContext
|
|
|
|
|
|
/**
|
|
* Hook to access the {@link notebookContext}.
|
|
*/
|
|
export function useNotebookContext(): ManagedResource<SophonNotebook> | undefined {
|
|
return React.useContext(notebookContext)
|
|
}
|
|
|
|
|
|
export function NotebookProvider({resource, children}: WithResource<SophonNotebook> & WithChildren): JSX.Element {
|
|
return <NotebookContext.Provider value={resource} children={children}/>
|
|
}
|