dont use [...path] routing since it breaks building statically

This commit is contained in:
2025-07-18 11:02:48 +02:00
parent 5ff19ef372
commit ecb201dc69
13 changed files with 300 additions and 188 deletions

View File

@@ -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}`;
}