From 82059b7ee138d24ff50b0f4fad0eaeac860bb78c Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 9 Nov 2023 00:25:27 +0000 Subject: Hide/show header and footer without re-renders, take two (#1849) * Remove callsites using the state value * Remove unused code * Change shell mode without re-renders * Adjust "write your reply" for mode --- src/state/shell/minimal-mode.tsx | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) (limited to 'src/state/shell/minimal-mode.tsx') diff --git a/src/state/shell/minimal-mode.tsx b/src/state/shell/minimal-mode.tsx index 4909a9a65..b506c21db 100644 --- a/src/state/shell/minimal-mode.tsx +++ b/src/state/shell/minimal-mode.tsx @@ -1,16 +1,28 @@ import React from 'react' +import {useSharedValue, SharedValue} from 'react-native-reanimated' -type StateContext = boolean +type StateContext = SharedValue type SetContext = (v: boolean) => void -const stateContext = React.createContext(false) +const stateContext = React.createContext({ + value: false, + addListener() {}, + removeListener() {}, + modify() {}, +}) const setContext = React.createContext((_: boolean) => {}) export function Provider({children}: React.PropsWithChildren<{}>) { - const [state, setState] = React.useState(false) + const mode = useSharedValue(false) + const setMode = React.useCallback( + (v: boolean) => { + mode.value = v + }, + [mode], + ) return ( - - {children} + + {children} ) } -- cgit 1.4.1