feat: dashboard v2, esm, upgrades (#211)
* esm * wip * wip * wip * wip * wip * wip * subscription notice * wip * wip * wip * fix envs * fix: update docker build * fix * esm/types * delete dashboard :D * add patches to dockerfiles * update packages + catalogs + ts * wip * remove native libs * ts * improvements * fix redirects and fetching session * try fix favicon * fixes * fix * order and resize reportds within a dashboard * improvements * wip * added userjot to dashboard * fix * add op * wip * different cache key * improve date picker * fix table * event details loading * redo onboarding completely * fix login * fix * fix * extend session, billing and improve bars * fix * reduce price on 10M
This commit is contained in:
committed by
GitHub
parent
436e81ecc9
commit
81a7e5d62e
174
apps/start/src/components/sidebar-organization-menu.tsx
Normal file
174
apps/start/src/components/sidebar-organization-menu.tsx
Normal file
@@ -0,0 +1,174 @@
|
||||
import {
|
||||
CogIcon,
|
||||
CreditCardIcon,
|
||||
LayoutListIcon,
|
||||
UsersIcon,
|
||||
WorkflowIcon,
|
||||
} from 'lucide-react';
|
||||
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { useAppParams } from '@/hooks/use-app-params';
|
||||
import { pushModal } from '@/modals';
|
||||
import type { RouterOutputs } from '@/trpc/client';
|
||||
import { cn } from '@/utils/cn';
|
||||
import { Link, useNavigate } from '@tanstack/react-router';
|
||||
import { AnimatePresence, motion } from 'framer-motion';
|
||||
import { ChevronDownIcon, PlusIcon } from 'lucide-react';
|
||||
import { useCallback, useEffect, useState } from 'react';
|
||||
import { Badge } from './ui/badge';
|
||||
import {
|
||||
DropdownMenu,
|
||||
DropdownMenuContent,
|
||||
DropdownMenuItem,
|
||||
DropdownMenuTrigger,
|
||||
} from './ui/dropdown-menu';
|
||||
|
||||
export default function SidebarOrganizationMenu({
|
||||
organization,
|
||||
}: {
|
||||
organization: RouterOutputs['organization']['list'][number];
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<Link
|
||||
className={cn(
|
||||
'flex items-center gap-2 rounded-md px-3 py-2 font-medium transition-all hover:bg-def-200 text-[13px]',
|
||||
)}
|
||||
activeOptions={{ exact: true }}
|
||||
to="/$organizationId"
|
||||
from="/$organizationId"
|
||||
>
|
||||
<LayoutListIcon size={20} />
|
||||
<div className="flex-1">Projects</div>
|
||||
</Link>
|
||||
<Link
|
||||
className={cn(
|
||||
'flex items-center gap-2 rounded-md px-3 py-2 font-medium transition-all hover:bg-def-200 text-[13px]',
|
||||
)}
|
||||
activeOptions={{ exact: true }}
|
||||
to="/$organizationId/settings"
|
||||
from="/$organizationId"
|
||||
>
|
||||
<CogIcon size={20} />
|
||||
<div className="flex-1">Settings</div>
|
||||
</Link>
|
||||
<Link
|
||||
className={cn(
|
||||
'flex items-center gap-2 rounded-md px-3 py-2 font-medium transition-all hover:bg-def-200 text-[13px]',
|
||||
)}
|
||||
activeOptions={{ exact: true }}
|
||||
to="/$organizationId/billing"
|
||||
from="/$organizationId"
|
||||
>
|
||||
<CreditCardIcon size={20} />
|
||||
<div className="flex-1">Billing</div>
|
||||
{organization?.isTrial && <Badge>Trial</Badge>}
|
||||
{organization?.isExpired && <Badge>Expired</Badge>}
|
||||
{organization?.isWillBeCanceled && <Badge>Canceled</Badge>}
|
||||
{organization?.isCanceled && <Badge>Canceled</Badge>}
|
||||
</Link>
|
||||
<Link
|
||||
className={cn(
|
||||
'flex items-center gap-2 rounded-md px-3 py-2 font-medium transition-all hover:bg-def-200 text-[13px]',
|
||||
)}
|
||||
to="/$organizationId/members"
|
||||
from="/$organizationId"
|
||||
>
|
||||
<UsersIcon size={20} />
|
||||
<div className="flex-1">Members</div>
|
||||
</Link>
|
||||
<Link
|
||||
className={cn(
|
||||
'flex items-center gap-2 rounded-md px-3 py-2 font-medium transition-all hover:bg-def-200 text-[13px]',
|
||||
)}
|
||||
to="/$organizationId/integrations"
|
||||
from="/$organizationId"
|
||||
>
|
||||
<WorkflowIcon size={20} />
|
||||
<div className="flex-1">Integrations</div>
|
||||
</Link>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export function ActionCTAButton() {
|
||||
const navigate = useNavigate();
|
||||
|
||||
const ACTIONS = [
|
||||
{
|
||||
label: 'Create a project',
|
||||
icon: PlusIcon,
|
||||
onClick: () => pushModal('AddProject'),
|
||||
},
|
||||
{
|
||||
label: 'Invite a user',
|
||||
icon: UsersIcon,
|
||||
onClick: () => pushModal('CreateInvite'),
|
||||
},
|
||||
{
|
||||
label: 'Add integration',
|
||||
icon: WorkflowIcon,
|
||||
onClick: () =>
|
||||
navigate({
|
||||
to: '/$organizationId/integrations',
|
||||
from: '/$organizationId',
|
||||
}),
|
||||
},
|
||||
];
|
||||
|
||||
const [currentActionIndex, setCurrentActionIndex] = useState(0);
|
||||
|
||||
useEffect(() => {
|
||||
const interval = setInterval(() => {
|
||||
setCurrentActionIndex((prevIndex) => (prevIndex + 1) % ACTIONS.length);
|
||||
}, 2000);
|
||||
|
||||
return () => clearInterval(interval);
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<div className="mb-4">
|
||||
<DropdownMenu>
|
||||
<DropdownMenuTrigger asChild>
|
||||
<Button className="w-full justify-between" size="default">
|
||||
<div className="flex items-center gap-2">
|
||||
<PlusIcon size={16} />
|
||||
<div className="relative h-5 flex items-center">
|
||||
<AnimatePresence mode="popLayout">
|
||||
<motion.span
|
||||
key={currentActionIndex}
|
||||
initial={{ y: 20, opacity: 0 }}
|
||||
animate={{ y: 0, opacity: 1 }}
|
||||
exit={{ y: -20, opacity: 0 }}
|
||||
transition={{
|
||||
type: 'spring',
|
||||
stiffness: 300,
|
||||
damping: 25,
|
||||
duration: 0.3,
|
||||
}}
|
||||
className="absolute whitespace-nowrap"
|
||||
>
|
||||
{ACTIONS[currentActionIndex].label}
|
||||
</motion.span>
|
||||
</AnimatePresence>
|
||||
</div>
|
||||
</div>
|
||||
<ChevronDownIcon size={16} />
|
||||
</Button>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent className="w-56" align="start">
|
||||
{ACTIONS.map((action) => (
|
||||
<DropdownMenuItem
|
||||
onClick={action.onClick}
|
||||
className="cursor-pointer"
|
||||
key={action.label}
|
||||
>
|
||||
<action.icon className="mr-2 h-4 w-4" />
|
||||
{action.label}
|
||||
</DropdownMenuItem>
|
||||
))}
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user