feat: implement order notifications service with TTO reservation confirmation handling feat: create migration for TTO booking email webhook trigger
52 lines
1.6 KiB
TypeScript
52 lines
1.6 KiB
TypeScript
import { Euro, LayoutDashboard, Settings, Users } from 'lucide-react';
|
|
|
|
import { NavigationConfigSchema } from '@kit/ui/navigation-schema';
|
|
|
|
import featureFlagsConfig from './feature-flags.config';
|
|
import pathsConfig from './paths.config';
|
|
|
|
const iconClasses = 'w-4';
|
|
|
|
const getRoutes = (account: string) => [
|
|
{
|
|
children: [
|
|
{
|
|
label: 'common:routes.companyDashboard',
|
|
path: pathsConfig.app.accountHome.replace('[account]', account),
|
|
Icon: <LayoutDashboard className={iconClasses} />,
|
|
end: true,
|
|
},
|
|
{
|
|
label: 'common:routes.companyMembers',
|
|
path: createPath(pathsConfig.app.accountMembers, account),
|
|
Icon: <Users className={iconClasses} />,
|
|
},
|
|
featureFlagsConfig.enableTeamAccountBilling
|
|
? {
|
|
label: 'common:routes.billing',
|
|
path: createPath(pathsConfig.app.accountBilling, account),
|
|
Icon: <Euro className={iconClasses} />,
|
|
}
|
|
: undefined,
|
|
{
|
|
label: 'common:routes.companySettings',
|
|
path: createPath(pathsConfig.app.accountSettings, account),
|
|
Icon: <Settings className={iconClasses} />,
|
|
},
|
|
].filter(Boolean),
|
|
},
|
|
];
|
|
|
|
export function getTeamAccountSidebarConfig(account: string) {
|
|
return NavigationConfigSchema.parse({
|
|
routes: getRoutes(account),
|
|
style: process.env.NEXT_PUBLIC_TEAM_NAVIGATION_STYLE,
|
|
sidebarCollapsed: process.env.NEXT_PUBLIC_TEAM_SIDEBAR_COLLAPSED,
|
|
sidebarCollapsedStyle: process.env.NEXT_PUBLIC_SIDEBAR_COLLAPSED_STYLE,
|
|
});
|
|
}
|
|
|
|
export function createPath(path: string, account: string) {
|
|
return path.replace('[account]', account);
|
|
}
|