-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make it deployable to Netlify (#2931)
- Loading branch information
Showing
18 changed files
with
133 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import db from './db.json'; | ||
|
||
const products = db.products; | ||
const productMap = new Map(products.map((product) => [product.id, product])); | ||
|
||
export { | ||
products, | ||
productMap | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|
||
// Normally this would be in a database. | ||
export const userCartItems = new Map(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import lightcookie from 'lightcookie'; | ||
import { userCartItems } from '../../models/session'; | ||
|
||
export function get(_params: any, request: Request) { | ||
let cookie = request.headers.get('cookie'); | ||
let userId = cookie ? lightcookie.parse(cookie)['user-id'] : '1'; // default for testing | ||
if (!userId || !userCartItems.has(userId)) { | ||
return { | ||
body: JSON.stringify({ items: [] }) | ||
}; | ||
} | ||
let items = userCartItems.get(userId); | ||
let array = Array.from(items.values()); | ||
|
||
return { | ||
body: JSON.stringify({ items: array }) | ||
} | ||
} | ||
|
||
interface AddToCartItem { | ||
id: number; | ||
name: string; | ||
} | ||
|
||
export async function post(_params: any, request: Request) { | ||
const item: AddToCartItem = await request.json(); | ||
|
||
let cookie = request.headers.get('cookie'); | ||
let userId = lightcookie.parse(cookie)['user-id']; | ||
|
||
if (!userCartItems.has(userId)) { | ||
userCartItems.set(userId, new Map()); | ||
} | ||
|
||
let cart = userCartItems.get(userId); | ||
if (cart.has(item.id)) { | ||
cart.get(item.id).count++; | ||
} else { | ||
cart.set(item.id, { id: item.id, name: item.name, count: 1 }); | ||
} | ||
|
||
return { | ||
body: JSON.stringify({ | ||
ok: true | ||
}) | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { products } from '../../models/db'; | ||
|
||
export function get() { | ||
return { | ||
body: JSON.stringify(products) | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { productMap } from '../../../models/db'; | ||
|
||
export function get({ id: idStr }) { | ||
const id = Number(idStr); | ||
if (productMap.has(id)) { | ||
const product = productMap.get(id); | ||
|
||
return { | ||
body: JSON.stringify(product) | ||
}; | ||
} else { | ||
return new Response(null, { | ||
status: 400, | ||
statusText: 'Not found' | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters