* feat: adding new copyright info on all files * chore: adding CI
52 lines
1.8 KiB
TypeScript
52 lines
1.8 KiB
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
import { GROUPED_WORKSPACE_SETTINGS, PROJECT_SETTINGS_FLAT_MAP } from "@plane/constants";
|
|
|
|
const hrefToLabelMap = (options: Record<string, Array<{ href: string; i18n_label: string; [key: string]: any }>>) =>
|
|
Object.values(options)
|
|
.flat()
|
|
.reduce(
|
|
(acc, setting) => {
|
|
acc[setting.href] = setting.i18n_label;
|
|
return acc;
|
|
},
|
|
{} as Record<string, string>
|
|
);
|
|
|
|
const workspaceHrefToLabelMap = hrefToLabelMap(GROUPED_WORKSPACE_SETTINGS);
|
|
|
|
const projectHrefToLabelMap = PROJECT_SETTINGS_FLAT_MAP.reduce(
|
|
(acc, setting) => {
|
|
acc[setting.href] = setting.i18n_label;
|
|
return acc;
|
|
},
|
|
{} as Record<string, string>
|
|
);
|
|
|
|
export const pathnameToAccessKey = (pathname: string) => {
|
|
const pathArray = pathname.replace(/^\/|\/$/g, "").split("/"); // Regex removes leading and trailing slashes
|
|
const workspaceSlug = pathArray[0];
|
|
const accessKey = pathArray.slice(1, 3).join("/");
|
|
return { workspaceSlug, accessKey: `/${accessKey}` || "" };
|
|
};
|
|
|
|
export const getWorkspaceActivePath = (pathname: string) => {
|
|
const parts = pathname.split("/").filter(Boolean);
|
|
const settingsIndex = parts.indexOf("settings");
|
|
if (settingsIndex === -1) return null;
|
|
const subPath = "/" + parts.slice(settingsIndex, settingsIndex + 2).join("/");
|
|
return workspaceHrefToLabelMap[subPath];
|
|
};
|
|
|
|
export const getProjectActivePath = (pathname: string) => {
|
|
const parts = pathname.split("/").filter(Boolean);
|
|
const settingsIndex = parts.indexOf("settings");
|
|
if (settingsIndex === -1) return null;
|
|
const subPath = parts.slice(settingsIndex + 3, settingsIndex + 4).join("/");
|
|
return subPath ? projectHrefToLabelMap["/" + subPath] : projectHrefToLabelMap[subPath];
|
|
};
|