1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/utils/route-path-helpers.ts

35 lines
968 B
TypeScript
Raw Normal View History

2021-10-01 19:38:34 +02:00
export const getTogglePath = (projectId: string, featureToggleName: string, newPath: boolean) => {
2021-10-15 09:39:37 +02:00
return `/projects/${projectId}/features${newPath ? `2/${featureToggleName}` : `/${featureToggleName}/strategies`}`;
};
export const getToggleCopyPath = (
projectId: string,
featureToggleName: string
) => {
return `/projects/${projectId}/features/${featureToggleName}/strategies/copy`;
};
export const getCreateTogglePath = (
projectId: string,
newPath: boolean = false,
query?: Object
) => {
const path = `/projects/${projectId}/create-toggle`;
let queryString;
if (query) {
queryString = Object.keys(query).reduce((acc, curr) => {
acc += `${curr}=${query[curr]}`;
return acc;
}, '');
}
if (queryString) {
return `${path}?${queryString}`;
}
return path;
};
export const getProjectEditPath = (projectId: string) => {
return `/projects/${projectId}/edit`;
};