| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- let newRecipe = {
- unchosen: [],
- display: function(){
- document.getElementById("sidebarDiv").classList.add("sidebarWide");
- document.getElementById("submitNewRecipe").onclick = ()=>{this.submit()};
- for(let i = 0; i < merchant.ingredients.length; i++){
- this.unchosen.push(merchant.ingredients[i].ingredient);
- }
- this.populateChoices();
- },
- populateChoices: function(){
- this.unchosen.sort((a, b) => (a.name > b.name) ? 1 : -1);
- let list = document.getElementById("recipeChoices");
- while(list.children.length > 0){
- list.removeChild(list.firstChild);
- }
- for(let i = 0; i < this.unchosen.length; i++){
- let ingredient = document.createElement("button");
- ingredient.innerText = this.unchosen[i].name;
- ingredient.classList.add("choosable");
- ingredient.onclick = ()=>{
- this.add(this.unchosen[i]);
- this.unchosen.splice(i, 1);
- this.populateChoices();
- };
- list.appendChild(ingredient);
- }
- },
- add: function(ingredient){
- let element = document.getElementById("newRecipeChosenIngredient").content.children[0].cloneNode(true);
- element.children[0].innerText = ingredient.name;
- element.children[1].children[0].placeholder = `QUANTITY (${ingredient.unit.toUpperCase()})`;
- element.children[1].children[1].onclick = ()=>{
- this.unchosen.push(ingredient);
- element.parentElement.removeChild(element);
- this.populateChoices();
- };
- element.ingredient = ingredient;
- document.getElementById("newRecipeChosenList").appendChild(element);
- },
- submit: function(){
- let data = {
- name: document.getElementById("newRecipeName").value,
- price: document.getElementById("newRecipePrice").value,
- ingredients: []
- };
- let ingredients = document.getElementById("newRecipeChosenList").children;
- for(let i = 0; i < ingredients.length; i++){
- let ingredient = ingredients[i].ingredient;
- data.ingredients.push({
- ingredient: ingredient.id,
- quantity: controller.baseUnit(ingredients[i].children[1].children[0].value, ingredient.unit)
- });
- }
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch("/recipe/create", {
- method: "post",
- headers: {
- "Content-Type": "application/json"
- },
- body: JSON.stringify(data)
- })
- .then(response => response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- controller.createBanner(response, "error");
- }else{
- merchant.addRecipes([response]);
- state.updateRecipes();
- controller.createBanner("RECIPE CREATED", "success");
- controller.openStrand("recipeBook");
- }
- })
- .catch((err)=>{
- controller.createBanner("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE", "error");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- }
- };
- module.exports = newRecipe;
|