* MED-151: add profile view and working smoking dashboard card * update zod * move some components to shared * move some components to shared * remove console.logs * remove unused password form components * only check null for variant * use pathsconfig
148 lines
3.5 KiB
TypeScript
148 lines
3.5 KiB
TypeScript
'use client';
|
|
|
|
import DropdownLink from '@kit/shared/components/ui/dropdown-link';
|
|
import { useRouter } from 'next/navigation';
|
|
|
|
import SignOutDropdownItem from '@kit/shared/components/sign-out-dropdown-item';
|
|
import { Home, Menu } from 'lucide-react';
|
|
|
|
import { AccountSelector } from '@kit/accounts/account-selector';
|
|
import {
|
|
featureFlagsConfig,
|
|
getTeamAccountSidebarConfig,
|
|
pathsConfig,
|
|
} from '@kit/shared/config';
|
|
import { useSignOut } from '@kit/supabase/hooks/use-sign-out';
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from '@kit/ui/dialog';
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from '@kit/ui/dropdown-menu';
|
|
import { Trans } from '@kit/ui/trans';
|
|
|
|
type Accounts = Array<{
|
|
label: string | null;
|
|
value: string | null;
|
|
image: string | null;
|
|
}>;
|
|
|
|
const features = {
|
|
enableTeamAccounts: featureFlagsConfig.enableTeamAccounts,
|
|
enableTeamCreation: featureFlagsConfig.enableTeamCreation,
|
|
};
|
|
|
|
export const TeamAccountLayoutMobileNavigation = (
|
|
props: React.PropsWithChildren<{
|
|
account: string;
|
|
userId: string;
|
|
accounts: Accounts;
|
|
}>,
|
|
) => {
|
|
const signOut = useSignOut();
|
|
|
|
const Links = getTeamAccountSidebarConfig(props.account).routes.map(
|
|
(item, index) => {
|
|
if ('children' in item) {
|
|
return item.children.map((child) => {
|
|
return (
|
|
<DropdownLink
|
|
key={child.path}
|
|
Icon={child.Icon}
|
|
path={child.path}
|
|
label={child.label}
|
|
/>
|
|
);
|
|
});
|
|
}
|
|
|
|
if ('divider' in item) {
|
|
return <DropdownMenuSeparator key={index} />;
|
|
}
|
|
},
|
|
);
|
|
|
|
return (
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger>
|
|
<Menu className={'h-9'} />
|
|
</DropdownMenuTrigger>
|
|
|
|
<DropdownMenuContent sideOffset={10} className={'w-screen rounded-none'}>
|
|
<TeamAccountsModal
|
|
userId={props.userId}
|
|
accounts={props.accounts}
|
|
account={props.account}
|
|
/>
|
|
|
|
{Links}
|
|
|
|
<DropdownMenuSeparator />
|
|
|
|
<SignOutDropdownItem onSignOut={() => signOut.mutateAsync()} />
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
);
|
|
};
|
|
|
|
|
|
|
|
function TeamAccountsModal(props: {
|
|
accounts: Accounts;
|
|
userId: string;
|
|
account: string;
|
|
}) {
|
|
const router = useRouter();
|
|
|
|
return (
|
|
<Dialog>
|
|
<DialogTrigger asChild>
|
|
<DropdownMenuItem
|
|
className={'flex h-12 w-full items-center space-x-2'}
|
|
onSelect={(e) => e.preventDefault()}
|
|
>
|
|
<Home className={'h-4'} />
|
|
|
|
<span>
|
|
<Trans i18nKey={'common:yourAccounts'} />
|
|
</span>
|
|
</DropdownMenuItem>
|
|
</DialogTrigger>
|
|
|
|
<DialogContent>
|
|
<DialogHeader>
|
|
<DialogTitle>
|
|
<Trans i18nKey={'common:yourAccounts'} />
|
|
</DialogTitle>
|
|
</DialogHeader>
|
|
|
|
<div className={'py-6'}>
|
|
<AccountSelector
|
|
className={'w-full max-w-full'}
|
|
collisionPadding={0}
|
|
userId={props.userId}
|
|
accounts={props.accounts}
|
|
features={features}
|
|
selectedAccount={props.account}
|
|
onAccountChange={(value) => {
|
|
const path = value
|
|
? pathsConfig.app.accountHome.replace('[account]', value)
|
|
: pathsConfig.app.home;
|
|
|
|
router.replace(path);
|
|
}}
|
|
/>
|
|
</div>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|