72 lines
2.1 KiB
TypeScript
72 lines
2.1 KiB
TypeScript
// icons
|
|
import { SettingIcon } from "@/components/icons/attachment";
|
|
import { Props } from "@/components/icons/types";
|
|
import { EUserPermissions } from "./user-permissions";
|
|
// constants
|
|
|
|
export const WORKSPACE_SETTINGS = {
|
|
general: {
|
|
key: "general",
|
|
label: "General",
|
|
href: `/settings`,
|
|
access: [EUserPermissions.ADMIN],
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
members: {
|
|
key: "members",
|
|
label: "Members",
|
|
href: `/settings/members`,
|
|
access: [EUserPermissions.ADMIN],
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/members/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
"billing-and-plans": {
|
|
key: "billing-and-plans",
|
|
label: "Billing and plans",
|
|
href: `/settings/billing`,
|
|
access: [EUserPermissions.ADMIN],
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/billing/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
export: {
|
|
key: "export",
|
|
label: "Exports",
|
|
href: `/settings/exports`,
|
|
access: [EUserPermissions.ADMIN],
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/exports/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
webhooks: {
|
|
key: "webhooks",
|
|
label: "Webhooks",
|
|
href: `/settings/webhooks`,
|
|
access: [EUserPermissions.ADMIN],
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/webhooks/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
"api-tokens": {
|
|
key: "api-tokens",
|
|
label: "API tokens",
|
|
href: `/settings/api-tokens`,
|
|
access: [EUserPermissions.ADMIN],
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/api-tokens/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
};
|
|
|
|
export const WORKSPACE_SETTINGS_LINKS: {
|
|
key: string;
|
|
label: string;
|
|
href: string;
|
|
access: EUserPermissions[];
|
|
highlight: (pathname: string, baseUrl: string) => boolean;
|
|
Icon: React.FC<Props>;
|
|
}[] = [
|
|
WORKSPACE_SETTINGS["general"],
|
|
WORKSPACE_SETTINGS["members"],
|
|
WORKSPACE_SETTINGS["billing-and-plans"],
|
|
WORKSPACE_SETTINGS["export"],
|
|
WORKSPACE_SETTINGS["webhooks"],
|
|
WORKSPACE_SETTINGS["api-tokens"],
|
|
];
|