| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759 |
- (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
- class Ingredient{
- constructor(id, name, category, unitType, unit, parent, specialUnit = undefined, unitSize = undefined){
- if(!this.isSanitaryString(name)){
- banner.createError("NAME CONTAINS ILLEGAL CHARCTERS");
- return false;
- }
- if(!this.isSanitaryString(category)){
- banner.createError("CATEGORY CONTAINS ILLEGAL CHARACTERS");
- return false;
- }
- this._id = id;
- this._name = name;
- this._category = category;
- this._unitType = unitType;
- this._unit = unit;
- this._parent = parent;
- if(specialUnit){
- this._specialUnit = specialUnit;
- this._unitSize = unitSize;
- }
- }
- get id(){
- return this._id;
- }
- get name(){
- return this._name;
- }
- set name(name){
- if(!this.isSanitaryString(name)){
- return false;
- }
- this._name = name;
- }
- get category(){
- return this._category;
- }
- set category(category){
- if(!this.isSanitaryString(category)){
- return false;
- }
- this._category = category;
- }
- get unitType(){
- return this._unitType;
- }
- get unit(){
- return this._unit;
- }
- set unit(unit){
- this._unit = unit;
- }
- get parent(){
- return this._parent;
- }
- get specialUnit(){
- return this._specialUnit;
- }
- 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;
- }
- getNameAndUnit(){
- if(this._specialUnit === "bottle"){
- return `${this._name} (BOTTLES)`;
- }
- return `${this._name} (${this._unit.toUpperCase()})`;
- }
- isSanitaryString(str){
- let disallowed = ["\\", "<", ">", "$", "{", "}", "(", ")"];
- for(let i = 0; i < disallowed.length; i++){
- if(str.includes(disallowed[i])){
- return false;
- }
- }
- return true;
- }
- }
- module.exports = Ingredient;
- },{}],2:[function(require,module,exports){
- class MerchantIngredient{
- constructor(ingredient, quantity){
- if(quantity < 0){
- banner.createError("QUANTITY CANNOT BE A NEGATIVE NUMBER");
- return false;
- }
-
- this._quantity = quantity;
- this._ingredient = ingredient;
- }
- get ingredient(){
- return this._ingredient;
- }
- get quantity(){
- if(this._ingredient.specialUnit === "bottle"){
- return this._quantity / this._ingredient._unitSize;
- }
- switch(this._ingredient.unit){
- case "g":return this._quantity;
- case "kg": return this._quantity / 1000;
- case "oz": return this._quantity / 28.3495;
- case "lb": return this._quantity / 453.5924;
- case "ml": return this._quantity * 1000;
- case "l": return this._quantity;
- case "tsp": return this._quantity * 202.8842;
- case "tbsp": return this._quantity * 67.6278;
- case "ozfl": return this._quantity * 33.8141;
- case "cup": return this._quantity * 4.1667;
- case "pt": return this._quantity * 2.1134;
- case "qt": return this._quantity * 1.0567;
- case "gal": return this._quantity / 3.7854;
- case "mm": return this._quantity * 1000;
- case "cm": return this._quantity * 100;
- case "m": return this._quantity;
- case "in": return this._quantity * 39.3701;
- case "ft": return this._quantity * 3.2808;
- default: return this._quantity;
- }
- }
- updateQuantity(quantity){
- this._quantity += this.convertToBase(quantity);
- }
- convertToBase(quantity){
- switch(this._ingredient.unit){
- case "g": return quantity;
- case "kg": return quantity * 1000;
- case "oz": return quantity * 28.3495;
- case "lb": return quantity * 453.5924;
- case "ml": return quantity / 1000;
- case "l": return quantity;
- case "tsp": return quantity / 202.8842;
- case "tbsp": return quantity / 67.6278;
- case "ozfl": return quantity / 33.8141;
- case "cup": return quantity / 4.1667;
- case "pt": return quantity / 2.1134;
- case "qt": return quantity / 1.0567;
- case "gal": return quantity * 3.7854;
- case "mm": return quantity / 1000;
- case "cm": return quantity / 100;
- case "m": return quantity;
- case "in": return quantity / 39.3701;
- case "ft": return quantity / 3.2808;
- default: return quantity;
- }
- }
- getQuantityDisplay(){
- if(this._ingredient.specialUnit === "bottle"){
- return `${this.quantity.toFixed(2)} BOTTLES`;
- }
- return `${this.quantity.toFixed(2)} ${this._ingredient.unit.toUpperCase()}`;
- }
- }
- class Merchant{
- constructor(oldMerchant, transactions, modules){
- this._modules = modules;
- this._name = oldMerchant.name;
- this._pos = oldMerchant.pos;
- this._ingredients = [];
- this._recipes = [];
- this._transactions = [];
- this._orders = [];
- this._units = {
- mass: ["g", "kg", "oz", "lb"],
- volume: ["ml", "l", "tsp", "tbsp", "ozfl", "cup", "pt", "qt", "gal"],
- length: ["mm", "cm", "m", "in", "ft"],
- other: ["each", "bottle"]
- }
-
- //populate ingredients
- for(let i = 0; i < oldMerchant.inventory.length; i++){
- const ingredient = new modules.Ingredient(
- oldMerchant.inventory[i].ingredient._id,
- oldMerchant.inventory[i].ingredient.name,
- oldMerchant.inventory[i].ingredient.category,
- oldMerchant.inventory[i].ingredient.unitType,
- oldMerchant.inventory[i].defaultUnit,
- this,
- oldMerchant.inventory[i].ingredient.specialUnit,
- oldMerchant.inventory[i].ingredient.unitSize
- );
- const merchantIngredient = new MerchantIngredient(
- ingredient,
- oldMerchant.inventory[i].quantity,
- );
- this._ingredients.push(merchantIngredient);
- }
- //populate recipes
- for(let i = 0; i < oldMerchant.recipes.length; i++){
- let ingredients = [];
- for(let j = 0; j < oldMerchant.recipes[i].ingredients.length; j++){
- const ingredient = oldMerchant.recipes[i].ingredients[j];
- for(let k = 0; k < this._ingredients.length; k++){
- if(ingredient.ingredient === this._ingredients[k].ingredient.id){
- ingredients.push({
- ingredient: this._ingredients[k].ingredient,
- quantity: ingredient.quantity
- });
- break;
- }
- }
- }
- this._recipes.push(new this._modules.Recipe(
- oldMerchant.recipes[i]._id,
- oldMerchant.recipes[i].name,
- oldMerchant.recipes[i].price,
- ingredients,
- this
- ));
- }
- //populate transactions
- for(let i = 0; i < transactions.length; i++){
- this._transactions.push(new modules.Transaction(
- transactions[i]._id,
- transactions[i].date,
- transactions[i].recipes,
- this
- ));
- }
- }
- get modules(){
- return this._modules;
- }
- get name(){
- return this._name;
- }
- set name(name){
- if(this.isSanitaryString(name)){
- this._name = name;
- }
- return false;
- }
- get pos(){
- return this._pos;
- }
- get ingredients(){
- return this._ingredients;
- }
- addIngredient(ingredient, quantity){
- const merchantIngredient = new MerchantIngredient(ingredient, quantity);
- this._ingredients.push(merchantIngredient);
- this._modules.home.isPopulated = false;
- this._modules.ingredients.isPopulated = false;
- }
- removeIngredient(ingredient){
- const index = this._ingredients.indexOf(ingredient);
- if(index === undefined){
- return false;
- }
- this._ingredients.splice(index, 1);
- this._modules.home.isPopulated = false;
- this._modules.ingredients.isPopulated = false;
- }
- updateIngredient(ingredient, quantity){
- const index = this._ingredients.indexOf(ingredient);
- if(index === undefined){
- return false;
- }
- this._ingredients[index].quantity = quantity;
- this._modules.home.isPopulated = false;
- this._modules.ingredients.isPopulated = false;
- }
- getIngredient(id){
- for(let i = 0; i < this._ingredients.length; i++){
- if(this._ingredients[i].ingredient.id === id){
- return this._ingredients[i];
- }
- }
- }
- get recipes(){
- return this._recipes;
- }
- addRecipe(recipe){
- this._recipes.push(recipe);
- this._modules.recipeBook.isPopulated = false;
- }
- removeRecipe(recipe){
- const index = this._recipes.indexOf(recipe);
- if(index === undefined){
- return false;
- }
- this._recipes.splice(index, 1);
- this._modules.recipeBook.isPopulated = false;
- }
- /*
- recipe = {
- name: required,
- price: required,
- ingredients: [{
- ingredient: id of ingredient,
- quantity: quantity of ingredient
- }]
- }
- */
- updateRecipe(recipe){
- for(let i = 0; i < this._recipes.length; i++){
- if(this._recipes[i].id === recipe._id){
- this._recipes[i].name = recipe.name;
- this._recipes[i].price = recipe.price;
-
- this._recipes[i].removeIngredients();
- for(let j = 0; j < recipe.ingredients.length; j++){
- for(let k = 0; k < this._ingredients.length; k++){
- if(this._ingredients[k].ingredient.id === recipe.ingredients[j].ingredient){
- this._recipes[i].addIngredient(
- this._ingredients[k].ingredient,
- recipe.ingredients[j].quantity
- );
- break;
- }
- }
- }
- break;
- }
- }
- this._modules.recipeBook.isPopulated = false;
- }
- getTransactions(from = 0, to = new Date()){
- if(merchant._transactions.length <= 0){
- return [];
- }
- if(from === 0){
- from = this._transactions[this._transactions.length-1].date;
- }
- const {start, end} = this.getTransactionIndices(from, to);
- return this._transactions.slice(start, end + 1);
- }
- addTransaction(transaction){
- this._transactions.push(transaction);
- this._transactions.sort((a, b)=>{
- if(a.date > b.date){
- return -1;
- }
- return 1;
- });
- let ingredients = {};
- for(let i = 0; i < transaction.recipes.length; i++){
- const recipe = transaction.recipes[i];
- for(let j = 0; j < recipe.recipe.ingredients.length; j++){
- const ingredient = recipe.recipe.ingredients[j];
- if(ingredients[ingredient.ingredient.id]){
- ingredients[ingredient.ingredient.id] += recipe.quantity * ingredient.quantity;
- }else{
- ingredients[ingredient.ingredient.id] = recipe.quantity * ingredient.quantity;
- }
- }
- }
- const keys = Object.keys(ingredients);
- for(let i = 0; i < keys.length; i++){
- for(let j = 0; j < this._ingredients.length; j++){
- if(keys[i] === this._ingredients[j].ingredient.id){
- this._ingredients[j].updateQuantity(-ingredients[keys[i]]);
- }
- }
- }
- this._modules.home.isPopulated = false;
- this._modules.ingredients.isPopulated = false;
- this._modules.analytics.newData = true;
- }
- removeTransaction(transaction){
- const index = this._transactions.indexOf(transaction);
- if(index === undefined){
- return false;
- }
- this._transactions.splice(index, 1);
- let ingredients = {};
- for(let i = 0; i < transaction.recipes.length; i++){
- const recipe = transaction.recipes[i];
- for(let j = 0; j < recipe.recipe.ingredients.length; j++){
- const ingredient = recipe.recipe.ingredients[j];
- if(ingredients[ingredient.ingredient.id]){
- ingredients[ingredient.ingredient.id] += ingredient.quantity * recipe.quantity;
- }else{
- ingredients[ingredient.ingredient.id] = ingredient.quantity * recipe.quantity;
- }
- }
- }
- const keys = Object.keys(ingredients);
- for(let i = 0; i < keys.length; i++){
- for(let j = 0; j < this._ingredients.length; j++){
- if(keys[i] === this._ingredients[j].ingredient.id){
- this._ingredients[j].updateQuantity(ingredients[keys[i]]);
- break;
- }
- }
- }
- this._modules.home.isPopulated = false;
- this._modules.ingredients.isPopulated = false;
- this._modules.analytics.newData = true;
- }
- get orders(){
- return this._orders;
- }
- addOrder(order, isNew = false){
- this._orders.push(order);
- if(isNew){
- for(let i = 0; i < order.ingredients.length; i++){
- for(let j = 0; j < this._ingredients.length; j++){
- if(order.ingredients[i].ingredient === this._ingredients[j].ingredient){
- this._ingredients[j].updateQuantity(order.ingredients[i].quantity);
- break;
- }
- }
- }
- }
- this._modules.ingredients.isPopulated = false;
- this._modules.orders.isPopulated = false;
- }
- setOrders(orders){
- this._orders = orders
- }
- removeOrder(order){
- const index = this._orders.indexOf(order);
- if(index === undefined){
- return false;
- }
- this._orders.splice(index, 1);
- for(let i = 0; i < order.ingredients.length; i++){
- for(let j = 0; j < this._ingredients.length; j++){
- if(order.ingredients[i].ingredient === this._ingredients[j].ingredient){
- this._ingredients[j].updateQuantity(-order.ingredients[i].quantity);
- break;
- }
- }
- }
- this._modules.ingredients.isPopulated = false;
- this._modules.orders.isPopulated = false;
- }
- get units(){
- return this._units;
- }
- getRevenue(from, to = new Date()){
- if(from === 0){
- from = this._transactions[0].date;
- }
- const {start, end} = this.getTransactionIndices(from, to);
- let total = 0;
- for(let i = start; i <= end; i++){
- for(let j = 0; j < this._transactions[i].recipes.length; j++){
- for(let k = 0; k < this.recipes.length; k++){
- if(this._transactions[i].recipes[j].recipe === this.recipes[k]){
- total += this._transactions[i].recipes[j].quantity * this.recipes[k].price;
- }
- }
- }
- }
- return total / 100;
- }
- /*
- Gets the quantity of each ingredient sold between two dates (dateRange)
- Inputs:
- dateRange: list containing a start date and an end date
- Return:
- [{
- ingredient: Ingredient object,
- quantity: quantity of ingredient sold in default unit
- }]
- */
- getIngredientsSold(from = 0, to = new Date()){
- if(from = 0){
- from = this._ingredients[0].date;
- }
-
- let recipes = this.getRecipesSold(from, to);
- let ingredientList = [];
- for(let i = 0; i < recipes.length; i++){
- for(let j = 0; j < recipes[i].recipe.ingredients.length; j++){
- let exists = false;
- for(let k = 0; k < ingredientList.length; k++){
- if(ingredientList[k].ingredient === recipes[i].recipe.ingredients[j].ingredient){
- exists = true;
- ingredientList[k].quantity += recipes[i].quantity * recipes[i].recipe.ingredients[j].quantity;
- }
- }
- if(!exists){
- ingredientList.push({
- ingredient: recipes[i].recipe.ingredients[j].ingredient,
- quantity: recipes[i].quantity * recipes[i].recipe.ingredients[j].quantity
- });
- }
- }
- }
-
- return ingredientList;
- }
- /*
- Gets the quantity of a single ingredient sold between two dates
- Inputs:
- ingredient = MerchantIngredient object to find
- from = start Date
- to = end Date
- return: quantity sold in default unit
- */
- getSingleIngredientSold(ingredient, from = 0, to = new Date()){
- if(from === 0){
- from = this._transactions[0].date;
- }
- const {start, end} = this.getTransactionIndices(from, to);
- let total = 0;
- for(let i = start; i < end; i++){
- for(let j = 0; j < this._transactions[i].recipes.length; j++){
- for(let k = 0; k < this._transactions[i].recipes[j].recipe.ingredients.length; k++){
- if(this._transactions[i].recipes[j].recipe.ingredients[k].ingredient === ingredient.ingredient){
- total += this._transactions[i].recipes[j].recipe.ingredients[k].quantity;
- break;
- }
- }
- }
- }
- return total;
- }
- /*
- Gets the number of recipes sold between two dates (dateRange)
- Inputs:
- dateRange: array containing a start date and an end date
- Return:
- [{
- recipe: a recipe object
- quantity: quantity of the recipe sold
- }]
- */
- getRecipesSold(from = 0, to = new Date()){
- if(from = 0){
- from = this._transactions[0].date;
- }
- const {start, end} = this.getTransactionIndices(from, to);
- let recipeList = [];
- for(let i = start; i <= end; i++){
- for(let j = 0; j < this._transactions[i].recipes.length; j++){
- let exists = false;
- for(let k = 0; k < recipeList.length; k++){
- if(recipeList[k].recipe === this._transactions[i].recipes[j].recipe){
- exists = true;
- recipeList[k].quantity += this._transactions[i].recipes[j].quantity;
- break;
- }
- }
- if(!exists){
- recipeList.push({
- recipe: this._transactions[i].recipes[j].recipe,
- quantity: this._transactions[i].recipes[j].quantity
- });
- }
- }
- }
- return recipeList;
- }
-
- /*
- Groups all of the merchant's ingredients by their category
- Return: [{
- name: category name,
- ingredients: [MerchantIngredient Object]
- }]
- */
- categorizeIngredients(){
- let ingredientsByCategory = [];
- for(let i = 0; i < this.ingredients.length; i++){
- let categoryExists = false;
- for(let j = 0; j < ingredientsByCategory.length; j++){
- if(this.ingredients[i].ingredient.category === ingredientsByCategory[j].name){
- ingredientsByCategory[j].ingredients.push(this.ingredients[i]);
- categoryExists = true;
- break;
- }
- }
- if(!categoryExists){
- ingredientsByCategory.push({
- name: this.ingredients[i].ingredient.category,
- ingredients: [this.ingredients[i]]
- });
- }
- }
- return ingredientsByCategory;
- }
- unitizeIngredients(){
- let ingredientsByUnit = [];
- for(let i = 0; i < this.ingredients.length; i++){
- let unitExists = false;
- const innerIngredient = this.ingredients[i].ingredient;
- for(let j = 0; j < ingredientsByUnit.length; j++){
- if(innerIngredient.unit === ingredientsByUnit[j].name || innerIngredient.specialUnit === ingredientsByUnit[j].name){
- ingredientsByUnit[j].ingredients.push(this.ingredients[i]);
- unitExists = true;
- break;
- }
- }
- if(!unitExists){
- let unit = "";
- if(innerIngredient.specialUnit === "bottle"){
- unit = "bottle";
- }else{
- unit = innerIngredient.unit;
- }
- ingredientsByUnit.push({
- name: unit,
- ingredients: [this.ingredients[i]]
- });
- }
- }
- return ingredientsByUnit;
- }
- getRecipesForIngredient(ingredient){
- let recipes = [];
- for(let i = 0; i < this._recipes.length; i++){
- for(let j = 0; j < this._recipes[i].ingredients.length; j++){
- if(this._recipes[i].ingredients[j].ingredient === ingredient){
- recipes.push(this._recipes[i]);
- break;
- }
- }
- }
- return recipes;
- }
- getTransactionIndices(from, to){
- let start, end;
- to.setDate(to.getDate() + 1);
- for(let i = this._transactions.length - 1; i >= 0; i--){
- if(this._transactions[i].date >= from){
- start = i;
- break;
- }
- }
-
- for(let i = 0; i < this._transactions.length; i++){
- if(this._transactions[i].date < to){
- end = i;
- break;
- }
- }
- if(start === undefined){
- return false;
- }
- //these are switched due to the order of the transactions in the merchant
- return {start: end, end: start};
- }
- isSanitaryString(str){
- let disallowed = ["\\", "<", ">", "$", "{", "}", "(", ")"];
- for(let i = 0; i < disallowed.length; i++){
- if(str.includes(disallowed[i])){
- return false;
- }
- }
- return true;
- }
- }
- module.exports = Merchant;
- },{}],3:[function(require,module,exports){
- class OrderIngredient{
- constructor(ingredient, quantity, pricePerUnit){
- if(quantity < 0){
- return false;
- }
- this._ingredient = ingredient;
- this._quantity = quantity;
- this._pricePerUnit = pricePerUnit;
- }
- get ingredient(){
- return this._ingredient;
- }
- get quantity(){
- if(this._ingredient.specialUnit === "bottle"){
- return this._quantity / this._ingredient.unitSize;
- }
- switch(this._ingredient.unit){
- case "g":return this._quantity;
- case "kg": return this._quantity / 1000;
- case "oz": return this._quantity / 28.3495;
- case "lb": return this._quantity / 453.5924;
- case "ml": return this._quantity * 1000;
- case "l": return this._quantity;
- case "tsp": return this._quantity * 202.8842;
- case "tbsp": return this._quantity * 67.6278;
- case "ozfl": return this._quantity * 33.8141;
- case "cup": return this._quantity * 4.1667;
- case "pt": return this._quantity * 2.1134;
- case "qt": return this._quantity * 1.0567;
- case "gal": return this._quantity / 3.7854;
- case "mm": return this._quantity * 1000;
- case "cm": return this._quantity * 100;
- case "m": return this._quantity;
- case "in": return this._quantity * 39.3701;
- case "ft": return this._quantity * 3.2808;
- default: return this._quantity;
- }
- }
- updateQuantity(quantity){
- if(quantity < 0){
- return false;
- }
- this._quantity += this.convertToBase(quantity);
- }
- convertToBase(quantity){
- switch(this._ingredient.unit){
- case "g": return quantity;
- case "kg": return quantity * 1000;
- case "oz": return quantity * 28.3495;
- case "lb": return quantity * 453.5924;
- case "ml": return quantity / 1000;
- case "l": return quantity;
- case "tsp": return quantity / 202.8842;
- case "tbsp": return quantity / 67.6278;
- case "ozfl": return quantity / 33.8141;
- case "cup": return quantity / 4.1667;
- case "pt": return quantity / 2.1134;
- case "qt": return quantity / 1.0567;
- case "gal": return quantity * 3.7854;
- case "mm": return quantity / 1000;
- case "cm": return quantity / 100;
- case "m": return quantity;
- case "in": return quantity / 39.3701;
- case "ft": return quantity / 3.2808;
- default: return quantity;
- }
- }
- get pricePerUnit(){
- if(this._ingredient.specialUnit === "bottle"){
- return (this._pricePerUnit * this._ingredient.unitSize) / 100;
- }
- switch(this._ingredient.unit){
- case "g": return this._pricePerUnit / 100;
- case "kg": return (this._pricePerUnit * 1000) / 100;
- case "oz": return (this._pricePerUnit * 28.3495) / 100;
- case "lb": return (this._pricePerUnit * 453.5924) / 100;
- case "ml": return (this._pricePerUnit / 1000) / 100;
- case "l": return this._pricePerUnit / 100;
- case "tsp": return (this._pricePerUnit / 202.8842) / 100;
- case "tbsp": return (this._pricePerUnit / 67.6278) / 100;
- case "ozfl": return (this._pricePerUnit / 33.8141) / 100;
- case "cup": return (this._pricePerUnit / 4.1667) / 100;
- case "pt": return (this._pricePerUnit / 2.1134) / 100;
- case "qt": return (this._pricePerUnit / 1.0567) / 100;
- case "gal": return (this._pricePerUnit * 3.7854) / 100;
- case "mm": return (this._pricePerUnit / 1000) / 100;
- case "cm": return (this._pricePerUnit / 100) / 100;
- case "m": return this._pricePerUnit / 100;
- case "in": return (this._pricePerUnit / 39.3701) / 100;
- case "ft": return (this._pricePerUnit / 3.2808) / 100;
- }
- }
- cost(){
- return (this._quantity * this._pricePerUnit) / 100;
- }
-
- }
- /*
- Order Object
- id = id of order in the database
- name = name/id of order, if any
- date = Date Object for when the order was created
- taxes = User entered taxes associated with the order
- fees = User entered fees associated with the order
- ingredients = [{
- ingredient: Ingredient Object,
- quantity: quantity of ingredient sold,
- pricePerUnit: price of purchase (per base unit)
- }]
- parent = the merchant that it belongs to
- */
- class Order{
- constructor(id, name, date, taxes, fees, ingredients, parent){
- if(!this.isSanitaryString(name)){
- return false;
- }
- if(taxes < 0){
- return false;
- }
- this._id = id;
- this._name = name;
- this._date = new Date(date);
- this._taxes = taxes;
- this._fees = fees;
- this._ingredients = [];
- this._parent = parent;
- if(date > new Date()){
- return false;
- }
- for(let i = 0; i < ingredients.length; i++){
- for(let j = 0; j < merchant.ingredients.length; j++){
- if(merchant.ingredients[j].ingredient.id === ingredients[i].ingredient){
- this._ingredients.push(new OrderIngredient(
- merchant.ingredients[j].ingredient,
- ingredients[i].quantity,
- ingredients[i].pricePerUnit
- ));
- break;
- }
- }
-
- }
- this._parent.modules.ingredients.isPopulated = false;
- }
- get id(){
- return this._id;
- }
- get name(){
- return this._name;
- }
- get date(){
- return this._date;
- }
- get taxes(){
- return this._taxes / 100;
- }
- get fees(){
- return this._fees / 100;
- }
- get parent(){
- return this._parent;
- }
- get ingredients(){
- return this._ingredients;
- }
- getIngredientCost(){
- let sum = 0;
- for(let i = 0; i < this._ingredients.length; i++){
- sum += this._ingredients[i].cost();
- }
- return sum;
- }
- getTotalCost(){
- return (this.getIngredientCost() + this.taxes + this.fees);
- }
- isSanitaryString(str){
- let disallowed = ["\\", "<", ">", "$", "{", "}", "(", ")"];
- for(let i = 0; i < disallowed.length; i++){
- if(str.includes(disallowed[i])){
- return false;
- }
- }
- return true;
- }
- }
- module.exports = Order;
- },{}],4:[function(require,module,exports){
- class RecipeIngredient{
- constructor(ingredient, quantity){
- if(quantity < 0){
- banner.createError("QUANTITY CANNOT BE A NEGATIVE NUMBER");
- return false;
- }
- this._ingredient = ingredient;
- this._quantity = quantity;
- }
- get ingredient(){
- return this._ingredient;
- }
- get quantity(){
- if(this._ingredient.specialUnit === "bottle"){
- return this._quantity / this._ingredient.unitSize;
- }
- switch(this._ingredient.unit){
- case "g":return this._quantity;
- case "kg": return this._quantity / 1000;
- case "oz": return this._quantity / 28.3495;
- case "lb": return this._quantity / 453.5924;
- case "ml": return this._quantity * 1000;
- case "l": return this._quantity;
- case "tsp": return this._quantity * 202.8842;
- case "tbsp": return this._quantity * 67.6278;
- case "ozfl": return this._quantity * 33.8141;
- case "cup": return this._quantity * 4.1667;
- case "pt": return this._quantity * 2.1134;
- case "qt": return this._quantity * 1.0567;
- case "gal": return this._quantity / 3.7854;
- case "mm": return this._quantity * 1000;
- case "cm": return this._quantity * 100;
- case "m": return this._quantity;
- case "in": return this._quantity * 39.3701;
- case "ft": return this._quantity * 3.2808;
- default: return this._quantity;
- }
- }
- set quantity(quantity){
- if(quantity < 0){
- banner.createError("QUANTITY CANNOT BE A NEGATIVE NUMBER");
- return false;
- }
- this_quantity = this.convertToBase(quantity);
- }
- getQuantityDisplay(){
- if(this._ingredient.specialUnit === "bottle"){
-
- return `${this.quantity.toFixed(2)} BOTTLES`;
- }
- return `${this.quantity.toFixed(2)} ${this._ingredient.unit.toUpperCase()}`;
- }
- convertToBase(quantity){
- switch(this._ingredient.unit){
- case "g": return quantity;
- case "kg": return quantity * 1000;
- case "oz": return quantity * 28.3495;
- case "lb": return quantity * 453.5924;
- case "ml": return quantity / 1000;
- case "l": return quantity;
- case "tsp": return quantity / 202.8842;
- case "tbsp": return quantity / 67.6278;
- case "ozfl": return quantity / 33.8141;
- case "cup": return quantity / 4.1667;
- case "pt": return quantity / 2.1134;
- case "qt": return quantity / 1.0567;
- case "gal": return quantity * 3.7854;
- case "mm": return quantity / 1000;
- case "cm": return quantity / 100;
- case "m": return quantity;
- case "in": return quantity / 39.3701;
- case "ft": return quantity / 3.2808;
- default: return quantity;
- }
- }
- }
- /*
- Recipe Object
- id = database id of recipe
- name = name of recipe
- price = price of recipe in cents
- ingredients = [{
- ingredient: Ingredient Object,
- quantity: quantity of the ingredient within the recipe (stored as base unit, i.e grams)
- }]
- parent = merchant that it belongs to
- */
- class Recipe{
- constructor(id, name, price, ingredients, parent){
- if(price < 0){
- banner.createError("PRICE CANNOT BE A NEGATIVE NUMBER");
- return false;
- }
- if(!this.isSanitaryString(name)){
- banner.createError("NAME CONTAINS ILLEGAL CHARACTERS");
- return false;
- }
- this._id = id;
- this._name = name;
- this._price = price;
- this._parent = parent;
- this._ingredients = [];
- for(let i = 0; i < ingredients.length; i++){
- const recipeIngredient = new RecipeIngredient(
- ingredients[i].ingredient,
- ingredients[i].quantity
- );
- this._ingredients.push(recipeIngredient);
- }
- }
- get id(){
- return this._id;
- }
- get name(){
- return this._name;
- }
- set name(name){
- if(!this.isSanitaryString(name)){
- return false;
- }
- this._name = name;
- }
- get price(){
- return this._price / 100;
- }
- set price(price){
- if(price < 0){
- return false;
- }
- this._price = price;
- }
- get parent(){
- return this._parent;
- }
- get ingredients(){
- return this._ingredients;
- }
- addIngredient(ingredient, quantity){
- if(quantity < 0){
- banner.createError("QUANTITY CANNOT BE A NEGATIVE NUMBER");
- return false;
- }
- let recipeIngredient = new RecipeIngredient(ingredient, quantity);
- this._ingredients.push(recipeIngredient);
- this._parent.modules.recipeBook.isPopulated = false;
- this._parent.modules.analytics.isPopulated = false;
- }
- removeIngredients(){
- this._ingredients = [];
- }
- isSanitaryString(str){
- let disallowed = ["\\", "<", ">", "$", "{", "}", "(", ")"];
- for(let i = 0; i < disallowed.length; i++){
- if(str.includes(disallowed[i])){
- return false;
- }
- }
- return true;
- }
- }
- module.exports = Recipe;
- },{}],5:[function(require,module,exports){
- class TransactionRecipe{
- constructor(recipe, quantity){
- if(quantity < 0){
- banner.createError("QUANTITY CANNOT BE A NEGATIVE NUMBER");
- return false;
- }
- if(quantity % 1 !== 0){
- banner.createError("RECIPES WITHIN A TRANSACTION MUST BE WHOLE NUMBERS");
- return false;
- }
- this._recipe = recipe;
- this._quantity = quantity;
- }
- get recipe(){
- return this._recipe;
- }
- get quantity(){
- return this._quantity;
- }
- }
- class Transaction{
- constructor(id, date, recipes, parent){
- date = new Date(date);
- if(date > new Date()){
- banner.createError("DATE CANNOT BE SET TO THE FUTURE");
- return false;
- }
- this._id = id;
- this._parent = parent;
- this._date = date;
- this._recipes = [];
- for(let i = 0; i < recipes.length; i++){
- for(let j = 0; j < parent.recipes.length; j++){
- if(recipes[i].recipe === parent.recipes[j].id){
- const transactionRecipe = new TransactionRecipe(
- parent.recipes[j],
- recipes[i].quantity
- )
-
- this._recipes.push(transactionRecipe);
- break;
- }
- }
- }
- }
- get id(){
- return this._id;
- }
- get parent(){
- return this._parent;
- }
- get date(){
- return this._date;
- }
- get recipes(){
- return this._recipes;
- }
- }
- module.exports = Transaction;
- },{}],6:[function(require,module,exports){
- const home = require("./strands/home.js");
- const ingredients = require("./strands/ingredients.js");
- const recipeBook = require("./strands/recipeBook.js");
- const analytics = require("./strands/analytics.js");
- const orders = require("./strands/orders.js");
- const transactions = require("./strands/transactions.js");
- const ingredientDetails = require("./sidebars/ingredientDetails.js");
- const newIngredient = require("./sidebars/newIngredient.js");
- const editIngredient = require("./sidebars/editIngredient.js");
- const newOrder = require("./sidebars/newOrder.js");
- const newRecipe = require("./sidebars/newRecipe.js");
- const editRecipe = require("./sidebars/editRecipe.js");
- const newTransaction = require("./sidebars/newTransaction.js");
- const orderDetails = require("./sidebars/orderDetails.js");
- const orderFilter = require("./sidebars/orderFilter.js");
- const recipeDetails = require("./sidebars/recipeDetails.js");
- const transactionDetails = require("./sidebars/transactionDetails.js");
- const transactionFilter = require("./sidebars/transactionFilter.js");
- const Merchant = require("./classes/Merchant.js");
- const Ingredient = require("./classes/Ingredient.js");
- const Recipe = require("./classes/Recipe.js");
- const Order = require("./classes/Order.js");
- const Transaction = require("./classes/Transaction.js");
- merchant = new Merchant(data.merchant, data.transactions, {
- home: home,
- ingredients: ingredients,
- transactions: transactions,
- recipeBook: recipeBook,
- analytics: analytics,
- orders: orders,
- Ingredient: Ingredient,
- Recipe: Recipe,
- Transaction: Transaction
- });
- controller = {
- openStrand: function(strand, data = undefined){
- this.closeSidebar();
- let strands = document.querySelectorAll(".strand");
- for(let i = 0; i < strands.length; i++){
- strands[i].style.display = "none";
- }
- let buttons = document.querySelectorAll(".menuButton");
- for(let i = 0; i < buttons.length - 1; i++){
- buttons[i].classList = "menuButton";
- buttons[i].disabled = false;
- }
- let activeButton = {};
- switch(strand){
- case "home":
- activeButton = document.getElementById("homeBtn");
- document.getElementById("homeStrand").style.display = "flex";
- home.display();
- break;
- case "ingredients":
- activeButton = document.getElementById("ingredientsBtn");
- document.getElementById("ingredientsStrand").style.display = "flex";
- ingredients.display();
- break;
- case "recipeBook":
- activeButton = document.getElementById("recipeBookBtn");
- document.getElementById("recipeBookStrand").style.display = "flex";
- recipeBook.display(Recipe);
- break;
- case "analytics":
- activeButton = document.getElementById("analyticsBtn");
- document.getElementById("analyticsStrand").style.display = "flex";
- analytics.display(Transaction);
- break;
- case "orders":
- activeButton = document.getElementById("ordersBtn");
- document.getElementById("ordersStrand").style.display = "flex";
- orders.orders = data;
- orders.display(Order);
- break;
- case "transactions":
- activeButton = document.getElementById("transactionsBtn");
- document.getElementById("transactionsStrand").style.display = "flex";
- transactions.transactions = data;
- transactions.display(Transaction);
- break;
- }
- activeButton.classList = "menuButton active";
- activeButton.disabled = true;
- if(window.screen.availWidth <= 1000){
- this.closeMenu();
- }
- },
- /*
- Open a specific sidebar
- Input:
- sidebar: the outermost element of the sidebar (must contain class sidebar)
- */
- openSidebar: function(sidebar, data = {}){
- this.closeSidebar();
- document.getElementById("sidebarDiv").classList = "sidebar";
- document.getElementById(sidebar).style.display = "flex";
- switch(sidebar){
- case "ingredientDetails":
- ingredientDetails.display(data, ingredients);
- break;
- case "newIngredient":
- newIngredient.display(Ingredient);
- break;
- case "editIngredient":
- editIngredient.display(data);
- break;
- case "recipeDetails":
- recipeDetails.display(data);
- break;
- case "editRecipe":
- editRecipe.display(data);
- break;
- case "addRecipe":
- newRecipe.display(Recipe);
- break;
- case "orderDetails":
- orderDetails.display(data);
- break;
- case "orderFilter":
- orderFilter.display(Order);
- break;
- case "newOrder":
- newOrder.display(Order);
- break;
- case "transactionDetails":
- transactionDetails.display(data);
- break;
- case "transactionFilter":
- transactionFilter.display();
- break;
- case "newTransaction":
- newTransaction.display(Transaction);
- break;
- }
- if(window.screen.availWidth <= 1000){
- document.querySelector(".contentBlock").style.display = "none";
- document.getElementById("mobileMenuSelector").style.display = "none";
- document.getElementById("sidebarCloser").style.display = "block";
- }
- },
- closeSidebar: function(){
- let sidebar = document.getElementById("sidebarDiv");
- for(let i = 0; i < sidebar.children.length; i++){
- if(sidebar.children[i].style.display !== "none"){
- sidebar.children[i].style.display = "none";
- let choosables = [];
- switch(sidebar.children[i].id){
- case "ingredientDetails":
- choosables = document.querySelectorAll(".ingredient");
- break;
- case "transactionDetails":
- choosables = document.getElementById("transactionsList").children;
- break;
- case "recipeDetails":
- choosables = document.getElementById("recipeList").children;
- break;
- case "orderDetails":
- choosables = document.getElementById("orderList").children;
- break;
- }
- for(let i = 0; i < choosables.length; i++){
- choosables[i].classList.remove("active");
- }
- }
-
- }
- sidebar.classList = "sidebarHide";
- if(window.screen.availWidth <= 1000){
- document.querySelector(".contentBlock").style.display = "flex";
- document.getElementById("mobileMenuSelector").style.display = "block";
- document.getElementById("sidebarCloser").style.display = "none";
- }
- },
- changeMenu: function(){
- let menu = document.querySelector(".menu");
- let buttons = document.querySelectorAll(".menuButton");
- if(!menu.classList.contains("menuMinimized")){
- menu.classList = "menu menuMinimized";
- for(let i = 0; i < buttons.length; i++){
- buttons[i].children[1].style.display = "none";
- }
- document.getElementById("max").style.display = "none";
- document.getElementById("min").style.display = "flex";
-
- }else if(menu.classList.contains("menuMinimized")){
- menu.classList = "menu";
- for(let i = 0; i < buttons.length; i++){
- buttons[i].children[1].style.display = "block";
- }
- setTimeout(()=>{
- document.getElementById("max").style.display = "flex";
- document.getElementById("min").style.display = "none";
- }, 150);
- }
- },
- openMenu: function(){
- document.getElementById("menu").style.display = "flex";
- document.querySelector(".contentBlock").style.display = "none";
- document.getElementById("mobileMenuSelector").onclick = ()=>{this.closeMenu()};
- },
- closeMenu: function(){
- document.getElementById("menu").style.display = "none";
- document.querySelector(".contentBlock").style.display = "flex";
- document.getElementById("mobileMenuSelector").onclick = ()=>{this.openMenu()};
- },
- /*
- Converts the price of unit back to the price per default unit
- unitType = type of the unit (i.e. mass, volume)
- unit = exact unit to convert to
- price = price of the ingredient per unit in cents
- */
- reconvertPrice(unitType, unit, price){
- if(unitType === "mass"){
- switch(unit){
- case "g": break;
- case "kg": price *= 1000; break;
- case "oz": price *= 28.3495; break;
- case "lb": price *= 453.5924; break;
- }
- }else if(unitType === "volume"){
- switch(unit){
- case "ml": price /= 1000; break;
- case "l": break;
- case "tsp": price /= 202.8842; break;
- case "tbsp": price /= 67.6278; break;
- case "ozfl": price /= 33.8141; break;
- case "cup": price /= 4.1667; break;
- case "pt": price /= 2.1134; break;
- case "qt": price /= 1.0567; break;
- case "gal": price *= 3.7854; break;
- }
- }else if(unitType === "length"){
- switch(unit){
- case "mm": price /= 1000; break;
- case "cm": price /= 100; break;
- case "m": break;
- case "in": price /= 39.3701; break;
- case "ft": price /= 3.2808; break;
- }
- }
- return price;
- }
- }
- if(window.screen.availWidth > 1000 && window.screen.availWidth <= 1400){
- this.changeMenu();
- document.getElementById("menuShifter2").style.display = "none";
- }
- //Add click listeners for menu buttons
- document.getElementById("homeBtn").onclick = ()=>{controller.openStrand("home")};
- document.getElementById("ingredientsBtn").onclick = ()=>{controller.openStrand("ingredients")};
- document.getElementById("recipeBookBtn").onclick = ()=>{controller.openStrand("recipeBook")};
- document.getElementById("analyticsBtn").onclick = ()=>{controller.openStrand("analytics")};
- document.getElementById("ordersBtn").onclick = async ()=>{
- if(merchant.orders.length === 0){
- merchant.setOrders(await orders.getOrders(Order));
- }
- controller.openStrand("orders", merchant.orders);
- }
- document.getElementById("transactionsBtn").onclick = ()=>{controller.openStrand("transactions", merchant.getTransactions())};
- controller.openStrand("home");
- },{"./classes/Ingredient.js":1,"./classes/Merchant.js":2,"./classes/Order.js":3,"./classes/Recipe.js":4,"./classes/Transaction.js":5,"./sidebars/editIngredient.js":7,"./sidebars/editRecipe.js":8,"./sidebars/ingredientDetails.js":9,"./sidebars/newIngredient.js":10,"./sidebars/newOrder.js":11,"./sidebars/newRecipe.js":12,"./sidebars/newTransaction.js":13,"./sidebars/orderDetails.js":14,"./sidebars/orderFilter.js":15,"./sidebars/recipeDetails.js":16,"./sidebars/transactionDetails.js":17,"./sidebars/transactionFilter.js":18,"./strands/analytics.js":19,"./strands/home.js":20,"./strands/ingredients.js":21,"./strands/orders.js":22,"./strands/recipeBook.js":23,"./strands/transactions.js":24}],7:[function(require,module,exports){
- let editIngredient = {
- display: function(ingredient){
- let buttonList = document.getElementById("unitButtons");
- let quantLabel = document.getElementById("editIngQuantityLabel");
- let specialLabel = document.getElementById("editSpecialLabel");
- //Clear any existing data
- while(buttonList.children.length > 0){
- buttonList.removeChild(buttonList.firstChild);
- }
- //Populate basic fields
- document.getElementById("editIngTitle").innerText = ingredient.ingredient.name;
- document.getElementById("editIngName").value = ingredient.ingredient.name;
- document.getElementById("editIngCategory").value = ingredient.ingredient.category;
- quantLabel.innerText = `CURRENT STOCK (${ingredient.ingredient.unit.toUpperCase()})`;
- document.getElementById("editIngSubmit").onclick = ()=>{this.submit(ingredient)};
- //Populate the unit buttons
- const units = merchant.units[ingredient.ingredient.unitType];
- for(let i = 0; i < units.length; i++){
- let button = document.createElement("button");
- button.classList.add("unitButton");
- button.innerText = units[i].toUpperCase();
- button.onclick = ()=>{this.changeUnit(button)};
- buttonList.appendChild(button);
- if(units[i] === ingredient.ingredient.unit){
- button.classList.add("unitActive");
- }
- }
-
- //Make any changes for special ingredients
- if(ingredient.ingredient.specialUnit === "bottle"){
- quantLabel.innerText = "CURRENT STOCK (BOTTLES):";
- specialLabel.style.display = "flex";
- specialLabel.innerText = `BOTTLE SIZE (${ingredient.ingredient.unit.toUpperCase()}):`;
-
- let sizeInput = document.createElement("input");
- sizeInput.id = "editIngSpecialSize";
- sizeInput.type = "number";
- sizeInput.min = "0";
- sizeInput.step = "0.01";
- sizeInput.value = ingredient.ingredient.unitSize.toFixed(2);
- specialLabel.appendChild(sizeInput);
- }else{
- specialLabel.style.display = "none";
- }
- let quantInput = document.createElement("input");
- quantInput.id = "editIngQuantity";
- quantInput.type = "number";
- quantInput.min = "0";
- quantInput.step = "0.01";
- quantInput.value = ingredient.quantity.toFixed(2);
- quantLabel.appendChild(quantInput);
- },
- changeUnit(button){
- let buttons = document.getElementById("unitButtons");
- for(let i = 0; i < buttons.children.length; i++){
- buttons.children[i].classList.remove("unitActive");
- }
- button.classList.add("unitActive");
- },
- submit(ingredient){
- const quantity = parseFloat(document.getElementById("editIngQuantityLabel").children[0].value);
- let data = {
- id: ingredient.ingredient.id,
- name: document.getElementById("editIngName").value,
- category: document.getElementById("editIngCategory").value
- }
- //Add data based on unit type
- if(ingredient.ingredient.specialUnit === "bottle"){
- let unitSize = ingredient.convertToBase(parseFloat(document.getElementById("editSpecialLabel").children[0].value));
- data.quantity = quantity * unitSize;
- data.unitSize = unitSize;
- }else{
- data.quantity = ingredient.convertToBase(quantity);
- }
- //Get the measurement unit
- let units = document.getElementById("unitButtons");
- for(let i = 0; i < units.children.length; i++){
- if(units.children[i].classList.contains("unitActive")){
- data.unit = units.children[i].innerText.toLowerCase();
- break;
- }
- }
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch("/ingredients/update", {
- method: "put",
- headers: {
- "Content-Type": "application/json;charset=utf-8"
- },
- body: JSON.stringify(data)
- })
- .then(response => response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response);
- }else{
- ingredient.ingredient.name = response.ingredient.name;
- ingredient.ingredient.category = response.ingredient.category;
- ingredient.ingredient.unitSize = response.ingredient.unitSize;
- ingredient.ingredient.unit = response.unit;
- merchant.updateIngredient(ingredient, response.quantity);
- controller.openStrand("ingredients");
- banner.createNotification("INGREDIENT UPDATED");
- }
- })
- .catch((err)=>{
- banner.createError("SOMETHING WENT WRONG, PLEASE REFRESH THE PAGE");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- }
- }
- module.exports = editIngredient;
- },{}],8:[function(require,module,exports){
- let editRecipe = {
- display: function(recipe){
- let nameInput = document.getElementById("editRecipeName");
- if(merchant.pos === "none"){
- nameInput.value = recipe.name;
- }else{
- document.getElementById("editRecipeNoName").innertext = recipe.name;
- nameInput.parentNode.style.display = "none";
- }
- //Populate ingredients
- let ingredientList = document.getElementById("editRecipeIngList");
- while(ingredientList.children.length > 0){
- ingredientList.removeChild(ingredientList.firstChild);
- }
- let template = document.getElementById("editRecipeIng").content.children[0];
- for(let i = 0; i < recipe.ingredients.length; i++){
- let ingredientDiv = template.cloneNode(true);
- ingredientDiv.children[0].onclick = ()=>{ingredientDiv.parentNode.removeChild(ingredientDiv)};
- ingredientDiv.children[1].innerText = recipe.ingredients[i].ingredient.getNameAndUnit();
- ingredientDiv.children[2].style.display = "none";
- ingredientDiv.children[3].value = recipe.ingredients[i].quantity;
- ingredientDiv.ingredient = recipe.ingredients[i];
-
- ingredientList.appendChild(ingredientDiv);
- }
- document.getElementById("addRecIng").onclick = ()=>{this.newIngredient()};
- document.getElementById("editRecipePrice").value = recipe.price;
- document.getElementById("editRecipeSubmit").onclick = ()=>{this.submit(recipe)};
- document.getElementById("editRecipeCancel").onclick = ()=>{controller.openSidebar("recipeDetails", recipe)};
- },
- newIngredient: function(){
- let ingredientList = document.getElementById("editRecipeIngList");
- let ingredientDiv = document.getElementById("editRecipeIng").content.children[0].cloneNode(true);
- ingredientDiv.children[0].onclick = ()=>{ingredientDiv.parentNode.removeChild(ingredientDiv)};
- ingredientDiv.children[1].style.display = "none";
- ingredientDiv.children[3].value = "0.00";
- //Populate selector
- let categories = merchant.categorizeIngredients();
- for(let i = 0; i < categories.length; i++){
- let group = document.createElement("optgroup");
- group.label = categories[i].name;
- for(let j = 0; j < categories[i].ingredients.length; j++){
- let option = document.createElement("option");
- option.innerText = categories[i].ingredients[j].ingredient.getNameAndUnit();
- option.ingredient = categories[i].ingredients[j];
- group.appendChild(option);
- }
-
- ingredientDiv.children[2].appendChild(group);
- }
- ingredientList.appendChild(ingredientDiv);
- },
- submit: function(recipe){
- let data = {
- id: recipe.id,
- name: recipe.name,
- price: document.getElementById("editRecipePrice").value * 100,
- ingredients: []
- }
- if(merchant.pos === "none"){
- data.name = document.getElementById("editRecipeName").value;
- }
- let ingredients = document.getElementById("editRecipeIngList").children;
- for(let i = 0; i < ingredients.length; i++){
- const quantity = parseFloat(ingredients[i].children[3].value);
- if(ingredients[i].children[1].style.display === "none"){
- let selector = ingredients[i].children[2];
- let ingredient = selector.options[selector.selectedIndex].ingredient;
- data.ingredients.push({
- ingredient: ingredient.ingredient.id,
- quantity: ingredient.convertToBase(quantity)
- });
- }else{
- data.ingredients.push({
- ingredient: ingredients[i].ingredient.ingredient.id,
- quantity: ingredients[i].ingredient.convertToBase(quantity)
- });
- }
- }
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch("/recipe/update", {
- method: "put",
- headers: {
- "Content-Type": "application/json;charset=utf-8"
- },
- body: JSON.stringify(data)
- })
- .then(response => response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response);
- }else{
- merchant.updateRecipe(response);
- controller.openStrand("recipeBook");
- banner.createNotification("RECIPE UPDATED");
- }
- })
- .catch((err)=>{
- banner.createError("SOMETHING WENT WRONG, PLEASE REFRESH THE PAGE");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- }
- }
- module.exports = editRecipe;
- },{}],9:[function(require,module,exports){
- let ingredientDetails = {
- dailyUse: 0,
- display: function(ingredient){
- document.getElementById("editIngBtn").onclick = ()=>{controller.openSidebar("editIngredient", ingredient)};
- document.getElementById("removeIngBtn").onclick = ()=>{this.remove(ingredient)};
- document.getElementById("ingredientDetailsCategory").innerText = ingredient.ingredient.category;
- document.getElementById("ingredientDetailsName").innerText = ingredient.ingredient.name;
- document.getElementById("ingredientStock").innerText = ingredient.getQuantityDisplay();
- //Calculate and display average daily use
- let quantities = [];
- let now = new Date();
- for(let i = 1; i < 31; i++){
- let endDay = new Date(now.getFullYear(), now.getMonth(), now.getDate() - i)
- let startDay = new Date(now.getFullYear(), now.getMonth(), now.getDate() - i - 1);
- quantities.push(merchant.getSingleIngredientSold(ingredient, startDay, endDay));
- }
- let sum = 0;
- for(let i = 0; i < quantities.length; i++){
- sum += quantities[i];
- }
- let dailyUse = sum / quantities.length;
- const dailyUseDiv = document.getElementById("dailyUse");
- if(ingredient.ingredient.specialUnit === "bottle"){
- dailyUseDiv.innerText = `${dailyUse.toFixed(2)} BOTTLES`;
- }else{
- dailyUseDiv.innerText = `${dailyUse.toFixed(2)} ${ingredient.ingredient.unit.toUpperCase()}`;
- }
- //Show recipes that this ingredient is a part of
- let recipeList = document.getElementById("ingredientRecipeList");
- let template = document.getElementById("ingredientRecipe").content.children[0];
- let recipes = merchant.getRecipesForIngredient(ingredient.ingredient);
- while(recipeList.children.length > 0){
- recipeList.removeChild(recipeList.firstChild);
- }
- for(let i = 0; i < recipes.length; i++){
- let recipeDiv = template.cloneNode(true);
- recipeDiv.children[0].innerText = recipes[i].name;
- recipeDiv.onclick = ()=>{
- controller.openStrand("recipeBook");
- controller.openSidebar("recipeDetails", recipes[i]);
- }
- recipeDiv.classList.add("choosable");
- recipeList.appendChild(recipeDiv);
- }
- },
- remove: function(ingredient){
- for(let i = 0; i < merchant.recipes.length; i++){
- for(let j = 0; j < merchant.recipes[i].ingredients.length; j++){
- if(ingredient.ingredient === merchant.recipes[i].ingredients[j].ingredient){
- banner.createError("MUST REMOVE INGREDIENT FROM ALL RECIPES BEFORE REMOVING FROM INVENTORY");
- return;
- }
- }
- }
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch(`/ingredients/remove/${ingredient.ingredient.id}`, {
- method: "delete",
- })
- .then((response) => response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response);
- }else{
- merchant.removeIngredient(ingredient);
-
- controller.openStrand("ingredients");
- banner.createNotification("INGREDIENT REMOVED");
- }
- })
- .catch((err)=>{})
- .finally(()=>{
- loader.style.display = "none";
- });
- }
- }
- module.exports = ingredientDetails;
- },{}],10:[function(require,module,exports){
- let newIngredient = {
- display: function(Ingredient){
- const selector = document.getElementById("unitSelector");
- document.getElementById("newIngName").value = "";
- document.getElementById("newIngCategory").value = "";
- document.getElementById("newIngQuantity").value = 0;
- document.getElementById("bottleSizeLabel").style.display = "none";
- selector.value = "g";
- selector.onchange = ()=>{this.unitChange()};
- document.getElementById("submitNewIng").onclick = ()=>{this.submit(Ingredient)};
- },
- unitChange: function(){
- const select = document.getElementById("unitSelector");
- const bottleLabel = document.getElementById("bottleSizeLabel");
- if(select.value === "bottle"){
- bottleLabel.style.display = "block";
- }else{
- bottleLabel.style.display = "none";
- }
- },
- submit: function(Ingredient){
- let unitSelector = document.getElementById("unitSelector");
- let options = document.querySelectorAll("#unitSelector option");
- const quantityValue = parseFloat(document.getElementById("newIngQuantity").value);
- let unit = unitSelector.value;
- let newIngredient = {
- ingredient: {
- name: document.getElementById("newIngName").value,
- category: document.getElementById("newIngCategory").value,
- unitType: options[unitSelector.selectedIndex].getAttribute("type")
- },
- quantity: quantityValue,
- defaultUnit: unit
- }
- //Change the ingredient if it is a special unit type (ie "bottle")
- if(unit === "bottle"){
- newIngredient.ingredient.unitType = "volume";
- newIngredient.ingredient.unitSize = document.getElementById("bottleSize").value;
- newIngredient.defaultUnit = document.getElementById("bottleUnits").value;
- newIngredient.ingredient.specialUnit = unit;
- newIngredient.quantity = quantityValue;
- }
-
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch("/ingredients/create", {
- method: "POST",
- headers: {
- "Content-Type": "application/json;charset=utf-8"
- },
- body: JSON.stringify(newIngredient)
- })
- .then((response) => response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response);
- }else{
- const ingredient = new Ingredient(
- response.ingredient._id,
- response.ingredient.name,
- response.ingredient.category,
- response.ingredient.unitType,
- response.defaultUnit,
- merchant,
- response.ingredient.specialUnit,
- response.ingredient.unitSize
- )
- merchant.addIngredient(ingredient, response.quantity);
- controller.openStrand("ingredients");
- banner.createNotification("INGREDIENT CREATED");
- }
- })
- .catch((err)=>{
- console.log(err);
- banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- },
- }
- module.exports = newIngredient;
- },{}],11:[function(require,module,exports){
- let newOrder = {
- display: function(Order){
- document.getElementById("sidebarDiv").classList.add("sidebarWide");
- document.getElementById("newOrderIngredientList").style.display = "flex";
- let selectedList = document.getElementById("selectedIngredientList");
- while(selectedList.children.length > 0){
- selectedList.removeChild(selectedList.firstChild);
- }
- let ingredientList = document.getElementById("newOrderIngredients");
- while(ingredientList.children.length > 0){
- ingredientList.removeChild(ingredientList.firstChild);
- }
- for(let i = 0; i < merchant.ingredients.length; i++){
- let ingredient = document.createElement("button");
- ingredient.classList = "choosable";
- ingredient.innerText = merchant.ingredients[i].ingredient.name;
- ingredient.onclick = ()=>{this.addIngredient(merchant.ingredients[i], ingredient)};
- ingredientList.appendChild(ingredient);
- }
- document.getElementById("submitNewOrder").onclick = ()=>{this.submit(Order)};
- },
- addIngredient: function(ingredient, element){
- element.style.display = "none";
- let div = document.getElementById("selectedIngredient").content.children[0].cloneNode(true);
- div.ingredient = ingredient;
- div.children[0].children[1].onclick = ()=>{this.removeIngredient(div, element)};
- //Display units depending on the whether it is a special unit
- if(ingredient.ingredient.specialUnit === "bottle"){
- div.children[0].children[0].innerText = `${ingredient.ingredient.name} (BOTTLES)`;
- }else{
- div.children[0].children[0].innerText = `${ingredient.ingredient.name} (${ingredient.ingredient.unit.toUpperCase()})`;
- }
- document.getElementById("selectedIngredientList").appendChild(div);
- },
- removeIngredient: function(selectedElement, element){
- selectedElement.parentElement.removeChild(selectedElement);
- element.style.display = "block";
- },
- submit: function(Order){
- let date = document.getElementById("newOrderDate").value;
- let taxes = document.getElementById("orderTaxes").value * 100;
- let fees = document.getElementById("orderFees").value * 100;
- let ingredients = document.getElementById("selectedIngredientList").children;
- if(date === ""){
- banner.createError("DATE IS REQUIRED FOR ORDERS");
- return;
- }
- let data = {
- name: document.getElementById("newOrderName").value,
- date: date,
- taxes: taxes,
- fees: fees,
- ingredients: []
- }
- for(let i = 0; i < ingredients.length; i++){
- let quantity = ingredients[i].children[1].children[0].value;
- let price = ingredients[i].children[1].children[1].value;
- if(quantity === "" || price === ""){
- banner.createError("MUST PROVIDE QUANTITY AND PRICE PER UNIT FOR ALL INGREDIENTS");
- return;
- }
- if(quantity < 0 || price < 0){
- banner.createError("QUANTITY AND PRICE MUST BE NON-NEGATIVE NUMBERS");
- }
- if(ingredients[i].ingredient.ingredient.specialUnit === "bottle"){
- data.ingredients.push({
- ingredient: ingredients[i].ingredient.ingredient.id,
- quantity: quantity * ingredients[i].ingredient.ingredient.unitSize,
- pricePerUnit: this.convertPrice(ingredients[i].ingredient.ingredient, price * 100)
- });
- }else{
- data.ingredients.push({
- ingredient: ingredients[i].ingredient.ingredient.id,
- quantity: ingredients[i].ingredient.convertToBase(quantity),
- pricePerUnit: this.convertPrice(ingredients[i].ingredient.ingredient, price * 100)
- });
- }
- }
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch("/order/create", {
- method: "post",
- headers: {
- "Content-Type": "application/json;charset=utf-8"
- },
- body: JSON.stringify(data)
- })
- .then((response)=>response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response);
- }else{
- let order = new Order(
- response._id,
- response.name,
- response.date,
- response.taxes,
- response.fees,
- response.ingredients,
- merchant
- );
- merchant.addOrder(order, true);
-
- controller.openStrand("orders", merchant.orders);
- banner.createNotification("NEW ORDER CREATED");
- }
- })
- .catch((err)=>{
- banner.createError("SOMETHING WENT WRONG, PLEASE REFRESH THE PAGE");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- },
- convertPrice: function(ingredient, price){
- if(ingredient.specialUnit === "bottle"){
- return price / ingredient.unitSize;
- }
- switch(ingredient.unit){
- case "g": return price;
- case "kg": return price / 1000;
- case "oz": return price / 28.3495;
- case "lb": return price / 453.5924;
- case "ml": return price * 1000;
- case "l": return price;
- case "tsp": return price * 202.8842;
- case "tbsp": return price * 67.6278;
- case "ozfl": return price * 33.8141;
- case "cup": return price * 4.1667;
- case "pt": return price * 2.1134;
- case "qt": return price * 1.0567;
- case "gal": return price / 3.7854;
- case "mm": return price * 1000;
- case "cm": return price * 100;
- case "m": return price;
- case "in": return price * 39.3701;
- case "ft": return price * 3.2808;
- }
- }
- }
- module.exports = newOrder;
- },{}],12:[function(require,module,exports){
- let newRecipe = {
- display: function(Recipe){
- document.getElementById("newRecipeName").value = "";
- document.getElementById("newRecipePrice").value = "";
- document.getElementById("ingredientCount").value = 1;
- let categories = merchant.categorizeIngredients();
- let ingredientsSelect = document.getElementById("recipeInputIngredients");
- while(ingredientsSelect.children.length > 0){
- ingredientsSelect.removeChild(ingredientsSelect.firstChild);
- }
- this.changeIngredientCount(categories);
- document.getElementById("ingredientCount").onchange = ()=>{this.changeIngredientCount(categories)};
- document.getElementById("submitNewRecipe").onclick = ()=>{this.submit(Recipe)};
- },
- //Updates the number of ingredient inputs displayed for new recipes
- changeIngredientCount: function(categories){
- let newCount = document.getElementById("ingredientCount").value;
- let ingredientsDiv = document.getElementById("recipeInputIngredients");
- let template = document.getElementById("recipeInputIngredient").content.children[0];
- let oldCount = ingredientsDiv.children.length;
- if(newCount > oldCount){
- let newDivs = newCount - oldCount;
- for(let i = 0; i < newDivs; i++){
- let newNode = template.cloneNode(true);
- newNode.children[0].innnerText = `INGREDIENT ${i + oldCount}`;
- newNode.children[2].children[0].value = 0;
- for(let j = 0; j < categories.length; j++){
- let optgroup = document.createElement("optgroup");
- optgroup.label = categories[j].name;
- for(let k = 0; k < categories[j].ingredients.length; k++){
- let option = document.createElement("option");
- option.innerText = categories[j].ingredients[k].ingredient.getNameAndUnit();
- option.ingredient = categories[j].ingredients[k];
- optgroup.appendChild(option);
- }
- newNode.children[1].children[0].appendChild(optgroup);
- }
- 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(Recipe){
- let newRecipe = {
- name: document.getElementById("newRecipeName").value,
- price: document.getElementById("newRecipePrice").value,
- ingredients: []
- }
- let inputs = document.getElementById("recipeInputIngredients").children;
- for(let i = 0; i < inputs.length; i++){
- let sel = inputs[i].children[1].children[0];
- let ingredient = sel.options[sel.selectedIndex].ingredient;
- newRecipe.ingredients.push({
- ingredient: ingredient.ingredient.id,
- quantity: ingredient.convertToBase(inputs[i].children[2].children[0].value)
- });
- }
- 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 ingredients = [];
- for(let i = 0; i < response.ingredients.length; i++){
- for(let j = 0; j < merchant.ingredients.length; j++){
- if(merchant.ingredients[j].ingredient.id === response.ingredients[i].ingredient){
- ingredients.push({
- ingredient: merchant.ingredients[j].ingredient,
- quantity: response.ingredients[i].quantity
- });
- break;
- }
- }
- }
- merchant.addRecipe(new Recipe(
- response._id,
- response.name,
- response.price,
- ingredients,
- merchant
- ));
- banner.createNotification("RECIPE CREATED");
- controller.openStrand("recipeBook");
- }
- })
- .catch((err)=>{
- banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- },
- }
- module.exports = newRecipe;
- },{}],13:[function(require,module,exports){
- let newTransaction = {
- display: function(Transaction){
- let recipeList = document.getElementById("newTransactionRecipes");
- let template = document.getElementById("createTransaction").content.children[0];
- while(recipeList.children.length > 0){
- recipeList.removeChild(recipeList.firstChild);
- }
- for(let i = 0; i < merchant.recipes.length; i++){
- let recipeDiv = template.cloneNode(true);
- recipeDiv.recipe = merchant.recipes[i];
- recipeList.appendChild(recipeDiv);
- recipeDiv.children[0].innerText = merchant.recipes[i].name;
- }
- document.getElementById("submitNewTransaction").onclick = ()=>{this.submit(Transaction)};
- },
- submit: function(Transaction){
- let recipeDivs = document.getElementById("newTransactionRecipes");
- let date = document.getElementById("newTransactionDate").valueAsDate;
-
- if(date > new Date()){
- banner.createError("CANNOT HAVE A DATE IN THE FUTURE");
- return;
- }
-
- let data = {
- date: date,
- recipes: [],
- ingredientUpdates: {}
- };
- for(let i = 0; i < recipeDivs.children.length; i++){
- let quantity = recipeDivs.children[i].children[1].value;
- const recipe = recipeDivs.children[i].recipe;
- if(quantity !== "" && quantity > 0){
- data.recipes.push({
- recipe: recipe.id,
- quantity: quantity
- });
- for(let j = 0; j < recipe.ingredients.length; j++){
- let ingredient = recipe.ingredients[j];
- if(data.ingredientUpdates[ingredient.ingredient.id]){
- data.ingredientUpdates[ingredient.ingredient.id] += ingredient.convertToBase(ingredient.quantity) * quantity;
- }else{
- data.ingredientUpdates[ingredient.ingredient.id] = ingredient.convertToBase(ingredient.quantity) * quantity;
- }
- }
- }else if(quantity < 0){
- banner.createError("CANNOT HAVE NEGATIVE VALUES");
- return;
- }
- }
- if(data.recipes.length > 0){
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch("/transaction/create", {
- method: "post",
- headers: {
- "Content-Type": "application/json;charset=utf-8"
- },
- body: JSON.stringify(data)
- })
- .then(response => response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response);
- }else{
- const transaction = new Transaction(
- response._id,
- response.date,
- response.recipes,
- merchant
- );
- merchant.addTransaction(transaction);
- controller.openStrand("transactions", merchant.getTransactions());
- banner.createNotification("TRANSACTION CREATED");
- }
- })
- .catch((err)=>{
- banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- }
- }
- }
- module.exports = newTransaction;
- },{}],14:[function(require,module,exports){
- let orderDetails = {
- display: function(order){
- document.getElementById("removeOrderBtn").onclick = ()=>{this.remove(order)};
- document.getElementById("orderDetailName").innerText = order.name;
- document.getElementById("orderDetailDate").innerText = order.date.toLocaleDateString("en-US");
- document.getElementById("orderDetailTax").innerText = `$${order.taxes.toFixed(2)}`;
- document.getElementById("orderDetailFee").innerText = `$${order.fees.toFixed(2)}`;
- let ingredientList = document.getElementById("orderIngredients");
- while(ingredientList.children.length > 0){
- ingredientList.removeChild(ingredientList.firstChild);
- }
- let template = document.getElementById("orderIngredient").content.children[0];
- for(let i = 0; i < order.ingredients.length; i++){
- let ingredientDiv = template.cloneNode(true);
- const ingredient = order.ingredients[i].ingredient;
-
- ingredientDiv.children[0].innerText = order.ingredients[i].ingredient.name;
- ingredientDiv.children[2].innerText = `$${order.ingredients[i].cost().toFixed(2)}`;
- ingredientDiv.onclick = ()=>{
- controller.openStrand("ingredients");
- controller.openSidebar("ingredientDetails", merchant.getIngredient(order.ingredients[i].ingredient.id));
- }
-
- let ingredientDisplay = ingredientDiv.children[1];
- if(ingredient.specialUnit === "bottle"){
- ingredientDisplay.innerText = `${order.ingredients[i].quantity.toFixed(2)} bottles x $${order.ingredients.pricePerUnit.toFixed(2)}`;
- }else{
- ingredientDisplay.innerText = `${order.ingredients[i].quantity.toFixed(2)} ${ingredient.unit.toUpperCase()} X $${order.ingredients[i].pricePerUnit.toFixed(2)}`;
- }
- ingredientList.appendChild(ingredientDiv);
- }
- document.getElementById("orderDetailTotal").innerText = `$${order.getIngredientCost().toFixed(2)}`;
- document.querySelector("#orderTotalPrice p").innerText = `$${order.getTotalCost().toFixed(2)}`;
- },
- remove: function(order){
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch(`/order/${order.id}`, {
- method: "DELETE",
- headers: {
- "Content-Type": "application/json;charset=utf-8"
- }
- })
- .then((response) => response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response);
- }else{
- merchant.removeOrder(order);
- controller.openStrand("orders", merchant.orders);
- banner.createNotification("ORDER REMOVED");
- }
- })
- .catch((err)=>{
- banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- }
- }
- module.exports = orderDetails;
- },{}],15:[function(require,module,exports){
- let orderFilter = {
- display: function(Order){
- let now = new Date();
- let past = new Date(now.getFullYear(), now.getMonth(), now.getDate() - 30);
- let ingredientList = document.getElementById("orderFilterIngredients");
- document.getElementById("orderFilterDateFrom").valueAsDate = past;
- document.getElementById("orderFilterDateTo").valueAsDate = now;
- while(ingredientList.children.length > 0){
- ingredientList.removeChild(ingredientList.firstChild);
- }
- for(let i = 0; i < merchant.ingredients.length; i++){
- let element = document.createElement("div");
- element.classList.add("choosable");
- element.ingredient = merchant.ingredients[i].ingredient.id;
- element.onclick = ()=>{this.toggleActive(element)};
- ingredientList.appendChild(element);
- let text = document.createElement("p");
- text.innerText = merchant.ingredients[i].ingredient.name;
- element.appendChild(text);
- }
- document.getElementById("orderFilterSubmit").onclick = ()=>{this.submit(Order)};
- },
- toggleActive: function(element){
- if(element.classList.contains("active")){
- element.classList.remove("active");
- }else{
- element.classList.add("active");
- }
- },
- submit: function(Order){
- let data = {
- startDate: document.getElementById("orderFilterDateFrom").valueAsDate,
- endDate: document.getElementById("orderFilterDateTo").valueAsDate,
- ingredients: []
- }
- if(data.startDate >= data.endDate){
- banner.createError("START DATE CANNOT BE AFTER END DATE");
- return;
- }
- let ingredients = document.getElementById("orderFilterIngredients").children;
- for(let i = 0; i < ingredients.length; i++){
- if(ingredients[i].classList.contains("active")){
- data.ingredients.push(ingredients[i].ingredient);
- }
- }
- if(data.ingredients.length === 0){
- for(let i = 0; i < merchant.ingredients.length; i++){
- data.ingredients.push(merchant.ingredients[i].ingredient.id);
- }
- }
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch("/order", {
- method: "post",
- headers: {
- "Content-Type": "application/json;charset=utf-8"
- },
- body: JSON.stringify(data)
- })
- .then(response => response.json())
- .then((response)=>{
- let orders = [];
- if(typeof(response) === "string"){
- banner.createError(response);
- }else if(response.length === 0){
- banner.createError("NO ORDERS MATCH YOUR SEARCH");
- }else{
- for(let i = 0; i < response.length; i++){
- orders.push(new Order(
- response[i]._id,
- response[i].name,
- response[i].date,
- response[i].taxes,
- response[i].fees,
- response[i].ingredients,
- merchant
- ));
- }
- }
- controller.openStrand("orders", orders);
- })
- .catch((err)=>{
- banner.createError("UNABLE TO DISPLAY THE ORDERS");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- }
- }
- module.exports = orderFilter;
- },{}],16:[function(require,module,exports){
- let recipeDetails = {
- display: function(recipe){
- document.getElementById("editRecipeBtn").onclick = ()=>{controller.openSidebar("editRecipe", recipe)};
- document.getElementById("recipeName").innerText = recipe.name;
- if(merchant.pos === "none"){
- document.getElementById("removeRecipeBtn").onclick = ()=>{this.remove(recipe)};
- }
- //ingredient list
- let ingredientsDiv = document.getElementById("recipeIngredientList");
- while(ingredientsDiv.children.length > 0){
- ingredientsDiv.removeChild(ingredientsDiv.firstChild);
- }
- let template = document.getElementById("recipeIngredient").content.children[0];
- for(let i = 0; i < recipe.ingredients.length; i++){
- let recipeDiv = template.cloneNode(true);
- recipeDiv.children[0].innerText = recipe.ingredients[i].ingredient.name;
- recipeDiv.children[1].innerText = `${recipe.ingredients[i].getQuantityDisplay()}`;
- recipeDiv.onclick = ()=>{
- controller.openStrand("ingredients");
- controller.openSidebar("ingredientDetails", merchant.getIngredient(recipe.ingredients[i].ingredient.id));
- }
- ingredientsDiv.appendChild(recipeDiv);
- }
- document.getElementById("recipePrice").children[1].innerText = `$${recipe.price.toFixed(2)}`;
- },
- remove: function(recipe){
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch(`/recipe/remove/${recipe.id}`, {
- method: "delete"
- })
- .then((response) => response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response);
- }else{
- merchant.removeRecipe(recipe);
- banner.createNotification("RECIPE REMOVED");
- controller.openStrand("recipeBook");
- }
- })
- .catch((err)=>{
- banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- }
- }
- module.exports = recipeDetails;
- },{}],17:[function(require,module,exports){
- let transactionDetails = {
- transaction: {},
- display: function(transaction){
- this.transaction = transaction;
- let recipeList = document.getElementById("transactionRecipes");
- let template = document.getElementById("transactionRecipe").content.children[0];
- let totalRecipes = 0;
- let totalPrice = 0;
- while(recipeList.children.length > 0){
- recipeList.removeChild(recipeList.firstChild);
- }
- for(let i = 0; i < transaction.recipes.length; i++){
- let recipe = template.cloneNode(true);
- let price = transaction.recipes[i].quantity * transaction.recipes[i].recipe.price;
- recipe.children[0].innerText = transaction.recipes[i].recipe.name;
- recipe.children[1].innerText = `${transaction.recipes[i].quantity} x $${transaction.recipes[i].recipe.price.toFixed(2)}`;
- recipe.children[2].innerText = `$${price.toFixed(2)}`;
- recipe.onclick = ()=>{
- controller.openStrand("recipeBook");
- controller.openSidebar("recipeDetails", transaction.recipes[i].recipe);
- }
- recipeList.appendChild(recipe);
- totalRecipes += transaction.recipes[i].quantity;
- totalPrice += price;
- }
- let months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
- let days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
- let dateString = `${days[transaction.date.getDay()]}, ${months[transaction.date.getMonth()]} ${transaction.date.getDate()}, ${transaction.date.getFullYear()}`;
- document.getElementById("transactionDate").innerText = dateString;
- document.getElementById("transactionTime").innerText = transaction.date.toLocaleTimeString();
- document.getElementById("totalRecipes").innerText = `${totalRecipes} recipes`;
- document.getElementById("totalPrice").innerText = `$${totalPrice.toFixed(2)}`;
- if(merchant.pos === "none"){
- document.getElementById("removeTransBtn").onclick = ()=>{this.remove()};
- }
- },
- remove: function(){
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch(`/transaction/${this.transaction.id}`, {
- method: "delete",
- headers: {
- "Content-Type": "application/json;charset=utf-8"
- },
- })
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response);
- }else{
- merchant.removeTransaction(this.transaction);
- controller.openStrand("transactions", merchant.getTransactions());
- banner.createNotification("TRANSACTION REMOVED");
- }
- })
- .catch((err)=>{
- banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- },
- }
- module.exports = transactionDetails;
- },{}],18:[function(require,module,exports){
- let transactionFilter = {
- display: function(){
- //Set default dates
- let today = new Date();
- let monthAgo = new Date(today);
- monthAgo.setMonth(today.getMonth() - 1);
- document.getElementById("transFilterDateStart").valueAsDate = monthAgo;
- document.getElementById("transFilterDateEnd").valueAsDate = today;
- //populate recipes
- let recipeList = document.getElementById("transFilterRecipeList");
- while(recipeList.children.length > 0){
- recipeList.removeChild(recipeList.firstChild);
- }
- for(let i = 0; i < merchant.recipes.length; i++){
- let recipe = document.createElement("div");
- recipe.innerText = merchant.recipes[i].name;
- recipe.recipe = merchant.recipes[i];
- recipe.classList.add("choosable");
- recipe.onclick = ()=>{this.toggleActive(recipe)};
- recipeList.appendChild(recipe);
- }
- //Submit button
- document.getElementById("transFilterSubmit").onclick = ()=>{this.submit()};
- },
- toggleActive: function(element){
- if(element.classList.contains("active")){
- element.classList.remove("active");
- }else{
- element.classList.add("active");
- }
- },
- submit: function(){
- let data = {
- startDate: document.getElementById("transFilterDateStart").valueAsDate,
- endDate: document.getElementById("transFilterDateEnd").valueAsDate,
- recipes: []
- }
- if(data.startDate >= data.endDate){
- banner.createError("START DATE CANNOT BE AFTER END DATE");
- return;
- }
- let recipes = document.getElementById("transFilterRecipeList").children;
- for(let i = 0; i < recipes.length; i++){
- if(recipes[i].classList.contains("active")){
- data.recipes.push(recipes[i].recipe.id);
- }
- }
- if(data.recipes.length === 0){
- for(let i = 0; i < merchant.recipes.length; i++){
- data.recipes.push(merchant.recipes[i].id);
- }
- }
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch("/transaction", {
- method: "post",
- headers: {
- "Content-Type": "application/json;charset=utf-8"
- },
- body: JSON.stringify(data)
- })
- .then(response => response.json())
- .then((response)=>{
- let transactions = [];
- if(typeof(response) === "string"){
- banner.createError(response);
- }else if(response.length === 0){
- banner.createError("NO TRANSACTIONS MATCH YOUR SEARCH");
- }else{
- for(let i = 0; i < response.length; i++){
- transactions.push(new Transaction(
- response[i]._id,
- response[i].date,
- response[i].recipes,
- merchant
- ));
- }
- }
- controller.openStrand("transactions", transactions);
- })
- .catch((err)=>{
- banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- }
- }
- module.exports = transactionFilter;
- },{}],19:[function(require,module,exports){
- let analytics = {
- newData: false,
- dateChange: false,
- transactions: [],
- ingredient: {},
- recipe: {},
- display: function(Transaction){
- document.getElementById("analDateBtn").onclick = ()=>{this.changeDates(Transaction)};
- if(this.transactions.length === 0 || this.newData === true){
- let startDate = new Date();
- startDate.setMonth(startDate.getMonth() - 1);
- this.transactions = merchant.getTransactions(startDate);
- }
- let slider = document.getElementById("analSlider");
- slider.onchange = ()=>{this.display(Transaction)};
- let ingredientContent = document.getElementById("analIngredientContent");
- let recipeContent = document.getElementById("analRecipeContent");
- if(slider.checked){
- ingredientContent.style.display = "none";
- recipeContent.style.display = "flex";
- this.displayRecipes();
- }else{
- ingredientContent.style.display = "flex";
- recipeContent.style.display = "none"
- this.displayIngredients();
- }
- },
- displayIngredients: function(){
- const itemsList = document.getElementById("itemsList");
- while(itemsList.children.length > 0){
- itemsList.removeChild(itemsList.firstChild);
- }
- for(let i = 0; i < merchant.ingredients.length; i++){
- let li = document.createElement("li");
- li.classList.add("choosable");
- li.item = merchant.ingredients[i];
- li.innerText = merchant.ingredients[i].ingredient.name;
- li.onclick = ()=>{
- const itemsList = document.getElementById("itemsList");
- for(let i = 0; i < itemsList.children.length; i++){
- itemsList.children[i].classList.remove("active");
- }
- li.classList.add("active");
- this.ingredient = merchant.ingredients[i];
- this.ingredientDisplay();
- };
- itemsList.appendChild(li);
- }
- if(this.dateChange && Object.keys(this.ingredient).length !== 0){
- this.ingredientDisplay();
- }
- this.dateChange = false;
- },
- displayRecipes: function(){
- let recipeList = document.getElementById("analRecipeList");
- while(recipeList.children.length > 0){
- recipeList.removeChild(recipeList.firstChild);
- }
- for(let i = 0; i < merchant.recipes.length; i++){
- let li = document.createElement("li");
- li.classList.add("choosable");
- li.recipe = merchant.recipes[i];
- li.innerText = merchant.recipes[i].name;
- li.onclick = ()=>{
- let recipeList = document.getElementById("analRecipeList");
- for(let i = 0; i < recipeList.children.length; i++){
- recipeList.children[i].classList.remove("active");
- }
- li.classList.add("active");
- this.recipe = merchant.recipes[i];
- this.recipeDisplay();
- }
- recipeList.appendChild(li);
- }
- if(this.dateChange && Object.keys(this.recipe).length !== 0){
- this.recipeDisplay();
- }
- this.dateChange = false;
- },
- ingredientDisplay: function(){
- //Get list of recipes that contain the ingredient
- let containingRecipes = [];
- for(let i = 0; i < merchant.recipes.length; i++){
- for(let j = 0; j < merchant.recipes[i].ingredients.length; j++){
- if(merchant.recipes[i].ingredients[j].ingredient === this.ingredient.ingredient){
- containingRecipes.push({
- recipe: merchant.recipes[i],
- quantity: merchant.recipes[i].ingredients[j].quantity
- });
- break;
- }
- }
- }
- //Create Graph
- let quantities = [];
- let dates = [];
- let currentDate = (this.transactions.length > 0) ? this.transactions[0].date : undefined;
- let currentQuantity = 0;
- for(let i = 0; i < this.transactions.length; i++){
- if(currentDate.getDate() !== this.transactions[i].date.getDate()){
- quantities.push(currentQuantity);
- dates.push(currentDate);
- currentQuantity = 0;
- currentDate = this.transactions[i].date;
- }
- for(let j = 0; j < this.transactions[i].recipes.length; j++){
- for(let k = 0; k < containingRecipes.length; k++){
- if(this.transactions[i].recipes[j].recipe === containingRecipes[k].recipe){
- for(let l = 0; l < this.transactions[i].recipes[j].recipe.ingredients.length; l++){
- const transIngredient = this.transactions[i].recipes[j].recipe.ingredients[l];
- if(transIngredient.ingredient === this.ingredient.ingredient){
- currentQuantity += transIngredient.quantity * this.transactions[i].recipes[j].quantity;
- break;
- }
- }
- }
- }
- }
- if(i === this.transactions.length - 1){
- quantities.push(currentQuantity);
- dates.push(currentDate);
- }
- }
- let trace = {
- x: dates,
- y: quantities,
- mode: "lines+markers",
- line: {
- color: "rgb(255, 99, 107)"
- }
- }
- const layout = {
- title: this.ingredient.ingredient.name.toUpperCase(),
- xaxis: {
- title: "DATE"
- },
- yaxis: {
- title: `QUANTITY (${this.ingredient.ingredient.unit.toUpperCase()})`,
- }
- }
- Plotly.newPlot("itemUseGraph", [trace], layout);
- //Create use cards
- let sum = 0;
- let max = 0;
- let min = (quantities.length > 0) ? quantities[0] : 0;
- for(let i = 0; i < quantities.length; i++){
- sum += quantities[i];
- if(quantities[i] > max){
- max = quantities[i];
- }else if(quantities[i] < min){
- min = quantities[i];
- }
- }
- document.getElementById("analMinUse").innerText = `${min.toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analAvgUse").innerText = `${(sum / quantities.length).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analMaxUse").innerText = `${max.toFixed(2)} ${this.ingredient.ingredient.unit}`;
- let dayUse = [0, 0, 0, 0, 0, 0, 0];
- let dayCount = [0, 0, 0, 0, 0, 0, 0];
- for(let i = 0; i < quantities.length; i++){
- dayUse[dates[i].getDay()] += quantities[i];
- dayCount[dates[i].getDay()]++;
- }
- document.getElementById("analDayOne").innerText = `${(dayUse[0] / dayCount[0]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analDayTwo").innerText = `${(dayUse[1] / dayCount[1]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analDayThree").innerText = `${(dayUse[2] / dayCount[2]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analDayFour").innerText = `${(dayUse[3] / dayCount[3]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analDayFive").innerText = `${(dayUse[4] / dayCount[4]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analDaySix").innerText = `${(dayUse[5] / dayCount[5]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analDaySeven").innerText = `${(dayUse[6] / dayCount[6]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- },
- recipeDisplay: function(){
- let quantities = [];
- let dates = [];
- let currentDate;
- let quantity = 0;
- if(this.transactions.length > 0){
- currentDate = this.transactions[0].date;
- }
- for(let i = 0; i < this.transactions.length; i++){
- if(currentDate.getDate() !== this.transactions[i].date.getDate()){
- quantities.push(quantity);
- quantity = 0;
- dates.push(currentDate);
- currentDate = this.transactions[i].date;
- }
- for(let j = 0; j < this.transactions[i].recipes.length; j++){
- const recipe = this.transactions[i].recipes[j];
- if(recipe.recipe === this.recipe){
- quantity += recipe.quantity;
- }
- }
- if(i === this.transactions.length - 1){
- quantities.push(quantity);
- dates.push(currentDate);
- }
- }
- const trace = {
- x: dates,
- y: quantities,
- mode: "lines+markers",
- line: {
- color: "rgb(255, 99, 107"
- }
- }
- const layout = {
- title: this.recipe.name.toUpperCase(),
- xaxis: {
- title: "DATE"
- },
- yaxis: {
- title: "Quantity"
- }
- }
- Plotly.newPlot("recipeSalesGraph", [trace], layout);
- let sum = 0;
- for(let i = 0; i < quantities.length; i++){
- sum += quantities[i];
- }
- document.getElementById("recipeAvgUse").innerText = (sum / quantities.length).toFixed(2);
- document.getElementById("recipeAvgRevenue").innerText = `$${(((sum / quantities.length) * this.recipe.price) / 100).toFixed(2)}`;
- },
- changeDates: function(Transaction){
- let dates = {
- from: document.getElementById("analStartDate").valueAsDate,
- to: document.getElementById("analEndDate").valueAsDate
- }
- if(dates.from > dates.to || dates.from === "" || dates.to === "" || dates.to > new Date()){
- banner.createError("INVALID DATE");
- return;
- }
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch("/transaction/retrieve", {
- method: "post",
- headers: {
- "Content-Type": "application/json;charset=utf-8"
- },
- body: JSON.stringify(dates)
- })
- .then(response => response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response.data);
- }else{
- this.transactions = [];
- for(let i = 0; i < response.length; i++){
- this.transactions.push(new Transaction(
- response[i]._id,
- new Date(response[i].date),
- response[i].recipes,
- merchant
- ));
- }
- let isRecipe = document.getElementById("analSlider").checked;
- if(isRecipe && Object.keys(this.recipe).length !== 0){
- this.recipeDisplay();
- }else if(!isRecipe && Object.keys(this.ingredient).length !== 0){
- this.ingredientDisplay();
- }
-
- this.dateChange = true;
- }
- })
- .catch((err)=>{
- banner.createError("ERROR: UNABLE TO DISPLAY THE DATA");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- }
- }
- module.exports = analytics;
- },{}],20:[function(require,module,exports){
- let home = {
- isPopulated: false,
- display: function(){
- if(!this.isPopulated){
- this.drawRevenueCard();
- this.drawRevenueGraph();
- this.drawInventoryCheckCard();
- this.drawPopularCard();
- this.isPopulated = true;
- }
- },
- drawRevenueCard: function(){
- let today = new Date();
- let firstOfMonth = new Date(today.getFullYear(), today.getMonth(), 1);
- let firstOfLastMonth = new Date(today.getFullYear(), today.getMonth() - 1, 1);
- let lastMonthToDay = new Date(new Date().setMonth(today.getMonth() - 1));
- const revenueThisMonth = merchant.getRevenue(firstOfMonth);
- const revenueLastMonthToDay = merchant.getRevenue(firstOfLastMonth, lastMonthToDay);
- document.getElementById("revenue").innerText = `$${revenueThisMonth.toFixed(2)}`;
- let revenueChange = ((revenueThisMonth - revenueLastMonthToDay) / revenueLastMonthToDay) * 100;
-
- let img = "";
- if(revenueChange >= 0){
- img = "/shared/images/upArrow.png";
- }else{
- img = "/shared/images/downArrow.png";
- }
- document.querySelector("#revenueChange p").innerText = `${Math.abs(revenueChange).toFixed(2)}% vs last month`;
- document.querySelector("#revenueChange img").src = img;
- },
- drawRevenueGraph: function(){
- let monthAgo = new Date();
- monthAgo.setMonth(monthAgo.getMonth() - 1);
-
- let revenue = [];
- let dates = [];
- let dayRevenue = 0;
- const transactions = merchant.getTransactions(monthAgo);
- let currentDate = (transactions.length > 0) ? transactions[0].date : undefined;
- for(let i = 0; i < transactions.length; i++){
- if(transactions[i].date.getDate() !== currentDate.getDate()){
- revenue.push(dayRevenue / 100);
- dayRevenue = 0;
- dates.push(currentDate);
- currentDate = transactions[i].date;
- }
- for(let j = 0; j < transactions[i].recipes.length; j++){
- const recipe = transactions[i].recipes[j];
- dayRevenue += recipe.recipe.price * recipe.quantity;
- }
- }
- const trace = {
- x: dates,
- y: revenue,
- mode: "lines+markers",
- line: {
- color: "rgb(255, 99, 107)"
- }
- }
- const layout = {
- title: "REVENUE",
- xaxis: {
- title: "DATE"
- },
- yaxis: {
- title: "$"
- }
- }
- Plotly.newPlot("graphCard", [trace], layout);
- },
- drawInventoryCheckCard: function(){
- let num;
- if(merchant.ingredients.length < 5){
- num = merchant.ingredients.length;
- }else{
- num = 5;
- }
- let rands = [];
- for(let i = 0; i < num; i++){
- let rand = Math.floor(Math.random() * merchant.ingredients.length);
- if(rands.includes(rand)){
- i--;
- }else{
- rands[i] = rand;
- }
- }
- let ul = document.querySelector("#inventoryCheckCard ul");
- let template = document.getElementById("ingredientCheck").content.children[0];
- while(ul.children.length > 0){
- ul.removeChild(ul.firstChild);
- }
- for(let i = 0; i < rands.length; i++){
- let ingredientCheck = template.cloneNode(true);
- let input = ingredientCheck.children[1].children[1];
- const ingredient = merchant.ingredients[rands[i]];
- ingredientCheck.ingredient = ingredient;
- ingredientCheck.children[0].innerText = ingredient.ingredient.name;
- ingredientCheck.children[1].children[0].onclick = ()=>{
- input.value--;
- input.changed = true;
- };
- if(ingredient.ingredient.specialUnit === "bottle"){
- input.value = ingredient.quantity.toFixed(2);
- ingredientCheck.children[2].innerText = "BOTTLES";
- }else{
- input.value = ingredient.quantity.toFixed(2);
- ingredientCheck.children[2].innerText = ingredient.ingredient.unit.toUpperCase();
- }
-
- ingredientCheck.children[1].children[2].onclick = ()=>{
- input.value++;
- input.changed = true;
- }
- input.onchange = ()=>{input.changed = true};
-
- ul.appendChild(ingredientCheck);
- }
- document.getElementById("inventoryCheck").onclick = ()=>{this.submitInventoryCheck()};
- },
- drawPopularCard: function(){
- let thisMonth = new Date();
- thisMonth.setDate(1);
- const ingredientList = merchant.getIngredientsSold(thisMonth);
- if(ingredientList !== false){
- ingredientList.sort((a, b)=>{
- if(a.quantity < b.quantity){
- return 1;
- }
- if(a.quantity > b.quantity){
- return -1;
- }
- return 0;
- });
- let quantities = [];
- let labels = [];
- let colors = [];
- let count = (ingredientList.length < 5) ? ingredientList.length - 1 : 4;
- for(let i = count; i >= 0; i--){
- const ingredientName = ingredientList[i].ingredient.name;
- const ingredientQuantity = ingredientList[i].quantity;
- const unitName = ingredientList[i].ingredient.unit;
- quantities.push(ingredientList[i].quantity);
- labels.push(`${ingredientName}: ${ingredientQuantity.toFixed(2)} ${unitName.toUpperCase()}`);
- if(i === 0){
- colors.push("rgb(255, 99, 107");
- }else{
- colors.push("rgb(179, 191, 209");
- }
- }
- let trace = {
- x: quantities,
- type: "bar",
- orientation: "h",
- text: labels,
- textposition: "auto",
- hoverinfo: "none",
- marker: {
- color: colors
- }
- }
- let layout = {
- title: "MOST POPULAR INGREDIENTS",
- xaxis: {
- zeroline: false,
- title: "QUANTITY"
- },
- yaxis: {
- showticklabels: false
- }
- }
-
- Plotly.newPlot("popularIngredientsCard", [trace], layout);
- }else{
- document.getElementById("popularCanvas").style.display = "none";
- let notice = document.createElement("p");
- notice.innerText = "N/A";
- notice.classList = "notice";
- document.getElementById("popularIngredientsCard").appendChild(notice);
- }
- },
- //Need to change the updating of ingredients
- //should update the ingredient directly, then send that. Maybe...
- submitInventoryCheck: function(){
- let lis = document.querySelectorAll("#inventoryCheckCard li");
- let changes = [];
- let fetchData = [];
- for(let i = 0; i < lis.length; i++){
- if(lis[i].children[1].children[1].value >= 0){
- let merchIngredient = lis[i].ingredient;
- if(lis[i].children[1].children[1].changed === true){
- let value = 0;
- if(merchIngredient.ingredient.specialUnit === "bottle"){
- value = parseFloat(lis[i].children[1].children[1].value) * merchIngredient.ingredient.unitSize;
- }else{
- value = controller.convertToMain(merchIngredient.ingredient.unit, parseFloat(lis[i].children[1].children[1].value));
- }
-
- changes.push({
- ingredient: merchIngredient.ingredient,
- quantity: value
- });
- fetchData.push({
- id: merchIngredient.ingredient.id,
- quantity: value
- });
- lis[i].children[1].children[1].changed = false;
- }
- }else{
- banner.createError("CANNOT HAVE NEGATIVE INGREDIENTS");
- return;
- }
- }
-
- if(fetchData.length > 0){
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch("/merchant/ingredients/update", {
- method: "PUT",
- headers: {
- "Content-Type": "application/json;charset=utf-8"
- },
- body: JSON.stringify(fetchData)
- })
- .then(response => response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response);
- }else{
- for(let i = 0; i < changes.length; i++){
- merchant.updateIngredient(changes[i].ingredient, changes[i].quantity);
- }
- banner.createNotification("INGREDIENTS UPDATED");
- }
- })
- .catch((err)=>{})
- .finally(()=>{
- loader.style.display = "none";
- });
- }
- }
- }
- module.exports = home;
- },{}],21:[function(require,module,exports){
- let ingredients = {
- isPopulated: false,
- ingredients: [],
- display: function(){
- if(!this.isPopulated){
- document.getElementById("ingredientSearch").oninput = ()=>{this.search()};
- this.populateByProperty();
- this.isPopulated = true;
- }
- },
- populateByProperty: function(){
- let categories;
- categories = merchant.categorizeIngredients();
-
- let ingredientStrand = document.getElementById("categoryList");
- let categoryTemplate = document.getElementById("categoryDiv").content.children[0];
- let ingredientTemplate = document.getElementById("ingredient").content.children[0];
- this.ingredients = [];
- while(ingredientStrand.children.length > 0){
- ingredientStrand.removeChild(ingredientStrand.firstChild);
- }
- for(let i = 0; i < categories.length; i++){
- let categoryDiv = categoryTemplate.cloneNode(true);
- categoryDiv.children[0].children[0].innerText = categories[i].name.toUpperCase();
-
- categoryDiv.children[0].onclick = ()=>{
- this.toggleCategory(categoryDiv.children[1], categoryDiv.children[0].children[1]);
- };
- categoryDiv.children[1].style.display = "none";
- ingredientStrand.appendChild(categoryDiv);
- for(let j = 0; j < categories[i].ingredients.length; j++){
- let ingredient = categories[i].ingredients[j];
- let ingredientDiv = ingredientTemplate.cloneNode(true);
- ingredientDiv.children[0].innerText = ingredient.ingredient.name;
- ingredientDiv.onclick = ()=>{
- controller.openSidebar("ingredientDetails", ingredient);
- ingredientDiv.classList.add("active");
- };
- ingredientDiv._name = ingredient.ingredient.name.toLowerCase();
- ingredientDiv._unit = ingredient.ingredient.unit.toLowerCase();
-
- if(ingredient.ingredient.specialUnit === "bottle"){
- ingredientDiv.children[2].innerText = `${ingredient.quantity.toFixed(2)} BOTTLES`
- }else{
- ingredientDiv.children[2].innerText = `${ingredient.quantity.toFixed(2)} ${ingredient.ingredient.unit.toUpperCase()}`;
- }
- categoryDiv.children[1].appendChild(ingredientDiv);
- this.ingredients.push(ingredientDiv);
- }
- }
- },
- displayIngredientsOnly: function(ingredients){
- let ingredientDiv = document.getElementById("categoryList");
- while(ingredientDiv.children.length > 0){
- ingredientDiv.removeChild(ingredientDiv.firstChild);
- }
- for(let i = 0; i < ingredients.length; i++){
- ingredientDiv.appendChild(ingredients[i]);
- }
- },
- toggleCategory: function(div, button){
- if(div.style.display === "none"){
- button.innerHTML = '<svg width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="18 15 12 9 6 15"></polyline></svg>';
- div.style.display = "flex";
- }else if(div.style.display === "flex"){
- button.innerHTML = '<svg width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>';
- div.style.display = "none";
- }
- },
- search: function(){
- let input = document.getElementById("ingredientSearch").value.toLowerCase();
- if(input === ""){
- this.populateByProperty();
- return;
- }
- let matchingIngredients = [];
- for(let i = 0; i < this.ingredients.length; i++){
- if(this.ingredients[i]._name.includes(input)){
- matchingIngredients.push(this.ingredients[i]);
- }
- }
- this.displayIngredientsOnly(matchingIngredients);
- }
- }
- module.exports = ingredients;
- },{}],22:[function(require,module,exports){
- let orders = {
- orders: [],
- display: function(){
- document.getElementById("orderFilterBtn").onclick = ()=>{controller.openSidebar("orderFilter")};
- document.getElementById("newOrderBtn").onclick = ()=>{controller.openSidebar("newOrder")};
- let orderList = document.getElementById("orderList");
- let template = document.getElementById("order").content.children[0];
- while(orderList.children.length > 0){
- orderList.removeChild(orderList.firstChild);
- }
- for(let i = 0; i < this.orders.length; i++){
- let orderDiv = template.cloneNode(true);
- orderDiv.order = this.orders[i];
- orderDiv.children[0].innerText = this.orders[i].name;
- orderDiv.children[1].innerText = `${this.orders[i].ingredients.length} ingredients`;
- orderDiv.children[2].innerText = this.orders[i].date.toLocaleDateString("en-US");
- orderDiv.children[3].innerText = `$${this.orders[i].getTotalCost().toFixed(2)}`;
- orderDiv.onclick = ()=>{
- controller.openSidebar("orderDetails", this.orders[i]);
- orderDiv.classList.add("active");
- }
- orderList.appendChild(orderDiv);
- }
- },
- getOrders: function(Order){
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- return fetch("/order", {
- method: "get",
- headers: {
- "Content-Type": "application/json;charset=utf-8"
- }
- })
- .then(response => response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response);
- }else{
- let orders = [];
- for(let i = 0; i < response.length; i++){
- orders.push(new Order(
- response[i]._id,
- response[i].name,
- response[i].date,
- response[i].taxes,
- response[i].fees,
- response[i].ingredients,
- merchant
- ));
- }
- if(merchant.orders.length === 0){
- merchant.setOrders(orders);
- }
- return orders;
- }
- })
- .catch((err)=>{
- banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- }
- }
- module.exports = orders;
- },{}],23:[function(require,module,exports){
- let recipeBook = {
- isPopulated: false,
- recipeDivList: [],
- display: function(Recipe){
- if(!this.isPopulated){
- this.populateRecipes();
- if(merchant.pos !== "none"){
- document.getElementById("posUpdateRecipe").onclick = ()=>{this.posUpdate(Recipe)};
- }
- document.getElementById("recipeSearch").oninput = ()=>{this.search()};
- this.populateRecipes();
- this.isPopulated = true;
- }
- },
- populateRecipes: function(){
- let recipeList = document.getElementById("recipeList");
- let template = document.getElementById("recipe").content.children[0];
- this.recipeDivList = [];
- while(recipeList.children.length > 0){
- recipeList.removeChild(recipeList.firstChild);
- }
- for(let i = 0; i < merchant.recipes.length; i++){
- let recipeDiv = template.cloneNode(true);
- recipeDiv.onclick = ()=>{
- controller.openSidebar("recipeDetails", merchant.recipes[i]);
- recipeDiv.classList.add("active");
- }
- recipeDiv._name = merchant.recipes[i].name;
- recipeList.appendChild(recipeDiv);
- recipeDiv.children[0].innerText = merchant.recipes[i].name;
- recipeDiv.children[1].innerText = `$${merchant.recipes[i].price.toFixed(2)}`;
- this.recipeDivList.push(recipeDiv);
- }
- },
- search: function(){
- let input = document.getElementById("recipeSearch").value.toLowerCase();
- let recipeList = document.getElementById("recipeList");
- let matchingRecipes = [];
- for(let i = 0; i < this.recipeDivList.length; i++){
- if(this.recipeDivList[i]._name.toLowerCase().includes(input)){
- matchingRecipes.push(this.recipeDivList[i]);
- }
- }
- while(recipeList.children.length > 0){
- recipeList.removeChild(recipeList.firstChild);
- }
- for(let i = 0; i < matchingRecipes.length; i++){
- recipeList.appendChild(matchingRecipes[i]);
- }
- },
- posUpdate: function(Recipe){
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- let url = `/recipe/update/${merchant.pos}`;
- fetch(url, {
- method: "GET",
- headers: {
- "Content-Type": "application/json;charset=utf-8"
- },
- })
- .then(response => response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response);
- }else{
- for(let i = 0; i < response.new.length; i++){
- const recipe = new Recipe(
- response.new[i]._id,
- response.new[i].name,
- response.new[i].price,
- merchant,
- []
- );
- merchant.addRecipe(recipe);
- }
- for(let i = 0; i < response.removed.length; i++){
- for(let j = 0; j < merchant.recipes.length; j++){
- if(merchant.recipes[j].id === response.removed[i]._id){
- merchant.removeRecipe(merchant.recipes[j]);
- break;
- }
- }
- }
- this.display();
- }
- })
- .catch((err)=>{
- banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- }
- }
- module.exports = recipeBook;
- },{}],24:[function(require,module,exports){
- let transactions = {
- transactions: [],
- display: function(Transaction){
- document.getElementById("filterTransactionsButton").onclick = ()=>{controller.openSidebar("transactionFilter")};
- document.getElementById("newTransactionButton").onclick = ()=>{controller.openSidebar("newTransaction")};
- this.populateTransactions(this.transactions);
- this.isPopulated = true;
- },
- populateTransactions: function(transactions){
- let transactionsList = document.getElementById("transactionsList");
- let template = document.getElementById("transaction").content.children[0];
- while(transactionsList.children.length > 0){
- transactionsList.removeChild(transactionsList.firstChild);
- }
- let i = 0;
- while(i < transactions.length && i < 100){
- let transactionDiv = template.cloneNode(true);
- let transaction = transactions[i];
- transactionDiv.onclick = ()=>{
- controller.openSidebar("transactionDetails", transaction);
- transactionDiv.classList.add("active");
- }
- transactionsList.appendChild(transactionDiv);
- let totalRecipes = 0;
- let totalPrice = 0;
- for(let j = 0; j < transactions[i].recipes.length; j++){
- totalRecipes += transactions[i].recipes[j].quantity;
- totalPrice += transactions[i].recipes[j].recipe.price * transactions[i].recipes[j].quantity;
- }
- transactionDiv.children[0].innerText = `${transactions[i].date.toLocaleDateString()} ${transactions[i].date.toLocaleTimeString()}`;
- transactionDiv.children[1].innerText = `${totalRecipes} recipes sold`;
- transactionDiv.children[2].innerText = `$${totalPrice.toFixed(2)}`;
- i++;
- }
- }
- }
- module.exports = transactions;
- },{}]},{},[6]);
|