* fix: simply billing * fix usage graph * imporve billing more + supporter prompt on self-hosting * revert service change * revert query builder * fix: comments
154 lines
4.8 KiB
TypeScript
154 lines
4.8 KiB
TypeScript
import { useAppContext } from '@/hooks/use-app-context';
|
|
import { useTRPC } from '@/integrations/trpc/react';
|
|
import { cn } from '@/utils/cn';
|
|
import type { IServiceOrganization } from '@openpanel/db';
|
|
import { useQuery } from '@tanstack/react-query';
|
|
import { Link, useLocation, useParams } from '@tanstack/react-router';
|
|
import { MenuIcon, XIcon } from 'lucide-react';
|
|
import { useEffect, useState } from 'react';
|
|
import { FeedbackButton } from './feedback-button';
|
|
import { LogoSquare } from './logo';
|
|
import { ProfileToggle } from './profile-toggle';
|
|
import ProjectSelector from './project-selector';
|
|
import SidebarOrganizationMenu, {
|
|
ActionCTAButton as ActionOrganizationCTAButton,
|
|
} from './sidebar-organization-menu';
|
|
import SidebarProjectMenu, {
|
|
ActionCTAButton as ActionProjectCTAButton,
|
|
} from './sidebar-project-menu';
|
|
import { Button } from './ui/button';
|
|
|
|
export function Sidebar() {
|
|
const { organizationId, projectId } = useParams({ strict: false });
|
|
const trpc = useTRPC();
|
|
|
|
// Get organizations data
|
|
const { data: organizations = [] } = useQuery(
|
|
trpc.organization.list.queryOptions(),
|
|
);
|
|
|
|
// Get projects data when we have an organization
|
|
const { data: projects = [] } = useQuery({
|
|
...trpc.project.list.queryOptions({
|
|
organizationId: organizationId || null,
|
|
}),
|
|
enabled: !!organizationId,
|
|
});
|
|
|
|
// Get dashboards data when we have a project
|
|
const { data: dashboards = [] } = useQuery({
|
|
...trpc.dashboard.list.queryOptions({
|
|
projectId: projectId || '',
|
|
}),
|
|
enabled: !!projectId,
|
|
});
|
|
|
|
if (projectId && organizationId) {
|
|
return (
|
|
<SidebarContainer organizations={organizations} projects={projects}>
|
|
<ActionProjectCTAButton />
|
|
<SidebarProjectMenu dashboards={dashboards} />
|
|
</SidebarContainer>
|
|
);
|
|
}
|
|
|
|
// Otherwise show the original sidebar structure
|
|
return (
|
|
<SidebarContainer organizations={organizations} projects={projects}>
|
|
<ActionOrganizationCTAButton />
|
|
<div className="mb-2 font-medium text-muted-foreground">Organization</div>
|
|
<SidebarOrganizationMenu
|
|
organization={organizations.find((o) => o.id === organizationId)!}
|
|
/>
|
|
</SidebarContainer>
|
|
);
|
|
}
|
|
|
|
interface SidebarContainerProps {
|
|
organizations: IServiceOrganization[];
|
|
projects: Array<{ id: string; name: string; organizationId: string }>;
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export function SidebarContainer({
|
|
organizations,
|
|
projects,
|
|
children,
|
|
}: SidebarContainerProps) {
|
|
const [active, setActive] = useState(false);
|
|
const location = useLocation();
|
|
const { isSelfHosted } = useAppContext();
|
|
|
|
useEffect(() => {
|
|
setActive(false);
|
|
}, [location]);
|
|
|
|
return (
|
|
<>
|
|
<button
|
|
type="button"
|
|
onClick={() => setActive(false)}
|
|
className={cn(
|
|
'fixed bottom-0 left-0 right-0 top-0 z-40 backdrop-blur-sm transition-opacity',
|
|
active
|
|
? 'pointer-events-auto opacity-100'
|
|
: 'pointer-events-none opacity-0',
|
|
)}
|
|
/>
|
|
<div
|
|
className={cn(
|
|
'fixed left-0 top-0 z-40 flex h-screen w-72 flex-col border-r border-border bg-card transition-transform',
|
|
'-translate-x-72 lg:-translate-x-0', // responsive
|
|
active && 'translate-x-0', // force active on mobile
|
|
)}
|
|
>
|
|
<div className="absolute -right-12 flex h-16 items-center lg:hidden">
|
|
<Button
|
|
size="icon"
|
|
onClick={() => setActive((p) => !p)}
|
|
variant={'outline'}
|
|
>
|
|
{active ? <XIcon size={16} /> : <MenuIcon size={16} />}
|
|
</Button>
|
|
</div>
|
|
<div className="flex h-16 shrink-0 items-center gap-2 border-b border-border px-4">
|
|
<Link to="/">
|
|
<LogoSquare className="max-h-8" />
|
|
</Link>
|
|
<ProjectSelector
|
|
align="start"
|
|
projects={projects}
|
|
organizations={organizations}
|
|
/>
|
|
</div>
|
|
<div
|
|
className={cn([
|
|
'flex flex-grow col gap-1 overflow-auto p-4',
|
|
"[&_a[data-status='active']]:bg-def-200",
|
|
])}
|
|
>
|
|
{children}
|
|
|
|
<div className="mt-auto w-full pt-6">
|
|
<div className="row gap-2 justify-between">
|
|
<FeedbackButton />
|
|
<ProfileToggle />
|
|
</div>
|
|
{isSelfHosted && (
|
|
<a
|
|
href="https://openpanel.dev/supporter"
|
|
className="text-center text-sm w-full mt-2 border rounded p-2 font-medium block hover:underline hover:text-primary outline-none"
|
|
>
|
|
Self-hosted instance, support us!
|
|
</a>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<div className="fixed bottom-0 left-0 right-0 pointer-events-none">
|
|
<div className="h-8 w-full bg-gradient-to-t from-card to-card/0" />
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|