This commit updates the naming convention of icons from Lucide-React, moving some package dependencies to "peerDependencies" in 'team-accounts', 'admin' and 'auth'. Additionally, it includes tweaks to the development server command in apps/web package.json and adds a logger reference to the shared package. Furthermore, cleanup work has been performed within the features and UI packages, and new scripts to interact with Stripe have been added to the root package.json.
51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
import { CreditCard, LayoutDashboard, Settings, Users } from 'lucide-react';
|
|
|
|
import { SidebarConfigSchema } from '@kit/ui/sidebar-schema';
|
|
|
|
import featureFlagsConfig from '~/config/feature-flags.config';
|
|
import pathsConfig from '~/config/paths.config';
|
|
|
|
const iconClasses = 'w-4';
|
|
|
|
const routes = (account: string) => [
|
|
{
|
|
label: 'common:dashboardTabLabel',
|
|
path: pathsConfig.app.accountHome.replace('[account]', account),
|
|
Icon: <LayoutDashboard className={iconClasses} />,
|
|
end: true,
|
|
},
|
|
{
|
|
label: 'common:settingsTabLabel',
|
|
collapsible: false,
|
|
children: [
|
|
{
|
|
label: 'common:settingsTabLabel',
|
|
path: createPath(pathsConfig.app.accountSettings, account),
|
|
Icon: <Settings className={iconClasses} />,
|
|
},
|
|
{
|
|
label: 'common:accountMembers',
|
|
path: createPath(pathsConfig.app.accountMembers, account),
|
|
Icon: <Users className={iconClasses} />,
|
|
},
|
|
featureFlagsConfig.enableOrganizationBilling
|
|
? {
|
|
label: 'common:billingTabLabel',
|
|
path: createPath(pathsConfig.app.accountBilling, account),
|
|
Icon: <CreditCard className={iconClasses} />,
|
|
}
|
|
: undefined,
|
|
].filter(Boolean),
|
|
},
|
|
];
|
|
|
|
export function getOrganizationAccountSidebarConfig(account: string) {
|
|
return SidebarConfigSchema.parse({
|
|
routes: routes(account),
|
|
});
|
|
}
|
|
|
|
function createPath(path: string, account: string) {
|
|
return path.replace('[account]', account);
|
|
}
|