bundle.js 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873
  1. (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){
  2. class Ingredient{
  3. constructor(id, name, category, unitType, unit, parent, specialUnit = undefined, unitSize = undefined){
  4. if(!this.isSanitaryString(name)){
  5. banner.createError("NAME CONTAINS ILLEGAL CHARCTERS");
  6. return false;
  7. }
  8. if(!this.isSanitaryString(category)){
  9. banner.createError("CATEGORY CONTAINS ILLEGAL CHARACTERS");
  10. return false;
  11. }
  12. this._id = id;
  13. this._name = name;
  14. this._category = category;
  15. this._unitType = unitType;
  16. this._unit = unit;
  17. this._parent = parent;
  18. if(specialUnit){
  19. this._specialUnit = specialUnit;
  20. this._unitSize = unitSize;
  21. }
  22. }
  23. get id(){
  24. return this._id;
  25. }
  26. get name(){
  27. return this._name;
  28. }
  29. set name(name){
  30. if(!this.isSanitaryString(name)){
  31. return false;
  32. }
  33. this._name = name;
  34. }
  35. get category(){
  36. return this._category;
  37. }
  38. set category(category){
  39. if(!this.isSanitaryString(category)){
  40. return false;
  41. }
  42. this._category = category;
  43. }
  44. get unitType(){
  45. return this._unitType;
  46. }
  47. get unit(){
  48. return this._unit;
  49. }
  50. set unit(unit){
  51. this._unit = unit;
  52. }
  53. get parent(){
  54. return this._parent;
  55. }
  56. get specialUnit(){
  57. return this._specialUnit;
  58. }
  59. get unitSize(){
  60. switch(this._unit){
  61. case "g":return this._unitSize;
  62. case "kg": return this._unitSize / 1000;
  63. case "oz": return this._unitSize / 28.3495;
  64. case "lb": return this._unitSize / 453.5924;
  65. case "ml": return this._unitSize * 1000;
  66. case "l": return this._unitSize;
  67. case "tsp": return this._unitSize * 202.8842;
  68. case "tbsp": return this._unitSize * 67.6278;
  69. case "ozfl": return this._unitSize * 33.8141;
  70. case "cup": return this._unitSize * 4.1667;
  71. case "pt": return this._unitSize * 2.1134;
  72. case "qt": return this._unitSize * 1.0567;
  73. case "gal": return this._unitSize / 3.7854;
  74. case "mm": return this._unitSize * 1000;
  75. case "cm": return this._unitSize * 100;
  76. case "m": return this._unitSize;
  77. case "in": return this._unitSize * 39.3701;
  78. case "ft": return this._unitSize * 3.2808;
  79. default: return this._unitSize;
  80. }
  81. }
  82. set unitSize(unitSize){
  83. if(unitSize < 0){
  84. return false;
  85. }
  86. this._unitSize = unitSize;
  87. }
  88. getNameAndUnit(){
  89. if(this._specialUnit === "bottle"){
  90. return `${this._name} (BOTTLES)`;
  91. }
  92. return `${this._name} (${this._unit.toUpperCase()})`;
  93. }
  94. isSanitaryString(str){
  95. let disallowed = ["\\", "<", ">", "$", "{", "}", "(", ")"];
  96. for(let i = 0; i < disallowed.length; i++){
  97. if(str.includes(disallowed[i])){
  98. return false;
  99. }
  100. }
  101. return true;
  102. }
  103. }
  104. module.exports = Ingredient;
  105. },{}],2:[function(require,module,exports){
  106. class MerchantIngredient{
  107. constructor(ingredient, quantity){
  108. if(quantity < 0){
  109. banner.createError("QUANTITY CANNOT BE A NEGATIVE NUMBER");
  110. return false;
  111. }
  112. this._quantity = quantity;
  113. this._ingredient = ingredient;
  114. }
  115. get ingredient(){
  116. return this._ingredient;
  117. }
  118. get quantity(){
  119. if(this._ingredient.specialUnit === "bottle"){
  120. return this._quantity / this._ingredient._unitSize;
  121. }
  122. switch(this._ingredient.unit){
  123. case "g":return this._quantity;
  124. case "kg": return this._quantity / 1000;
  125. case "oz": return this._quantity / 28.3495;
  126. case "lb": return this._quantity / 453.5924;
  127. case "ml": return this._quantity * 1000;
  128. case "l": return this._quantity;
  129. case "tsp": return this._quantity * 202.8842;
  130. case "tbsp": return this._quantity * 67.6278;
  131. case "ozfl": return this._quantity * 33.8141;
  132. case "cup": return this._quantity * 4.1667;
  133. case "pt": return this._quantity * 2.1134;
  134. case "qt": return this._quantity * 1.0567;
  135. case "gal": return this._quantity / 3.7854;
  136. case "mm": return this._quantity * 1000;
  137. case "cm": return this._quantity * 100;
  138. case "m": return this._quantity;
  139. case "in": return this._quantity * 39.3701;
  140. case "ft": return this._quantity * 3.2808;
  141. default: return this._quantity;
  142. }
  143. }
  144. set quantity(quantity){
  145. if(quantity < 0){
  146. return false;
  147. }
  148. this._quantity = quantity;
  149. }
  150. updateQuantity(quantity){
  151. this._quantity += this.convertToBase(quantity);
  152. }
  153. convertToBase(quantity){
  154. switch(this._ingredient.unit){
  155. case "g": return quantity;
  156. case "kg": return quantity * 1000;
  157. case "oz": return quantity * 28.3495;
  158. case "lb": return quantity * 453.5924;
  159. case "ml": return quantity / 1000;
  160. case "l": return quantity;
  161. case "tsp": return quantity / 202.8842;
  162. case "tbsp": return quantity / 67.6278;
  163. case "ozfl": return quantity / 33.8141;
  164. case "cup": return quantity / 4.1667;
  165. case "pt": return quantity / 2.1134;
  166. case "qt": return quantity / 1.0567;
  167. case "gal": return quantity * 3.7854;
  168. case "mm": return quantity / 1000;
  169. case "cm": return quantity / 100;
  170. case "m": return quantity;
  171. case "in": return quantity / 39.3701;
  172. case "ft": return quantity / 3.2808;
  173. default: return quantity;
  174. }
  175. }
  176. getQuantityDisplay(){
  177. if(this._ingredient.specialUnit === "bottle"){
  178. return `${this.quantity.toFixed(2)} BOTTLES`;
  179. }
  180. return `${this.quantity.toFixed(2)} ${this._ingredient.unit.toUpperCase()}`;
  181. }
  182. }
  183. class Merchant{
  184. constructor(oldMerchant, transactions, modules){
  185. this._modules = modules;
  186. this._name = oldMerchant.name;
  187. this._pos = oldMerchant.pos;
  188. this._ingredients = [];
  189. this._recipes = [];
  190. this._transactions = [];
  191. this._orders = [];
  192. this._units = {
  193. mass: ["g", "kg", "oz", "lb"],
  194. volume: ["ml", "l", "tsp", "tbsp", "ozfl", "cup", "pt", "qt", "gal"],
  195. length: ["mm", "cm", "m", "in", "ft"],
  196. other: ["each", "bottle"]
  197. }
  198. //populate ingredients
  199. for(let i = 0; i < oldMerchant.inventory.length; i++){
  200. const ingredient = new modules.Ingredient(
  201. oldMerchant.inventory[i].ingredient._id,
  202. oldMerchant.inventory[i].ingredient.name,
  203. oldMerchant.inventory[i].ingredient.category,
  204. oldMerchant.inventory[i].ingredient.unitType,
  205. oldMerchant.inventory[i].defaultUnit,
  206. this,
  207. oldMerchant.inventory[i].ingredient.specialUnit,
  208. oldMerchant.inventory[i].ingredient.unitSize
  209. );
  210. const merchantIngredient = new MerchantIngredient(
  211. ingredient,
  212. oldMerchant.inventory[i].quantity,
  213. );
  214. this._ingredients.push(merchantIngredient);
  215. }
  216. //populate recipes
  217. for(let i = 0; i < oldMerchant.recipes.length; i++){
  218. let ingredients = [];
  219. for(let j = 0; j < oldMerchant.recipes[i].ingredients.length; j++){
  220. const ingredient = oldMerchant.recipes[i].ingredients[j];
  221. for(let k = 0; k < this._ingredients.length; k++){
  222. if(ingredient.ingredient === this._ingredients[k].ingredient.id){
  223. ingredients.push({
  224. ingredient: this._ingredients[k].ingredient,
  225. quantity: ingredient.quantity
  226. });
  227. break;
  228. }
  229. }
  230. }
  231. this._recipes.push(new this._modules.Recipe(
  232. oldMerchant.recipes[i]._id,
  233. oldMerchant.recipes[i].name,
  234. oldMerchant.recipes[i].price,
  235. ingredients,
  236. this
  237. ));
  238. }
  239. //populate transactions
  240. for(let i = 0; i < transactions.length; i++){
  241. this._transactions.push(new modules.Transaction(
  242. transactions[i]._id,
  243. transactions[i].date,
  244. transactions[i].recipes,
  245. this
  246. ));
  247. }
  248. }
  249. get modules(){
  250. return this._modules;
  251. }
  252. get name(){
  253. return this._name;
  254. }
  255. set name(name){
  256. if(this.isSanitaryString(name)){
  257. this._name = name;
  258. }
  259. return false;
  260. }
  261. get pos(){
  262. return this._pos;
  263. }
  264. get ingredients(){
  265. return this._ingredients;
  266. }
  267. addIngredient(ingredient, quantity){
  268. const merchantIngredient = new MerchantIngredient(ingredient, quantity);
  269. this._ingredients.push(merchantIngredient);
  270. this._modules.home.isPopulated = false;
  271. this._modules.ingredients.isPopulated = false;
  272. }
  273. removeIngredient(ingredient){
  274. const index = this._ingredients.indexOf(ingredient);
  275. if(index === undefined){
  276. return false;
  277. }
  278. this._ingredients.splice(index, 1);
  279. this._modules.home.isPopulated = false;
  280. this._modules.ingredients.isPopulated = false;
  281. }
  282. updateIngredient(ingredient, quantity){
  283. const index = this._ingredients.indexOf(ingredient);
  284. if(index === undefined){
  285. return false;
  286. }
  287. this._ingredients[index].quantity = quantity;
  288. this._modules.home.isPopulated = false;
  289. this._modules.ingredients.isPopulated = false;
  290. }
  291. getIngredient(id){
  292. for(let i = 0; i < this._ingredients.length; i++){
  293. if(this._ingredients[i].ingredient.id === id){
  294. return this._ingredients[i].ingredient;
  295. }
  296. }
  297. }
  298. get recipes(){
  299. return this._recipes;
  300. }
  301. addRecipe(recipe){
  302. this._recipes.push(recipe);
  303. this._modules.transactions.isPopulated = false;
  304. this._modules.recipeBook.isPopulated = false;
  305. }
  306. removeRecipe(recipe){
  307. const index = this._recipes.indexOf(recipe);
  308. if(index === undefined){
  309. return false;
  310. }
  311. this._recipes.splice(index, 1);
  312. this._modules.transactions.isPopulated = false;
  313. this._modules.recipeBook.isPopulated = false;
  314. }
  315. /*
  316. recipe = {
  317. name: required,
  318. price: required,
  319. ingredients: [{
  320. ingredient: id of ingredient,
  321. quantity: quantity of ingredient
  322. }]
  323. }
  324. */
  325. updateRecipe(recipe){
  326. for(let i = 0; i < this._recipes.length; i++){
  327. if(this._recipes[i].id === recipe._id){
  328. this._recipes[i].name = recipe.name;
  329. this._recipes[i].price = recipe.price;
  330. this._recipes[i].removeIngredients();
  331. for(let j = 0; j < recipe.ingredients.length; j++){
  332. for(let k = 0; k < this._ingredients.length; k++){
  333. if(this._ingredients[k].ingredient.id === recipe.ingredients[j].ingredient){
  334. this._recipes[i].addIngredient(
  335. this._ingredients[k].ingredient,
  336. recipe.ingredients[j].quantity
  337. );
  338. break;
  339. }
  340. }
  341. }
  342. break;
  343. }
  344. }
  345. this._modules.transactions.isPopulated = false;
  346. this._modules.recipeBook.isPopulated = false;
  347. }
  348. getTransactions(from = 0, to = new Date()){
  349. if(merchant._transactions.length <= 0){
  350. return [];
  351. }
  352. if(from === 0){
  353. from = this._transactions[this._transactions.length-1].date;
  354. }
  355. const {start, end} = this.getTransactionIndices(from, to);
  356. return this._transactions.slice(start, end + 1);
  357. }
  358. addTransaction(transaction){
  359. this._transactions.push(transaction);
  360. this._transactions.sort((a, b)=>{
  361. if(a.date > b.date){
  362. return -1;
  363. }
  364. return 1;
  365. });
  366. let ingredients = {};
  367. for(let i = 0; i < transaction.recipes.length; i++){
  368. const recipe = transaction.recipes[i];
  369. for(let j = 0; j < recipe.recipe.ingredients.length; j++){
  370. const ingredient = recipe.recipe.ingredients[i];
  371. if(ingredients[ingredient.ingredient.id]){
  372. ingredients[ingredient.ingredient.id] += recipe.quantity * ingredient.quantity;
  373. }else{
  374. ingredients[ingredient.ingredient.id] = recipe.quantity * ingredient.quantity;
  375. }
  376. }
  377. }
  378. const keys = Object.keys(ingredients);
  379. for(let i = 0; i < keys.length; i++){
  380. for(let j = 0; j < this._ingredients.length; j++){
  381. if(keys[i] === this._ingredients[j].ingredient.id){
  382. this._ingredients[j].updateQuantity(-ingredients[keys[i]]);
  383. }
  384. }
  385. }
  386. this._modules.home.isPopulated = false;
  387. this._modules.ingredients.isPopulated = false;
  388. this._modules.transactions.isPopulated = false;
  389. this._modules.analytics.newData = true;
  390. }
  391. removeTransaction(transaction){
  392. const index = this._transactions.indexOf(transaction);
  393. if(index === undefined){
  394. return false;
  395. }
  396. this._transactions.splice(index, 1);
  397. let ingredients = {};
  398. for(let i = 0; i < transaction.recipes.length; i++){
  399. const recipe = transaction.recipes[i];
  400. for(let j = 0; j < recipe.recipe.ingredients.length; j++){
  401. const ingredient = recipe.recipe.ingredients[i];
  402. if(ingredients[ingredient.ingredient.id]){
  403. ingredients[ingredient.ingredient.id] += ingredient.quantity * recipe.quantity;
  404. }else{
  405. ingredients[ingredient.ingredient.id] = ingredient.quantity * recipe.quantity;
  406. }
  407. }
  408. }
  409. const keys = Object.keys(ingredients);
  410. for(let i = 0; i < keys.length; i++){
  411. for(let j = 0; j < this._ingredients.length; j++){
  412. if(keys[i] === this._ingredients[j].ingredient.id){
  413. this._ingredients.quantity += ingredients[keys[i]];
  414. }
  415. }
  416. }
  417. this._modules.home.isPopulated = false;
  418. this._modules.ingredients.isPopulated = false;
  419. this._modules.transactions.isPopulated = false;
  420. this._modules.analytics.newData = true;
  421. }
  422. get orders(){
  423. return this._orders;
  424. }
  425. addOrder(order, isNew = false){
  426. this._orders.push(order);
  427. if(isNew){
  428. for(let i = 0; i < order.ingredients.length; i++){
  429. for(let j = 0; j < this._ingredients.length; j++){
  430. if(order.ingredients[i].ingredient === this._ingredients[j].ingredient){
  431. this._ingredients[j].updateQuantity(order.ingredients[i].quantity);
  432. break;
  433. }
  434. }
  435. }
  436. }
  437. this._modules.ingredients.isPopulated = false;
  438. this._modules.orders.isPopulated = false;
  439. }
  440. removeOrder(order){
  441. const index = this._orders.indexOf(order);
  442. if(index === undefined){
  443. return false;
  444. }
  445. this._orders.splice(index, 1);
  446. for(let i = 0; i < order.ingredients.length; i++){
  447. for(let j = 0; j < this._ingredients.length; j++){
  448. if(order.ingredients[i].ingredient === this._ingredients[j].ingredient){
  449. this._ingredients[j].quantity -= order.ingredients[i].quantity;
  450. }
  451. }
  452. }
  453. this._modules.ingredients.isPopulated = false;
  454. this._modules.orders.isPopulated = false;
  455. }
  456. get units(){
  457. return this._units;
  458. }
  459. getRevenue(from, to = new Date()){
  460. if(from === 0){
  461. from = this._transactions[0].date;
  462. }
  463. const {start, end} = this.getTransactionIndices(from, to);
  464. let total = 0;
  465. for(let i = start; i <= end; i++){
  466. for(let j = 0; j < this._transactions[i].recipes.length; j++){
  467. for(let k = 0; k < this.recipes.length; k++){
  468. if(this._transactions[i].recipes[j].recipe === this.recipes[k]){
  469. total += this._transactions[i].recipes[j].quantity * this.recipes[k].price;
  470. }
  471. }
  472. }
  473. }
  474. return total / 100;
  475. }
  476. /*
  477. Gets the quantity of each ingredient sold between two dates (dateRange)
  478. Inputs:
  479. dateRange: list containing a start date and an end date
  480. Return:
  481. [{
  482. ingredient: Ingredient object,
  483. quantity: quantity of ingredient sold in default unit
  484. }]
  485. */
  486. getIngredientsSold(from = 0, to = new Date()){
  487. if(from = 0){
  488. from = this._ingredients[0].date;
  489. }
  490. let recipes = this.getRecipesSold(from, to);
  491. let ingredientList = [];
  492. for(let i = 0; i < recipes.length; i++){
  493. for(let j = 0; j < recipes[i].recipe.ingredients.length; j++){
  494. let exists = false;
  495. for(let k = 0; k < ingredientList.length; k++){
  496. if(ingredientList[k].ingredient === recipes[i].recipe.ingredients[j].ingredient){
  497. exists = true;
  498. ingredientList[k].quantity += recipes[i].quantity * recipes[i].recipe.ingredients[j].quantity;
  499. }
  500. }
  501. if(!exists){
  502. ingredientList.push({
  503. ingredient: recipes[i].recipe.ingredients[j].ingredient,
  504. quantity: recipes[i].quantity * recipes[i].recipe.ingredients[j].quantity
  505. });
  506. }
  507. }
  508. }
  509. return ingredientList;
  510. }
  511. /*
  512. Gets the quantity of a single ingredient sold between two dates
  513. Inputs:
  514. ingredient = MerchantIngredient object to find
  515. from = start Date
  516. to = end Date
  517. return: quantity sold in default unit
  518. */
  519. getSingleIngredientSold(ingredient, from = 0, to = new Date()){
  520. if(from === 0){
  521. from = this._transactions[0].date;
  522. }
  523. const {start, end} = this.getTransactionIndices(from, to);
  524. let total = 0;
  525. for(let i = start; i < end; i++){
  526. for(let j = 0; j < this._transactions[i].recipes.length; j++){
  527. for(let k = 0; k < this._transactions[i].recipes[j].recipe.ingredients.length; k++){
  528. if(this._transactions[i].recipes[j].recipe.ingredients[k].ingredient === ingredient.ingredient){
  529. total += this._transactions[i].recipes[j].recipe.ingredients[k].quantity;
  530. break;
  531. }
  532. }
  533. }
  534. }
  535. return total;
  536. }
  537. /*
  538. Gets the number of recipes sold between two dates (dateRange)
  539. Inputs:
  540. dateRange: array containing a start date and an end date
  541. Return:
  542. [{
  543. recipe: a recipe object
  544. quantity: quantity of the recipe sold
  545. }]
  546. */
  547. getRecipesSold(from = 0, to = new Date()){
  548. if(from = 0){
  549. from = this._transactions[0].date;
  550. }
  551. const {start, end} = this.getTransactionIndices(from, to);
  552. let recipeList = [];
  553. for(let i = start; i <= end; i++){
  554. for(let j = 0; j < this._transactions[i].recipes.length; j++){
  555. let exists = false;
  556. for(let k = 0; k < recipeList.length; k++){
  557. if(recipeList[k].recipe === this._transactions[i].recipes[j].recipe){
  558. exists = true;
  559. recipeList[k].quantity += this._transactions[i].recipes[j].quantity;
  560. break;
  561. }
  562. }
  563. if(!exists){
  564. recipeList.push({
  565. recipe: this._transactions[i].recipes[j].recipe,
  566. quantity: this._transactions[i].recipes[j].quantity
  567. });
  568. }
  569. }
  570. }
  571. return recipeList;
  572. }
  573. /*
  574. Groups all of the merchant's ingredients by their category
  575. Return: [{
  576. name: category name,
  577. ingredients: [MerchantIngredient Object]
  578. }]
  579. */
  580. categorizeIngredients(){
  581. let ingredientsByCategory = [];
  582. for(let i = 0; i < this.ingredients.length; i++){
  583. let categoryExists = false;
  584. for(let j = 0; j < ingredientsByCategory.length; j++){
  585. if(this.ingredients[i].ingredient.category === ingredientsByCategory[j].name){
  586. ingredientsByCategory[j].ingredients.push(this.ingredients[i]);
  587. categoryExists = true;
  588. break;
  589. }
  590. }
  591. if(!categoryExists){
  592. ingredientsByCategory.push({
  593. name: this.ingredients[i].ingredient.category,
  594. ingredients: [this.ingredients[i]]
  595. });
  596. }
  597. }
  598. return ingredientsByCategory;
  599. }
  600. unitizeIngredients(){
  601. let ingredientsByUnit = [];
  602. for(let i = 0; i < this.ingredients.length; i++){
  603. let unitExists = false;
  604. const innerIngredient = this.ingredients[i].ingredient;
  605. for(let j = 0; j < ingredientsByUnit.length; j++){
  606. if(innerIngredient.unit === ingredientsByUnit[j].name || innerIngredient.specialUnit === ingredientsByUnit[j].name){
  607. ingredientsByUnit[j].ingredients.push(this.ingredients[i]);
  608. unitExists = true;
  609. break;
  610. }
  611. }
  612. if(!unitExists){
  613. let unit = "";
  614. if(innerIngredient.specialUnit === "bottle"){
  615. unit = "bottle";
  616. }else{
  617. unit = innerIngredient.unit;
  618. }
  619. ingredientsByUnit.push({
  620. name: unit,
  621. ingredients: [this.ingredients[i]]
  622. });
  623. }
  624. }
  625. return ingredientsByUnit;
  626. }
  627. getRecipesForIngredient(ingredient){
  628. let recipes = [];
  629. for(let i = 0; i < this._recipes.length; i++){
  630. for(let j = 0; j < this._recipes[i].ingredients.length; j++){
  631. if(this._recipes[i].ingredients[j].ingredient === ingredient){
  632. recipes.push(this._recipes[i]);
  633. break;
  634. }
  635. }
  636. }
  637. return recipes;
  638. }
  639. getTransactionIndices(from, to){
  640. let start, end;
  641. to.setDate(to.getDate() + 1);
  642. for(let i = this._transactions.length - 1; i >= 0; i--){
  643. if(this._transactions[i].date >= from){
  644. start = i;
  645. break;
  646. }
  647. }
  648. for(let i = 0; i < this._transactions.length; i++){
  649. if(this._transactions[i].date < to){
  650. end = i;
  651. break;
  652. }
  653. }
  654. if(start === undefined){
  655. return false;
  656. }
  657. //these are switched due to the order of the transactions in the merchant
  658. return {start: end, end: start};
  659. }
  660. isSanitaryString(str){
  661. let disallowed = ["\\", "<", ">", "$", "{", "}", "(", ")"];
  662. for(let i = 0; i < disallowed.length; i++){
  663. if(str.includes(disallowed[i])){
  664. return false;
  665. }
  666. }
  667. return true;
  668. }
  669. }
  670. module.exports = Merchant;
  671. },{}],3:[function(require,module,exports){
  672. class OrderIngredient{
  673. constructor(ingredient, quantity, pricePerUnit){
  674. if(quantity < 0){
  675. return false;
  676. }
  677. this._ingredient = ingredient;
  678. this._quantity = quantity;
  679. this._pricePerUnit = pricePerUnit;
  680. }
  681. get ingredient(){
  682. return this._ingredient;
  683. }
  684. get quantity(){
  685. if(this._ingredient.specialUnit === "bottle"){
  686. return this._quantity / this._ingredient.unitSize;
  687. }
  688. switch(this._ingredient.unit){
  689. case "g":return this._quantity;
  690. case "kg": return this._quantity / 1000;
  691. case "oz": return this._quantity / 28.3495;
  692. case "lb": return this._quantity / 453.5924;
  693. case "ml": return this._quantity * 1000;
  694. case "l": return this._quantity;
  695. case "tsp": return this._quantity * 202.8842;
  696. case "tbsp": return this._quantity * 67.6278;
  697. case "ozfl": return this._quantity * 33.8141;
  698. case "cup": return this._quantity * 4.1667;
  699. case "pt": return this._quantity * 2.1134;
  700. case "qt": return this._quantity * 1.0567;
  701. case "gal": return this._quantity / 3.7854;
  702. case "mm": return this._quantity * 1000;
  703. case "cm": return this._quantity * 100;
  704. case "m": return this._quantity;
  705. case "in": return this._quantity * 39.3701;
  706. case "ft": return this._quantity * 3.2808;
  707. default: return this._quantity;
  708. }
  709. }
  710. convertToBase(quantity){
  711. switch(this._ingredient.unit){
  712. case "g": return quantity;
  713. case "kg": return quantity / 1000;
  714. case "oz": return quantity / 28.3495;
  715. case "lb": return quantity / 453.5924;
  716. case "ml": return quantity *= 1000;
  717. case "l": return quantity;
  718. case "tsp": return quantity * 202.8842;
  719. case "tbsp": return quantity * 67.6278;
  720. case "ozfl": return quantity * 33.8141;
  721. case "cup": return quantity * 4.1667;
  722. case "pt": return quantity * 2.1134;
  723. case "qt": return quantity * 1.0567;
  724. case "gal": return quantity / 3.7854;
  725. case "mm": return quantity * 1000;
  726. case "cm": return quantity * 100;
  727. case "m": return quantity;
  728. case "in": return quantity * 39.3701;
  729. case "ft": return quantity * 3.2808;
  730. default: return quantity;
  731. }
  732. }
  733. get pricePerUnit(){
  734. if(this._ingredient.specialUnit === "bottle"){
  735. return (this._pricePerUnit * this._ingredient.unitSize) / 100;
  736. }
  737. switch(this._ingredient.unit){
  738. case "g": return this._pricePerUnit / 100;
  739. case "kg": return (this._pricePerUnit * 1000) / 100;
  740. case "oz": return (this._pricePerUnit * 28.3495) / 100;
  741. case "lb": return (this._pricePerUnit * 453.5924) / 100;
  742. case "ml": return (this._pricePerUnit / 1000) / 100;
  743. case "l": return this._pricePerUnit / 100;
  744. case "tsp": return (this._pricePerUnit / 202.8842) / 100;
  745. case "tbsp": return (this._pricePerUnit / 67.6278) / 100;
  746. case "ozfl": return (this._pricePerUnit / 33.8141) / 100;
  747. case "cup": return (this._pricePerUnit / 4.1667) / 100;
  748. case "pt": return (this._pricePerUnit / 2.1134) / 100;
  749. case "qt": return (this._pricePerUnit / 1.0567) / 100;
  750. case "gal": return (this._pricePerUnit * 3.7854) / 100;
  751. case "mm": return (this._pricePerUnit / 1000) / 100;
  752. case "cm": return (this._pricePerUnit / 100) / 100;
  753. case "m": return this._pricePerUnit / 100;
  754. case "in": return (this._pricePerUnit / 39.3701) / 100;
  755. case "ft": return (this._pricePerUnit / 3.2808) / 100;
  756. }
  757. }
  758. cost(){
  759. return (this._quantity * this._pricePerUnit) / 100;
  760. }
  761. }
  762. /*
  763. Order Object
  764. id = id of order in the database
  765. name = name/id of order, if any
  766. date = Date Object for when the order was created
  767. taxes = User entered taxes associated with the order
  768. fees = User entered fees associated with the order
  769. ingredients = [{
  770. ingredient: Ingredient Object,
  771. quantity: quantity of ingredient sold,
  772. pricePerUnit: price of purchase (per base unit)
  773. }]
  774. parent = the merchant that it belongs to
  775. */
  776. class Order{
  777. constructor(id, name, date, taxes, fees, ingredients, parent){
  778. if(!this.isSanitaryString(name)){
  779. return false;
  780. }
  781. if(taxes < 0){
  782. return false;
  783. }
  784. this._id = id;
  785. this._name = name;
  786. this._date = new Date(date);
  787. this._taxes = taxes;
  788. this._fees = fees;
  789. this._ingredients = [];
  790. this._parent = parent;
  791. if(date > new Date()){
  792. return false;
  793. }
  794. for(let i = 0; i < ingredients.length; i++){
  795. this._ingredients.push(new OrderIngredient(
  796. ingredients[i].ingredient,
  797. ingredients[i].quantity,
  798. ingredients[i].pricePerUnit
  799. ));
  800. }
  801. this._parent.modules.ingredients.isPopulated = false;
  802. }
  803. get id(){
  804. return this._id;
  805. }
  806. get name(){
  807. return this._name;
  808. }
  809. get date(){
  810. return this._date;
  811. }
  812. get taxes(){
  813. return this._taxes / 100;
  814. }
  815. get fees(){
  816. return this._fees / 100;
  817. }
  818. get parent(){
  819. return this._parent;
  820. }
  821. get ingredients(){
  822. return this._ingredients;
  823. }
  824. getIngredientCost(){
  825. let sum = 0;
  826. for(let i = 0; i < this._ingredients.length; i++){
  827. sum += this._ingredients[i].cost();
  828. }
  829. return sum;
  830. }
  831. getTotalCost(){
  832. return (this.getIngredientCost() + this.taxes + this.fees);
  833. }
  834. isSanitaryString(str){
  835. let disallowed = ["\\", "<", ">", "$", "{", "}", "(", ")"];
  836. for(let i = 0; i < disallowed.length; i++){
  837. if(str.includes(disallowed[i])){
  838. return false;
  839. }
  840. }
  841. return true;
  842. }
  843. }
  844. module.exports = Order;
  845. },{}],4:[function(require,module,exports){
  846. class RecipeIngredient{
  847. constructor(ingredient, quantity){
  848. if(quantity < 0){
  849. banner.createError("QUANTITY CANNOT BE A NEGATIVE NUMBER");
  850. return false;
  851. }
  852. this._ingredient = ingredient;
  853. this._quantity = quantity;
  854. }
  855. get ingredient(){
  856. return this._ingredient;
  857. }
  858. get quantity(){
  859. if(this._ingredient.specialUnit === "bottle"){
  860. return this._quantity / this._ingredient.unitSize;
  861. }
  862. switch(this._ingredient.unit){
  863. case "g":return this._quantity;
  864. case "kg": return this._quantity / 1000;
  865. case "oz": return this._quantity / 28.3495;
  866. case "lb": return this._quantity / 453.5924;
  867. case "ml": return this._quantity * 1000;
  868. case "l": return this._quantity;
  869. case "tsp": return this._quantity * 202.8842;
  870. case "tbsp": return this._quantity * 67.6278;
  871. case "ozfl": return this._quantity * 33.8141;
  872. case "cup": return this._quantity * 4.1667;
  873. case "pt": return this._quantity * 2.1134;
  874. case "qt": return this._quantity * 1.0567;
  875. case "gal": return this._quantity / 3.7854;
  876. case "mm": return this._quantity * 1000;
  877. case "cm": return this._quantity * 100;
  878. case "m": return this._quantity;
  879. case "in": return this._quantity * 39.3701;
  880. case "ft": return this._quantity * 3.2808;
  881. default: return this._quantity;
  882. }
  883. }
  884. set quantity(quantity){
  885. if(quantity < 0){
  886. banner.createError("QUANTITY CANNOT BE A NEGATIVE NUMBER");
  887. return false;
  888. }
  889. this_quantity = this.convertToBase(quantity);
  890. }
  891. getQuantityDisplay(){
  892. if(this._ingredient.specialUnit === "bottle"){
  893. return `${this.quantity.toFixed(2)} BOTTLES`;
  894. }
  895. return `${this.quantity.toFixed(2)} ${this._ingredient.unit.toUpperCase()}`;
  896. }
  897. convertToBase(quantity){
  898. switch(this._ingredient.unit){
  899. case "g": return quantity;
  900. case "kg": return quantity * 1000;
  901. case "oz": return quantity * 28.3495;
  902. case "lb": return quantity * 453.5924;
  903. case "ml": return quantity / 1000;
  904. case "l": return quantity;
  905. case "tsp": return quantity / 202.8842;
  906. case "tbsp": return quantity / 67.6278;
  907. case "ozfl": return quantity / 33.8141;
  908. case "cup": return quantity / 4.1667;
  909. case "pt": return quantity / 2.1134;
  910. case "qt": return quantity / 1.0567;
  911. case "gal": return quantity * 3.7854;
  912. case "mm": return quantity / 1000;
  913. case "cm": return quantity / 100;
  914. case "m": return quantity;
  915. case "in": return quantity / 39.3701;
  916. case "ft": return quantity / 3.2808;
  917. default: return quantity;
  918. }
  919. }
  920. }
  921. /*
  922. Recipe Object
  923. id = database id of recipe
  924. name = name of recipe
  925. price = price of recipe in cents
  926. ingredients = [{
  927. ingredient: Ingredient Object,
  928. quantity: quantity of the ingredient within the recipe (stored as base unit, i.e grams)
  929. }]
  930. parent = merchant that it belongs to
  931. */
  932. class Recipe{
  933. constructor(id, name, price, ingredients, parent){
  934. if(price < 0){
  935. banner.createError("PRICE CANNOT BE A NEGATIVE NUMBER");
  936. return false;
  937. }
  938. if(!this.isSanitaryString(name)){
  939. banner.createError("NAME CONTAINS ILLEGAL CHARACTERS");
  940. return false;
  941. }
  942. this._id = id;
  943. this._name = name;
  944. this._price = price;
  945. this._parent = parent;
  946. this._ingredients = [];
  947. for(let i = 0; i < ingredients.length; i++){
  948. const recipeIngredient = new RecipeIngredient(
  949. ingredients[i].ingredient,
  950. ingredients[i].quantity
  951. );
  952. this._ingredients.push(recipeIngredient);
  953. }
  954. }
  955. get id(){
  956. return this._id;
  957. }
  958. get name(){
  959. return this._name;
  960. }
  961. set name(name){
  962. if(!this.isSanitaryString(name)){
  963. return false;
  964. }
  965. this._name = name;
  966. }
  967. get price(){
  968. return this._price / 100;
  969. }
  970. set price(price){
  971. if(price < 0){
  972. return false;
  973. }
  974. this._price = price;
  975. }
  976. get parent(){
  977. return this._parent;
  978. }
  979. get ingredients(){
  980. return this._ingredients;
  981. }
  982. addIngredient(ingredient, quantity){
  983. if(quantity < 0){
  984. banner.createError("QUANTITY CANNOT BE A NEGATIVE NUMBER");
  985. return false;
  986. }
  987. let recipeIngredient = new RecipeIngredient(ingredient, quantity);
  988. this._ingredients.push(recipeIngredient);
  989. this._parent.modules.recipeBook.isPopulated = false;
  990. this._parent.modules.analytics.isPopulated = false;
  991. }
  992. removeIngredients(){
  993. this._ingredients = [];
  994. }
  995. isSanitaryString(str){
  996. let disallowed = ["\\", "<", ">", "$", "{", "}", "(", ")"];
  997. for(let i = 0; i < disallowed.length; i++){
  998. if(str.includes(disallowed[i])){
  999. return false;
  1000. }
  1001. }
  1002. return true;
  1003. }
  1004. }
  1005. module.exports = Recipe;
  1006. },{}],5:[function(require,module,exports){
  1007. class TransactionRecipe{
  1008. constructor(recipe, quantity){
  1009. if(quantity < 0){
  1010. banner.createError("QUANTITY CANNOT BE A NEGATIVE NUMBER");
  1011. return false;
  1012. }
  1013. if(quantity % 1 !== 0){
  1014. banner.createError("RECIPES WITHIN A TRANSACTION MUST BE WHOLE NUMBERS");
  1015. return false;
  1016. }
  1017. this._recipe = recipe;
  1018. this._quantity = quantity;
  1019. }
  1020. get recipe(){
  1021. return this._recipe;
  1022. }
  1023. get quantity(){
  1024. return this._quantity;
  1025. }
  1026. }
  1027. class Transaction{
  1028. constructor(id, date, recipes, parent){
  1029. date = new Date(date);
  1030. if(date > new Date()){
  1031. banner.createError("DATE CANNOT BE SET TO THE FUTURE");
  1032. return false;
  1033. }
  1034. this._id = id;
  1035. this._parent = parent;
  1036. this._date = date;
  1037. this._recipes = [];
  1038. for(let i = 0; i < recipes.length; i++){
  1039. for(let j = 0; j < parent.recipes.length; j++){
  1040. if(recipes[i].recipe === parent.recipes[j].id){
  1041. const transactionRecipe = new TransactionRecipe(
  1042. parent.recipes[j],
  1043. recipes[i].quantity
  1044. )
  1045. this._recipes.push(transactionRecipe);
  1046. break;
  1047. }
  1048. }
  1049. }
  1050. }
  1051. get id(){
  1052. return this._id;
  1053. }
  1054. get parent(){
  1055. return this._parent;
  1056. }
  1057. get date(){
  1058. return this._date;
  1059. }
  1060. get recipes(){
  1061. return this._recipes;
  1062. }
  1063. }
  1064. module.exports = Transaction;
  1065. },{}],6:[function(require,module,exports){
  1066. let analytics = {
  1067. newData: false,
  1068. dateChange: false,
  1069. transactions: [],
  1070. ingredient: {},
  1071. recipe: {},
  1072. display: function(Transaction){
  1073. document.getElementById("analDateBtn").onclick = ()=>{this.changeDates(Transaction)};
  1074. if(this.transactions.length === 0 || this.newData === true){
  1075. let startDate = new Date();
  1076. startDate.setMonth(startDate.getMonth() - 1);
  1077. this.transactions = merchant.getTransactions(startDate);
  1078. }
  1079. let slider = document.getElementById("analSlider");
  1080. slider.onchange = ()=>{this.display(Transaction)};
  1081. let ingredientContent = document.getElementById("analIngredientContent");
  1082. let recipeContent = document.getElementById("analRecipeContent");
  1083. if(slider.checked){
  1084. ingredientContent.style.display = "none";
  1085. recipeContent.style.display = "flex";
  1086. this.displayRecipes();
  1087. }else{
  1088. ingredientContent.style.display = "flex";
  1089. recipeContent.style.display = "none"
  1090. this.displayIngredients();
  1091. }
  1092. },
  1093. displayIngredients: function(){
  1094. const itemsList = document.getElementById("itemsList");
  1095. while(itemsList.children.length > 0){
  1096. itemsList.removeChild(itemsList.firstChild);
  1097. }
  1098. for(let i = 0; i < merchant.ingredients.length; i++){
  1099. let li = document.createElement("li");
  1100. li.classList.add("itemButton");
  1101. li.item = merchant.ingredients[i];
  1102. li.innerText = merchant.ingredients[i].ingredient.name;
  1103. li.onclick = ()=>{
  1104. const itemsList = document.getElementById("itemsList");
  1105. for(let i = 0; i < itemsList.children.length; i++){
  1106. itemsList.children[i].classList.remove("analItemActive");
  1107. }
  1108. li.classList.add("analItemActive");
  1109. this.ingredient = merchant.ingredients[i];
  1110. this.ingredientDisplay();
  1111. };
  1112. itemsList.appendChild(li);
  1113. }
  1114. if(this.dateChange && Object.keys(this.ingredient).length !== 0){
  1115. this.ingredientDisplay();
  1116. }
  1117. this.dateChange = false;
  1118. },
  1119. displayRecipes: function(){
  1120. let recipeList = document.getElementById("analRecipeList");
  1121. while(recipeList.children.length > 0){
  1122. recipeList.removeChild(recipeList.firstChild);
  1123. }
  1124. for(let i = 0; i < merchant.recipes.length; i++){
  1125. let li = document.createElement("li");
  1126. li.classList.add("itemButton");
  1127. li.recipe = merchant.recipes[i];
  1128. li.innerText = merchant.recipes[i].name;
  1129. li.onclick = ()=>{
  1130. let recipeList = document.getElementById("analRecipeList");
  1131. for(let i = 0; i < recipeList.children.length; i++){
  1132. recipeList.children[i].classList.remove("analItemActive");
  1133. }
  1134. li.classList.add("analItemActive");
  1135. this.recipe = merchant.recipes[i];
  1136. this.recipeDisplay();
  1137. }
  1138. recipeList.appendChild(li);
  1139. }
  1140. if(this.dateChange && Object.keys(this.recipe).length !== 0){
  1141. this.recipeDisplay();
  1142. }
  1143. this.dateChange = false;
  1144. },
  1145. ingredientDisplay: function(){
  1146. //Get list of recipes that contain the ingredient
  1147. let containingRecipes = [];
  1148. for(let i = 0; i < merchant.recipes.length; i++){
  1149. for(let j = 0; j < merchant.recipes[i].ingredients.length; j++){
  1150. if(merchant.recipes[i].ingredients[j].ingredient === this.ingredient.ingredient){
  1151. containingRecipes.push({
  1152. recipe: merchant.recipes[i],
  1153. quantity: merchant.recipes[i].ingredients[j].quantity
  1154. });
  1155. break;
  1156. }
  1157. }
  1158. }
  1159. //Create Graph
  1160. let quantities = [];
  1161. let dates = [];
  1162. let currentDate = (this.transactions.length > 0) ? this.transactions[0].date : undefined;
  1163. let currentQuantity = 0;
  1164. for(let i = 0; i < this.transactions.length; i++){
  1165. if(currentDate.getDate() !== this.transactions[i].date.getDate()){
  1166. quantities.push(currentQuantity);
  1167. dates.push(currentDate);
  1168. currentQuantity = 0;
  1169. currentDate = this.transactions[i].date;
  1170. }
  1171. for(let j = 0; j < this.transactions[i].recipes.length; j++){
  1172. for(let k = 0; k < containingRecipes.length; k++){
  1173. if(this.transactions[i].recipes[j].recipe === containingRecipes[k].recipe){
  1174. for(let l = 0; l < this.transactions[i].recipes[j].recipe.ingredients.length; l++){
  1175. const transIngredient = this.transactions[i].recipes[j].recipe.ingredients[l];
  1176. if(transIngredient.ingredient === this.ingredient.ingredient){
  1177. currentQuantity += transIngredient.quantity * this.transactions[i].recipes[j].quantity;
  1178. break;
  1179. }
  1180. }
  1181. }
  1182. }
  1183. }
  1184. if(i === this.transactions.length - 1){
  1185. quantities.push(currentQuantity);
  1186. dates.push(currentDate);
  1187. }
  1188. }
  1189. let trace = {
  1190. x: dates,
  1191. y: quantities,
  1192. mode: "lines+markers",
  1193. line: {
  1194. color: "rgb(255, 99, 107)"
  1195. }
  1196. }
  1197. const layout = {
  1198. title: this.ingredient.ingredient.name.toUpperCase(),
  1199. xaxis: {
  1200. title: "DATE"
  1201. },
  1202. yaxis: {
  1203. title: `QUANTITY (${this.ingredient.ingredient.unit.toUpperCase()})`,
  1204. }
  1205. }
  1206. Plotly.newPlot("itemUseGraph", [trace], layout);
  1207. //Create use cards
  1208. let sum = 0;
  1209. let max = 0;
  1210. let min = (quantities.length > 0) ? quantities[0] : 0;
  1211. for(let i = 0; i < quantities.length; i++){
  1212. sum += quantities[i];
  1213. if(quantities[i] > max){
  1214. max = quantities[i];
  1215. }else if(quantities[i] < min){
  1216. min = quantities[i];
  1217. }
  1218. }
  1219. document.getElementById("analMinUse").innerText = `${min.toFixed(2)} ${this.ingredient.ingredient.unit}`;
  1220. document.getElementById("analAvgUse").innerText = `${(sum / quantities.length).toFixed(2)} ${this.ingredient.ingredient.unit}`;
  1221. document.getElementById("analMaxUse").innerText = `${max.toFixed(2)} ${this.ingredient.ingredient.unit}`;
  1222. let dayUse = [0, 0, 0, 0, 0, 0, 0];
  1223. let dayCount = [0, 0, 0, 0, 0, 0, 0];
  1224. for(let i = 0; i < quantities.length; i++){
  1225. dayUse[dates[i].getDay()] += quantities[i];
  1226. dayCount[dates[i].getDay()]++;
  1227. }
  1228. document.getElementById("analDayOne").innerText = `${(dayUse[0] / dayCount[0]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
  1229. document.getElementById("analDayTwo").innerText = `${(dayUse[1] / dayCount[1]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
  1230. document.getElementById("analDayThree").innerText = `${(dayUse[2] / dayCount[2]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
  1231. document.getElementById("analDayFour").innerText = `${(dayUse[3] / dayCount[3]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
  1232. document.getElementById("analDayFive").innerText = `${(dayUse[4] / dayCount[4]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
  1233. document.getElementById("analDaySix").innerText = `${(dayUse[5] / dayCount[5]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
  1234. document.getElementById("analDaySeven").innerText = `${(dayUse[6] / dayCount[6]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
  1235. },
  1236. recipeDisplay: function(){
  1237. let quantities = [];
  1238. let dates = [];
  1239. let currentDate;
  1240. let quantity = 0;
  1241. if(this.transactions.length > 0){
  1242. currentDate = this.transactions[0].date;
  1243. }
  1244. for(let i = 0; i < this.transactions.length; i++){
  1245. if(currentDate.getDate() !== this.transactions[i].date.getDate()){
  1246. quantities.push(quantity);
  1247. quantity = 0;
  1248. dates.push(currentDate);
  1249. currentDate = this.transactions[i].date;
  1250. }
  1251. for(let j = 0; j < this.transactions[i].recipes.length; j++){
  1252. const recipe = this.transactions[i].recipes[j];
  1253. if(recipe.recipe === this.recipe){
  1254. quantity += recipe.quantity;
  1255. }
  1256. }
  1257. if(i === this.transactions.length - 1){
  1258. quantities.push(quantity);
  1259. dates.push(currentDate);
  1260. }
  1261. }
  1262. const trace = {
  1263. x: dates,
  1264. y: quantities,
  1265. mode: "lines+markers",
  1266. line: {
  1267. color: "rgb(255, 99, 107"
  1268. }
  1269. }
  1270. const layout = {
  1271. title: this.recipe.name.toUpperCase(),
  1272. xaxis: {
  1273. title: "DATE"
  1274. },
  1275. yaxis: {
  1276. title: "Quantity"
  1277. }
  1278. }
  1279. Plotly.newPlot("recipeSalesGraph", [trace], layout);
  1280. let sum = 0;
  1281. for(let i = 0; i < quantities.length; i++){
  1282. sum += quantities[i];
  1283. }
  1284. document.getElementById("recipeAvgUse").innerText = (sum / quantities.length).toFixed(2);
  1285. document.getElementById("recipeAvgRevenue").innerText = `$${(((sum / quantities.length) * this.recipe.price) / 100).toFixed(2)}`;
  1286. },
  1287. changeDates: function(Transaction){
  1288. let dates = {
  1289. from: document.getElementById("analStartDate").valueAsDate,
  1290. to: document.getElementById("analEndDate").valueAsDate
  1291. }
  1292. if(dates.from > dates.to || dates.from === "" || dates.to === "" || dates.to > new Date()){
  1293. banner.createError("INVALID DATE");
  1294. return;
  1295. }
  1296. let loader = document.getElementById("loaderContainer");
  1297. loader.style.display = "flex";
  1298. fetch("/transaction/retrieve", {
  1299. method: "post",
  1300. headers: {
  1301. "Content-Type": "application/json;charset=utf-8"
  1302. },
  1303. body: JSON.stringify(dates)
  1304. })
  1305. .then(response => response.json())
  1306. .then((response)=>{
  1307. if(typeof(response) === "string"){
  1308. banner.createError(response.data);
  1309. }else{
  1310. this.transactions = [];
  1311. for(let i = 0; i < response.length; i++){
  1312. this.transactions.push(new Transaction(
  1313. response[i]._id,
  1314. new Date(response[i].date),
  1315. response[i].recipes,
  1316. merchant
  1317. ));
  1318. }
  1319. let isRecipe = document.getElementById("analSlider").checked;
  1320. if(isRecipe && Object.keys(this.recipe).length !== 0){
  1321. this.recipeDisplay();
  1322. }else if(!isRecipe && Object.keys(this.ingredient).length !== 0){
  1323. this.ingredientDisplay();
  1324. }
  1325. this.dateChange = true;
  1326. }
  1327. })
  1328. .catch((err)=>{
  1329. banner.createError("ERROR: UNABLE TO DISPLAY THE DATA");
  1330. })
  1331. .finally(()=>{
  1332. loader.style.display = "none";
  1333. });
  1334. }
  1335. }
  1336. module.exports = analytics;
  1337. },{}],7:[function(require,module,exports){
  1338. const home = require("./home.js");
  1339. const ingredients = require("./ingredients.js");
  1340. const recipeBook = require("./recipeBook.js");
  1341. const analytics = require("./analytics.js");
  1342. const orders = require("./orders.js");
  1343. const transactions = require("./transactions.js");
  1344. const ingredientDetails = require("./ingredientDetails.js");
  1345. const newIngredient = require("./newIngredient.js");
  1346. const editIngredient = require("./editIngredient.js");
  1347. const newOrder = require("./newOrder.js");
  1348. const newRecipe = require("./newRecipe.js");
  1349. const editRecipe = require("./editRecipe.js");
  1350. const newTransaction = require("./newTransaction.js");
  1351. const orderDetails = require("./orderDetails.js");
  1352. const orderFilter = require("./orderFilter.js");
  1353. const recipeDetails = require("./recipeDetails.js");
  1354. const transactionDetails = require("./transactionDetails.js");
  1355. const Merchant = require("./Merchant.js");
  1356. const Ingredient = require("./Ingredient.js");
  1357. const Recipe = require("./Recipe.js");
  1358. const Order = require("./Order.js");
  1359. const Transaction = require("./Transaction.js");
  1360. merchant = new Merchant(data.merchant, data.transactions, {
  1361. home: home,
  1362. ingredients: ingredients,
  1363. transactions: transactions,
  1364. recipeBook: recipeBook,
  1365. analytics: analytics,
  1366. orders: orders,
  1367. Ingredient: Ingredient,
  1368. Recipe: Recipe,
  1369. Transaction: Transaction
  1370. });
  1371. controller = {
  1372. openStrand: function(strand, data = undefined){
  1373. this.closeSidebar();
  1374. let strands = document.querySelectorAll(".strand");
  1375. for(let i = 0; i < strands.length; i++){
  1376. strands[i].style.display = "none";
  1377. }
  1378. let buttons = document.querySelectorAll(".menuButton");
  1379. for(let i = 0; i < buttons.length - 1; i++){
  1380. buttons[i].classList = "menuButton";
  1381. buttons[i].disabled = false;
  1382. }
  1383. let activeButton = {};
  1384. switch(strand){
  1385. case "home":
  1386. activeButton = document.getElementById("homeBtn");
  1387. document.getElementById("homeStrand").style.display = "flex";
  1388. home.display();
  1389. break;
  1390. case "ingredients":
  1391. activeButton = document.getElementById("ingredientsBtn");
  1392. document.getElementById("ingredientsStrand").style.display = "flex";
  1393. ingredients.display();
  1394. break;
  1395. case "recipeBook":
  1396. activeButton = document.getElementById("recipeBookBtn");
  1397. document.getElementById("recipeBookStrand").style.display = "flex";
  1398. recipeBook.display(Recipe);
  1399. break;
  1400. case "analytics":
  1401. activeButton = document.getElementById("analyticsBtn");
  1402. document.getElementById("analyticsStrand").style.display = "flex";
  1403. analytics.display(Transaction);
  1404. break;
  1405. case "orders":
  1406. activeButton = document.getElementById("ordersBtn");
  1407. document.getElementById("ordersStrand").style.display = "flex";
  1408. orders.display(Order, data);
  1409. break;
  1410. case "transactions":
  1411. activeButton = document.getElementById("transactionsBtn");
  1412. document.getElementById("transactionsStrand").style.display = "flex";
  1413. transactions.display(Transaction);
  1414. break;
  1415. }
  1416. activeButton.classList = "menuButton active";
  1417. activeButton.disabled = true;
  1418. if(window.screen.availWidth <= 1000){
  1419. this.closeMenu();
  1420. }
  1421. },
  1422. /*
  1423. Open a specific sidebar
  1424. Input:
  1425. sidebar: the outermost element of the sidebar (must contain class sidebar)
  1426. */
  1427. openSidebar: function(sidebar, data = {}){
  1428. this.closeSidebar();
  1429. document.getElementById("sidebarDiv").classList = "sidebar";
  1430. document.getElementById(sidebar).style.display = "flex";
  1431. switch(sidebar){
  1432. case "ingredientDetails":
  1433. ingredientDetails.display(data, ingredients);
  1434. break;
  1435. case "newIngredient":
  1436. newIngredient.display(Ingredient);
  1437. break;
  1438. case "editIngredient":
  1439. editIngredient.display(data);
  1440. break;
  1441. case "recipeDetails":
  1442. recipeDetails.display(data);
  1443. break;
  1444. case "editRecipe":
  1445. editRecipe.display(data);
  1446. break;
  1447. case "addRecipe":
  1448. newRecipe.display(Recipe);
  1449. break;
  1450. case "orderDetails":
  1451. orderDetails.display(data);
  1452. break;
  1453. case "orderFilter":
  1454. orderFilter.display(Order);
  1455. break;
  1456. case "newOrder":
  1457. newOrder.display(Order);
  1458. break;
  1459. case "transactionDetails":
  1460. transactionDetails.display(data);
  1461. break;
  1462. case "newTransaction":
  1463. newTransaction.display(Transaction);
  1464. break;
  1465. }
  1466. if(window.screen.availWidth <= 1000){
  1467. document.querySelector(".contentBlock").style.display = "none";
  1468. document.getElementById("mobileMenuSelector").style.display = "none";
  1469. document.getElementById("sidebarCloser").style.display = "block";
  1470. }
  1471. },
  1472. closeSidebar: function(){
  1473. let sidebar = document.getElementById("sidebarDiv");
  1474. for(let i = 0; i < sidebar.children.length; i++){
  1475. if(sidebar.children[i].style.display !== "none"){
  1476. sidebar.children[i].style.display = "none";
  1477. let choosables = [];
  1478. switch(sidebar.children[i].id){
  1479. case "ingredientDetails":
  1480. choosables = document.querySelectorAll(".ingredient");
  1481. break;
  1482. case "transactionDetails":
  1483. choosables = document.getElementById("transactionsList").children;
  1484. break;
  1485. case "recipeDetails":
  1486. choosables = document.getElementById("recipeList").children;
  1487. break;
  1488. case "orderDetails":
  1489. choosables = document.getElementById("orderList").children;
  1490. break;
  1491. }
  1492. for(let i = 0; i < choosables.length; i++){
  1493. choosables[i].classList.remove("active");
  1494. }
  1495. }
  1496. }
  1497. sidebar.classList = "sidebarHide";
  1498. if(window.screen.availWidth <= 1000){
  1499. document.querySelector(".contentBlock").style.display = "flex";
  1500. document.getElementById("mobileMenuSelector").style.display = "block";
  1501. document.getElementById("sidebarCloser").style.display = "none";
  1502. }
  1503. },
  1504. changeMenu: function(){
  1505. let menu = document.querySelector(".menu");
  1506. let buttons = document.querySelectorAll(".menuButton");
  1507. if(!menu.classList.contains("menuMinimized")){
  1508. menu.classList = "menu menuMinimized";
  1509. for(let i = 0; i < buttons.length; i++){
  1510. buttons[i].children[1].style.display = "none";
  1511. }
  1512. document.getElementById("max").style.display = "none";
  1513. document.getElementById("min").style.display = "flex";
  1514. }else if(menu.classList.contains("menuMinimized")){
  1515. menu.classList = "menu";
  1516. for(let i = 0; i < buttons.length; i++){
  1517. buttons[i].children[1].style.display = "block";
  1518. }
  1519. setTimeout(()=>{
  1520. document.getElementById("max").style.display = "flex";
  1521. document.getElementById("min").style.display = "none";
  1522. }, 150);
  1523. }
  1524. },
  1525. openMenu: function(){
  1526. document.getElementById("menu").style.display = "flex";
  1527. document.querySelector(".contentBlock").style.display = "none";
  1528. document.getElementById("mobileMenuSelector").onclick = ()=>{this.closeMenu()};
  1529. },
  1530. closeMenu: function(){
  1531. document.getElementById("menu").style.display = "none";
  1532. document.querySelector(".contentBlock").style.display = "flex";
  1533. document.getElementById("mobileMenuSelector").onclick = ()=>{this.openMenu()};
  1534. },
  1535. /*
  1536. Converts the price of unit back to the price per default unit
  1537. unitType = type of the unit (i.e. mass, volume)
  1538. unit = exact unit to convert to
  1539. price = price of the ingredient per unit in cents
  1540. */
  1541. reconvertPrice(unitType, unit, price){
  1542. if(unitType === "mass"){
  1543. switch(unit){
  1544. case "g": break;
  1545. case "kg": price *= 1000; break;
  1546. case "oz": price *= 28.3495; break;
  1547. case "lb": price *= 453.5924; break;
  1548. }
  1549. }else if(unitType === "volume"){
  1550. switch(unit){
  1551. case "ml": price /= 1000; break;
  1552. case "l": break;
  1553. case "tsp": price /= 202.8842; break;
  1554. case "tbsp": price /= 67.6278; break;
  1555. case "ozfl": price /= 33.8141; break;
  1556. case "cup": price /= 4.1667; break;
  1557. case "pt": price /= 2.1134; break;
  1558. case "qt": price /= 1.0567; break;
  1559. case "gal": price *= 3.7854; break;
  1560. }
  1561. }else if(unitType === "length"){
  1562. switch(unit){
  1563. case "mm": price /= 1000; break;
  1564. case "cm": price /= 100; break;
  1565. case "m": break;
  1566. case "in": price /= 39.3701; break;
  1567. case "ft": price /= 3.2808; break;
  1568. }
  1569. }
  1570. return price;
  1571. }
  1572. }
  1573. if(window.screen.availWidth > 1000 && window.screen.availWidth <= 1400){
  1574. this.changeMenu();
  1575. document.getElementById("menuShifter2").style.display = "none";
  1576. }
  1577. controller.openStrand("home");
  1578. },{"./Ingredient.js":1,"./Merchant.js":2,"./Order.js":3,"./Recipe.js":4,"./Transaction.js":5,"./analytics.js":6,"./editIngredient.js":8,"./editRecipe.js":9,"./home.js":10,"./ingredientDetails.js":11,"./ingredients.js":12,"./newIngredient.js":13,"./newOrder.js":14,"./newRecipe.js":15,"./newTransaction.js":16,"./orderDetails.js":17,"./orderFilter.js":18,"./orders.js":19,"./recipeBook.js":20,"./recipeDetails.js":21,"./transactionDetails.js":22,"./transactions.js":23}],8:[function(require,module,exports){
  1579. const Ingredient = require("./Ingredient");
  1580. let editIngredient = {
  1581. display: function(ingredient){
  1582. let buttonList = document.getElementById("unitButtons");
  1583. let quantLabel = document.getElementById("editIngQuantityLabel");
  1584. let specialLabel = document.getElementById("editSpecialLabel");
  1585. //Clear any existing data
  1586. while(buttonList.children.length > 0){
  1587. buttonList.removeChild(buttonList.firstChild);
  1588. }
  1589. //Populate basic fields
  1590. document.getElementById("editIngTitle").innerText = ingredient.ingredient.name;
  1591. document.getElementById("editIngName").value = ingredient.ingredient.name;
  1592. document.getElementById("editIngCategory").value = ingredient.ingredient.category;
  1593. quantLabel.innerText = `CURRENT STOCK (${ingredient.ingredient.unit.toUpperCase()})`;
  1594. document.getElementById("editIngSubmit").onclick = ()=>{this.submit(ingredient)};
  1595. //Populate the unit buttons
  1596. const units = merchant.units[ingredient.ingredient.unitType];
  1597. for(let i = 0; i < units.length; i++){
  1598. let button = document.createElement("button");
  1599. button.classList.add("unitButton");
  1600. button.innerText = units[i].toUpperCase();
  1601. button.onclick = ()=>{this.changeUnit(button)};
  1602. buttonList.appendChild(button);
  1603. if(units[i] === ingredient.ingredient.unit){
  1604. button.classList.add("unitActive");
  1605. }
  1606. }
  1607. //Make any changes for special ingredients
  1608. if(ingredient.ingredient.specialUnit === "bottle"){
  1609. quantLabel.innerText = "CURRENT STOCK (BOTTLES):";
  1610. specialLabel.style.display = "flex";
  1611. specialLabel.innerText = `BOTTLE SIZE (${ingredient.ingredient.unit.toUpperCase()}):`;
  1612. let sizeInput = document.createElement("input");
  1613. sizeInput.id = "editIngSpecialSize";
  1614. sizeInput.type = "number";
  1615. sizeInput.min = "0";
  1616. sizeInput.step = "0.01";
  1617. sizeInput.value = ingredient.ingredient.unitSize.toFixed(2);
  1618. specialLabel.appendChild(sizeInput);
  1619. }else{
  1620. specialLabel.style.display = "none";
  1621. }
  1622. let quantInput = document.createElement("input");
  1623. quantInput.id = "editIngQuantity";
  1624. quantInput.type = "number";
  1625. quantInput.min = "0";
  1626. quantInput.step = "0.01";
  1627. quantInput.value = ingredient.quantity.toFixed(2);
  1628. quantLabel.appendChild(quantInput);
  1629. },
  1630. changeUnit(button){
  1631. let buttons = document.getElementById("unitButtons");
  1632. for(let i = 0; i < buttons.children.length; i++){
  1633. buttons.children[i].classList.remove("unitActive");
  1634. }
  1635. button.classList.add("unitActive");
  1636. },
  1637. submit(ingredient){
  1638. const quantity = parseFloat(document.getElementById("editIngQuantityLabel").children[0].value);
  1639. let data = {
  1640. id: ingredient.ingredient.id,
  1641. name: document.getElementById("editIngName").value,
  1642. category: document.getElementById("editIngCategory").value
  1643. }
  1644. //Add data based on unit type
  1645. if(ingredient.ingredient.specialUnit === "bottle"){
  1646. let unitSize = ingredient.convertToBase(parseFloat(document.getElementById("editSpecialLabel").children[0].value));
  1647. data.quantity = quantity * unitSize;
  1648. data.unitSize = unitSize;
  1649. }else{
  1650. data.quantity = ingredient.convertToBase(quantity);
  1651. }
  1652. //Get the measurement unit
  1653. let units = document.getElementById("unitButtons");
  1654. for(let i = 0; i < units.children.length; i++){
  1655. if(units.children[i].classList.contains("unitActive")){
  1656. data.unit = units.children[i].innerText.toLowerCase();
  1657. break;
  1658. }
  1659. }
  1660. let loader = document.getElementById("loaderContainer");
  1661. loader.style.display = "flex";
  1662. fetch("/ingredients/update", {
  1663. method: "put",
  1664. headers: {
  1665. "Content-Type": "application/json;charset=utf-8"
  1666. },
  1667. body: JSON.stringify(data)
  1668. })
  1669. .then(response => response.json())
  1670. .then((response)=>{
  1671. if(typeof(response) === "string"){
  1672. banner.createError(response);
  1673. }else{
  1674. ingredient.ingredient.name = response.ingredient.name;
  1675. ingredient.ingredient.category = response.ingredient.category;
  1676. ingredient.ingredient.unitSize = response.ingredient.unitSize;
  1677. ingredient.ingredient.unit = response.unit;
  1678. merchant.updateIngredient(ingredient, response.quantity);
  1679. controller.openStrand("ingredients");
  1680. banner.createNotification("INGREDIENT UPDATED");
  1681. }
  1682. })
  1683. .catch((err)=>{
  1684. banner.createError("SOMETHING WENT WRONG, PLEASE REFRESH THE PAGE");
  1685. })
  1686. .finally(()=>{
  1687. loader.style.display = "none";
  1688. });
  1689. }
  1690. }
  1691. module.exports = editIngredient;
  1692. },{"./Ingredient":1}],9:[function(require,module,exports){
  1693. let editRecipe = {
  1694. display: function(recipe){
  1695. let nameInput = document.getElementById("editRecipeName");
  1696. if(merchant.pos === "none"){
  1697. nameInput.value = recipe.name;
  1698. }else{
  1699. document.getElementById("editRecipeNoName").innertext = recipe.name;
  1700. nameInput.parentNode.style.display = "none";
  1701. }
  1702. //Populate ingredients
  1703. let ingredientList = document.getElementById("editRecipeIngList");
  1704. while(ingredientList.children.length > 0){
  1705. ingredientList.removeChild(ingredientList.firstChild);
  1706. }
  1707. let template = document.getElementById("editRecipeIng").content.children[0];
  1708. for(let i = 0; i < recipe.ingredients.length; i++){
  1709. let ingredientDiv = template.cloneNode(true);
  1710. ingredientDiv.children[0].onclick = ()=>{ingredientDiv.parentNode.removeChild(ingredientDiv)};
  1711. ingredientDiv.children[1].innerText = recipe.ingredients[i].ingredient.getNameAndUnit();
  1712. ingredientDiv.children[2].style.display = "none";
  1713. ingredientDiv.children[3].value = recipe.ingredients[i].quantity;
  1714. ingredientDiv.ingredient = recipe.ingredients[i];
  1715. ingredientList.appendChild(ingredientDiv);
  1716. }
  1717. document.getElementById("addRecIng").onclick = ()=>{this.newIngredient()};
  1718. document.getElementById("editRecipePrice").value = recipe.price;
  1719. document.getElementById("editRecipeSubmit").onclick = ()=>{this.submit(recipe)};
  1720. document.getElementById("editRecipeCancel").onclick = ()=>{controller.openSidebar("recipeDetails", recipe)};
  1721. },
  1722. newIngredient: function(){
  1723. let ingredientList = document.getElementById("editRecipeIngList");
  1724. let ingredientDiv = document.getElementById("editRecipeIng").content.children[0].cloneNode(true);
  1725. ingredientDiv.children[0].onclick = ()=>{ingredientDiv.parentNode.removeChild(ingredientDiv)};
  1726. ingredientDiv.children[1].style.display = "none";
  1727. ingredientDiv.children[3].value = "0.00";
  1728. //Populate selector
  1729. let categories = merchant.categorizeIngredients();
  1730. for(let i = 0; i < categories.length; i++){
  1731. let group = document.createElement("optgroup");
  1732. group.label = categories[i].name;
  1733. for(let j = 0; j < categories[i].ingredients.length; j++){
  1734. let option = document.createElement("option");
  1735. option.innerText = categories[i].ingredients[j].ingredient.getNameAndUnit();
  1736. option.ingredient = categories[i].ingredients[j];
  1737. group.appendChild(option);
  1738. }
  1739. ingredientDiv.children[2].appendChild(group);
  1740. }
  1741. ingredientList.appendChild(ingredientDiv);
  1742. },
  1743. submit: function(recipe){
  1744. let data = {
  1745. id: recipe.id,
  1746. name: recipe.name,
  1747. price: document.getElementById("editRecipePrice").value * 100,
  1748. ingredients: []
  1749. }
  1750. if(merchant.pos === "none"){
  1751. data.name = document.getElementById("editRecipeName").value;
  1752. }
  1753. let ingredients = document.getElementById("editRecipeIngList").children;
  1754. for(let i = 0; i < ingredients.length; i++){
  1755. const quantity = parseFloat(ingredients[i].children[3].value);
  1756. if(ingredients[i].children[1].style.display === "none"){
  1757. let selector = ingredients[i].children[2];
  1758. let ingredient = selector.options[selector.selectedIndex].ingredient;
  1759. data.ingredients.push({
  1760. ingredient: ingredient.ingredient.id,
  1761. quantity: ingredient.convertToBase(quantity)
  1762. });
  1763. }else{
  1764. data.ingredients.push({
  1765. ingredient: ingredients[i].ingredient.ingredient.id,
  1766. quantity: ingredients[i].ingredient.convertToBase(quantity)
  1767. });
  1768. }
  1769. }
  1770. let loader = document.getElementById("loaderContainer");
  1771. loader.style.display = "flex";
  1772. fetch("/recipe/update", {
  1773. method: "put",
  1774. headers: {
  1775. "Content-Type": "application/json;charset=utf-8"
  1776. },
  1777. body: JSON.stringify(data)
  1778. })
  1779. .then(response => response.json())
  1780. .then((response)=>{
  1781. if(typeof(response) === "string"){
  1782. banner.createError(response);
  1783. }else{
  1784. merchant.updateRecipe(response);
  1785. controller.openStrand("recipeBook");
  1786. }
  1787. })
  1788. .catch((err)=>{
  1789. banner.createError("SOMETHING WENT WRONG, PLEASE REFRESH THE PAGE");
  1790. })
  1791. .finally(()=>{
  1792. loader.style.display = "none";
  1793. });
  1794. }
  1795. }
  1796. module.exports = editRecipe;
  1797. },{}],10:[function(require,module,exports){
  1798. let home = {
  1799. isPopulated: false,
  1800. display: function(){
  1801. if(!this.isPopulated){
  1802. this.drawRevenueCard();
  1803. this.drawRevenueGraph();
  1804. this.drawInventoryCheckCard();
  1805. this.drawPopularCard();
  1806. this.isPopulated = true;
  1807. }
  1808. },
  1809. drawRevenueCard: function(){
  1810. let today = new Date();
  1811. let firstOfMonth = new Date(today.getFullYear(), today.getMonth(), 1);
  1812. let firstOfLastMonth = new Date(today.getFullYear(), today.getMonth() - 1, 1);
  1813. let lastMonthToDay = new Date(new Date().setMonth(today.getMonth() - 1));
  1814. const revenueThisMonth = merchant.getRevenue(firstOfMonth);
  1815. const revenueLastMonthToDay = merchant.getRevenue(firstOfLastMonth, lastMonthToDay);
  1816. document.getElementById("revenue").innerText = `$${revenueThisMonth.toFixed(2)}`;
  1817. let revenueChange = ((revenueThisMonth - revenueLastMonthToDay) / revenueLastMonthToDay) * 100;
  1818. let img = "";
  1819. if(revenueChange >= 0){
  1820. img = "/shared/images/upArrow.png";
  1821. }else{
  1822. img = "/shared/images/downArrow.png";
  1823. }
  1824. document.querySelector("#revenueChange p").innerText = `${Math.abs(revenueChange).toFixed(2)}% vs last month`;
  1825. document.querySelector("#revenueChange img").src = img;
  1826. },
  1827. drawRevenueGraph: function(){
  1828. let monthAgo = new Date();
  1829. monthAgo.setMonth(monthAgo.getMonth() - 1);
  1830. let revenue = [];
  1831. let dates = [];
  1832. let dayRevenue = 0;
  1833. const transactions = merchant.getTransactions(monthAgo);
  1834. let currentDate = (transactions.length > 0) ? transactions[0].date : undefined;
  1835. for(let i = 0; i < transactions.length; i++){
  1836. if(transactions[i].date.getDate() !== currentDate.getDate()){
  1837. revenue.push(dayRevenue / 100);
  1838. dayRevenue = 0;
  1839. dates.push(currentDate);
  1840. currentDate = transactions[i].date;
  1841. }
  1842. for(let j = 0; j < transactions[i].recipes.length; j++){
  1843. const recipe = transactions[i].recipes[j];
  1844. dayRevenue += recipe.recipe.price * recipe.quantity;
  1845. }
  1846. }
  1847. const trace = {
  1848. x: dates,
  1849. y: revenue,
  1850. mode: "lines+markers",
  1851. line: {
  1852. color: "rgb(255, 99, 107)"
  1853. }
  1854. }
  1855. const layout = {
  1856. title: "REVENUE",
  1857. xaxis: {
  1858. title: "DATE"
  1859. },
  1860. yaxis: {
  1861. title: "$"
  1862. }
  1863. }
  1864. Plotly.newPlot("graphCard", [trace], layout);
  1865. },
  1866. drawInventoryCheckCard: function(){
  1867. let num;
  1868. if(merchant.ingredients.length < 5){
  1869. num = merchant.ingredients.length;
  1870. }else{
  1871. num = 5;
  1872. }
  1873. let rands = [];
  1874. for(let i = 0; i < num; i++){
  1875. let rand = Math.floor(Math.random() * merchant.ingredients.length);
  1876. if(rands.includes(rand)){
  1877. i--;
  1878. }else{
  1879. rands[i] = rand;
  1880. }
  1881. }
  1882. let ul = document.querySelector("#inventoryCheckCard ul");
  1883. let template = document.getElementById("ingredientCheck").content.children[0];
  1884. while(ul.children.length > 0){
  1885. ul.removeChild(ul.firstChild);
  1886. }
  1887. for(let i = 0; i < rands.length; i++){
  1888. let ingredientCheck = template.cloneNode(true);
  1889. let input = ingredientCheck.children[1].children[1];
  1890. const ingredient = merchant.ingredients[rands[i]];
  1891. ingredientCheck.ingredient = ingredient;
  1892. ingredientCheck.children[0].innerText = ingredient.ingredient.name;
  1893. ingredientCheck.children[1].children[0].onclick = ()=>{
  1894. input.value--;
  1895. input.changed = true;
  1896. };
  1897. if(ingredient.ingredient.specialUnit === "bottle"){
  1898. input.value = ingredient.quantity.toFixed(2);
  1899. ingredientCheck.children[2].innerText = "BOTTLES";
  1900. }else{
  1901. input.value = ingredient.quantity.toFixed(2);
  1902. ingredientCheck.children[2].innerText = ingredient.ingredient.unit.toUpperCase();
  1903. }
  1904. ingredientCheck.children[1].children[2].onclick = ()=>{
  1905. input.value++;
  1906. input.changed = true;
  1907. }
  1908. input.onchange = ()=>{input.changed = true};
  1909. ul.appendChild(ingredientCheck);
  1910. }
  1911. document.getElementById("inventoryCheck").onclick = ()=>{this.submitInventoryCheck()};
  1912. },
  1913. drawPopularCard: function(){
  1914. let thisMonth = new Date();
  1915. thisMonth.setDate(1);
  1916. const ingredientList = merchant.getIngredientsSold(thisMonth);
  1917. if(ingredientList !== false){
  1918. ingredientList.sort((a, b)=>{
  1919. if(a.quantity < b.quantity){
  1920. return 1;
  1921. }
  1922. if(a.quantity > b.quantity){
  1923. return -1;
  1924. }
  1925. return 0;
  1926. });
  1927. let quantities = [];
  1928. let labels = [];
  1929. let colors = [];
  1930. let count = (ingredientList.length < 5) ? ingredientList.length - 1 : 4;
  1931. for(let i = count; i >= 0; i--){
  1932. const ingredientName = ingredientList[i].ingredient.name;
  1933. const ingredientQuantity = ingredientList[i].quantity;
  1934. const unitName = ingredientList[i].ingredient.unit;
  1935. quantities.push(ingredientList[i].quantity);
  1936. labels.push(`${ingredientName}: ${ingredientQuantity.toFixed(2)} ${unitName.toUpperCase()}`);
  1937. if(i === 0){
  1938. colors.push("rgb(255, 99, 107");
  1939. }else{
  1940. colors.push("rgb(179, 191, 209");
  1941. }
  1942. }
  1943. let trace = {
  1944. x: quantities,
  1945. type: "bar",
  1946. orientation: "h",
  1947. text: labels,
  1948. textposition: "auto",
  1949. hoverinfo: "none",
  1950. marker: {
  1951. color: colors
  1952. }
  1953. }
  1954. let layout = {
  1955. title: "MOST POPULAR INGREDIENTS",
  1956. xaxis: {
  1957. zeroline: false,
  1958. title: "QUANTITY"
  1959. },
  1960. yaxis: {
  1961. showticklabels: false
  1962. }
  1963. }
  1964. Plotly.newPlot("popularIngredientsCard", [trace], layout);
  1965. }else{
  1966. document.getElementById("popularCanvas").style.display = "none";
  1967. let notice = document.createElement("p");
  1968. notice.innerText = "N/A";
  1969. notice.classList = "notice";
  1970. document.getElementById("popularIngredientsCard").appendChild(notice);
  1971. }
  1972. },
  1973. //Need to change the updating of ingredients
  1974. //should update the ingredient directly, then send that. Maybe...
  1975. submitInventoryCheck: function(){
  1976. let lis = document.querySelectorAll("#inventoryCheckCard li");
  1977. let changes = [];
  1978. let fetchData = [];
  1979. for(let i = 0; i < lis.length; i++){
  1980. if(lis[i].children[1].children[1].value >= 0){
  1981. let merchIngredient = lis[i].ingredient;
  1982. if(lis[i].children[1].children[1].changed === true){
  1983. let value = 0;
  1984. if(merchIngredient.ingredient.specialUnit === "bottle"){
  1985. value = parseFloat(lis[i].children[1].children[1].value) * merchIngredient.ingredient.unitSize;
  1986. }else{
  1987. value = controller.convertToMain(merchIngredient.ingredient.unit, parseFloat(lis[i].children[1].children[1].value));
  1988. }
  1989. changes.push({
  1990. ingredient: merchIngredient.ingredient,
  1991. quantity: value
  1992. });
  1993. fetchData.push({
  1994. id: merchIngredient.ingredient.id,
  1995. quantity: value
  1996. });
  1997. lis[i].children[1].children[1].changed = false;
  1998. }
  1999. }else{
  2000. banner.createError("CANNOT HAVE NEGATIVE INGREDIENTS");
  2001. return;
  2002. }
  2003. }
  2004. if(fetchData.length > 0){
  2005. let loader = document.getElementById("loaderContainer");
  2006. loader.style.display = "flex";
  2007. fetch("/merchant/ingredients/update", {
  2008. method: "PUT",
  2009. headers: {
  2010. "Content-Type": "application/json;charset=utf-8"
  2011. },
  2012. body: JSON.stringify(fetchData)
  2013. })
  2014. .then(response => response.json())
  2015. .then((response)=>{
  2016. if(typeof(response) === "string"){
  2017. banner.createError(response);
  2018. }else{
  2019. for(let i = 0; i < changes.length; i++){
  2020. merchant.updateIngredient(changes[i].ingredient, changes[i].quantity);
  2021. }
  2022. banner.createNotification("INGREDIENTS UPDATED");
  2023. }
  2024. })
  2025. .catch((err)=>{})
  2026. .finally(()=>{
  2027. loader.style.display = "none";
  2028. });
  2029. }
  2030. }
  2031. }
  2032. module.exports = home;
  2033. },{}],11:[function(require,module,exports){
  2034. let ingredientDetails = {
  2035. dailyUse: 0,
  2036. display: function(ingredient){
  2037. document.getElementById("editIngBtn").onclick = ()=>{controller.openSidebar("editIngredient", ingredient)};
  2038. document.getElementById("removeIngBtn").onclick = ()=>{this.remove(ingredient)};
  2039. document.getElementById("ingredientDetailsCategory").innerText = ingredient.ingredient.category;
  2040. document.getElementById("ingredientDetailsName").innerText = ingredient.ingredient.name;
  2041. document.getElementById("ingredientStock").innerText = ingredient.getQuantityDisplay();
  2042. //Calculate and display average daily use
  2043. let quantities = [];
  2044. let now = new Date();
  2045. for(let i = 1; i < 31; i++){
  2046. let endDay = new Date(now.getFullYear(), now.getMonth(), now.getDate() - i)
  2047. let startDay = new Date(now.getFullYear(), now.getMonth(), now.getDate() - i - 1);
  2048. quantities.push(merchant.getSingleIngredientSold(ingredient, startDay, endDay));
  2049. }
  2050. let sum = 0;
  2051. for(let i = 0; i < quantities.length; i++){
  2052. sum += quantities[i];
  2053. }
  2054. let dailyUse = sum / quantities.length;
  2055. const dailyUseDiv = document.getElementById("dailyUse");
  2056. if(ingredient.ingredient.specialUnit === "bottle"){
  2057. dailyUseDiv.innerText = `${dailyUse.toFixed(2)} BOTTLES`;
  2058. }else{
  2059. dailyUseDiv.innerText = `${dailyUse.toFixed(2)} ${ingredient.ingredient.unit.toUpperCase()}`;
  2060. }
  2061. //Show recipes that this ingredient is a part of
  2062. let recipeList = document.getElementById("ingredientRecipeList");
  2063. let template = document.getElementById("ingredientRecipe").content.children[0];
  2064. let recipes = merchant.getRecipesForIngredient(ingredient.ingredient);
  2065. while(recipeList.children.length > 0){
  2066. recipeList.removeChild(recipeList.firstChild);
  2067. }
  2068. for(let i = 0; i < recipes.length; i++){
  2069. let recipeDiv = template.cloneNode(true);
  2070. recipeDiv.children[0].innerText = recipes[i].name;
  2071. recipeDiv.onclick = ()=>{
  2072. controller.openStrand("recipeBook");
  2073. controller.openSidebar("recipeDetails", recipes[i]);
  2074. }
  2075. recipeDiv.classList.add("choosable");
  2076. recipeList.appendChild(recipeDiv);
  2077. }
  2078. },
  2079. remove: function(ingredient){
  2080. for(let i = 0; i < merchant.recipes.length; i++){
  2081. for(let j = 0; j < merchant.recipes[i].ingredients.length; j++){
  2082. if(ingredient.ingredient === merchant.recipes[i].ingredients[j].ingredient){
  2083. banner.createError("MUST REMOVE INGREDIENT FROM ALL RECIPES BEFORE REMOVING FROM INVENTORY");
  2084. return;
  2085. }
  2086. }
  2087. }
  2088. let loader = document.getElementById("loaderContainer");
  2089. loader.style.display = "flex";
  2090. fetch(`/ingredients/remove/${ingredient.ingredient.id}`, {
  2091. method: "delete",
  2092. })
  2093. .then((response) => response.json())
  2094. .then((response)=>{
  2095. if(typeof(response) === "string"){
  2096. banner.createError(response);
  2097. }else{
  2098. merchant.removeIngredient(ingredient);
  2099. controller.openStrand("ingredients");
  2100. banner.createNotification("INGREDIENT REMOVED");
  2101. }
  2102. })
  2103. .catch((err)=>{})
  2104. .finally(()=>{
  2105. loader.style.display = "none";
  2106. });
  2107. }
  2108. }
  2109. module.exports = ingredientDetails;
  2110. },{}],12:[function(require,module,exports){
  2111. const { populate } = require("./orders");
  2112. let ingredients = {
  2113. isPopulated: false,
  2114. ingredients: [],
  2115. display: function(){
  2116. if(!this.isPopulated){
  2117. document.getElementById("ingredientSearch").oninput = ()=>{this.search()};
  2118. document.getElementById("ingredientClearButton").onclick = ()=>{this.clearSorting()};
  2119. document.getElementById("ingredientSelect").onchange = ()=>{this.sort()};
  2120. this.populateByProperty("category");
  2121. this.isPopulated = true;
  2122. }
  2123. },
  2124. populateByProperty: function(property){
  2125. let categories;
  2126. if(property === "category"){
  2127. categories = merchant.categorizeIngredients();
  2128. }else if(property === "unit"){
  2129. categories = merchant.unitizeIngredients();
  2130. }
  2131. let ingredientStrand = document.getElementById("categoryList");
  2132. let categoryTemplate = document.getElementById("categoryDiv").content.children[0];
  2133. let ingredientTemplate = document.getElementById("ingredient").content.children[0];
  2134. this.ingredients = [];
  2135. while(ingredientStrand.children.length > 0){
  2136. ingredientStrand.removeChild(ingredientStrand.firstChild);
  2137. }
  2138. for(let i = 0; i < categories.length; i++){
  2139. let categoryDiv = categoryTemplate.cloneNode(true);
  2140. categoryDiv.children[0].children[0].innerText = categories[i].name.toUpperCase();
  2141. categoryDiv.children[0].onclick = ()=>{
  2142. this.toggleCategory(categoryDiv.children[1], categoryDiv.children[0].children[1]);
  2143. };
  2144. categoryDiv.children[1].style.display = "none";
  2145. ingredientStrand.appendChild(categoryDiv);
  2146. for(let j = 0; j < categories[i].ingredients.length; j++){
  2147. let ingredient = categories[i].ingredients[j];
  2148. let ingredientDiv = ingredientTemplate.cloneNode(true);
  2149. ingredientDiv.children[0].innerText = ingredient.ingredient.name;
  2150. ingredientDiv.onclick = ()=>{
  2151. controller.openSidebar("ingredientDetails", ingredient);
  2152. ingredientDiv.classList.add("active");
  2153. };
  2154. ingredientDiv._name = ingredient.ingredient.name.toLowerCase();
  2155. ingredientDiv._unit = ingredient.ingredient.unit.toLowerCase();
  2156. if(ingredient.ingredient.specialUnit === "bottle"){
  2157. ingredientDiv.children[2].innerText = `${ingredient.quantity.toFixed(2)} BOTTLES`
  2158. }else{
  2159. ingredientDiv.children[2].innerText = `${ingredient.quantity.toFixed(2)} ${ingredient.ingredient.unit.toUpperCase()}`;
  2160. }
  2161. categoryDiv.children[1].appendChild(ingredientDiv);
  2162. this.ingredients.push(ingredientDiv);
  2163. }
  2164. }
  2165. },
  2166. displayIngredientsOnly: function(ingredients){
  2167. let ingredientDiv = document.getElementById("categoryList");
  2168. while(ingredientDiv.children.length > 0){
  2169. ingredientDiv.removeChild(ingredientDiv.firstChild);
  2170. }
  2171. for(let i = 0; i < ingredients.length; i++){
  2172. ingredientDiv.appendChild(ingredients[i]);
  2173. }
  2174. },
  2175. toggleCategory: function(div, button){
  2176. if(div.style.display === "none"){
  2177. 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>';
  2178. div.style.display = "flex";
  2179. }else if(div.style.display === "flex"){
  2180. 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>';
  2181. div.style.display = "none";
  2182. }
  2183. },
  2184. search: function(){
  2185. let input = document.getElementById("ingredientSearch").value.toLowerCase();
  2186. document.getElementById("ingredientSelect").selectedIndex = 0;
  2187. if(input === ""){
  2188. this.populateByProperty("category");
  2189. document.getElementById("ingredientClearButton").style.display = "none";
  2190. return;
  2191. }
  2192. let matchingIngredients = [];
  2193. for(let i = 0; i < this.ingredients.length; i++){
  2194. if(this.ingredients[i]._name.includes(input)){
  2195. matchingIngredients.push(this.ingredients[i]);
  2196. }
  2197. }
  2198. document.getElementById("ingredientClearButton").style.display = "inline";
  2199. this.displayIngredientsOnly(matchingIngredients);
  2200. },
  2201. sort: function(){
  2202. let sortType = document.getElementById("ingredientSelect").value;
  2203. if(sortType === ""){
  2204. return;
  2205. }
  2206. document.getElementById("ingredientSearch").value = "";
  2207. if(sortType === "category"){
  2208. this.populateByProperty("category");
  2209. return;
  2210. }
  2211. if(sortType === "unit"){
  2212. this.populateByProperty("unit");
  2213. return;
  2214. }
  2215. document.getElementById("ingredientClearButton").style.display = "inline";
  2216. let sortedIngredients = this.ingredients.slice().sort((a, b)=> (a[sortType] > b[sortType]) ? 1 : -1);
  2217. this.displayIngredientsOnly(sortedIngredients);
  2218. },
  2219. clearSorting: function(button){
  2220. document.getElementById("ingredientSearch").value = "";
  2221. document.getElementById("ingredientSelect").selectedIndex = 0;
  2222. document.getElementById("ingredientClearButton").style.display = "none";
  2223. this.populateByProperty("category");
  2224. }
  2225. }
  2226. module.exports = ingredients;
  2227. },{"./orders":19}],13:[function(require,module,exports){
  2228. const ingredients = require("./ingredients");
  2229. let newIngredient = {
  2230. display: function(Ingredient){
  2231. const selector = document.getElementById("unitSelector");
  2232. document.getElementById("newIngName").value = "";
  2233. document.getElementById("newIngCategory").value = "";
  2234. document.getElementById("newIngQuantity").value = 0;
  2235. document.getElementById("bottleSizeLabel").style.display = "none";
  2236. selector.value = "g";
  2237. selector.onchange = ()=>{this.unitChange()};
  2238. document.getElementById("submitNewIng").onclick = ()=>{this.submit(Ingredient)};
  2239. },
  2240. unitChange: function(){
  2241. const select = document.getElementById("unitSelector");
  2242. const bottleLabel = document.getElementById("bottleSizeLabel");
  2243. if(select.value === "bottle"){
  2244. bottleLabel.style.display = "block";
  2245. }else{
  2246. bottleLabel.style.display = "none";
  2247. }
  2248. },
  2249. submit: function(Ingredient){
  2250. let unitSelector = document.getElementById("unitSelector");
  2251. let options = document.querySelectorAll("#unitSelector option");
  2252. const quantityValue = parseFloat(document.getElementById("newIngQuantity").value);
  2253. let unit = unitSelector.value;
  2254. let newIngredient = {
  2255. ingredient: {
  2256. name: document.getElementById("newIngName").value,
  2257. category: document.getElementById("newIngCategory").value,
  2258. unitType: options[unitSelector.selectedIndex].getAttribute("type")
  2259. },
  2260. quantity: quantityValue,
  2261. defaultUnit: unit
  2262. }
  2263. //Change the ingredient if it is a special unit type (ie "bottle")
  2264. if(unit === "bottle"){
  2265. newIngredient.ingredient.unitType = "volume";
  2266. newIngredient.ingredient.unitSize = document.getElementById("bottleSize").value;
  2267. newIngredient.defaultUnit = document.getElementById("bottleUnits").value;
  2268. newIngredient.ingredient.specialUnit = unit;
  2269. newIngredient.quantity = quantityValue;
  2270. }
  2271. let loader = document.getElementById("loaderContainer");
  2272. loader.style.display = "flex";
  2273. fetch("/ingredients/create", {
  2274. method: "POST",
  2275. headers: {
  2276. "Content-Type": "application/json;charset=utf-8"
  2277. },
  2278. body: JSON.stringify(newIngredient)
  2279. })
  2280. .then((response) => response.json())
  2281. .then((response)=>{
  2282. if(typeof(response) === "string"){
  2283. banner.createError(response);
  2284. }else{
  2285. const ingredient = new Ingredient(
  2286. response.ingredient._id,
  2287. response.ingredient.name,
  2288. response.ingredient.category,
  2289. response.ingredient.unitType,
  2290. response.defaultUnit,
  2291. merchant,
  2292. response.ingredient.specialUnit,
  2293. response.ingredient.unitSize
  2294. )
  2295. merchant.addIngredient(ingredient, response.quantity);
  2296. ingredients.display();
  2297. controller.closeSidebar();
  2298. banner.createNotification("INGREDIENT CREATED");
  2299. }
  2300. })
  2301. .catch((err)=>{
  2302. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  2303. })
  2304. .finally(()=>{
  2305. loader.style.display = "none";
  2306. });
  2307. },
  2308. }
  2309. module.exports = newIngredient;
  2310. },{"./ingredients":12}],14:[function(require,module,exports){
  2311. let newOrder = {
  2312. display: function(Order){
  2313. document.getElementById("sidebarDiv").classList.add("sidebarWide");
  2314. document.getElementById("newOrderIngredientList").style.display = "flex";
  2315. let selectedList = document.getElementById("selectedIngredientList");
  2316. while(selectedList.children.length > 0){
  2317. selectedList.removeChild(selectedList.firstChild);
  2318. }
  2319. let ingredientList = document.getElementById("newOrderIngredients");
  2320. while(ingredientList.children.length > 0){
  2321. ingredientList.removeChild(ingredientList.firstChild);
  2322. }
  2323. for(let i = 0; i < merchant.ingredients.length; i++){
  2324. let ingredient = document.createElement("button");
  2325. ingredient.classList = "newOrderIngredient";
  2326. ingredient.innerText = merchant.ingredients[i].ingredient.name;
  2327. ingredient.onclick = ()=>{this.addIngredient(merchant.ingredients[i], ingredient)};
  2328. ingredientList.appendChild(ingredient);
  2329. }
  2330. document.getElementById("submitNewOrder").onclick = ()=>{this.submit(Order)};
  2331. },
  2332. addIngredient: function(ingredient, element){
  2333. element.style.display = "none";
  2334. let div = document.getElementById("selectedIngredient").content.children[0].cloneNode(true);
  2335. div.ingredient = ingredient;
  2336. div.children[0].children[1].onclick = ()=>{this.removeIngredient(div, element)};
  2337. //Display units depending on the whether it is a special unit
  2338. if(ingredient.ingredient.specialUnit === "bottle"){
  2339. div.children[0].children[0].innerText = `${ingredient.ingredient.name} (BOTTLES)`;
  2340. }else{
  2341. div.children[0].children[0].innerText = `${ingredient.ingredient.name} (${ingredient.ingredient.unit.toUpperCase()})`;
  2342. }
  2343. document.getElementById("selectedIngredientList").appendChild(div);
  2344. },
  2345. removeIngredient: function(selectedElement, element){
  2346. selectedElement.parentElement.removeChild(selectedElement);
  2347. element.style.display = "block";
  2348. },
  2349. submit: function(Order){
  2350. let date = document.getElementById("newOrderDate").value;
  2351. let taxes = document.getElementById("orderTaxes").value * 100;
  2352. let fees = document.getElementById("orderFees").value * 100;
  2353. let ingredients = document.getElementById("selectedIngredientList").children;
  2354. if(date === ""){
  2355. banner.createError("DATE IS REQUIRED FOR ORDERS");
  2356. return;
  2357. }
  2358. let data = {
  2359. name: document.getElementById("newOrderName").value,
  2360. date: date,
  2361. taxes: taxes,
  2362. fees: fees,
  2363. ingredients: []
  2364. }
  2365. for(let i = 0; i < ingredients.length; i++){
  2366. let quantity = ingredients[i].children[1].children[0].value;
  2367. let price = ingredients[i].children[1].children[1].value;
  2368. if(quantity === "" || price === ""){
  2369. banner.createError("MUST PROVIDE QUANTITY AND PRICE PER UNIT FOR ALL INGREDIENTS");
  2370. return;
  2371. }
  2372. if(quantity < 0 || price < 0){
  2373. banner.createError("QUANTITY AND PRICE MUST BE NON-NEGATIVE NUMBERS");
  2374. }
  2375. if(ingredients[i].ingredient.ingredient.specialUnit === "bottle"){
  2376. data.ingredients.push({
  2377. ingredient: ingredients[i].ingredient.ingredient.id,
  2378. quantity: quantity * ingredients[i].ingredient.ingredient.unitSize,
  2379. pricePerUnit: this.convertPrice(ingredients[i].ingredient.ingredient, price * 100)
  2380. });
  2381. }else{
  2382. data.ingredients.push({
  2383. ingredient: ingredients[i].ingredient.ingredient.id,
  2384. quantity: ingredients[i].ingredient.convertToBase(quantity),
  2385. pricePerUnit: this.convertPrice(ingredients[i].ingredient.ingredient, price * 100)
  2386. });
  2387. }
  2388. }
  2389. let loader = document.getElementById("loaderContainer");
  2390. loader.style.display = "flex";
  2391. fetch("/order/create", {
  2392. method: "post",
  2393. headers: {
  2394. "Content-Type": "application/json;charset=utf-8"
  2395. },
  2396. body: JSON.stringify(data)
  2397. })
  2398. .then((response)=>response.json())
  2399. .then((response)=>{
  2400. if(typeof(response) === "string"){
  2401. banner.createError(response);
  2402. }else{
  2403. let ingredients = [];
  2404. for(let i = 0; i < response.ingredients.length; i++){
  2405. for(let j = 0; j < merchant.ingredients.length; j++){
  2406. if(merchant.ingredients[j].ingredient.id === response.ingredients[i].ingredient){
  2407. ingredients.push({
  2408. ingredient: merchant.ingredients[j].ingredient,
  2409. quantity: response.ingredients[i].quantity,
  2410. pricePerUnit: response.ingredients[i].pricePerUnit
  2411. });
  2412. break;
  2413. }
  2414. }
  2415. }
  2416. let order = new Order(
  2417. response._id,
  2418. response.name,
  2419. response.date,
  2420. response.taxes,
  2421. response.fees,
  2422. ingredients,
  2423. merchant
  2424. );
  2425. merchant.addOrder(order, true);
  2426. controller.openStrand("orders");
  2427. banner.createNotification("NEW ORDER CREATED");
  2428. }
  2429. })
  2430. .catch((err)=>{
  2431. banner.createError("SOMETHING WENT WRONG, PLEASE REFRESH THE PAGE");
  2432. })
  2433. .finally(()=>{
  2434. loader.style.display = "none";
  2435. });
  2436. },
  2437. convertPrice: function(ingredient, price){
  2438. if(ingredient.specialUnit === "bottle"){
  2439. return price / ingredient.unitSize;
  2440. }
  2441. switch(ingredient.unit){
  2442. case "g": return price;
  2443. case "kg": return price / 1000;
  2444. case "oz": return price / 28.3495;
  2445. case "lb": return price / 453.5924;
  2446. case "ml": return price * 1000;
  2447. case "l": return price;
  2448. case "tsp": return price * 202.8842;
  2449. case "tbsp": return price * 67.6278;
  2450. case "ozfl": return price * 33.8141;
  2451. case "cup": return price * 4.1667;
  2452. case "pt": return price * 2.1134;
  2453. case "qt": return price * 1.0567;
  2454. case "gal": return price / 3.7854;
  2455. case "mm": return price * 1000;
  2456. case "cm": return price * 100;
  2457. case "m": return price;
  2458. case "in": return price * 39.3701;
  2459. case "ft": return price * 3.2808;
  2460. }
  2461. }
  2462. }
  2463. module.exports = newOrder;
  2464. },{}],15:[function(require,module,exports){
  2465. let newRecipe = {
  2466. display: function(Recipe){
  2467. document.getElementById("newRecipeName").value = "";
  2468. document.getElementById("newRecipePrice").value = "";
  2469. document.getElementById("ingredientCount").value = 1;
  2470. let categories = merchant.categorizeIngredients();
  2471. let ingredientsSelect = document.getElementById("recipeInputIngredients");
  2472. while(ingredientsSelect.children.length > 0){
  2473. ingredientsSelect.removeChild(ingredientsSelect.firstChild);
  2474. }
  2475. this.changeIngredientCount(categories);
  2476. document.getElementById("ingredientCount").onchange = ()=>{this.changeIngredientCount(categories)};
  2477. document.getElementById("submitNewRecipe").onclick = ()=>{this.submit(Recipe)};
  2478. },
  2479. //Updates the number of ingredient inputs displayed for new recipes
  2480. changeIngredientCount: function(categories){
  2481. let newCount = document.getElementById("ingredientCount").value;
  2482. let ingredientsDiv = document.getElementById("recipeInputIngredients");
  2483. let template = document.getElementById("recipeInputIngredient").content.children[0];
  2484. let oldCount = ingredientsDiv.children.length;
  2485. if(newCount > oldCount){
  2486. let newDivs = newCount - oldCount;
  2487. for(let i = 0; i < newDivs; i++){
  2488. let newNode = template.cloneNode(true);
  2489. newNode.children[0].innnerText = `INGREDIENT ${i + oldCount}`;
  2490. newNode.children[2].children[0].value = 0;
  2491. for(let j = 0; j < categories.length; j++){
  2492. let optgroup = document.createElement("optgroup");
  2493. optgroup.label = categories[j].name;
  2494. for(let k = 0; k < categories[j].ingredients.length; k++){
  2495. let option = document.createElement("option");
  2496. option.innerText = categories[j].ingredients[k].ingredient.getNameAndUnit();
  2497. option.ingredient = categories[j].ingredients[k];
  2498. optgroup.appendChild(option);
  2499. }
  2500. newNode.children[1].children[0].appendChild(optgroup);
  2501. }
  2502. ingredientsDiv.appendChild(newNode);
  2503. }
  2504. for(let i = 0; i < newCount; i++){
  2505. ingredientsDiv.children[i].children[0].innerText = `INGREDIENT ${i + 1}`;
  2506. }
  2507. }else if(newCount < oldCount){
  2508. let newDivs = oldCount - newCount;
  2509. for(let i = 0; i < newDivs; i++){
  2510. ingredientsDiv.removeChild(ingredientsDiv.children[ingredientsDiv.children.length-1]);
  2511. }
  2512. }
  2513. },
  2514. submit: function(Recipe){
  2515. let newRecipe = {
  2516. name: document.getElementById("newRecipeName").value,
  2517. price: document.getElementById("newRecipePrice").value,
  2518. ingredients: []
  2519. }
  2520. let inputs = document.getElementById("recipeInputIngredients").children;
  2521. for(let i = 0; i < inputs.length; i++){
  2522. let sel = inputs[i].children[1].children[0];
  2523. let ingredient = sel.options[sel.selectedIndex].ingredient;
  2524. newRecipe.ingredients.push({
  2525. ingredient: ingredient.ingredient.id,
  2526. quantity: ingredient.convertToBase(inputs[i].children[2].children[0].value)
  2527. });
  2528. }
  2529. let loader = document.getElementById("loaderContainer");
  2530. loader.style.display = "flex";
  2531. fetch("/recipe/create", {
  2532. method: "POST",
  2533. headers: {
  2534. "Content-Type": "application/json;charset=utf-8"
  2535. },
  2536. body: JSON.stringify(newRecipe)
  2537. })
  2538. .then((response) => response.json())
  2539. .then((response)=>{
  2540. if(typeof(response) === "string"){
  2541. banner.createError(response);
  2542. }else{
  2543. let ingredients = [];
  2544. for(let i = 0; i < response.ingredients.length; i++){
  2545. for(let j = 0; j < merchant.ingredients.length; j++){
  2546. if(merchant.ingredients[j].ingredient.id === response.ingredients[i].ingredient){
  2547. ingredients.push({
  2548. ingredient: merchant.ingredients[j].ingredient,
  2549. quantity: response.ingredients[i].quantity
  2550. });
  2551. break;
  2552. }
  2553. }
  2554. }
  2555. merchant.addRecipe(new Recipe(
  2556. response._id,
  2557. response.name,
  2558. response.price,
  2559. ingredients,
  2560. merchant
  2561. ));
  2562. banner.createNotification("RECIPE CREATED");
  2563. controller.openStrand("recipeBook");
  2564. }
  2565. })
  2566. .catch((err)=>{
  2567. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  2568. })
  2569. .finally(()=>{
  2570. loader.style.display = "none";
  2571. });
  2572. },
  2573. }
  2574. module.exports = newRecipe;
  2575. },{}],16:[function(require,module,exports){
  2576. let newTransaction = {
  2577. display: function(Transaction){
  2578. let recipeList = document.getElementById("newTransactionRecipes");
  2579. let template = document.getElementById("createTransaction").content.children[0];
  2580. while(recipeList.children.length > 0){
  2581. recipeList.removeChild(recipeList.firstChild);
  2582. }
  2583. for(let i = 0; i < merchant.recipes.length; i++){
  2584. let recipeDiv = template.cloneNode(true);
  2585. recipeDiv.recipe = merchant.recipes[i];
  2586. recipeList.appendChild(recipeDiv);
  2587. recipeDiv.children[0].innerText = merchant.recipes[i].name;
  2588. }
  2589. document.getElementById("submitNewTransaction").onclick = ()=>{this.submit(Transaction)};
  2590. },
  2591. submit: function(Transaction){
  2592. let recipeDivs = document.getElementById("newTransactionRecipes");
  2593. let date = document.getElementById("newTransactionDate").valueAsDate;
  2594. if(date > new Date()){
  2595. banner.createError("CANNOT HAVE A DATE IN THE FUTURE");
  2596. return;
  2597. }
  2598. let data = {
  2599. date: date,
  2600. recipes: [],
  2601. ingredientUpdates: {}
  2602. };
  2603. for(let i = 0; i < recipeDivs.children.length; i++){
  2604. let quantity = recipeDivs.children[i].children[1].value;
  2605. const recipe = recipeDivs.children[i].recipe;
  2606. if(quantity !== "" && quantity > 0){
  2607. data.recipes.push({
  2608. recipe: recipe.id,
  2609. quantity: quantity
  2610. });
  2611. for(let j = 0; j < recipe.ingredients.length; j++){
  2612. let ingredient = recipe.ingredients[j];
  2613. if(data.ingredientUpdates[ingredient.ingredient.id]){
  2614. data.ingredientUpdates[ingredient.ingredient.id] += ingredient.convertToBase(ingredient.quantity) * quantity;
  2615. }else{
  2616. data.ingredientUpdates[ingredient.ingredient.id] = ingredient.convertToBase(ingredient.quantity) * quantity;
  2617. }
  2618. }
  2619. }else if(quantity < 0){
  2620. banner.createError("CANNOT HAVE NEGATIVE VALUES");
  2621. return;
  2622. }
  2623. }
  2624. if(data.recipes.length > 0){
  2625. let loader = document.getElementById("loaderContainer");
  2626. loader.style.display = "flex";
  2627. fetch("/transaction/create", {
  2628. method: "post",
  2629. headers: {
  2630. "Content-Type": "application/json;charset=utf-8"
  2631. },
  2632. body: JSON.stringify(data)
  2633. })
  2634. .then(response => response.json())
  2635. .then((response)=>{
  2636. if(typeof(response) === "string"){
  2637. banner.createError(response);
  2638. }else{
  2639. const transaction = new Transaction(
  2640. response._id,
  2641. response.date,
  2642. response.recipes,
  2643. merchant
  2644. );
  2645. merchant.addTransaction(transaction);
  2646. controller.openStrand("transactions");
  2647. banner.createNotification("TRANSACTION CREATED");
  2648. }
  2649. })
  2650. .catch((err)=>{
  2651. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  2652. })
  2653. .finally(()=>{
  2654. loader.style.display = "none";
  2655. });
  2656. }
  2657. }
  2658. }
  2659. module.exports = newTransaction;
  2660. },{}],17:[function(require,module,exports){
  2661. let orderDetails = {
  2662. display: function(order){
  2663. document.getElementById("removeOrderBtn").onclick = ()=>{this.remove(order)};
  2664. document.getElementById("orderDetailName").innerText = order.name;
  2665. document.getElementById("orderDetailDate").innerText = order.date.toLocaleDateString("en-US");
  2666. document.getElementById("orderDetailTax").innerText = `$${order.taxes.toFixed(2)}`;
  2667. document.getElementById("orderDetailFee").innerText = `$${order.fees.toFixed(2)}`;
  2668. let ingredientList = document.getElementById("orderIngredients");
  2669. while(ingredientList.children.length > 0){
  2670. ingredientList.removeChild(ingredientList.firstChild);
  2671. }
  2672. let template = document.getElementById("orderIngredient").content.children[0];
  2673. for(let i = 0; i < order.ingredients.length; i++){
  2674. let ingredientDiv = template.cloneNode(true);
  2675. const ingredient = order.ingredients[i].ingredient;
  2676. ingredientDiv.children[0].innerText = order.ingredients[i].ingredient.name;
  2677. ingredientDiv.children[2].innerText = `$${order.ingredients[i].cost().toFixed(2)}`;
  2678. const ingredientDisplay = ingredientDiv.children[1];
  2679. if(ingredient.specialUnit === "bottle"){
  2680. ingredientDisplay.innerText = `${order.ingredients[i].quantity.toFixed(2)} bottles x $${order.ingredients.pricePerUnit.toFixed(2)}`;
  2681. }else{
  2682. ingredientDisplay.innerText = `${order.ingredients[i].quantity.toFixed(2)} ${ingredient.unit.toUpperCase()} X $${order.ingredients[i].pricePerUnit.toFixed(2)}`;
  2683. }
  2684. ingredientList.appendChild(ingredientDiv);
  2685. }
  2686. document.getElementById("orderDetailTotal").innerText = `$${order.getIngredientCost().toFixed(2)}`;
  2687. document.querySelector("#orderTotalPrice p").innerText = `$${order.getTotalCost().toFixed(2)}`;
  2688. },
  2689. remove: function(order){
  2690. let loader = document.getElementById("loaderContainer");
  2691. loader.style.display = "flex";
  2692. fetch(`/order/${order.id}`, {
  2693. method: "DELETE",
  2694. headers: {
  2695. "Content-Type": "application/json;charset=utf-8"
  2696. }
  2697. })
  2698. .then((response) => response.json())
  2699. .then((response)=>{
  2700. if(typeof(response) === "string"){
  2701. banner.createError(response);
  2702. }else{
  2703. merchant.removeOrder(order);
  2704. controller.openStrand("orders");
  2705. banner.createNotification("ORDER REMOVED");
  2706. }
  2707. })
  2708. .catch((err)=>{
  2709. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  2710. })
  2711. .finally(()=>{
  2712. loader.style.display = "none";
  2713. });
  2714. }
  2715. }
  2716. module.exports = orderDetails;
  2717. },{}],18:[function(require,module,exports){
  2718. let orderFilter = {
  2719. display: function(Order){
  2720. let now = new Date();
  2721. let past = new Date(now.getFullYear(), now.getMonth(), now.getDate() - 30);
  2722. let ingredientList = document.getElementById("orderFilterIngredients");
  2723. document.getElementById("orderFilterDateFrom").valueAsDate = past;
  2724. document.getElementById("orderFilterDateTo").valueAsDate = now;
  2725. while(ingredientList.children.length > 0){
  2726. ingredientList.removeChild(ingredientList.firstChild);
  2727. }
  2728. for(let i = 0; i < merchant.ingredients.length; i++){
  2729. let element = document.createElement("div");
  2730. element.classList.add("choosable");
  2731. element.ingredient = merchant.ingredients[i].ingredient.id;
  2732. element.onclick = ()=>{this.toggleActive(element)};
  2733. ingredientList.appendChild(element);
  2734. let text = document.createElement("p");
  2735. text.innerText = merchant.ingredients[i].ingredient.name;
  2736. element.appendChild(text);
  2737. }
  2738. document.getElementById("orderFilterSubmit").onclick = ()=>{this.submit(Order)};
  2739. },
  2740. toggleActive: function(element){
  2741. if(element.classList.contains("active")){
  2742. element.classList.remove("active");
  2743. }else{
  2744. element.classList.add("active");
  2745. }
  2746. },
  2747. submit: function(Order){
  2748. let data = {
  2749. startDate: document.getElementById("orderFilterDateFrom").valueAsDate,
  2750. endDate: document.getElementById("orderFilterDateTo").valueAsDate,
  2751. ingredients: []
  2752. }
  2753. if(data.startDate >= data.endDate){
  2754. banner.createError("START DATE CACNNOT BE AFTER END DATE");
  2755. return;
  2756. }
  2757. let ingredients = document.getElementById("orderFilterIngredients").children;
  2758. for(let i = 0; i < ingredients.length; i++){
  2759. if(ingredients[i].classList.contains("active")){
  2760. data.ingredients.push(ingredients[i].ingredient);
  2761. }
  2762. }
  2763. if(data.ingredients.length === 0){
  2764. for(let i = 0; i < merchant.ingredients.length; i++){
  2765. data.ingredients.push(merchant.ingredients[i].ingredient.id);
  2766. }
  2767. }
  2768. let loader = document.getElementById("loaderContainer");
  2769. loader.style.display = "flex";
  2770. fetch("/order", {
  2771. method: "post",
  2772. headers: {
  2773. "Content-Type": "application/json;charset=utf-8"
  2774. },
  2775. body: JSON.stringify(data)
  2776. })
  2777. .then(response => response.json())
  2778. .then((response)=>{
  2779. let orders = [];
  2780. if(typeof(response) === "string"){
  2781. banner.createError(response);
  2782. }else if(response.length === 0){
  2783. banner.createError("NO ORDERS MATCH YOUR SEARCH");
  2784. }else{
  2785. let ingredients = [];
  2786. for(let i = 0; i < response.length; i++){
  2787. for(let j = 0; j < response[i].ingredients.length; j++){
  2788. for(let k = 0; k < merchant.ingredients.length; k++){
  2789. if(merchant.ingredients[k].ingredient.id === response[i].ingredients[j].ingredient){
  2790. ingredients.push({
  2791. ingredient: merchant.ingredients[k].ingredient,
  2792. quantity: response[i].ingredients[j].quantity,
  2793. pricePerUnit: response[i].ingredients[j].pricePerUnit
  2794. });
  2795. break;
  2796. }
  2797. }
  2798. }
  2799. orders.push(new Order(
  2800. response[i]._id,
  2801. response[i].name,
  2802. response[i].date,
  2803. response[i].taxes,
  2804. response[i].fees,
  2805. ingredients,
  2806. merchant
  2807. ));
  2808. }
  2809. }
  2810. controller.openStrand("orders", orders);
  2811. })
  2812. .catch((err)=>{
  2813. banner.createError("UNABLE TO DISPLAY THE ORDERS");
  2814. })
  2815. .finally(()=>{
  2816. loader.style.display = "none";
  2817. });
  2818. }
  2819. }
  2820. module.exports = orderFilter;
  2821. },{}],19:[function(require,module,exports){
  2822. let orders = {
  2823. orders: [],
  2824. display: async function(Order, newOrders){
  2825. if(newOrders){
  2826. this.orders = newOrders;
  2827. }
  2828. if(this.orders.length === 0){
  2829. this.orders = await this.getOrders(Order);
  2830. }
  2831. document.getElementById("orderFilterBtn").onclick = ()=>{controller.openSidebar("orderFilter")};
  2832. document.getElementById("newOrderBtn").onclick = ()=>{controller.openSidebar("newOrder")};
  2833. let orderList = document.getElementById("orderList");
  2834. let template = document.getElementById("order").content.children[0];
  2835. while(orderList.children.length > 0){
  2836. orderList.removeChild(orderList.firstChild);
  2837. }
  2838. for(let i = 0; i < this.orders.length; i++){
  2839. let orderDiv = template.cloneNode(true);
  2840. orderDiv.order = this.orders[i];
  2841. orderDiv.children[0].innerText = this.orders[i].name;
  2842. orderDiv.children[1].innerText = `${this.orders[i].ingredients.length} ingredients`;
  2843. orderDiv.children[2].innerText = this.orders[i].date.toLocaleDateString("en-US");
  2844. orderDiv.children[3].innerText = `$${this.orders[i].getTotalCost().toFixed(2)}`;
  2845. orderDiv.onclick = ()=>{
  2846. controller.openSidebar("orderDetails", this.orders[i]);
  2847. orderDiv.classList.add("active");
  2848. }
  2849. orderList.appendChild(orderDiv);
  2850. }
  2851. },
  2852. getOrders: function(Order){
  2853. let loader = document.getElementById("loaderContainer");
  2854. loader.style.display = "flex";
  2855. return fetch("/order", {
  2856. method: "get",
  2857. headers: {
  2858. "Content-Type": "application/json;charset=utf-8"
  2859. }
  2860. })
  2861. .then(response => response.json())
  2862. .then((response)=>{
  2863. if(typeof(response) === "string"){
  2864. banner.createError(response);
  2865. }else{
  2866. let orders = [];
  2867. for(let i = 0; i < response.length; i++){
  2868. let ingredients = [];
  2869. for(let j = 0; j < response[i].ingredients.length; j++){
  2870. for(let k = 0; k < merchant.ingredients.length; k++){
  2871. if(merchant.ingredients[k].ingredient.id === response[i].ingredients[j].ingredient){
  2872. ingredients.push({
  2873. ingredient: merchant.ingredients[k].ingredient,
  2874. quantity: response[i].ingredients[j].quantity,
  2875. pricePerUnit: response[i].ingredients[j].pricePerUnit
  2876. });
  2877. break;
  2878. }
  2879. }
  2880. }
  2881. orders.push(new Order(
  2882. response[i]._id,
  2883. response[i].name,
  2884. response[i].date,
  2885. response[i].taxes,
  2886. response[i].fees,
  2887. ingredients,
  2888. merchant
  2889. ));
  2890. }
  2891. return orders;
  2892. }
  2893. })
  2894. .catch((err)=>{
  2895. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  2896. })
  2897. .finally(()=>{
  2898. loader.style.display = "none";
  2899. });
  2900. }
  2901. }
  2902. module.exports = orders;
  2903. },{}],20:[function(require,module,exports){
  2904. let recipeBook = {
  2905. isPopulated: false,
  2906. recipeDivList: [],
  2907. display: function(Recipe){
  2908. if(!this.isPopulated){
  2909. this.populateRecipes();
  2910. if(merchant.pos !== "none"){
  2911. document.getElementById("posUpdateRecipe").onclick = ()=>{this.posUpdate(Recipe)};
  2912. }
  2913. document.getElementById("recipeSearch").oninput = ()=>{this.search()};
  2914. document.getElementById("recipeClearButton").onclick = ()=>{this.clearSorting()};
  2915. this.populateRecipes();
  2916. this.isPopulated = true;
  2917. }
  2918. },
  2919. populateRecipes: function(){
  2920. let recipeList = document.getElementById("recipeList");
  2921. let template = document.getElementById("recipe").content.children[0];
  2922. this.recipeDivList = [];
  2923. while(recipeList.children.length > 0){
  2924. recipeList.removeChild(recipeList.firstChild);
  2925. }
  2926. for(let i = 0; i < merchant.recipes.length; i++){
  2927. let recipeDiv = template.cloneNode(true);
  2928. recipeDiv.onclick = ()=>{
  2929. controller.openSidebar("recipeDetails", merchant.recipes[i]);
  2930. recipeDiv.classList.add("active");
  2931. }
  2932. recipeDiv._name = merchant.recipes[i].name;
  2933. recipeList.appendChild(recipeDiv);
  2934. recipeDiv.children[0].innerText = merchant.recipes[i].name;
  2935. recipeDiv.children[1].innerText = `$${merchant.recipes[i].price.toFixed(2)}`;
  2936. this.recipeDivList.push(recipeDiv);
  2937. }
  2938. },
  2939. search: function(){
  2940. let input = document.getElementById("recipeSearch").value.toLowerCase();
  2941. let recipeList = document.getElementById("recipeList");
  2942. let clearButton = document.getElementById("recipeClearButton");
  2943. let matchingRecipes = [];
  2944. for(let i = 0; i < this.recipeDivList.length; i++){
  2945. if(this.recipeDivList[i]._name.toLowerCase().includes(input)){
  2946. matchingRecipes.push(this.recipeDivList[i]);
  2947. }
  2948. }
  2949. while(recipeList.children.length > 0){
  2950. recipeList.removeChild(recipeList.firstChild);
  2951. }
  2952. for(let i = 0; i < matchingRecipes.length; i++){
  2953. recipeList.appendChild(matchingRecipes[i]);
  2954. }
  2955. if(input === ""){
  2956. clearButton.style.display = "none";
  2957. }else{
  2958. clearButton.style.display = "inline";
  2959. }
  2960. },
  2961. clearSorting: function(){
  2962. document.getElementById("recipeSearch").value = "";
  2963. this.search();
  2964. },
  2965. posUpdate: function(Recipe){
  2966. let loader = document.getElementById("loaderContainer");
  2967. loader.style.display = "flex";
  2968. let url = `/recipe/update/${merchant.pos}`;
  2969. fetch(url, {
  2970. method: "GET",
  2971. headers: {
  2972. "Content-Type": "application/json;charset=utf-8"
  2973. },
  2974. })
  2975. .then(response => response.json())
  2976. .then((response)=>{
  2977. if(typeof(response) === "string"){
  2978. banner.createError(response);
  2979. }else{
  2980. for(let i = 0; i < response.new.length; i++){
  2981. const recipe = new Recipe(
  2982. response.new[i]._id,
  2983. response.new[i].name,
  2984. response.new[i].price,
  2985. merchant,
  2986. []
  2987. );
  2988. merchant.addRecipe(recipe);
  2989. }
  2990. for(let i = 0; i < response.removed.length; i++){
  2991. for(let j = 0; j < merchant.recipes.length; j++){
  2992. if(merchant.recipes[j].id === response.removed[i]._id){
  2993. merchant.removeRecipe(merchant.recipes[j]);
  2994. break;
  2995. }
  2996. }
  2997. }
  2998. this.display();
  2999. }
  3000. })
  3001. .catch((err)=>{
  3002. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  3003. })
  3004. .finally(()=>{
  3005. loader.style.display = "none";
  3006. });
  3007. }
  3008. }
  3009. module.exports = recipeBook;
  3010. },{}],21:[function(require,module,exports){
  3011. let recipeDetails = {
  3012. display: function(recipe){
  3013. document.getElementById("editRecipeBtn").onclick = ()=>{controller.openSidebar("editRecipe", recipe)};
  3014. document.getElementById("recipeName").innerText = recipe.name;
  3015. if(merchant.pos === "none"){
  3016. document.getElementById("removeRecipeBtn").onclick = ()=>{this.remove(recipe)};
  3017. }
  3018. //ingredient list
  3019. let ingredientsDiv = document.getElementById("recipeIngredientList");
  3020. while(ingredientsDiv.children.length > 0){
  3021. ingredientsDiv.removeChild(ingredientsDiv.firstChild);
  3022. }
  3023. let template = document.getElementById("recipeIngredient").content.children[0];
  3024. for(let i = 0; i < recipe.ingredients.length; i++){
  3025. let recipeDiv = template.cloneNode(true);
  3026. recipeDiv.children[0].innerText = recipe.ingredients[i].ingredient.name;
  3027. recipeDiv.children[1].innerText = `${recipe.ingredients[i].getQuantityDisplay()}`;
  3028. ingredientsDiv.appendChild(recipeDiv);
  3029. }
  3030. document.getElementById("recipePrice").children[1].innerText = `$${recipe.price.toFixed(2)}`;
  3031. },
  3032. remove: function(recipe){
  3033. let loader = document.getElementById("loaderContainer");
  3034. loader.style.display = "flex";
  3035. fetch(`/recipe/remove/${recipe.id}`, {
  3036. method: "delete"
  3037. })
  3038. .then((response) => response.json())
  3039. .then((response)=>{
  3040. if(typeof(response) === "string"){
  3041. banner.createError(response);
  3042. }else{
  3043. merchant.removeRecipe(recipe);
  3044. banner.createNotification("RECIPE REMOVED");
  3045. controller.openStrand("recipeBook");
  3046. }
  3047. })
  3048. .catch((err)=>{
  3049. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  3050. })
  3051. .finally(()=>{
  3052. loader.style.display = "none";
  3053. });
  3054. },
  3055. displayAddIngredient: function(){
  3056. let template = document.getElementById("addRecIngredient").content.children[0].cloneNode(true);
  3057. template.name = "new";
  3058. document.getElementById("recipeIngredientList").appendChild(template);
  3059. let categories = merchant.categorizeIngredients();
  3060. for(let i = 0; i < categories.length; i++){
  3061. let optGroup = document.createElement("optgroup");
  3062. optGroup.label = categories[i].name;
  3063. template.children[0].appendChild(optGroup);
  3064. for(let j = 0; j < categories[i].ingredients.length; j++){
  3065. let option = document.createElement("option");
  3066. option.innerText = `${categories[i].ingredients[j].ingredient.name} (${categories[i].ingredients[j].ingredient.unit})`;
  3067. option.ingredient = categories[i].ingredients[j].ingredient;
  3068. optGroup.appendChild(option);
  3069. }
  3070. }
  3071. }
  3072. }
  3073. module.exports = recipeDetails;
  3074. },{}],22:[function(require,module,exports){
  3075. let transactionDetails = {
  3076. transaction: {},
  3077. display: function(transaction){
  3078. this.transaction = transaction;
  3079. let recipeList = document.getElementById("transactionRecipes");
  3080. let template = document.getElementById("transactionRecipe").content.children[0];
  3081. let totalRecipes = 0;
  3082. let totalPrice = 0;
  3083. while(recipeList.children.length > 0){
  3084. recipeList.removeChild(recipeList.firstChild);
  3085. }
  3086. for(let i = 0; i < transaction.recipes.length; i++){
  3087. let recipe = template.cloneNode(true);
  3088. let price = transaction.recipes[i].quantity * transaction.recipes[i].recipe.price;
  3089. recipe.children[0].innerText = transaction.recipes[i].recipe.name;
  3090. recipe.children[1].innerText = `${transaction.recipes[i].quantity} x $${transaction.recipes[i].recipe.price.toFixed(2)}`;
  3091. recipe.children[2].innerText = `$${price.toFixed(2)}`;
  3092. recipe.onclick = ()=>{
  3093. controller.openStrand("recipeBook");
  3094. controller.openSidebar("recipeDetails", transaction.recipes[i].recipe);
  3095. }
  3096. recipeList.appendChild(recipe);
  3097. totalRecipes += transaction.recipes[i].quantity;
  3098. totalPrice += price;
  3099. }
  3100. let months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
  3101. let days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
  3102. let dateString = `${days[transaction.date.getDay()]}, ${months[transaction.date.getMonth()]} ${transaction.date.getDate()}, ${transaction.date.getFullYear()}`;
  3103. document.getElementById("transactionDate").innerText = dateString;
  3104. document.getElementById("transactionTime").innerText = transaction.date.toLocaleTimeString();
  3105. document.getElementById("totalRecipes").innerText = `${totalRecipes} recipes`;
  3106. document.getElementById("totalPrice").innerText = `$${totalPrice.toFixed(2)}`;
  3107. if(merchant.pos === "none"){
  3108. document.getElementById("removeTransBtn").onclick = ()=>{this.remove()};
  3109. }
  3110. },
  3111. remove: function(){
  3112. let loader = document.getElementById("loaderContainer");
  3113. loader.style.display = "flex";
  3114. fetch(`/transaction/${this.transaction.id}`, {
  3115. method: "delete",
  3116. headers: {
  3117. "Content-Type": "application/json;charset=utf-8"
  3118. },
  3119. })
  3120. .then(response => response.json())
  3121. .then((response)=>{
  3122. if(typeof(response) === "string"){
  3123. banner.createError(response);
  3124. }else{
  3125. merchant.removeTransaction(this.transaction);
  3126. controller.openStrand("transactions");
  3127. banner.createNotification("TRANSACTION REMOVED");
  3128. }
  3129. })
  3130. .catch((err)=>{
  3131. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  3132. })
  3133. .finally(()=>{
  3134. loader.style.display = "none";
  3135. });
  3136. },
  3137. }
  3138. module.exports = transactionDetails;
  3139. },{}],23:[function(require,module,exports){
  3140. let transactions = {
  3141. isPopulated: false,
  3142. display: function(Transaction){
  3143. if(!this.isPopulated){
  3144. let transactionsList = document.getElementById("transactionsList");
  3145. let dateDropdown = document.getElementById("dateDropdown");
  3146. let recipeDropdown = document.getElementById("recipeDropDown");
  3147. let template = document.getElementById("transaction").content.children[0];
  3148. let now = new Date();
  3149. let monthAgo = new Date(now.getFullYear(), now.getMonth() - 1, now.getDate());
  3150. document.getElementById("transFilDate1").valueAsDate = monthAgo;
  3151. document.getElementById("transFilDate2").valueAsDate = now;
  3152. dateDropdown.style.display = "none";
  3153. recipeDropdown.style.display = "none";
  3154. document.getElementById("dateFilterBtn").onclick = ()=>{this.toggleDropdown(dateDropdown)};
  3155. document.getElementById("recipeFilterBtn").onclick = ()=>{this.toggleDropdown(recipeDropdown)};
  3156. while(recipeDropdown.children.length > 0){
  3157. recipeDropdown.removeChild(recipeDropdown.firstChild);
  3158. }
  3159. for(let i = 0; i < merchant.recipes.length; i++){
  3160. let checkbox = document.createElement("input");
  3161. checkbox.type = "checkbox";
  3162. checkbox.recipe = merchant.recipes[i];
  3163. recipeDropdown.appendChild(checkbox);
  3164. let label = document.createElement("label");
  3165. label.innerText = merchant.recipes[i].name;
  3166. label.for = checkbox;
  3167. recipeDropdown.appendChild(label);
  3168. let brk = document.createElement("br");
  3169. recipeDropdown.appendChild(brk);
  3170. }
  3171. while(transactionsList.children.length > 0){
  3172. transactionsList.removeChild(transactionsList.firstChild);
  3173. }
  3174. let i = 0
  3175. const transactions = merchant.getTransactions();
  3176. while(i < transactions.length && i < 100){
  3177. let transactionDiv = template.cloneNode(true);
  3178. let transaction = transactions[i];
  3179. transactionDiv.onclick = ()=>{
  3180. controller.openSidebar("transactionDetails", transaction);
  3181. transactionDiv.classList.add("active");
  3182. }
  3183. transactionsList.appendChild(transactionDiv);
  3184. let totalRecipes = 0;
  3185. let totalPrice = 0;
  3186. for(let j = 0; j < transactions[i].recipes.length; j++){
  3187. totalRecipes += transactions[i].recipes[j].quantity;
  3188. totalPrice += transactions[i].recipes[j].recipe.price * transactions[i].recipes[j].quantity;
  3189. }
  3190. transactionDiv.children[0].innerText = `${transactions[i].date.toLocaleDateString()} ${transactions[i].date.toLocaleTimeString()}`;
  3191. transactionDiv.children[1].innerText = `${totalRecipes} recipes sold`;
  3192. transactionDiv.children[2].innerText = `$${totalPrice.toFixed(2)}`;
  3193. i++;
  3194. }
  3195. document.getElementById("transFormSubmit").onsubmit = ()=>{this.submitFilter(Transaction)};
  3196. this.isPopulated = true;
  3197. }
  3198. },
  3199. submitFilter: function(Transaction){
  3200. event.preventDefault();
  3201. let data = {
  3202. startDate: document.getElementById("transFilDate1").valueAsDate,
  3203. endDate: document.getElementById("transFilDate2").valueAsDate,
  3204. recipes: []
  3205. }
  3206. if(data.startDate >= data.endDate){
  3207. banner.createError("START DATE CANNOT BE AFTER END DATE");
  3208. return;
  3209. }
  3210. let recipeChoices = document.getElementById("recipeDropDown");
  3211. for(let i = 0; i < recipeChoices.children.length; i += 3){
  3212. if(recipeChoices.children[i].checked){
  3213. data.recipes.push(recipeChoices.children[i].recipe.id);
  3214. }
  3215. }
  3216. if(data.recipes.length === 0){
  3217. for(let i = 0; i < merchant.recipes.length; i++){
  3218. data.recipes.push(merchant.recipes[i].id);
  3219. }
  3220. }
  3221. let loader = document.getElementById("loaderContainer");
  3222. loader.style.display = "flex";
  3223. fetch("/transaction", {
  3224. method: "POST",
  3225. headers: {
  3226. "Content-Type": "application/json;charset=utf-8"
  3227. },
  3228. body: JSON.stringify(data)
  3229. })
  3230. .then((response) => response.json())
  3231. .then((response)=>{
  3232. if(typeof(response) === "string"){
  3233. banner.createError(response);
  3234. }else{
  3235. let transactionList = document.getElementById("transactionsList");
  3236. let template = document.getElementById("transaction").content.children[0];
  3237. while(transactionList.children.length > 0){
  3238. transactionList.removeChild(transactionList.firstChild);
  3239. }
  3240. for(let i = 0; i < response.length; i++){
  3241. let transactionDiv = template.cloneNode(true);
  3242. let recipeCount = 0;
  3243. let cost = 0;
  3244. let transaction = new Transaction(
  3245. response[i]._id,
  3246. response[i].date,
  3247. response[i].recipes,
  3248. merchant
  3249. );
  3250. for(let j = 0; j < transaction.recipes.length; j++){
  3251. recipeCount += transaction.recipes[j].quantity;
  3252. cost += transaction.recipes[j].quantity * transaction.recipes[j].recipe.price;
  3253. }
  3254. transactionDiv.children[0].innerText = `${transaction.date.toLocaleDateString()} ${transaction.date.toLocaleTimeString()}`;
  3255. transactionDiv.children[1].innerText = `${recipeCount} recipes sold`;
  3256. transactionDiv.children[2].innerText = `$${(cost / 100).toFixed(2)}`;
  3257. transactionDiv.onclick = ()=>{controller.openSidebar("transactionDetails", transaction)};
  3258. transactionList.appendChild(transactionDiv);
  3259. }
  3260. }
  3261. })
  3262. .catch((err)=>{
  3263. banner.createError("UNABLE TO DISPLAY THE TRANSACTIONS");
  3264. })
  3265. .finally(()=>{
  3266. loader.style.display = "none";
  3267. });
  3268. },
  3269. toggleDropdown: function(dropdown){
  3270. event.preventDefault();
  3271. let polyline = dropdown.parentElement.children[0].children[1].children[0].children[0];
  3272. if(dropdown.style.display === "none"){
  3273. dropdown.style.display = "block";
  3274. polyline.setAttribute("points", "18 15 12 9 6 15");
  3275. }else{
  3276. dropdown.style.display = "none";
  3277. polyline.setAttribute("points", "6 9 12 15 18 9");
  3278. }
  3279. }
  3280. }
  3281. module.exports = transactions;
  3282. },{}]},{},[7]);