TastyBites/front/src/lib/test-data.ts
Fluffy 3198dec20c Start on Booking form
Clean up navigation bar
Form CSS
Add warning to run when skipping migrations
2024-05-10 14:46:53 +01:00

102 lines
2.1 KiB
TypeScript

import { type Item, Labels } from "./types";
const TestData: Item[] = [
{
uuid: "soap",
availability: true,
name: "Bar of Soap",
price: 69.99,
description: `
Example
`,
labels: [Labels.vegan, Labels.spicy],
},
{
uuid: "sock",
availability: true,
name: "Sock",
price: 21,
description: `
Example
`,
labels: [Labels.vegan, Labels.fish, Labels.nut, Labels.spicy],
},
{
uuid: "brick",
availability: true,
name: "Brick",
price: 0,
description: `
Example
`,
labels: [Labels.spicy],
},
{
uuid: "toast",
availability: true,
name: "Toast",
price: 4382749832743,
description: `
Example
`,
labels: [Labels.gluten],
},
{
uuid: "water",
availability: true,
name: "water",
price: 1,
description: `
Example
`,
labels: [Labels.fish],
},
{
uuid: "mouldy_bread",
availability: true,
name: "half eaten mouldy bread",
price: -99,
description: `
Example
`,
labels: [Labels.nut],
},
// {
// uuid: "gwagwa",
// availability: false,
// name: "GwaGwa",
// price: 69,
// labels: [Labels.nut],
// images: ["/item_images/dab.jpg"],
// },
{
uuid: "hogmelon",
availability: true,
name: "Hogermellon",
price: 1111,
description: `
This is a sample description.
Contains the following:
- hog
- melon
`,
labels: [Labels.nut, Labels.gluten, Labels.spicy, Labels.fish],
images: ["/item_images/wathog.jpg", "/item_images/sonichog.jpg"],
},
{
uuid: "bluhog",
availability: true,
name: "Blue HOGGGGG",
price: 0,
description: `
This is a sample description.
Blue Hog
`,
labels: [Labels.nut, Labels.gluten, Labels.spicy],
images: ["/item_images/sonichog.jpg"],
},
];
export default TestData;