iconoir/iconoir.com/components/Header.tsx
2023-10-29 00:33:17 +02:00

210 lines
4.8 KiB
TypeScript

import { Cancel, Heart, Menu } from 'iconoir-react';
import Link from 'next/link';
import React from 'react';
import styled, { css } from 'styled-components';
import { AnimatedSvg } from './AnimatedSvg';
import { ResetButton } from './Button';
import { SHARE_LINK } from '../lib/constants';
import { CurrentVersion } from './CurrentVersion';
import { NavigationItem } from './NavigationItem';
import { media } from '../lib/responsive';
import { Text15 } from './Typography';
export interface HeaderProps {
currentVersion: string;
}
export function Header({ currentVersion }: HeaderProps) {
const [menuVisible, setMenuVisible] = React.useState(false);
return (
<Container>
<HeaderLeft>
<Link href={'/'}>
<LogoContainer>
<LogoIcon>
<AnimatedSvg />
</LogoIcon>
<Logo src={'/iconoir-logo.svg'} alt={'Iconoir Logo'} />
</LogoContainer>
</Link>
<CurrentVersion version={currentVersion} />
</HeaderLeft>
<HeaderCenter>
<MobileMenuContainer $visible={menuVisible}>
<NavigationItem href={'/'}>Icons</NavigationItem>
<NavigationItem href={'/docs'}>Documentation</NavigationItem>
<NavigationItem href={'/support'} style={{ marginRight: 0 }}>
Donate &mdash; Our Mission
</NavigationItem>
<BuiltWith $isMobile>
Share with <Heart width={'1em'} height={'1em'} /> on{' '}
<a href={SHARE_LINK} target={'_blank'} rel={'noreferrer'}>
Twitter
</a>{' '}
</BuiltWith>
</MobileMenuContainer>
</HeaderCenter>
<HeaderRight>
<BuiltWith>
Share with <Heart width={'1em'} height={'1em'} /> on{' '}
<a href={SHARE_LINK} target={'_blank'} rel={'noreferrer'}>
Twitter
</a>{' '}
</BuiltWith>
<MobileMenuButton onClick={() => setMenuVisible((v) => !v)}>
{menuVisible ? <Cancel /> : <Menu />}
</MobileMenuButton>
</HeaderRight>
</Container>
);
}
export const LogoContainer = styled.div`
position: relative;
z-index: 101;
display: inline-flex;
align-items: center;
transition: 0.1s;
&:hover {
scale: 1.1;
transition: 0.2s;
}
`;
const MobileMenuButton = styled(ResetButton)`
&&& {
z-index: 101;
color: var(--black);
background: transparent;
display: inline-block;
margin-left: auto;
cursor: pointer;
svg {
width: 24px;
height: 24px;
}
${media.lg} {
display: none;
}
}
`;
const MobileMenuContainer = styled.div<{ $visible?: boolean }>`
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 100;
background: white;
padding-top: 100px;
transition:
transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
opacity 0.25s linear;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
transform: translateY(-100%);
pointer-events: none;
opacity: 0;
display: flex;
flex-direction: column;
align-items: stretch;
${(props) =>
props.$visible &&
css`
pointer-events: all;
transform: translateY(0);
opacity: 1;
`}
${media.lg} {
background: none;
padding-top: 0;
box-shadow: none;
display: flex;
flex-direction: row;
position: relative;
align-items: center;
transform: none;
pointer-events: all;
opacity: 1;
> :not(:last-child) {
margin-right: 60px;
}
}
`;
const Container = styled.div`
display: flex;
align-items: center;
justify-content: center;
`;
const HeaderItem = styled.div`
flex: 1;
width: 33%;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
`;
const HeaderCenter = styled(HeaderItem)`
padding: 0 16px;
> :not(:last-child) {
margin-right: 16px;
}
`;
const HeaderLeft = styled(HeaderItem)`
&&& {
justify-content: flex-start;
}
`;
const HeaderRight = styled(HeaderItem)`
&&& {
justify-content: flex-end;
}
`;
export const Logo = styled.img`
height: 24px;
margin-top: -4px;
color: var(--black);
margin-right: 16px;
z-index: 101;
`;
export const LogoIcon = styled.div`
color: var(--black);
margin-right: 4px;
svg {
width: 36px;
height: 36px;
}
`;
const BuiltWith = styled(Text15)<{ $isMobile?: boolean }>`
&&& {
display: ${(props) => (props.$isMobile ? 'flex' : 'none')};
${media.lg} {
display: ${(props) => (props.$isMobile ? 'none' : 'flex')};
}
align-items: center;
justify-content: center;
color: var(--black-60);
border-bottom: none;
svg {
fill: var(--black);
margin: 0 0.22em;
}
> * {
margin: 0 0.22em;
}
a {
color: var(--black);
font-weight: 700;
}
> :last-child {
margin-right: 0;
}
${media.lg} {
justify-content: flex-start;
a {
font-weight: normal;
}
}
}
`;