* chore: issue activity store * chore: updated issue activity store and handled workspace settings order * chore: added paramenter on the issue worklog component * chore: hanlded popover close from prop
72 lines
2.2 KiB
TypeScript
72 lines
2.2 KiB
TypeScript
// icons
|
|
import { SettingIcon } from "@/components/icons/attachment";
|
|
import { Props } from "@/components/icons/types";
|
|
// constants
|
|
import { EUserWorkspaceRoles } from "@/constants/workspace";
|
|
|
|
export const WORKSPACE_SETTINGS = {
|
|
general: {
|
|
key: "general",
|
|
label: "General",
|
|
href: `/settings`,
|
|
access: EUserWorkspaceRoles.GUEST,
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
members: {
|
|
key: "members",
|
|
label: "Members",
|
|
href: `/settings/members`,
|
|
access: EUserWorkspaceRoles.GUEST,
|
|
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: EUserWorkspaceRoles.ADMIN,
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/billing/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
export: {
|
|
key: "export",
|
|
label: "Exports",
|
|
href: `/settings/exports`,
|
|
access: EUserWorkspaceRoles.MEMBER,
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/exports/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
webhooks: {
|
|
key: "webhooks",
|
|
label: "Webhooks",
|
|
href: `/settings/webhooks`,
|
|
access: EUserWorkspaceRoles.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: EUserWorkspaceRoles.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: EUserWorkspaceRoles;
|
|
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"],
|
|
];
|