* add territory to analytics selectors * implement territory analytics, revert user satistics header * fix linting errors * disallow some territory names * fix linting error * minor adjustments to header * escape input * 404 on non-existant sub * exclude unused queries depending on sub select --------- Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com> Co-authored-by: k00b <k00b@stacker.news>
158 lines
4.7 KiB
JavaScript
158 lines
4.7 KiB
JavaScript
import { gql, useQuery } from '@apollo/client'
|
|
import { getGetServerSideProps } from '@/api/ssrApollo'
|
|
import Layout from '@/components/layout'
|
|
import Col from 'react-bootstrap/Col'
|
|
import Row from 'react-bootstrap/Row'
|
|
import { SubAnalyticsHeader } from '@/components/sub-analytics-header'
|
|
import { useRouter } from 'next/router'
|
|
import dynamic from 'next/dynamic'
|
|
import PageLoading from '@/components/page-loading'
|
|
import { WhenAreaChartSkeleton, WhenComposedChartSkeleton, WhenLineChartSkeleton } from '@/components/charts-skeletons'
|
|
|
|
const WhenAreaChart = dynamic(() => import('@/components/charts').then(mod => mod.WhenAreaChart), {
|
|
loading: () => <WhenAreaChartSkeleton />
|
|
})
|
|
const WhenLineChart = dynamic(() => import('@/components/charts').then(mod => mod.WhenLineChart), {
|
|
loading: () => <WhenLineChartSkeleton />
|
|
})
|
|
const WhenComposedChart = dynamic(() => import('@/components/charts').then(mod => mod.WhenComposedChart), {
|
|
loading: () => <WhenComposedChartSkeleton />
|
|
})
|
|
|
|
const GROWTH_QUERY = gql`
|
|
query Growth($when: String!, $from: String, $to: String, $sub: String, $subSelect: Boolean = false)
|
|
{
|
|
registrationGrowth(when: $when, from: $from, to: $to) @skip(if: $subSelect) {
|
|
time
|
|
data {
|
|
name
|
|
value
|
|
}
|
|
}
|
|
itemGrowth(when: $when, from: $from, to: $to) @skip(if: $subSelect) {
|
|
time
|
|
data {
|
|
name
|
|
value
|
|
}
|
|
}
|
|
spendingGrowth(when: $when, from: $from, to: $to) @skip(if: $subSelect) {
|
|
time
|
|
data {
|
|
name
|
|
value
|
|
}
|
|
}
|
|
spenderGrowth(when: $when, from: $from, to: $to) @skip(if: $subSelect) {
|
|
time
|
|
data {
|
|
name
|
|
value
|
|
}
|
|
}
|
|
stackingGrowth(when: $when, from: $from, to: $to) @skip(if: $subSelect) {
|
|
time
|
|
data {
|
|
name
|
|
value
|
|
}
|
|
}
|
|
stackerGrowth(when: $when, from: $from, to: $to) @skip(if: $subSelect) {
|
|
time
|
|
data {
|
|
name
|
|
value
|
|
}
|
|
}
|
|
itemGrowthSubs(when: $when, from: $from, to: $to, sub: $sub) @include(if: $subSelect) {
|
|
time
|
|
data {
|
|
name
|
|
value
|
|
}
|
|
}
|
|
revenueGrowthSubs(when: $when, from: $from, to: $to, sub: $sub) @include(if: $subSelect) {
|
|
time
|
|
data {
|
|
name
|
|
value
|
|
}
|
|
}
|
|
}`
|
|
|
|
const variablesFunc = vars => ({ ...vars, subSelect: vars.sub !== 'all' })
|
|
export const getServerSideProps = getGetServerSideProps({ query: GROWTH_QUERY, variables: variablesFunc })
|
|
|
|
export default function Growth ({ ssrData }) {
|
|
const router = useRouter()
|
|
const { when, from, to, sub } = router.query
|
|
|
|
const { data } = useQuery(GROWTH_QUERY, { variables: { when, from, to, sub, subSelect: sub !== 'all' } })
|
|
if (!data && !ssrData) return <PageLoading />
|
|
|
|
const {
|
|
registrationGrowth,
|
|
itemGrowth,
|
|
spendingGrowth,
|
|
spenderGrowth,
|
|
stackingGrowth,
|
|
stackerGrowth,
|
|
itemGrowthSubs,
|
|
revenueGrowthSubs
|
|
} = data || ssrData
|
|
|
|
if (sub === 'all') {
|
|
return (
|
|
<Layout>
|
|
<SubAnalyticsHeader />
|
|
<Row>
|
|
<Col className='mt-3'>
|
|
<div className='text-center text-muted fw-bold'>stackers</div>
|
|
<WhenLineChart data={stackerGrowth} />
|
|
</Col>
|
|
<Col className='mt-3'>
|
|
<div className='text-center text-muted fw-bold'>stacking</div>
|
|
<WhenAreaChart data={stackingGrowth} />
|
|
</Col>
|
|
</Row>
|
|
<Row>
|
|
<Col className='mt-3'>
|
|
<div className='text-center text-muted fw-bold'>spenders</div>
|
|
<WhenLineChart data={spenderGrowth} />
|
|
</Col>
|
|
<Col className='mt-3'>
|
|
<div className='text-center text-muted fw-bold'>spending</div>
|
|
<WhenAreaChart data={spendingGrowth} />
|
|
</Col>
|
|
</Row>
|
|
<Row>
|
|
<Col className='mt-3'>
|
|
<div className='text-center text-muted fw-bold'>registrations</div>
|
|
<WhenAreaChart data={registrationGrowth} />
|
|
</Col>
|
|
<Col className='mt-3'>
|
|
<div className='text-center text-muted fw-bold'>items</div>
|
|
<WhenComposedChart data={itemGrowth} areaNames={['posts', 'comments', 'jobs']} areaAxis='left' lineNames={['comments/posts', 'territories']} lineAxis='right' barNames={['zaps']} />
|
|
</Col>
|
|
</Row>
|
|
</Layout>
|
|
)
|
|
} else {
|
|
return (
|
|
<Layout>
|
|
<SubAnalyticsHeader />
|
|
<Row>
|
|
<Col className='mt-3'>
|
|
<div className='text-center text-muted fw-bold'>items</div>
|
|
<WhenLineChart data={itemGrowthSubs} />
|
|
</Col>
|
|
<Col className='mt-3'>
|
|
<div className='text-center text-muted fw-bold'>sats</div>
|
|
<WhenLineChart data={revenueGrowthSubs} />
|
|
</Col>
|
|
</Row>
|
|
</Layout>
|
|
)
|
|
}
|
|
}
|