-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove live route * cafeteria v1 * added hide variables * meals v1 completed
- Loading branch information
Showing
11 changed files
with
475 additions
and
19 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,191 @@ | ||
export interface MealDescription { | ||
readonly nameMeal: string | ||
readonly ingredients: string | ||
readonly isVegan?: boolean | ||
readonly isVegetarian?: boolean | ||
readonly isGlutenFree?: boolean | ||
} | ||
export interface Meals { | ||
readonly title: string | ||
readonly description: string | ||
readonly provider?: string | ||
readonly mealTitle?: string | ||
readonly mealDescription: MealDescription[] | ||
} | ||
|
||
export const meals: Meals[] = [ | ||
{ | ||
title: 'Breakfast', | ||
description: `We will provide you with a breakfast to start the day with energy.`, | ||
title: "Friday's dinner", | ||
provider: 'Bar de la FIB', | ||
mealTitle: 'Warm Bocatas', | ||
mealDescription: [ | ||
{ | ||
nameMeal: 'Croquetas', | ||
ingredients: '', | ||
}, | ||
{ | ||
nameMeal: 'Breaded chicken', | ||
ingredients: '', | ||
}, | ||
{ | ||
nameMeal: 'Bacon and cheese', | ||
ingredients: '', | ||
}, | ||
{ | ||
nameMeal: 'Hamburger and cheese', | ||
ingredients: '', | ||
}, | ||
{ | ||
nameMeal: 'Tortilla de patatas (spanish omelette)', | ||
ingredients: '', | ||
isVegetarian: true, | ||
}, | ||
{ | ||
nameMeal: 'Vegan', | ||
ingredients: '', | ||
isVegan: true, | ||
}, | ||
{ | ||
nameMeal: 'Hamburger and cheese - gluten free', | ||
ingredients: '', | ||
isGlutenFree: true, | ||
}, | ||
], | ||
}, | ||
{ | ||
title: 'Saturday Midnight snack', | ||
mealTitle: 'Waffle or Crepe', | ||
mealDescription: [ | ||
{ | ||
nameMeal: 'Waffle or Crepe', | ||
ingredients: '', | ||
}, | ||
{ | ||
nameMeal: 'Toppings', | ||
ingredients: 'Chocolate, Strawberry, Whipped cream, Sugar', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: 'Saturday Breakfast', | ||
mealTitle: 'Cold bocatas and pasteries', | ||
mealDescription: [ | ||
{ | ||
nameMeal: 'Bocatas', | ||
ingredients: | ||
'Fuet, Queso, Jamón York, Jamón Serrano, Tortilla de patatas', | ||
}, | ||
{ | ||
nameMeal: 'Bolleria', | ||
ingredients: 'Croissant de chocolate, Croissant de crema', | ||
}, | ||
{ | ||
nameMeal: 'Zumos', | ||
ingredients: 'Naranja, Piña', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: 'Saturday Lunch', | ||
provider: 'La bambina', | ||
mealTitle: 'Paella', | ||
mealDescription: [ | ||
{ | ||
nameMeal: 'Paella valenciana', | ||
ingredients: '', | ||
isGlutenFree: true, | ||
}, | ||
{ | ||
nameMeal: 'Paella vegetariana', | ||
ingredients: '', | ||
isVegetarian: true, | ||
isVegan: true, | ||
isGlutenFree: true, | ||
}, | ||
], | ||
}, | ||
{ | ||
title: 'Saturday Afternoon snack', | ||
provider: 'Pura fruta', | ||
mealTitle: 'Ice cream time', | ||
mealDescription: [ | ||
{ | ||
nameMeal: 'Chocolate', | ||
ingredients: '', | ||
isGlutenFree: true, | ||
}, | ||
], | ||
}, | ||
{ | ||
title: 'Saturday Dinner', | ||
provider: 'Dominos', | ||
mealTitle: 'Pizza time', | ||
mealDescription: [ | ||
{ | ||
nameMeal: 'Gluten free pizza', | ||
ingredients: 'Cheese, Tomato sauce, Ham', | ||
isGlutenFree: true, | ||
}, | ||
{ | ||
nameMeal: 'Campesina', | ||
ingredients: '', | ||
isVegetarian: true, | ||
}, | ||
{ | ||
nameMeal: 'BBQ', | ||
ingredients: '', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: 'Sunday Midnight snack', | ||
mealTitle: 'Make your own yogurt', | ||
mealDescription: [ | ||
{ | ||
nameMeal: 'Yogurt', | ||
ingredients: '', | ||
isGlutenFree: true, | ||
}, | ||
{ | ||
nameMeal: 'Vegetal Yogurt', | ||
ingredients: '', | ||
isVegetarian: true, | ||
isVegan: true, | ||
isGlutenFree: true, | ||
}, | ||
{ | ||
nameMeal: 'Toppings', | ||
ingredients: 'Chocolate, Strawberry, Whipped cream, Sugar', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: 'Lunch', | ||
description: `We will provide you with a lunch to keep you going through the day.`, | ||
title: 'Sunday Breakfast', | ||
mealTitle: 'Cold bocatas and pasteries', | ||
mealDescription: [ | ||
{ | ||
nameMeal: 'Bocatas', | ||
ingredients: | ||
'Fuet, Queso, Jamón York, Jamón Serrano, Tortilla de patatas', | ||
}, | ||
{ | ||
nameMeal: 'Bolleria', | ||
ingredients: 'Croissant de chocolate, Croissant de crema', | ||
}, | ||
{ | ||
nameMeal: 'Zumos', | ||
ingredients: 'Naranja, Piña', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: 'Dinner', | ||
description: `We will provide you with a dinner to keep you going through the night.`, | ||
title: 'Sunday Lunch', | ||
provider: 'TBD', | ||
mealTitle: 'TBD', | ||
mealDescription: [ | ||
{ | ||
nameMeal: 'TBD', | ||
ingredients: '', | ||
}, | ||
], | ||
}, | ||
] |
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
Oops, something went wrong.