mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-16 06:58:46 +00:00
디렉터리 탐색 중 액세스 토큰이 만료됐을 때 로그인 페이지로 리다이렉션되던 문제 수정
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
import { error } from "@sveltejs/kit";
|
||||
import { z } from "zod";
|
||||
import { callGetApi } from "$lib/hooks";
|
||||
import type { DirectroyInfoResponse, FileInfoResponse } from "$lib/server/schemas";
|
||||
import type { PageServerLoad } from "./$types";
|
||||
import type { PageLoad } from "./$types";
|
||||
|
||||
export const load: PageServerLoad = async ({ params, fetch }) => {
|
||||
export const load: PageLoad = async ({ params, fetch }) => {
|
||||
const zodRes = z
|
||||
.object({
|
||||
id: z.coerce.number().int().positive().optional(),
|
||||
@@ -13,13 +14,13 @@ export const load: PageServerLoad = async ({ params, fetch }) => {
|
||||
const { id } = zodRes.data;
|
||||
|
||||
const directoryId = id ? id : ("root" as const);
|
||||
const res = await fetch(`/api/directory/${directoryId}`);
|
||||
const res = await callGetApi(`/api/directory/${directoryId}`, fetch);
|
||||
if (!res.ok) error(404, "Not found");
|
||||
|
||||
const directoryInfo: DirectroyInfoResponse = await res.json();
|
||||
const subDirectoryInfos = await Promise.all(
|
||||
directoryInfo.subDirectories.map(async (subDirectoryId) => {
|
||||
const res = await fetch(`/api/directory/${subDirectoryId}`);
|
||||
const res = await callGetApi(`/api/directory/${subDirectoryId}`, fetch);
|
||||
if (!res.ok) error(500, "Internal server error");
|
||||
return {
|
||||
...((await res.json()) as DirectroyInfoResponse),
|
||||
@@ -29,7 +30,7 @@ export const load: PageServerLoad = async ({ params, fetch }) => {
|
||||
);
|
||||
const fileInfos = await Promise.all(
|
||||
directoryInfo.files.map(async (fileId) => {
|
||||
const res = await fetch(`/api/file/${fileId}`);
|
||||
const res = await callGetApi(`/api/file/${fileId}`, fetch);
|
||||
if (!res.ok) error(500, "Internal server error");
|
||||
return {
|
||||
...((await res.json()) as FileInfoResponse),
|
||||
Reference in New Issue
Block a user