| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- class SubIngredient{
- constructor(id, ingredient, quantity, unit, parent){
- this.id = id;
- this._ingredient = ingredient;
- this.quantity = quantity;
- this.unit = unit;
- this.parent = parent;
- }
- get ingredient(){
- return merchant.getIngredient(this._ingredient).ingredient;
- }
- getDisplayQuantity(){
- let mult = controller.unitMultiplier(controller.unitType(this.parent.unit), this.parent.unit);
- return `${this.quantity * mult} ${this.unit} / ${this.parent.unit}`;
- }
- }
- class Ingredient{
- constructor(id, name, category, unitType, unit, subIngredients, convert, parent, unitSize = undefined){
- this._id = id;
- this._name = name;
- this._category = category;
- this._unitType = unitType;
- this._unit = unit;
- this._subIngredients = [];
- this._parent = parent;
- this._unitSize = unitSize;
- this._convert = convert;
- for(let i = 0; i < subIngredients.length; i++){
- this._subIngredients.push(new SubIngredient(
- subIngredients[i]._id,
- subIngredients[i].ingredient,
- subIngredients[i].quantity,
- subIngredients[i].unit,
- this
- ));
- }
- }
- get id(){
- return this._id;
- }
-
- set id(id){
- this._id = id;
- }
- get name(){
- return this._name;
- }
- set name(name){
- this._name = name;
- }
- get category(){
- return this._category;
- }
- set category(category){
- this._category = category;
- }
- get unitType(){
- return this._unitType;
- }
- set unitType(unitType){
- this._unitType = unitType;
- }
- get unit(){
- return this._unit;
- }
- set unit(unit){
- this._unit = unit;
- }
- get specialUnit(){
- return this._specialUnit;
- }
- get convert(){
- return this._convert;
- }
- get unitSize(){
- switch(this._unit){
- case "g":return this._unitSize;
- case "kg": return this._unitSize / 1000;
- case "oz": return this._unitSize / 28.3495;
- case "lb": return this._unitSize / 453.5924;
- case "ml": return this._unitSize * 1000;
- case "l": return this._unitSize;
- case "tsp": return this._unitSize * 202.8842;
- case "tbsp": return this._unitSize * 67.6278;
- case "ozfl": return this._unitSize * 33.8141;
- case "cup": return this._unitSize * 4.1667;
- case "pt": return this._unitSize * 2.1134;
- case "qt": return this._unitSize * 1.0567;
- case "gal": return this._unitSize / 3.7854;
- case "mm": return this._unitSize * 1000;
- case "cm": return this._unitSize * 100;
- case "m": return this._unitSize;
- case "in": return this._unitSize * 39.3701;
- case "ft": return this._unitSize * 3.2808;
- default: return this._unitSize;
- }
- }
- set unitSize(unitSize){
- if(unitSize < 0){
- return false;
- }
- this._unitSize = unitSize;
- }
- get subIngredients(){
- return this._subIngredients;
- }
- addIngredients(ingredients){
- for(let i = 0; i < ingredients.length; i++){
- this._subIngredients.push({
- ingredient: this._parent.getIngredient(ingredients[i].ingredient).ingredient,
- quantity: ingredients[i].quantity
- });
- }
- }
- replaceIngredients(ingredients){
- this._subIngredients = [];
- this.addIngredients(ingredients);
- }
- getBaseUnitSize(){
- return this._unitSize;
- }
- getNameAndUnit(){
- return `${this._name} (${this._unit.toUpperCase()})`;
- }
- /*
- Show matching unit types for this ingredient
- return = [String]
- */
- getPotentialUnits(){
- let mass = ["g", "kg", "oz", "lb"];
- let volume = ["ml", "l", "tsp", "tbsp", "ozfl", "cup", "pt", "qt", "gal"];
- let length = ["mm", "cm", "m", "in", "ft"];
- if(mass.includes(this._unit)) return mass;
- if(volume.includes(this._unit)) return volume;
- if(length.includes(this._unit)) return length;
- if(this._unit === "bottle") return volume;
- return [];
- }
- getUnitCost(){
- let totalCost = 0;
- let quantity = 0;
- for(let i = 0; i < this._parent.orders.length; i++){
- for(let j = 0; j < this._parent.orders[i].ingredients.length; j++){
- let ingredient = this._parent.orders[i].ingredients[j];
- if(ingredient.ingredient === this){
- totalCost += ingredient.pricePerUnit * ingredient.quantity;
- quantity += ingredient.quantity;
- break;
- }
- }
- }
- return (quantity === 0) ? 0 : totalCost / quantity;
- }
- /*
- Used when the unit on an ingredient does not match the RecipeIngredient unit
- Calculates the multiplier from RecipeIngredient quantity, to ingredient base unit (unit type)
- */
- calculateRecipeMultiplier(recipeQuantity, ingredientQuantity){
- let unitToBase = controller.baseUnit(ingredientQuantity, this._unit);
- return unitToBase / recipeQuantity;
- }
- }
- module.exports = Ingredient;
|