diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-29 12:13:34 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-29 18:30:05 +0200 |
| commit | 7e16f500cb7bc0cfd8bafbf6bb1555704f771231 (patch) | |
| tree | bfc2b4a475cb06a787e2c4bdf284165644e82952 /src/components/Footer/Footer.tsx | |
| parent | 5324664e87bedfaa01ba62c0c847ef5b861e69b3 (diff) | |
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.
Diffstat (limited to 'src/components/Footer/Footer.tsx')
| -rw-r--r-- | src/components/Footer/Footer.tsx | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx deleted file mode 100644 index 381b4a8..0000000 --- a/src/components/Footer/Footer.tsx +++ /dev/null @@ -1,54 +0,0 @@ -import { ButtonLink } from '@components/Buttons'; -import Copyright from '@components/Copyright/Copyright'; -import FooterNav from '@components/FooterNav/FooterNav'; -import { ArrowIcon } from '@components/Icons'; -import { useEffect, useState } from 'react'; -import { useIntl } from 'react-intl'; -import styles from './Footer.module.scss'; - -const Footer = () => { - const intl = useIntl(); - const [backToTopClasses, setBackToTopClasses] = useState( - `${styles['back-to-top']} ${styles['back-to-top--hidden']}` - ); - - const handleScroll = () => { - const currentScrollY = window.scrollY; - - if (currentScrollY > 300) { - setBackToTopClasses( - `${styles['back-to-top']} ${styles['back-to-top--visible']}` - ); - } else { - setBackToTopClasses( - `${styles['back-to-top']} ${styles['back-to-top--hidden']}` - ); - } - }; - - useEffect(() => { - window.addEventListener('scroll', handleScroll); - return () => window.removeEventListener('scroll', handleScroll); - }, []); - - return ( - <footer className={styles.wrapper}> - <Copyright /> - <FooterNav /> - <div className={backToTopClasses}> - <ButtonLink target="#top" position="center"> - <span className="screen-reader-text"> - {intl.formatMessage({ - defaultMessage: 'Back to top', - description: 'Footer: Back to top button', - id: 'dqrd6I', - })} - </span> - <ArrowIcon direction="top" /> - </ButtonLink> - </div> - </footer> - ); -}; - -export default Footer; |
