dont use [...path] routing since it breaks building statically
This commit is contained in:
@@ -8,14 +8,14 @@ export function getApiUrl(path: string): string {
|
||||
* @param path - The warren path (e.g. `a3f79579-9155-4492-a579-b0253c8d3bf8/my-directory/`)
|
||||
* @returns A prettier path `a3f79579-9155-4492-a579-b0253c8d3bf8/my-directory` -> `my-warren/my-directory`
|
||||
*/
|
||||
export function routeWithWarrenName(path: string): string {
|
||||
const warrens = useWarrenStore().warrens;
|
||||
export function routeWithWarrenName(warrenId: string, path: string): string {
|
||||
const warrenStore = useWarrenStore();
|
||||
|
||||
const id = path.split('/')[0];
|
||||
|
||||
if (!(id in warrens)) {
|
||||
if (!(warrenId in warrenStore.warrens)) {
|
||||
return path;
|
||||
}
|
||||
|
||||
return path.replace(id, warrens[id].name);
|
||||
const warrenName = warrenStore.warrens[warrenId].name;
|
||||
|
||||
return `${warrenName}${path}`;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user