From 7e16f500cb7bc0cfd8bafbf6bb1555704f771231 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 29 Apr 2022 12:13:34 +0200 Subject: chore: remove old pages, components, helpers and types Since I'm using new components, I will also rewrite the GraphQL queries so it is easier to start from scratch. --- .../Settings/ReduceMotion/ReduceMotion.tsx | 48 ---------------------- 1 file changed, 48 deletions(-) delete mode 100644 src/components/Settings/ReduceMotion/ReduceMotion.tsx (limited to 'src/components/Settings/ReduceMotion') diff --git a/src/components/Settings/ReduceMotion/ReduceMotion.tsx b/src/components/Settings/ReduceMotion/ReduceMotion.tsx deleted file mode 100644 index 00562cd..0000000 --- a/src/components/Settings/ReduceMotion/ReduceMotion.tsx +++ /dev/null @@ -1,48 +0,0 @@ -import { Toggle } from '@components/FormElements'; -import { LocalStorage } from '@services/local-storage'; -import { useEffect, useState } from 'react'; -import { useIntl } from 'react-intl'; - -const ReduceMotion = () => { - const intl = useIntl(); - const [isDeactivated, setIsDeactivated] = useState(false); - - useEffect(() => { - const initialState = LocalStorage.get('reduced-motion'); - if (initialState) setIsDeactivated(initialState === 'true' ? true : false); - }, []); - - useEffect(() => { - document.documentElement.dataset.reducedMotion = `${isDeactivated}`; - LocalStorage.set('reduced-motion', `${isDeactivated}`); - }, [isDeactivated]); - - const updateState = () => { - setIsDeactivated(!isDeactivated); - }; - - return ( - - ); -}; - -export default ReduceMotion; -- cgit v1.2.3