From bfe196bac5e618bfbeab4f6fabef3e5a18194868 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 7 Nov 2023 13:37:47 -0600 Subject: Extract shell state into separate context (#1824) * WIP * Add shell state * Integrate new shell state for drawer and minimal shell mode * Replace isDrawerSwipeDisabled * Split shell state into separate contexts to avoid needless re-renders * Fix typo --------- Co-authored-by: Paul Frazee --- src/state/shell/drawer-open.tsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/state/shell/drawer-open.tsx (limited to 'src/state/shell/drawer-open.tsx') diff --git a/src/state/shell/drawer-open.tsx b/src/state/shell/drawer-open.tsx new file mode 100644 index 000000000..a2322f680 --- /dev/null +++ b/src/state/shell/drawer-open.tsx @@ -0,0 +1,24 @@ +import React from 'react' + +type StateContext = boolean +type SetContext = (v: boolean) => void + +const stateContext = React.createContext(false) +const setContext = React.createContext((_: boolean) => {}) + +export function Provider({children}: React.PropsWithChildren<{}>) { + const [state, setState] = React.useState(false) + return ( + + {children} + + ) +} + +export function useIsDrawerOpen() { + return React.useContext(stateContext) +} + +export function useSetDrawerOpen() { + return React.useContext(setContext) +} -- cgit 1.4.1