* chore: removed viewer role * chore: indentation * chore: remove viewer role * chore: handled user permissions in store * chore: updated the migration file * chore: updated user permissions store * chore: removed the owner key * chore: code refactor * chore: code refactor * chore: code refactor * chore: code refactor * chore: code refactor * fix: build error * chore: updated user permissions store and handled the permissions fetch in workspace and project wrappers * chore: package user enum updated * chore: user permission updated * chore: user permission updated * chore: resolved build errors * chore: resolved build error * chore: resolved build errors * chore: computedFn deep map issue resolved * chore: added back migration * chore: added new field in project table * chore: removed member store in users * chore: private project for admins * chore: workspace notification access validation updated * fix: workspace member edit option * fix: project intake permission validation updated * chore: workspace export settings permission updated * chore: guest_view_all_issues added * chore: guest_view_all_issues added * chore: key changed for guest access * chore: added validation for individual issues * chore: changed the dashboard issues count * chore: added new yarn file * chore: modified yarn file * chore: project page permission updated * chore: project page permission updated * chore: member setting ux updated * chore: build error * fix: yarn lock * fix: build error --------- Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so>
82 lines
2.5 KiB
TypeScript
82 lines
2.5 KiB
TypeScript
// icons
|
|
import { SettingIcon } from "@/components/icons/attachment";
|
|
// types
|
|
import { Props } from "@/components/icons/types";
|
|
// constants
|
|
import { EUserPermissions } from "../../user-permissions";
|
|
|
|
export const PROJECT_SETTINGS = {
|
|
general: {
|
|
key: "general",
|
|
label: "General",
|
|
href: `/settings`,
|
|
access: [EUserPermissions.ADMIN, EUserPermissions.MEMBER, EUserPermissions.GUEST],
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
members: {
|
|
key: "members",
|
|
label: "Members",
|
|
href: `/settings/members`,
|
|
access: [EUserPermissions.ADMIN, EUserPermissions.MEMBER],
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/members/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
features: {
|
|
key: "features",
|
|
label: "Features",
|
|
href: `/settings/features`,
|
|
access: [EUserPermissions.ADMIN],
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/features/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
states: {
|
|
key: "states",
|
|
label: "States",
|
|
href: `/settings/states`,
|
|
access: [EUserPermissions.ADMIN, EUserPermissions.MEMBER],
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/states/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
labels: {
|
|
key: "labels",
|
|
label: "Labels",
|
|
href: `/settings/labels`,
|
|
access: [EUserPermissions.ADMIN, EUserPermissions.MEMBER],
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/labels/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
estimates: {
|
|
key: "estimates",
|
|
label: "Estimates",
|
|
href: `/settings/estimates`,
|
|
access: [EUserPermissions.ADMIN],
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/estimates/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
automations: {
|
|
key: "automations",
|
|
label: "Automations",
|
|
href: `/settings/automations`,
|
|
access: [EUserPermissions.ADMIN],
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/settings/automations/`,
|
|
Icon: SettingIcon,
|
|
},
|
|
};
|
|
|
|
export const PROJECT_SETTINGS_LINKS: {
|
|
key: string;
|
|
label: string;
|
|
href: string;
|
|
access: EUserPermissions[];
|
|
highlight: (pathname: string, baseUrl: string) => boolean;
|
|
Icon: React.FC<Props>;
|
|
}[] = [
|
|
PROJECT_SETTINGS["general"],
|
|
PROJECT_SETTINGS["members"],
|
|
PROJECT_SETTINGS["features"],
|
|
PROJECT_SETTINGS["states"],
|
|
PROJECT_SETTINGS["labels"],
|
|
PROJECT_SETTINGS["estimates"],
|
|
PROJECT_SETTINGS["automations"],
|
|
];
|