You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import { prependBaseUrl } from '../shared/utils'
|
|
|
|
export const server = {
|
|
async get(url: string) {
|
|
const res = await fetch(prependBaseUrl(url), { credentials: 'include' })
|
|
return await res.json()
|
|
},
|
|
async post<T>(url: string, body?: T) {
|
|
const res = await fetch(prependBaseUrl(url), {
|
|
method: 'POST',
|
|
credentials: 'include',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify(body),
|
|
})
|
|
|
|
return await res.json()
|
|
},
|
|
async patch<T>(url: string, body?: T) {
|
|
const res = await fetch(prependBaseUrl(url), {
|
|
method: 'PATCH',
|
|
credentials: 'include',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify(body),
|
|
})
|
|
|
|
return await res.json()
|
|
},
|
|
async delete(url: string) {
|
|
const res = await fetch(prependBaseUrl(url), {
|
|
method: 'DELETE',
|
|
credentials: 'include',
|
|
})
|
|
|
|
return await res.json()
|
|
},
|
|
}
|