Deleted the billing-redirect-button, checkout-redirect-button, and embedded-stripe-checkout components. Additionally, removed the shadcn directory, which encompassed billing-related icons. This change streamlines the subscription settings interface and organizes the system's payment management. This update is a stepping stone towards improving the billing system's overall architecture.
35 lines
888 B
TypeScript
35 lines
888 B
TypeScript
import { CreditCardIcon, HomeIcon, UserIcon } 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: <HomeIcon className={iconClasses} />,
|
|
end: true,
|
|
},
|
|
{
|
|
label: 'common:yourAccountTabLabel',
|
|
path: pathsConfig.app.personalAccountSettings,
|
|
Icon: <UserIcon className={iconClasses} />,
|
|
},
|
|
];
|
|
|
|
if (featureFlagsConfig.enablePersonalAccountBilling) {
|
|
routes.push({
|
|
label: 'common:billingTabLabel',
|
|
path: pathsConfig.app.personalAccountBilling,
|
|
Icon: <CreditCardIcon className={iconClasses} />,
|
|
});
|
|
}
|
|
|
|
export const personalAccountSidebarConfig = SidebarConfigSchema.parse({
|
|
routes,
|
|
});
|