From d42f9e348261fd1738e7977db89b06007ec8da10 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 17 Jan 2022 23:08:44 +0100 Subject: feat: add a setting to disable animations and transitions Some users may not know the reduced motion settings, so I provide an option directly on the website to disable animations. --- .../Settings/ReduceMotion/ReduceMotion.tsx | 35 ++++++++++++++++++++++ src/components/Settings/Settings.tsx | 2 ++ src/styles/base/_helpers.scss | 8 +++++ 3 files changed, 45 insertions(+) create mode 100644 src/components/Settings/ReduceMotion/ReduceMotion.tsx (limited to 'src') diff --git a/src/components/Settings/ReduceMotion/ReduceMotion.tsx b/src/components/Settings/ReduceMotion/ReduceMotion.tsx new file mode 100644 index 0000000..01f8b67 --- /dev/null +++ b/src/components/Settings/ReduceMotion/ReduceMotion.tsx @@ -0,0 +1,35 @@ +import { Toggle } from '@components/Form'; +import { t } from '@lingui/macro'; +import { LocalStorage } from '@services/local-storage'; +import { useEffect, useState } from 'react'; + +const ReduceMotion = () => { + 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; diff --git a/src/components/Settings/Settings.tsx b/src/components/Settings/Settings.tsx index 7d5516c..bd2f33d 100644 --- a/src/components/Settings/Settings.tsx +++ b/src/components/Settings/Settings.tsx @@ -1,6 +1,7 @@ import { CogIcon } from '@components/Icons'; import ThemeToggle from '@components/Settings/ThemeToggle/ThemeToggle'; import { t } from '@lingui/macro'; +import ReduceMotion from './ReduceMotion/ReduceMotion'; import styles from './Settings.module.scss'; const Settings = () => { @@ -10,6 +11,7 @@ const Settings = () => { {t`Settings`} + ); }; diff --git a/src/styles/base/_helpers.scss b/src/styles/base/_helpers.scss index 9fe2bd4..65f06d8 100644 --- a/src/styles/base/_helpers.scss +++ b/src/styles/base/_helpers.scss @@ -44,6 +44,14 @@ @include mix.motion("reduce") { * { + animation: none !important; + transition: none !important; + } +} + +[data-reduced-motion="true"] { + * { + animation: none !important; transition: none !important; } } -- cgit v1.2.3