summaryrefslogtreecommitdiff
path: root/examples/ssr/src/api.ts
blob: 74e09eb735f3828bd3282fccd9681fc696ec997d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
export interface Product {
	id: number;
	name: string;
	price: number;
	image: string;
}

interface User {
	id: number;
}

interface Cart {
	items: Array<{
		id: number;
		name: string;
		count: number;
	}>;
}

async function get<T>(
	incomingReq: Request,
	endpoint: string,
	cb: (response: Response) => Promise<T>
): Promise<T> {
	const origin = new URL(incomingReq.url).origin;
	const response = await fetch(`${origin}${endpoint}`, {
		credentials: 'same-origin',
		headers: incomingReq.headers,
	});
	if (!response.ok) {
		// TODO make this better...
		throw new Error('Fetch failed');
	}
	return cb(response);
}

export async function getProducts(incomingReq: Request): Promise<Product[]> {
	return get<Product[]>(incomingReq, '/api/products', async (response) => {
		const products: Product[] = await response.json();
		return products;
	});
}

export async function getProduct(incomingReq: Request, id: number): Promise<Product> {
	return get<Product>(incomingReq, `/api/products/${id}`, async (response) => {
		const product: Product = await response.json();
		return product;
	});
}

export async function getUser(incomingReq: Request): Promise<User> {
	return get<User>(incomingReq, `/api/user`, async (response) => {
		const user: User = await response.json();
		return user;
	});
}

export async function getCart(incomingReq: Request): Promise<Cart> {
	return get<Cart>(incomingReq, `/api/cart`, async (response) => {
		const cart: Cart = await response.json();
		return cart;
	});
}

export async function addToUserCart(id: number | string, name: string): Promise<void> {
	await fetch(`${location.origin}/api/cart`, {
		credentials: 'same-origin',
		method: 'POST',
		mode: 'no-cors',
		headers: {
			'Content-Type': 'application/json',
			Cache: 'no-cache',
		},
		body: JSON.stringify({
			id,
			name,
		}),
	});
}