Add support of set dish, ingredients, sauce, drink and dessert for commands
This commit is contained in:
parent
2cf0dd800b
commit
7884295f5d
1 changed files with 77 additions and 31 deletions
|
@ -6,7 +6,7 @@ const drink = document.querySelector("#drink ul");
|
||||||
const dessert = document.querySelector("#dessert ul");
|
const dessert = document.querySelector("#dessert ul");
|
||||||
const list = document.querySelector(".list");
|
const list = document.querySelector(".list");
|
||||||
|
|
||||||
let current = {dish: null, ingredient: [], sauce: [], drink: null, dessert: null, price: {}};
|
let current = {dish: null, ingredient: [], sauce: [], drink: null, dessert: null};
|
||||||
let radios = {dish: null, drink: null, dessert: null};
|
let radios = {dish: null, drink: null, dessert: null};
|
||||||
let db = {dish: {}, ingredient: {}, sauce: {}, drink: {}, dessert: {}};
|
let db = {dish: {}, ingredient: {}, sauce: {}, drink: {}, dessert: {}};
|
||||||
|
|
||||||
|
@ -56,6 +56,7 @@ function addCmd(command) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function addDish(d) {
|
function addDish(d) {
|
||||||
|
db.dish[d.id] = d;
|
||||||
dish.insertAdjacentHTML("beforeend", `<li><input type="radio" name="dish" id="dish${d.id}"><label for="dish${d.id}">${d.name}</label></li>`);
|
dish.insertAdjacentHTML("beforeend", `<li><input type="radio" name="dish" id="dish${d.id}"><label for="dish${d.id}">${d.name}</label></li>`);
|
||||||
let e = document.querySelector(`input[id=dish${d.id}]`);
|
let e = document.querySelector(`input[id=dish${d.id}]`);
|
||||||
e.addEventListener("click", () => {
|
e.addEventListener("click", () => {
|
||||||
|
@ -71,6 +72,7 @@ function addDish(d) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function addIngredient(i) {
|
function addIngredient(i) {
|
||||||
|
db.ingredient[i.id] = i;
|
||||||
ingredient.insertAdjacentHTML("beforeend", `<li><input type="checkbox" disabled=true name="ingredient" id="ingredient${i.id}"><label for="ingredient${i.id}">${i.name}</label></li>`);
|
ingredient.insertAdjacentHTML("beforeend", `<li><input type="checkbox" disabled=true name="ingredient" id="ingredient${i.id}"><label for="ingredient${i.id}">${i.name}</label></li>`);
|
||||||
let e = document.querySelector(`input[id=ingredient${i.id}]`);
|
let e = document.querySelector(`input[id=ingredient${i.id}]`);
|
||||||
e.addEventListener("click", () => {
|
e.addEventListener("click", () => {
|
||||||
|
@ -79,6 +81,7 @@ function addIngredient(i) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function addSauce(s) {
|
function addSauce(s) {
|
||||||
|
db.sauce[s.id] = s;
|
||||||
sauce.insertAdjacentHTML("beforeend", `<li><input type="checkbox" disabled=true name="sauce" id="sauce${s.id}"><label for="sauce${s.id}">${s.name}</label></li>`);
|
sauce.insertAdjacentHTML("beforeend", `<li><input type="checkbox" disabled=true name="sauce" id="sauce${s.id}"><label for="sauce${s.id}">${s.name}</label></li>`);
|
||||||
let e = document.querySelector(`input[id=sauce${s.id}]`);
|
let e = document.querySelector(`input[id=sauce${s.id}]`);
|
||||||
e.addEventListener("click", () => {
|
e.addEventListener("click", () => {
|
||||||
|
@ -87,6 +90,7 @@ function addSauce(s) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function addDrink(d) {
|
function addDrink(d) {
|
||||||
|
db.drink[d.id] = d;
|
||||||
drink.insertAdjacentHTML("beforeend", `<li><input type="radio" name="drink" id="drink${d.id}"><label for="drink${d.id}">${d.name}</label></li>`);
|
drink.insertAdjacentHTML("beforeend", `<li><input type="radio" name="drink" id="drink${d.id}"><label for="drink${d.id}">${d.name}</label></li>`);
|
||||||
let e = document.querySelector(`input[id=drink${d.id}]`);
|
let e = document.querySelector(`input[id=drink${d.id}]`);
|
||||||
e.addEventListener("click", () => {
|
e.addEventListener("click", () => {
|
||||||
|
@ -95,6 +99,7 @@ function addDrink(d) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function addDessert(d) {
|
function addDessert(d) {
|
||||||
|
db.dessert[d.id] = d;
|
||||||
dessert.insertAdjacentHTML("beforeend", `<li><input type="radio" name="dessert" id="dessert${d.id}"><label for="dessert${d.id}">${d.name}</label></li>`);
|
dessert.insertAdjacentHTML("beforeend", `<li><input type="radio" name="dessert" id="dessert${d.id}"><label for="dessert${d.id}">${d.name}</label></li>`);
|
||||||
let e = document.querySelector(`input[id=dessert${d.id}]`);
|
let e = document.querySelector(`input[id=dessert${d.id}]`);
|
||||||
e.addEventListener("click", () => {
|
e.addEventListener("click", () => {
|
||||||
|
@ -116,10 +121,6 @@ function radioCheck (e) {
|
||||||
name = document.querySelector(`label[for=${e.id}]`).innerHTML;
|
name = document.querySelector(`label[for=${e.id}]`).innerHTML;
|
||||||
}
|
}
|
||||||
current[e.name] = curr;
|
current[e.name] = curr;
|
||||||
if (curr)
|
|
||||||
current.price[e.name] = db[e.name][curr.replace(e.name, "")].price;
|
|
||||||
else
|
|
||||||
current.price[e.name] = 0;
|
|
||||||
price();
|
price();
|
||||||
document.getElementById("p-"+e.name).innerHTML = name;
|
document.getElementById("p-"+e.name).innerHTML = name;
|
||||||
}
|
}
|
||||||
|
@ -134,10 +135,6 @@ function checkCheck(e) {
|
||||||
if (!e.checked)
|
if (!e.checked)
|
||||||
e.disabled = current[e.name].length === db.dish[current.dish]["max"+e.name.charAt(0).toUpperCase() + e.name.slice(1)+"s"];
|
e.disabled = current[e.name].length === db.dish[current.dish]["max"+e.name.charAt(0).toUpperCase() + e.name.slice(1)+"s"];
|
||||||
});
|
});
|
||||||
current.price[e.name] = 0;
|
|
||||||
for (let i of current[e.name]) {
|
|
||||||
current.price[e.name] += db[e.name][i].price
|
|
||||||
}
|
|
||||||
price();
|
price();
|
||||||
let names = [];
|
let names = [];
|
||||||
current[e.name].forEach(el=>names.push(document.querySelector(`label[for=${e.name}${el}]`).innerHTML));
|
current[e.name].forEach(el=>names.push(document.querySelector(`label[for=${e.name}${el}]`).innerHTML));
|
||||||
|
@ -237,9 +234,8 @@ socket.on("list command", data => {
|
||||||
list.removeChild(child);
|
list.removeChild(child);
|
||||||
child = list.lastElementChild;
|
child = list.lastElementChild;
|
||||||
}
|
}
|
||||||
for (let c of data) {
|
for (let c of data)
|
||||||
addCmd(c);
|
addCmd(c);
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
socket.on("list dish", data => {
|
socket.on("list dish", data => {
|
||||||
|
@ -248,10 +244,9 @@ socket.on("list dish", data => {
|
||||||
dish.removeChild(child);
|
dish.removeChild(child);
|
||||||
child = dish.lastElementChild;
|
child = dish.lastElementChild;
|
||||||
}
|
}
|
||||||
for (let d of data) {
|
for (let d of data)
|
||||||
addDish(d);
|
if (d.available)
|
||||||
db.dish[d.id] = d;
|
addDish(d);
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
socket.on("list ingredient", data => {
|
socket.on("list ingredient", data => {
|
||||||
|
@ -260,10 +255,9 @@ socket.on("list ingredient", data => {
|
||||||
ingredient.removeChild(child);
|
ingredient.removeChild(child);
|
||||||
child = ingredient.lastElementChild;
|
child = ingredient.lastElementChild;
|
||||||
}
|
}
|
||||||
for (let i of data) {
|
for (let i of data)
|
||||||
addIngredient(i);
|
if (i.available)
|
||||||
db.ingredient[i.id] = i;
|
addIngredient(i);
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
socket.on("list sauce", data => {
|
socket.on("list sauce", data => {
|
||||||
|
@ -272,10 +266,9 @@ socket.on("list sauce", data => {
|
||||||
sauce.removeChild(child);
|
sauce.removeChild(child);
|
||||||
child = sauce.lastElementChild;
|
child = sauce.lastElementChild;
|
||||||
}
|
}
|
||||||
for (let s of data) {
|
for (let s of data)
|
||||||
addSauce(s);
|
if (s.available)
|
||||||
db.sauce[s.id] = s;
|
addSauce(s);
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
socket.on("list drink", data => {
|
socket.on("list drink", data => {
|
||||||
|
@ -284,10 +277,9 @@ socket.on("list drink", data => {
|
||||||
drink.removeChild(child);
|
drink.removeChild(child);
|
||||||
child = drink.lastElementChild;
|
child = drink.lastElementChild;
|
||||||
}
|
}
|
||||||
for (let d of data) {
|
for (let d of data)
|
||||||
addDrink(d);
|
if (d.available)
|
||||||
db.drink[d.id] = d;
|
addDrink(d);
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
socket.on("list dessert", data => {
|
socket.on("list dessert", data => {
|
||||||
|
@ -296,10 +288,9 @@ socket.on("list dessert", data => {
|
||||||
dessert.removeChild(child);
|
dessert.removeChild(child);
|
||||||
child = dessert.lastElementChild;
|
child = dessert.lastElementChild;
|
||||||
}
|
}
|
||||||
for (let d of data) {
|
for (let d of data)
|
||||||
addDessert(d);
|
if (d.available)
|
||||||
db.dessert[d.id] = d;
|
addDessert(d);
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
socket.on("list user", data => {
|
socket.on("list user", data => {
|
||||||
|
@ -344,6 +335,61 @@ socket.on("add user", data => {
|
||||||
addCommand();
|
addCommand();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
socket.on("set dish", data => {
|
||||||
|
if (data.available && db.dish[data.id] === undefined) {
|
||||||
|
addDish(data);
|
||||||
|
} else if (!data.available && db.dish[data.id] !== undefined) {
|
||||||
|
dish.querySelector("#dish" + data.id).parentElement.remove();
|
||||||
|
delete db.dish[data.id];
|
||||||
|
} else {
|
||||||
|
db.dish[data.id] = data;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
socket.on("set ingredient", data => {
|
||||||
|
if (data.available && db.ingredient[data.id] === undefined) {
|
||||||
|
addIngredient(data);
|
||||||
|
} else if (!data.available && db.ingredient[data.id] !== undefined) {
|
||||||
|
ingredient.querySelector("#ingredient" + data.id).parentElement.remove();
|
||||||
|
delete db.ingredient[data.id];
|
||||||
|
} else {
|
||||||
|
db.ingredient[data.id] = data;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
socket.on("set sauce", data => {
|
||||||
|
if (data.available && db.sauce[data.id] === undefined) {
|
||||||
|
addSauce(data);
|
||||||
|
} else if (!data.available && db.sauce[data.id] !== undefined) {
|
||||||
|
sauce.querySelector("#sauce" + data.id).parentElement.remove();
|
||||||
|
delete db.sauce[data.id];
|
||||||
|
} else {
|
||||||
|
db.sauce[data.id] = data;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
socket.on("set drink", data => {
|
||||||
|
if (data.available && db.drink[data.id] === undefined) {
|
||||||
|
addDrink(data);
|
||||||
|
} else if (!data.available && db.drink[data.id] !== undefined) {
|
||||||
|
drink.querySelector("#drink" + data.id).parentElement.remove();
|
||||||
|
delete db.drink[data.id];
|
||||||
|
} else {
|
||||||
|
db.drink[data.id] = data;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
socket.on("set dessert", data => {
|
||||||
|
if (data.available && db.dessert[data.id] === undefined) {
|
||||||
|
addDessert(data);
|
||||||
|
} else if (!data.available && db.dessert[data.id] !== undefined) {
|
||||||
|
dessert.querySelector("#dessert" + data.id).parentElement.remove();
|
||||||
|
delete db.dessert[data.id];
|
||||||
|
} else {
|
||||||
|
db.dessert[data.id] = data;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
socket.on("price", data => {
|
socket.on("price", data => {
|
||||||
document.querySelector("#resume h2").innerHTML = data+"€";
|
document.querySelector("#resume h2").innerHTML = data+"€";
|
||||||
})
|
})
|
||||||
|
|
Reference in a new issue