summaryrefslogtreecommitdiffstats
path: root/src/components/Footer/Footer.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-05-24 19:35:12 +0200
committerGitHub <noreply@github.com>2022-05-24 19:35:12 +0200
commitc85ab5ad43ccf52881ee224672c41ec30021cf48 (patch)
tree8058808d9bfca19383f120c46b34d99ff2f89f63 /src/components/Footer/Footer.tsx
parent52404177c07a2aab7fc894362fb3060dff2431a0 (diff)
parent11b9de44a4b2f305a6a484187805e429b2767118 (diff)
refactor: use storybook and atomic design (#16)
BREAKING CHANGE: rewrite most of the Typescript types, so the content format (the meta in particular) needs to be updated.
Diffstat (limited to 'src/components/Footer/Footer.tsx')
-rw-r--r--src/components/Footer/Footer.tsx54
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;