1
Fork 0
mirror of https://github.com/Steffo99/sophon.git synced 2024-12-23 15:24:21 +00:00
sophon/frontend/src/contexts/instance.tsx

90 lines
2.1 KiB
TypeScript
Raw Normal View History

import * as React from "react"
import {ContextData} from "../types/ContextTypes"
import {WithChildren} from "../types/ExtraTypes"
import {SophonInstanceDetails} from "../types/SophonTypes"
// States
type InstanceNotSelected = {
url: undefined,
details: undefined,
}
type InstanceSelected = {
url: URL,
details: SophonInstanceDetails,
}
// Actions
type InstanceSelect = {
type: "select",
url: URL,
details: SophonInstanceDetails,
}
type InstanceDeselect = {
type: "deselect",
}
// Composition
2021-10-06 15:17:16 +00:00
export type InstanceState = InstanceSelected | InstanceNotSelected
type InstanceAction = InstanceSelect | InstanceDeselect
export type InstanceContextData = ContextData<InstanceState, InstanceAction> | undefined
// Definitions
const instanceDefaultState: InstanceState = {
url: undefined,
details: undefined,
}
const instanceReducer: React.Reducer<InstanceState, InstanceAction> = (prevState, action) => {
switch (action.type) {
case "select":
// Bail out if trying to select the current instance
if(action.url === prevState.url) {
return prevState
}
return {
url: action.url,
details: action.details,
}
case "deselect":
// Bail out if no instance is currently selected
if(prevState.url === undefined) {
return prevState
}
return instanceDefaultState
}
}
const instanceContext = React.createContext<InstanceContextData>(undefined)
const InstanceContext = instanceContext
// Hooks
export function useInstanceReducer(): InstanceContextData {
const [state, dispatch] = React.useReducer(instanceReducer, instanceDefaultState)
return {state, dispatch}
}
export function useInstanceContext(): InstanceContextData {
return React.useContext(instanceContext)
}
// Components
export function InstanceProvider({children}: WithChildren): JSX.Element {
const reducer = useInstanceReducer()
return <InstanceContext.Provider value={reducer} children={children}/>
}