The admin-dashboard.loader file was refactored to use a newly created AdminDashboardService. This service encapsulates the logic for fetching dashboard data. Translations related to account settings, privacy policy, terms of service, and cookie policy were updated for better readability. Changes also include minor reorganizing of code files for clearer structure.
35 lines
861 B
TypeScript
35 lines
861 B
TypeScript
import { CreditCard, Home, User } 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 = [
|
|
{
|
|
label: 'common:homeTabLabel',
|
|
path: pathsConfig.app.home,
|
|
Icon: <Home className={iconClasses} />,
|
|
end: true,
|
|
},
|
|
{
|
|
label: 'account:accountTabLabel',
|
|
path: pathsConfig.app.personalAccountSettings,
|
|
Icon: <User className={iconClasses} />,
|
|
},
|
|
];
|
|
|
|
if (featureFlagsConfig.enablePersonalAccountBilling) {
|
|
routes.push({
|
|
label: 'common:billingTabLabel',
|
|
path: pathsConfig.app.personalAccountBilling,
|
|
Icon: <CreditCard className={iconClasses} />,
|
|
});
|
|
}
|
|
|
|
export const personalAccountSidebarConfig = SidebarConfigSchema.parse({
|
|
routes,
|
|
});
|