Files
stats/apps/start/src/routes/_steps.onboarding.$projectId.verify.tsx
Carl-Gerhard Lindesvärd a672b73947 wip
2026-03-11 23:38:22 +01:00

113 lines
3.4 KiB
TypeScript

import { useQuery } from '@tanstack/react-query';
import { createFileRoute, Link, redirect } from '@tanstack/react-router';
import { BoxSelectIcon } from 'lucide-react';
import { ButtonContainer } from '@/components/button-container';
import { FullPageEmptyState } from '@/components/full-page-empty-state';
import FullPageLoadingState from '@/components/full-page-loading-state';
import VerifyListener from '@/components/onboarding/onboarding-verify-listener';
import { VerifyFaq } from '@/components/onboarding/verify-faq';
import { LinkButton } from '@/components/ui/button';
import { useTRPC } from '@/integrations/trpc/react';
import { cn } from '@/lib/utils';
import { createEntityTitle, PAGE_TITLES } from '@/utils/title';
export const Route = createFileRoute('/_steps/onboarding/$projectId/verify')({
head: () => ({
meta: [{ title: createEntityTitle('Verify', PAGE_TITLES.ONBOARDING) }],
}),
beforeLoad: ({ context }) => {
if (!context.session?.session) {
throw redirect({ to: '/onboarding' });
}
},
component: Component,
loader: async ({ context, params }) => {
await context.queryClient.prefetchQuery(
context.trpc.project.getProjectWithClients.queryOptions({
projectId: params.projectId,
})
);
},
pendingComponent: FullPageLoadingState,
});
function Component() {
const { projectId } = Route.useParams();
const trpc = useTRPC();
const { data: events } = useQuery(
trpc.event.events.queryOptions(
{ projectId },
{
refetchInterval: 2500,
}
)
);
const isVerified = events?.data && events.data.length > 0;
const { data: project } = useQuery(
trpc.project.getProjectWithClients.queryOptions({ projectId })
);
if (!project) {
return (
<FullPageEmptyState icon={BoxSelectIcon} title="Project not found" />
);
}
const client = project.clients[0];
if (!client) {
return <FullPageEmptyState icon={BoxSelectIcon} title="Client not found" />;
}
return (
<div className="flex min-h-0 flex-1 flex-col">
<div className="scrollbar-thin flex-1 overflow-y-auto">
<div className="col gap-8 p-4">
<VerifyListener events={events?.data ?? []} />
<VerifyFaq project={project} />
</div>
</div>
<ButtonContainer className="mt-0 flex-shrink-0 border-t bg-background p-4">
<LinkButton
className="min-w-28 self-start"
href={`/onboarding/${project.id}/connect`}
size="lg"
variant={'secondary'}
>
Back
</LinkButton>
<div className="flex items-center gap-8">
{!isVerified && (
<Link
className="text-muted-foreground underline"
params={{
organizationId: project!.organizationId,
projectId: project!.id,
}}
to={'/$organizationId/$projectId'}
>
Skip for now
</Link>
)}
<LinkButton
className={cn(
'min-w-28 self-start',
!isVerified && 'pointer-events-none select-none opacity-20'
)}
params={{
organizationId: project!.organizationId,
projectId: project!.id,
}}
size="lg"
to={'/$organizationId/$projectId'}
>
Your dashboard
</LinkButton>
</div>
</ButtonContainer>
</div>
);
}