Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydzhou committed Oct 1, 2024
1 parent 919ee51 commit d51d31a
Showing 1 changed file with 8 additions and 26 deletions.
34 changes: 8 additions & 26 deletions app/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,41 +293,23 @@ export function fetch(
options?: Record<string, unknown>,
): Promise<any> {
if (window.__TAURI__) {
return tauriStreamFetch(url, {
...options,
body: (options?.body || options?.data) as any,
});
// const payload = options?.body || options?.data;
// return tauriFetch(url, {
// ...options,
// body:
// payload &&
// ({
// type: "Text",
// payload,
// } as any),
// timeout: ((options?.timeout as number) || REQUEST_TIMEOUT_MS) / 1000,
// responseType:
// options?.responseType == "text" ? ResponseType.Text : ResponseType.JSON,
// } as any);
return tauriStreamFetch(url, options);
}
return window.fetch(url, options);
}

export function adapter(config: Record<string, unknown>) {
const { baseURL, url, params, ...rest } = config;
const { baseURL, url, params, data: body, ...rest } = config;
const path = baseURL ? `${baseURL}${url}` : url;
const fetchUrl = params
? `${path}?${new URLSearchParams(params as any).toString()}`
: path;
return fetch(fetchUrl as string, { ...rest, responseType: "text" }).then(
(res) => {
const { status, headers, statusText } = res;
return res
.text()
.then((data: string) => ({ status, statusText, headers, data }));
},
);
return fetch(fetchUrl as string, { ...rest, body }).then((res) => {
const { status, headers, statusText } = res;
return res
.text()
.then((data: string) => ({ status, statusText, headers, data }));
});
}

export function safeLocalStorage(): {
Expand Down

0 comments on commit d51d31a

Please sign in to comment.