stacker.news/components/header.js

308 lines
10 KiB
JavaScript
Raw Normal View History

2021-04-12 18:05:09 +00:00
import Navbar from 'react-bootstrap/Navbar'
import Nav from 'react-bootstrap/Nav'
import Link from 'next/link'
import styles from './header.module.css'
import { useRouter } from 'next/router'
2023-07-24 18:35:05 +00:00
import Button from 'react-bootstrap/Button'
import Container from 'react-bootstrap/Container'
import NavDropdown from 'react-bootstrap/NavDropdown'
2021-04-28 19:30:14 +00:00
import Price from './price'
2021-05-25 00:08:56 +00:00
import { useMe } from './me'
import Head from 'next/head'
2023-01-10 00:33:44 +00:00
import { signOut } from 'next-auth/client'
import { useCallback, useEffect, useState } from 'react'
import { randInRange } from '../lib/rand'
2022-10-25 21:35:32 +00:00
import { abbrNum } from '../lib/format'
2022-04-19 21:37:05 +00:00
import NoteIcon from '../svgs/notification-4-fill.svg'
import { useQuery } from '@apollo/client'
2022-09-27 21:27:29 +00:00
import LightningIcon from '../svgs/bolt.svg'
2023-02-01 14:44:35 +00:00
import CowboyHat from './cowboy-hat'
2023-05-01 20:58:30 +00:00
import { Form, Select } from './form'
import SearchIcon from '../svgs/search-line.svg'
import BackArrow from '../svgs/arrow-left-line.svg'
2023-06-20 16:26:23 +00:00
import { SUBS } from '../lib/constants'
2023-07-05 14:47:44 +00:00
import { useLightning } from './lightning'
import { HAS_NOTIFICATIONS } from '../fragments/notifications'
2021-11-12 22:39:52 +00:00
2021-06-24 23:56:01 +00:00
function WalletSummary ({ me }) {
2021-11-12 22:39:52 +00:00
if (!me) return null
2022-10-25 21:35:32 +00:00
return `${abbrNum(me.sats)}`
2021-05-11 15:52:50 +00:00
}
2021-03-25 19:29:24 +00:00
function Back () {
const router = useRouter()
const [show, setShow] = useState()
useEffect(() => {
setShow(typeof window !== 'undefined' && router.asPath !== '/' &&
(typeof window.navigation === 'undefined' || window.navigation.canGoBack === undefined || window?.navigation.canGoBack))
}, [router.asPath])
if (show) {
2023-07-24 18:35:05 +00:00
return <a role='button' tabIndex='0' className='nav-link standalone p-0' onClick={() => router.back()}><BackArrow className='theme me-1 me-md-2' width={22} height={22} /></a>
}
return null
}
function NotificationBell () {
const { data } = useQuery(HAS_NOTIFICATIONS, {
pollInterval: 30000,
nextFetchPolicy: 'cache-and-network'
})
return (
<>
<Head>
<link rel='shortcut icon' href={data?.hasNewNotes ? '/favicon-notify.png' : '/favicon.png'} />
</Head>
<Link href='/notifications' passHref legacyBehavior>
2023-07-24 18:35:05 +00:00
<Nav.Link eventKey='notifications' className='ps-0 position-relative'>
<NoteIcon height={22} width={22} className='theme' style={{ marginTop: '-4px' }} />
{data?.hasNewNotes &&
<span className={styles.notification}>
<span className='invisible'>{' '}</span>
</span>}
</Nav.Link>
</Link>
</>
)
}
function StackerCorner ({ dropNavKey }) {
const me = useMe()
return (
2023-07-24 18:35:05 +00:00
<div className='d-flex ms-auto'>
<NotificationBell />
<div className='position-relative'>
<NavDropdown
className={styles.dropdown}
title={
2023-07-24 18:35:05 +00:00
<Nav.Link eventKey={me.name} as='span' className='p-0' onClick={e => e.preventDefault()}>
{`@${me.name}`}<CowboyHat user={me} />
</Nav.Link>
}
2023-07-24 18:35:05 +00:00
align='end'
>
<Link href={'/' + me.name} passHref legacyBehavior>
<NavDropdown.Item active={me.name === dropNavKey}>
profile
{me && !me.bioId &&
2023-07-24 18:35:05 +00:00
<div className='p-1 d-inline-block bg-secondary ms-1'>
<span className='invisible'>{' '}</span>
</div>}
</NavDropdown.Item>
</Link>
<Link href={'/' + me.name + '/bookmarks'} passHref legacyBehavior>
<NavDropdown.Item active={me.name + '/bookmarks' === dropNavKey}>bookmarks</NavDropdown.Item>
</Link>
<Link href='/wallet' passHref legacyBehavior>
<NavDropdown.Item eventKey='wallet'>wallet</NavDropdown.Item>
</Link>
<Link href='/satistics?inc=invoice,withdrawal,stacked,spent' passHref legacyBehavior>
<NavDropdown.Item eventKey='satistics'>satistics</NavDropdown.Item>
</Link>
<NavDropdown.Divider />
<Link href='/referrals/month' passHref legacyBehavior>
<NavDropdown.Item eventKey='referrals'>referrals</NavDropdown.Item>
</Link>
<NavDropdown.Divider />
<div className='d-flex align-items-center'>
<Link href='/settings' passHref legacyBehavior>
<NavDropdown.Item eventKey='settings'>settings</NavDropdown.Item>
</Link>
2021-06-24 23:56:01 +00:00
</div>
<NavDropdown.Divider />
<NavDropdown.Item onClick={() => signOut({ callbackUrl: '/' })}>logout</NavDropdown.Item>
</NavDropdown>
{!me.bioId &&
<span className='position-absolute p-1 bg-secondary' style={{ top: '5px', right: '0px' }}>
<span className='invisible'>{' '}</span>
</span>}
</div>
<Nav.Item>
<Link href='/wallet' passHref legacyBehavior>
<Nav.Link eventKey='wallet' className='text-success px-0 text-nowrap'><WalletSummary me={me} /></Nav.Link>
</Link>
</Nav.Item>
</div>
)
}
function LurkerCorner ({ path }) {
const router = useRouter()
const strike = useLightning()
useEffect(() => {
2023-07-25 14:14:45 +00:00
if (!window.localStorage.getItem('striked')) {
const to = setTimeout(() => {
strike()
2023-07-25 14:14:45 +00:00
window.localStorage.setItem('striked', 'yep')
}, randInRange(3000, 10000))
return () => clearTimeout(to)
2021-04-12 18:05:09 +00:00
}
}, [])
const handleLogin = useCallback(async pathname => await router.push({
pathname,
query: { callbackUrl: window.location.origin + router.asPath }
}), [router])
return path !== '/login' && path !== '/signup' && !path.startsWith('/invites') &&
2023-07-24 18:35:05 +00:00
<div className='ms-auto'>
<Button
2023-07-24 18:35:05 +00:00
className='align-items-center px-3 py-1 me-2'
id='signup'
style={{ borderWidth: '2px' }}
variant='outline-grey-darkmode'
onClick={() => handleLogin('/login')}
>
login
</Button>
<Button
2023-07-24 18:35:05 +00:00
className='align-items-center ps-2 py-1 pe-3'
style={{ borderWidth: '2px' }}
id='login'
onClick={() => handleLogin('/signup')}
>
<LightningIcon
width={17}
height={17}
2023-07-24 18:35:05 +00:00
className='me-1'
/>sign up
</Button>
</div>
}
function NavItems ({ className, sub, prefix }) {
const router = useRouter()
sub ||= 'home'
return (
<>
<Nav.Item className={className}>
<Form
initial={{ sub }}
>
<Select
groupClassName='mb-0'
onChange={(formik, e) => router.push(e.target.value === 'home' ? '/' : `/~${e.target.value}`)}
name='sub'
size='sm'
overrideValue={sub}
items={['home', ...SUBS]}
/>
</Form>
</Nav.Item>
<Nav.Item className={className}>
<Link href={prefix + '/'} passHref legacyBehavior>
<Nav.Link eventKey='' className={styles.navLink}>hot</Nav.Link>
</Link>
</Nav.Item>
<Nav.Item className={className}>
<Link href={prefix + '/recent'} passHref legacyBehavior>
<Nav.Link eventKey='recent' className={styles.navLink}>recent</Nav.Link>
</Link>
</Nav.Item>
{sub !== 'jobs' &&
<Nav.Item className={className}>
<Link href={prefix + '/top/posts/day'} passHref legacyBehavior>
<Nav.Link eventKey='top' className={styles.navLink}>top</Nav.Link>
</Link>
</Nav.Item>}
</>
)
}
function PostItem ({ className, prefix }) {
const me = useMe()
if (!me) return null
return (
<Link href={prefix + '/post'} className={`${className} btn btn-md btn-primary px-3 py-1 `}>
post
</Link>
)
}
export default function Header ({ sub }) {
const router = useRouter()
const path = router.asPath.split('?')[0]
const prefix = sub ? `/~${sub}` : ''
const topNavKey = path.split('/')[sub ? 2 : 1] ?? ''
const dropNavKey = path.split('/').slice(sub ? 2 : 1).join('/')
const me = useMe()
return (
2023-07-24 18:35:05 +00:00
<Container as='header'>
<Navbar className='pb-0 pb-lg-2'>
<Nav
className={styles.navbarNav}
activeKey={topNavKey}
>
<div className='d-flex align-items-center'>
<Back />
<Link href='/' passHref legacyBehavior>
<Navbar.Brand className={`${styles.brand} d-flex`}>
SN
</Navbar.Brand>
</Link>
</div>
<NavItems className='d-none d-lg-flex mx-2' prefix={prefix} sub={sub} />
<PostItem className='d-none d-lg-flex mx-2' prefix={prefix} />
<Link href={prefix + '/search'} passHref legacyBehavior>
2023-07-24 18:35:05 +00:00
<Nav.Link eventKey='search' className='position-relative d-none d-lg-flex align-items-center pe-0 ms-2'>
<SearchIcon className='theme' width={22} height={22} />
</Nav.Link>
</Link>
2023-07-24 18:35:05 +00:00
<Nav.Item className={`${styles.price} ms-auto align-items-center ${me?.name.length > 10 ? 'd-none d-lg-flex' : ''}`}>
<Price className='nav-link text-monospace' />
</Nav.Item>
{me ? <StackerCorner dropNavKey={dropNavKey} /> : <LurkerCorner path={path} />}
</Nav>
</Navbar>
<Navbar className='pt-0 pb-2 d-lg-none'>
<Nav
2023-07-25 14:14:45 +00:00
className={styles.navbarNav}
activeKey={topNavKey}
>
2023-07-24 18:35:05 +00:00
<NavItems className='me-1' prefix={prefix} sub={sub} />
<Link href={prefix + '/search'} passHref legacyBehavior>
2023-07-24 18:35:05 +00:00
<Nav.Link eventKey='search' className='position-relative ms-auto d-flex me-1'>
<SearchIcon className='theme' width={22} height={22} />
</Nav.Link>
</Link>
2023-07-24 18:35:05 +00:00
<PostItem className='me-0' prefix={prefix} />
</Nav>
</Navbar>
</Container>
2021-03-25 19:29:24 +00:00
)
}
2022-05-18 20:55:06 +00:00
export function HeaderStatic () {
return (
<Container as='header' className='px-sm-0'>
2023-06-02 00:34:26 +00:00
<Navbar className='pb-0 pb-lg-1'>
2022-05-18 20:55:06 +00:00
<Nav
className={styles.navbarNav}
>
2023-05-01 20:58:30 +00:00
<div className='d-flex align-items-center'>
<Back />
<Link href='/' passHref legacyBehavior>
2023-07-25 14:14:45 +00:00
<Navbar.Brand className={styles.brand}>
2022-05-18 20:55:06 +00:00
SN
</Navbar.Brand>
</Link>
2023-05-01 20:58:30 +00:00
<Link href='/search' passHref legacyBehavior>
2023-05-01 20:58:30 +00:00
<Nav.Link eventKey='search' className='position-relative d-flex align-items-center mx-2'>
<SearchIcon className='theme' width={22} height={22} />
</Nav.Link>
</Link>
2022-05-18 20:55:06 +00:00
</div>
</Nav>
</Navbar>
</Container>
)
}