| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- module.exports = {
- display: function(){
- let ingredientsSelect = document.querySelector("#recipeInputIngredients select");
- let categories = merchant.categorizeIngredients();
- while(ingredientsSelect.children.length > 0){
- ingredientsSelect.removeChild(ingredientsSelect.firstChild);
- }
- for(let category of categories){
- let optgroup = document.createElement("optgroup");
- optgroup.label = category.name;
- ingredientsSelect.appendChild(optgroup);
- for(let ingredient of category.ingredients){
- let option = document.createElement("option");
- option.value = ingredient.ingredient.id;
- option.innerText = `${ingredient.ingredient.name} (${ingredient.ingredient.unit})`;
- optgroup.appendChild(option);
- }
- }
- openSidebar(document.querySelector("#addRecipe"));
- },
- //Updates the number of ingredient inputs displayed for new recipes
- changeRecipeCount: function(){
- let newCount = document.querySelector("#ingredientCount").value;
- let ingredientsDiv = document.querySelector("#recipeInputIngredients");
- let oldCount = ingredientsDiv.children.length;
- if(newCount > oldCount){
- let newDivs = newCount - oldCount;
- for(let i = 0; i < newDivs; i++){
- let newNode = ingredientsDiv.children[0].cloneNode(true);
- newNode.children[2].children[0].value = "";
- ingredientsDiv.appendChild(newNode);
- }
- for(let i = 0; i < newCount; i++){
- ingredientsDiv.children[i].children[0].innerText = `INGREDIENT ${i + 1}`;
- }
- }else if(newCount < oldCount){
- let newDivs = oldCount - newCount;
- for(let i = 0; i < newDivs; i++){
- ingredientsDiv.removeChild(ingredientsDiv.children[ingredientsDiv.children.length-1]);
- }
- }
- },
- submit: function(){
- let newRecipe = {
- name: document.getElementById("newRecipeName").value,
- price: document.getElementById("newRecipePrice").value,
- ingredients: []
- }
- let inputs = document.querySelectorAll("#recipeInputIngredients > div");
- for(let i = 0; i < inputs.length; i++){
- for(let j = 0; j < merchant.ingredients.length; j++){
- if(merchant.ingredients[j].ingredient.id === inputs[i].children[1].children[0].value){
- newRecipe.ingredients.push({
- ingredient: inputs[i].children[1].children[0].value,
- quantity: convertToMain(merchant.ingredients[j].ingredient.unit, inputs[i].children[2].children[0].value)
- });
- break;
- }
- }
- }
- if(!validator.recipe(newRecipe)){
- return;
- }
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch("/recipe/create", {
- method: "POST",
- headers: {
- "Content-Type": "application/json;charset=utf-8"
- },
- body: JSON.stringify(newRecipe)
- })
- .then((response) => response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response);
- }else{
- let recipe = new Recipe(
- response._id,
- response.name,
- response.price,
- response.ingredients,
- merchant,
- );
-
- merchant.editRecipes([recipe]);
- banner.createNotification("RECIPE CREATED");
- }
- })
- .catch((err)=>{
- banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- },
- }
|