Ending up doing some extra things: Consolidated booking queries: We had both cancel and cancelMany, but functionally they’re the same, only one accepts an array and the other doesn’t. Didn’t see much point in keeping the single cancel as it wasn’t used anywhere. Thus, I could rename cancelMany to be the one stop method. remove method for API now properly supports body so we don’t have to hijack the typing in certain places * fix(SW-2508): now sending additional params to cancel api for new contract Approved-by: Niclas Edenvin
119 lines
2.7 KiB
TypeScript
119 lines
2.7 KiB
TypeScript
import merge from "deepmerge"
|
|
import fetchRetry from "fetch-retry"
|
|
|
|
import { env } from "@/env/server"
|
|
|
|
import type {
|
|
RequestOptionsWithJSONBody,
|
|
RequestOptionsWithOutBody,
|
|
} from "@/types/fetch"
|
|
import type { Endpoint } from "./endpoints"
|
|
|
|
export { endpoints } from "./endpoints"
|
|
|
|
const defaultOptions: RequestInit = {
|
|
cache: "no-store",
|
|
headers: {
|
|
Accept: "application/json",
|
|
"Content-Type": "application/json",
|
|
},
|
|
mode: "cors",
|
|
}
|
|
|
|
const wrappedFetch = fetchRetry(fetch, {
|
|
retries: 3,
|
|
retryDelay: function (attempt) {
|
|
return Math.pow(2, attempt) * 150 // 150, 300, 600
|
|
},
|
|
})
|
|
|
|
export async function get(
|
|
endpoint: Endpoint,
|
|
options: RequestOptionsWithOutBody,
|
|
params = {}
|
|
) {
|
|
const url = new URL(env.API_BASEURL)
|
|
url.pathname = endpoint
|
|
url.search = new URLSearchParams(params).toString()
|
|
return wrappedFetch(
|
|
url,
|
|
merge.all([defaultOptions, { method: "GET" }, options])
|
|
)
|
|
}
|
|
|
|
export async function patch(
|
|
endpoint: Endpoint | `${Endpoint}/${string}`,
|
|
options: RequestOptionsWithJSONBody,
|
|
params = {}
|
|
) {
|
|
const { body, ...requestOptions } = options
|
|
const url = new URL(env.API_BASEURL)
|
|
url.pathname = endpoint
|
|
url.search = new URLSearchParams(params).toString()
|
|
return wrappedFetch(
|
|
url,
|
|
merge.all([
|
|
defaultOptions,
|
|
{ body: JSON.stringify(body), method: "PATCH" },
|
|
requestOptions,
|
|
])
|
|
)
|
|
}
|
|
|
|
export async function post(
|
|
endpoint: Endpoint | `${Endpoint}/${string}`,
|
|
options: RequestOptionsWithJSONBody,
|
|
params = {}
|
|
) {
|
|
const { body, ...requestOptions } = options
|
|
const url = new URL(env.API_BASEURL)
|
|
url.pathname = endpoint
|
|
url.search = new URLSearchParams(params).toString()
|
|
return wrappedFetch(
|
|
url,
|
|
merge.all([
|
|
defaultOptions,
|
|
{ body: JSON.stringify(body), method: "POST" },
|
|
requestOptions,
|
|
])
|
|
)
|
|
}
|
|
|
|
export async function put(
|
|
endpoint: Endpoint | `${Endpoint}/${string}`,
|
|
options: RequestOptionsWithJSONBody,
|
|
params = {}
|
|
) {
|
|
const { body, ...requestOptions } = options
|
|
const url = new URL(env.API_BASEURL)
|
|
url.pathname = endpoint
|
|
url.search = new URLSearchParams(params).toString()
|
|
return wrappedFetch(
|
|
url,
|
|
merge.all([
|
|
defaultOptions,
|
|
{ body: JSON.stringify(body), method: "PUT" },
|
|
requestOptions,
|
|
])
|
|
)
|
|
}
|
|
|
|
export async function remove(
|
|
endpoint: Endpoint | `${Endpoint}/${string}`,
|
|
options: RequestOptionsWithJSONBody,
|
|
params = {}
|
|
) {
|
|
const { body, ...requestOptions } = options
|
|
const url = new URL(env.API_BASEURL)
|
|
url.pathname = endpoint
|
|
url.search = new URLSearchParams(params).toString()
|
|
return wrappedFetch(
|
|
url,
|
|
merge.all([
|
|
defaultOptions,
|
|
{ body: JSON.stringify(body), method: "DELETE" },
|
|
requestOptions,
|
|
])
|
|
)
|
|
}
|