mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2024-12-28 02:16:07 +00:00
style: format code with Prettier
This commit fixes the style issues introduced in 18b22e7
according to the output
from Prettier.
Details: None
This commit is contained in:
parent
18b22e7928
commit
e60ff198d2
|
@ -4,7 +4,7 @@ const API_URL = "http://127.0.0.1:8080";
|
||||||
|
|
||||||
export async function getPopularToday(): Promise<Item[]> {
|
export async function getPopularToday(): Promise<Item[]> {
|
||||||
const response = await fetch(`${API_URL}/api/items`);
|
const response = await fetch(`${API_URL}/api/items`);
|
||||||
const {data, error}: JSONResponse = await response.json();
|
const { data, error }: JSONResponse = await response.json();
|
||||||
|
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
if (data?.item) {
|
if (data?.item) {
|
||||||
|
|
|
@ -25,7 +25,9 @@ export async function getPopularToday(): Promise<Item[]> {
|
||||||
return cache["popular_today"];
|
return cache["popular_today"];
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getMenuItems(): Promise<{ name: string; items: Item[] }[]> {
|
export async function getMenuItems(): Promise<
|
||||||
|
{ name: string; items: Item[] }[]
|
||||||
|
> {
|
||||||
await fakeDelay(20);
|
await fakeDelay(20);
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
|
@ -66,7 +68,11 @@ export async function getItemByUUID(uuid: string): Promise<Item> {
|
||||||
return data[0];
|
return data[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function postContactEmail(name: string, email: string, message: string): Promise<string> {
|
export async function postContactEmail(
|
||||||
|
name: string,
|
||||||
|
email: string,
|
||||||
|
message: string
|
||||||
|
): Promise<string> {
|
||||||
await fakeDelay(200);
|
await fakeDelay(200);
|
||||||
|
|
||||||
if (!name) throw new Error("Name missing");
|
if (!name) throw new Error("Name missing");
|
||||||
|
@ -77,7 +83,9 @@ export async function postContactEmail(name: string, email: string, message: str
|
||||||
return "Check your email to confirm the message!";
|
return "Check your email to confirm the message!";
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function postVerifyCart(cartData: Record<string, CartItem>): Promise<Record<string, CartItem>> {
|
export async function postVerifyCart(
|
||||||
|
cartData: Record<string, CartItem>
|
||||||
|
): Promise<Record<string, CartItem>> {
|
||||||
let verifiedItems: Item[] = [];
|
let verifiedItems: Item[] = [];
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -23,7 +23,7 @@ export type CartItem = {
|
||||||
|
|
||||||
export type JSONResponse = {
|
export type JSONResponse = {
|
||||||
data?: {
|
data?: {
|
||||||
item: Item[], // Todo Make this not just item type
|
item: Item[]; // Todo Make this not just item type
|
||||||
};
|
};
|
||||||
error?: string;
|
error?: string;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue