stacker.news/pages/referrals/[when].js

131 lines
4.6 KiB
JavaScript
Raw Normal View History

import { gql } from 'graphql-tag'
2022-12-19 22:27:52 +00:00
import Link from 'next/link'
import { useRouter } from 'next/router'
import { getGetServerSideProps } from '@/api/ssrApollo'
import { CopyInput, Select, DatePicker } from '@/components/form'
import { CenterLayout } from '@/components/layout'
import { useMe } from '@/components/me'
import { useQuery } from '@apollo/client'
import PageLoading from '@/components/page-loading'
import { WHENS } from '@/lib/constants'
2023-07-24 22:50:12 +00:00
import dynamic from 'next/dynamic'
import { numWithUnits } from '@/lib/format'
import { whenToFrom } from '@/lib/time'
2024-03-23 03:47:21 +00:00
import { WhenComposedChartSkeleton } from '@/components/charts-skeletons'
2023-07-24 22:50:12 +00:00
const WhenComposedChart = dynamic(() => import('@/components/charts').then(mod => mod.WhenComposedChart), {
2024-03-23 03:47:21 +00:00
loading: () => <WhenComposedChartSkeleton />
2023-07-24 22:50:12 +00:00
})
2022-12-19 22:27:52 +00:00
const REFERRALS = gql`
query Referrals($when: String!, $from: String, $to: String)
{
referrals(when: $when, from: $from, to: $to) {
time
data {
name
value
2022-12-19 22:27:52 +00:00
}
}
}`
2022-12-19 22:27:52 +00:00
export const getServerSideProps = getGetServerSideProps({ query: REFERRALS, authRequired: true })
export default function Referrals ({ ssrData }) {
2022-12-19 22:27:52 +00:00
const router = useRouter()
Account Switching (#644) * WIP: Account switching * Fix empty USER query ANON_USER_ID was undefined and thus the query for @anon had no variables. * Apply multiAuthMiddleware in /api/graphql * Fix 'you must be logged in' query error on switch to anon * Add smart 'switch account' button "smart" means that it only shows if there are accounts to which one can switch * Fix multiAuth not set in backend * Comment fixes, minor changes * Use fw-bold instead of 'selected' * Close dropdown and offcanvas Inside a dropdown, we can rely on autoClose but need to wrap the buttons with <Dropdown.Item> for that to work. For the offcanvas, we need to pass down handleClose. * Use button to add account * Some pages require hard reload on account switch * Reinit settings form on account switch * Also don't refetch WalletHistory * Formatting * Use width: fit-content for standalone SignUpButton * Remove unused className * Use fw-bold and text-underline on selected * Fix inconsistent padding of login buttons * Fix duplicate redirect from /settings on anon switch * Never throw during refetch * Throw errors which extend GraphQLError * Only use meAnonSats if logged out * Use reactive variable for meAnonSats The previous commit broke the UI update after anon zaps because we actually updated item.meSats in the cache and not item.meAnonSats. Updating item.meAnonSats was not possible because it's a local field. For that, one needs to use reactive variables. We do this now and thus also don't need the useEffect hack in item-info.js anymore. * Switch to new user * Fix missing cleanup during logout If we logged in but never switched to any other account, the 'multi_auth.user-id' cookie was not set. This meant that during logout, the other 'multi_auth.*' cookies were not deleted. This broke the account switch modal. This is fixed by setting the 'multi_auth.user-id' cookie on login. Additionally, we now cleanup if cookie pointer OR session is set (instead of only if both are set). * Fix comments in middleware * Remove unnecessary effect dependencies setState is stable and thus only noise in effect dependencies * Show but disable unavailable auth methods * make signup button consistent with others * Always reload page on switch * refine account switch styling * logout barrier --------- Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com> Co-authored-by: k00b <k00b@stacker.news>
2024-09-12 18:05:11 +00:00
const { me } = useMe()
const select = async values => {
const { when, ...query } = values
if (when !== 'custom') { delete query.from; delete query.to }
if (query.from && !query.to) return
await router.push({
pathname: `/referrals/${when}`,
query
})
}
const { data } = useQuery(REFERRALS, { variables: { when: router.query.when, from: router.query.from, to: router.query.to } })
if (!data && !ssrData) return <PageLoading />
const { referrals } = data || ssrData
const totalSats = referrals.reduce(
(total, a) => total + a.data?.filter(d => d.name.endsWith('sats')).reduce(
(acc, d) => acc + d.value,
0),
0)
const when = router.query.when
2022-12-19 22:27:52 +00:00
return (
<CenterLayout footerLinks>
<div className='fw-bold text-muted text-center pt-5 pb-3 d-flex align-items-center justify-content-center flex-wrap'>
<h4 className='fw-bold text-muted text-center d-flex align-items-center justify-content-center'>
{numWithUnits(totalSats, { abbreviate: false })} in the last
<Select
groupClassName='mb-0 mx-2'
className='w-auto'
name='when'
size='sm'
items={WHENS}
value={router.query.when || 'day'}
noForm
onChange={(formik, e) => {
2023-11-14 16:23:44 +00:00
const range = e.target.value === 'custom' ? { from: whenToFrom(when), to: Date.now() } : {}
select({ when: e.target.value, ...range })
}}
/>
</h4>
{when === 'custom' &&
<DatePicker
noForm
fromName='from'
toName='to'
className='p-0 px-2'
onChange={(formik, [from, to], e) => {
2023-11-14 16:23:44 +00:00
select({ when, from: from.getTime(), to: to.getTime() })
}}
from={router.query.from}
to={router.query.to}
when={router.query.when}
/>}
</div>
<WhenComposedChart
data={referrals}
areaNames={['referral sats', 'one day referral sats']}
barNames={['referrals', 'one day referrals']}
barAxis='right'
barStackId={1}
/>
2022-12-19 22:27:52 +00:00
<div
className='text-small pt-5 px-3 d-flex w-100 align-items-center'
>
2023-07-24 18:35:05 +00:00
<div className='nav-item text-muted pe-2' style={{ 'white-space': 'nowrap' }}>referral link:</div>
2022-12-19 22:27:52 +00:00
<CopyInput
size='sm'
groupClassName='mb-0 w-100'
readOnly
noForm
2024-04-08 22:54:39 +00:00
placeholder={`${process.env.NEXT_PUBLIC_URL}/r/${me.name}`}
2022-12-19 22:27:52 +00:00
/>
</div>
<ul className='py-3 text-muted'>
<li>earn 10% of a stacker's <Link href='/rewards'>rewards</Link> in perpetuity if they sign up from your referral links</li>
2024-07-11 16:55:19 +00:00
<li>in addition, earn 10% of a stacker's <Link href='/rewards'>rewards</Link> for the day if they follow your referral links the most that day</li>
<li>nearly all sn links are referral links:
2022-12-19 22:27:52 +00:00
<ul>
<li>your profile link is an implicit referral link</li>
<li>all links to post and comments are implicit referral links attributed to the OP</li>
<li>links to territories are implicit referral links attributed to the territory founder</li>
2022-12-19 22:27:52 +00:00
</ul>
</li>
<li>appending /r/{me.name} to any SN link makes it a ref link to {me.name}</li>
<li><Link href='/invites'>invite links</Link> are also implicitly referral links</li>
2022-12-19 22:27:52 +00:00
</ul>
</CenterLayout>
2022-12-19 22:27:52 +00:00
)
}