bundle.js 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846
  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].id === "ingredientDetails" && sidebar.children[i].style.display !== "none"){
  1476. let ingredients = document.querySelectorAll(".ingredient");
  1477. for(let i = 0; i < ingredients.length; i++){
  1478. ingredients[i].classList.remove("active");
  1479. }
  1480. }
  1481. sidebar.children[i].style.display = "none";
  1482. }
  1483. sidebar.classList = "sidebarHide";
  1484. if(window.screen.availWidth <= 1000){
  1485. document.querySelector(".contentBlock").style.display = "flex";
  1486. document.getElementById("mobileMenuSelector").style.display = "block";
  1487. document.getElementById("sidebarCloser").style.display = "none";
  1488. }
  1489. },
  1490. changeMenu: function(){
  1491. let menu = document.querySelector(".menu");
  1492. let buttons = document.querySelectorAll(".menuButton");
  1493. if(!menu.classList.contains("menuMinimized")){
  1494. menu.classList = "menu menuMinimized";
  1495. for(let i = 0; i < buttons.length; i++){
  1496. buttons[i].children[1].style.display = "none";
  1497. }
  1498. document.getElementById("max").style.display = "none";
  1499. document.getElementById("min").style.display = "flex";
  1500. }else if(menu.classList.contains("menuMinimized")){
  1501. menu.classList = "menu";
  1502. for(let i = 0; i < buttons.length; i++){
  1503. buttons[i].children[1].style.display = "block";
  1504. }
  1505. setTimeout(()=>{
  1506. document.getElementById("max").style.display = "flex";
  1507. document.getElementById("min").style.display = "none";
  1508. }, 150);
  1509. }
  1510. },
  1511. openMenu: function(){
  1512. document.getElementById("menu").style.display = "flex";
  1513. document.querySelector(".contentBlock").style.display = "none";
  1514. document.getElementById("mobileMenuSelector").onclick = ()=>{this.closeMenu()};
  1515. },
  1516. closeMenu: function(){
  1517. document.getElementById("menu").style.display = "none";
  1518. document.querySelector(".contentBlock").style.display = "flex";
  1519. document.getElementById("mobileMenuSelector").onclick = ()=>{this.openMenu()};
  1520. },
  1521. /*
  1522. Converts the price of unit back to the price per default unit
  1523. unitType = type of the unit (i.e. mass, volume)
  1524. unit = exact unit to convert to
  1525. price = price of the ingredient per unit in cents
  1526. */
  1527. reconvertPrice(unitType, unit, price){
  1528. if(unitType === "mass"){
  1529. switch(unit){
  1530. case "g": break;
  1531. case "kg": price *= 1000; break;
  1532. case "oz": price *= 28.3495; break;
  1533. case "lb": price *= 453.5924; break;
  1534. }
  1535. }else if(unitType === "volume"){
  1536. switch(unit){
  1537. case "ml": price /= 1000; break;
  1538. case "l": break;
  1539. case "tsp": price /= 202.8842; break;
  1540. case "tbsp": price /= 67.6278; break;
  1541. case "ozfl": price /= 33.8141; break;
  1542. case "cup": price /= 4.1667; break;
  1543. case "pt": price /= 2.1134; break;
  1544. case "qt": price /= 1.0567; break;
  1545. case "gal": price *= 3.7854; break;
  1546. }
  1547. }else if(unitType === "length"){
  1548. switch(unit){
  1549. case "mm": price /= 1000; break;
  1550. case "cm": price /= 100; break;
  1551. case "m": break;
  1552. case "in": price /= 39.3701; break;
  1553. case "ft": price /= 3.2808; break;
  1554. }
  1555. }
  1556. return price;
  1557. }
  1558. }
  1559. if(window.screen.availWidth > 1000 && window.screen.availWidth <= 1400){
  1560. this.changeMenu();
  1561. document.getElementById("menuShifter2").style.display = "none";
  1562. }
  1563. controller.openStrand("home");
  1564. },{"./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){
  1565. const Ingredient = require("./Ingredient");
  1566. let editIngredient = {
  1567. display: function(ingredient){
  1568. let buttonList = document.getElementById("unitButtons");
  1569. let quantLabel = document.getElementById("editIngQuantityLabel");
  1570. let specialLabel = document.getElementById("editSpecialLabel");
  1571. //Clear any existing data
  1572. while(buttonList.children.length > 0){
  1573. buttonList.removeChild(buttonList.firstChild);
  1574. }
  1575. //Populate basic fields
  1576. document.getElementById("editIngTitle").innerText = ingredient.ingredient.name;
  1577. document.getElementById("editIngName").value = ingredient.ingredient.name;
  1578. document.getElementById("editIngCategory").value = ingredient.ingredient.category;
  1579. quantLabel.innerText = `CURRENT STOCK (${ingredient.ingredient.unit.toUpperCase()})`;
  1580. document.getElementById("editIngSubmit").onclick = ()=>{this.submit(ingredient)};
  1581. //Populate the unit buttons
  1582. const units = merchant.units[ingredient.ingredient.unitType];
  1583. for(let i = 0; i < units.length; i++){
  1584. let button = document.createElement("button");
  1585. button.classList.add("unitButton");
  1586. button.innerText = units[i].toUpperCase();
  1587. button.onclick = ()=>{this.changeUnit(button)};
  1588. buttonList.appendChild(button);
  1589. if(units[i] === ingredient.ingredient.unit){
  1590. button.classList.add("unitActive");
  1591. }
  1592. }
  1593. //Make any changes for special ingredients
  1594. if(ingredient.ingredient.specialUnit === "bottle"){
  1595. quantLabel.innerText = "CURRENT STOCK (BOTTLES):";
  1596. specialLabel.style.display = "flex";
  1597. specialLabel.innerText = `BOTTLE SIZE (${ingredient.ingredient.unit.toUpperCase()}):`;
  1598. let sizeInput = document.createElement("input");
  1599. sizeInput.id = "editIngSpecialSize";
  1600. sizeInput.type = "number";
  1601. sizeInput.min = "0";
  1602. sizeInput.step = "0.01";
  1603. sizeInput.value = ingredient.ingredient.unitSize.toFixed(2);
  1604. specialLabel.appendChild(sizeInput);
  1605. }else{
  1606. specialLabel.style.display = "none";
  1607. }
  1608. let quantInput = document.createElement("input");
  1609. quantInput.id = "editIngQuantity";
  1610. quantInput.type = "number";
  1611. quantInput.min = "0";
  1612. quantInput.step = "0.01";
  1613. quantInput.value = ingredient.quantity.toFixed(2);
  1614. quantLabel.appendChild(quantInput);
  1615. },
  1616. changeUnit(button){
  1617. let buttons = document.getElementById("unitButtons");
  1618. for(let i = 0; i < buttons.children.length; i++){
  1619. buttons.children[i].classList.remove("unitActive");
  1620. }
  1621. button.classList.add("unitActive");
  1622. },
  1623. submit(ingredient){
  1624. const quantity = parseFloat(document.getElementById("editIngQuantityLabel").children[0].value);
  1625. let data = {
  1626. id: ingredient.ingredient.id,
  1627. name: document.getElementById("editIngName").value,
  1628. category: document.getElementById("editIngCategory").value
  1629. }
  1630. //Add data based on unit type
  1631. if(ingredient.ingredient.specialUnit === "bottle"){
  1632. let unitSize = ingredient.convertToBase(parseFloat(document.getElementById("editSpecialLabel").children[0].value));
  1633. data.quantity = quantity * unitSize;
  1634. data.unitSize = unitSize;
  1635. }else{
  1636. data.quantity = ingredient.convertToBase(quantity);
  1637. }
  1638. //Get the measurement unit
  1639. let units = document.getElementById("unitButtons");
  1640. for(let i = 0; i < units.children.length; i++){
  1641. if(units.children[i].classList.contains("unitActive")){
  1642. data.unit = units.children[i].innerText.toLowerCase();
  1643. break;
  1644. }
  1645. }
  1646. let loader = document.getElementById("loaderContainer");
  1647. loader.style.display = "flex";
  1648. fetch("/ingredients/update", {
  1649. method: "put",
  1650. headers: {
  1651. "Content-Type": "application/json;charset=utf-8"
  1652. },
  1653. body: JSON.stringify(data)
  1654. })
  1655. .then(response => response.json())
  1656. .then((response)=>{
  1657. if(typeof(response) === "string"){
  1658. banner.createError(response);
  1659. }else{
  1660. ingredient.ingredient.name = response.ingredient.name;
  1661. ingredient.ingredient.category = response.ingredient.category;
  1662. ingredient.ingredient.unitSize = response.ingredient.unitSize;
  1663. ingredient.ingredient.unit = response.unit;
  1664. merchant.updateIngredient(ingredient, response.quantity);
  1665. controller.openStrand("ingredients");
  1666. banner.createNotification("INGREDIENT UPDATED");
  1667. }
  1668. })
  1669. .catch((err)=>{
  1670. banner.createError("SOMETHING WENT WRONG, PLEASE REFRESH THE PAGE");
  1671. })
  1672. .finally(()=>{
  1673. loader.style.display = "none";
  1674. });
  1675. }
  1676. }
  1677. module.exports = editIngredient;
  1678. },{"./Ingredient":1}],9:[function(require,module,exports){
  1679. let editRecipe = {
  1680. display: function(recipe){
  1681. let nameInput = document.getElementById("editRecipeName");
  1682. if(merchant.pos === "none"){
  1683. nameInput.value = recipe.name;
  1684. }else{
  1685. document.getElementById("editRecipeNoName").innertext = recipe.name;
  1686. nameInput.parentNode.style.display = "none";
  1687. }
  1688. //Populate ingredients
  1689. let ingredientList = document.getElementById("editRecipeIngList");
  1690. while(ingredientList.children.length > 0){
  1691. ingredientList.removeChild(ingredientList.firstChild);
  1692. }
  1693. let template = document.getElementById("editRecipeIng").content.children[0];
  1694. for(let i = 0; i < recipe.ingredients.length; i++){
  1695. let ingredientDiv = template.cloneNode(true);
  1696. ingredientDiv.children[0].onclick = ()=>{ingredientDiv.parentNode.removeChild(ingredientDiv)};
  1697. ingredientDiv.children[1].innerText = recipe.ingredients[i].ingredient.getNameAndUnit();
  1698. ingredientDiv.children[2].style.display = "none";
  1699. ingredientDiv.children[3].value = recipe.ingredients[i].quantity;
  1700. ingredientDiv.ingredient = recipe.ingredients[i];
  1701. ingredientList.appendChild(ingredientDiv);
  1702. }
  1703. document.getElementById("addRecIng").onclick = ()=>{this.newIngredient()};
  1704. document.getElementById("editRecipePrice").value = recipe.price;
  1705. document.getElementById("editRecipeSubmit").onclick = ()=>{this.submit(recipe)};
  1706. document.getElementById("editRecipeCancel").onclick = ()=>{controller.openSidebar("recipeDetails", recipe)};
  1707. },
  1708. newIngredient: function(){
  1709. let ingredientList = document.getElementById("editRecipeIngList");
  1710. let ingredientDiv = document.getElementById("editRecipeIng").content.children[0].cloneNode(true);
  1711. ingredientDiv.children[0].onclick = ()=>{ingredientDiv.parentNode.removeChild(ingredientDiv)};
  1712. ingredientDiv.children[1].style.display = "none";
  1713. ingredientDiv.children[3].value = "0.00";
  1714. //Populate selector
  1715. let categories = merchant.categorizeIngredients();
  1716. for(let i = 0; i < categories.length; i++){
  1717. let group = document.createElement("optgroup");
  1718. group.label = categories[i].name;
  1719. for(let j = 0; j < categories[i].ingredients.length; j++){
  1720. let option = document.createElement("option");
  1721. option.innerText = categories[i].ingredients[j].ingredient.getNameAndUnit();
  1722. option.ingredient = categories[i].ingredients[j];
  1723. group.appendChild(option);
  1724. }
  1725. ingredientDiv.children[2].appendChild(group);
  1726. }
  1727. ingredientList.appendChild(ingredientDiv);
  1728. },
  1729. submit: function(recipe){
  1730. let data = {
  1731. id: recipe.id,
  1732. name: recipe.name,
  1733. price: document.getElementById("editRecipePrice").value * 100,
  1734. ingredients: []
  1735. }
  1736. if(merchant.pos === "none"){
  1737. data.name = document.getElementById("editRecipeName").value;
  1738. }
  1739. let ingredients = document.getElementById("editRecipeIngList").children;
  1740. for(let i = 0; i < ingredients.length; i++){
  1741. const quantity = parseFloat(ingredients[i].children[3].value);
  1742. if(ingredients[i].children[1].style.display === "none"){
  1743. let selector = ingredients[i].children[2];
  1744. let ingredient = selector.options[selector.selectedIndex].ingredient;
  1745. data.ingredients.push({
  1746. ingredient: ingredient.ingredient.id,
  1747. quantity: ingredient.convertToBase(quantity)
  1748. });
  1749. }else{
  1750. data.ingredients.push({
  1751. ingredient: ingredients[i].ingredient.ingredient.id,
  1752. quantity: ingredients[i].ingredient.convertToBase(quantity)
  1753. });
  1754. }
  1755. }
  1756. let loader = document.getElementById("loaderContainer");
  1757. loader.style.display = "flex";
  1758. fetch("/recipe/update", {
  1759. method: "put",
  1760. headers: {
  1761. "Content-Type": "application/json;charset=utf-8"
  1762. },
  1763. body: JSON.stringify(data)
  1764. })
  1765. .then(response => response.json())
  1766. .then((response)=>{
  1767. if(typeof(response) === "string"){
  1768. banner.createError(response);
  1769. }else{
  1770. merchant.updateRecipe(response);
  1771. controller.openStrand("recipeBook");
  1772. }
  1773. })
  1774. .catch((err)=>{
  1775. banner.createError("SOMETHING WENT WRONG, PLEASE REFRESH THE PAGE");
  1776. })
  1777. .finally(()=>{
  1778. loader.style.display = "none";
  1779. });
  1780. }
  1781. }
  1782. module.exports = editRecipe;
  1783. },{}],10:[function(require,module,exports){
  1784. let home = {
  1785. isPopulated: false,
  1786. display: function(){
  1787. if(!this.isPopulated){
  1788. this.drawRevenueCard();
  1789. this.drawRevenueGraph();
  1790. this.drawInventoryCheckCard();
  1791. this.drawPopularCard();
  1792. this.isPopulated = true;
  1793. }
  1794. },
  1795. drawRevenueCard: function(){
  1796. let today = new Date();
  1797. let firstOfMonth = new Date(today.getFullYear(), today.getMonth(), 1);
  1798. let firstOfLastMonth = new Date(today.getFullYear(), today.getMonth() - 1, 1);
  1799. let lastMonthToDay = new Date(new Date().setMonth(today.getMonth() - 1));
  1800. const revenueThisMonth = merchant.getRevenue(firstOfMonth);
  1801. const revenueLastMonthToDay = merchant.getRevenue(firstOfLastMonth, lastMonthToDay);
  1802. document.getElementById("revenue").innerText = `$${revenueThisMonth.toFixed(2)}`;
  1803. let revenueChange = ((revenueThisMonth - revenueLastMonthToDay) / revenueLastMonthToDay) * 100;
  1804. let img = "";
  1805. if(revenueChange >= 0){
  1806. img = "/shared/images/upArrow.png";
  1807. }else{
  1808. img = "/shared/images/downArrow.png";
  1809. }
  1810. document.querySelector("#revenueChange p").innerText = `${Math.abs(revenueChange).toFixed(2)}% vs last month`;
  1811. document.querySelector("#revenueChange img").src = img;
  1812. },
  1813. drawRevenueGraph: function(){
  1814. let monthAgo = new Date();
  1815. monthAgo.setMonth(monthAgo.getMonth() - 1);
  1816. let revenue = [];
  1817. let dates = [];
  1818. let dayRevenue = 0;
  1819. const transactions = merchant.getTransactions(monthAgo);
  1820. let currentDate = (transactions.length > 0) ? transactions[0].date : undefined;
  1821. for(let i = 0; i < transactions.length; i++){
  1822. if(transactions[i].date.getDate() !== currentDate.getDate()){
  1823. revenue.push(dayRevenue / 100);
  1824. dayRevenue = 0;
  1825. dates.push(currentDate);
  1826. currentDate = transactions[i].date;
  1827. }
  1828. for(let j = 0; j < transactions[i].recipes.length; j++){
  1829. const recipe = transactions[i].recipes[j];
  1830. dayRevenue += recipe.recipe.price * recipe.quantity;
  1831. }
  1832. }
  1833. const trace = {
  1834. x: dates,
  1835. y: revenue,
  1836. mode: "lines+markers",
  1837. line: {
  1838. color: "rgb(255, 99, 107)"
  1839. }
  1840. }
  1841. const layout = {
  1842. title: "REVENUE",
  1843. xaxis: {
  1844. title: "DATE"
  1845. },
  1846. yaxis: {
  1847. title: "$"
  1848. }
  1849. }
  1850. Plotly.newPlot("graphCard", [trace], layout);
  1851. },
  1852. drawInventoryCheckCard: function(){
  1853. let num;
  1854. if(merchant.ingredients.length < 5){
  1855. num = merchant.ingredients.length;
  1856. }else{
  1857. num = 5;
  1858. }
  1859. let rands = [];
  1860. for(let i = 0; i < num; i++){
  1861. let rand = Math.floor(Math.random() * merchant.ingredients.length);
  1862. if(rands.includes(rand)){
  1863. i--;
  1864. }else{
  1865. rands[i] = rand;
  1866. }
  1867. }
  1868. let ul = document.querySelector("#inventoryCheckCard ul");
  1869. let template = document.getElementById("ingredientCheck").content.children[0];
  1870. while(ul.children.length > 0){
  1871. ul.removeChild(ul.firstChild);
  1872. }
  1873. for(let i = 0; i < rands.length; i++){
  1874. let ingredientCheck = template.cloneNode(true);
  1875. let input = ingredientCheck.children[1].children[1];
  1876. const ingredient = merchant.ingredients[rands[i]];
  1877. ingredientCheck.ingredient = ingredient;
  1878. ingredientCheck.children[0].innerText = ingredient.ingredient.name;
  1879. ingredientCheck.children[1].children[0].onclick = ()=>{
  1880. input.value--;
  1881. input.changed = true;
  1882. };
  1883. if(ingredient.ingredient.specialUnit === "bottle"){
  1884. input.value = ingredient.quantity.toFixed(2);
  1885. ingredientCheck.children[2].innerText = "BOTTLES";
  1886. }else{
  1887. input.value = ingredient.quantity.toFixed(2);
  1888. ingredientCheck.children[2].innerText = ingredient.ingredient.unit.toUpperCase();
  1889. }
  1890. ingredientCheck.children[1].children[2].onclick = ()=>{
  1891. input.value++;
  1892. input.changed = true;
  1893. }
  1894. input.onchange = ()=>{input.changed = true};
  1895. ul.appendChild(ingredientCheck);
  1896. }
  1897. document.getElementById("inventoryCheck").onclick = ()=>{this.submitInventoryCheck()};
  1898. },
  1899. drawPopularCard: function(){
  1900. let thisMonth = new Date();
  1901. thisMonth.setDate(1);
  1902. const ingredientList = merchant.getIngredientsSold(thisMonth);
  1903. if(ingredientList !== false){
  1904. ingredientList.sort((a, b)=>{
  1905. if(a.quantity < b.quantity){
  1906. return 1;
  1907. }
  1908. if(a.quantity > b.quantity){
  1909. return -1;
  1910. }
  1911. return 0;
  1912. });
  1913. let quantities = [];
  1914. let labels = [];
  1915. let colors = [];
  1916. let count = (ingredientList.length < 5) ? ingredientList.length - 1 : 4;
  1917. for(let i = count; i >= 0; i--){
  1918. const ingredientName = ingredientList[i].ingredient.name;
  1919. const ingredientQuantity = ingredientList[i].quantity;
  1920. const unitName = ingredientList[i].ingredient.unit;
  1921. quantities.push(ingredientList[i].quantity);
  1922. labels.push(`${ingredientName}: ${ingredientQuantity.toFixed(2)} ${unitName.toUpperCase()}`);
  1923. if(i === 0){
  1924. colors.push("rgb(255, 99, 107");
  1925. }else{
  1926. colors.push("rgb(179, 191, 209");
  1927. }
  1928. }
  1929. let trace = {
  1930. x: quantities,
  1931. type: "bar",
  1932. orientation: "h",
  1933. text: labels,
  1934. textposition: "auto",
  1935. hoverinfo: "none",
  1936. marker: {
  1937. color: colors
  1938. }
  1939. }
  1940. let layout = {
  1941. title: "MOST POPULAR INGREDIENTS",
  1942. xaxis: {
  1943. zeroline: false,
  1944. title: "QUANTITY"
  1945. },
  1946. yaxis: {
  1947. showticklabels: false
  1948. }
  1949. }
  1950. Plotly.newPlot("popularIngredientsCard", [trace], layout);
  1951. }else{
  1952. document.getElementById("popularCanvas").style.display = "none";
  1953. let notice = document.createElement("p");
  1954. notice.innerText = "N/A";
  1955. notice.classList = "notice";
  1956. document.getElementById("popularIngredientsCard").appendChild(notice);
  1957. }
  1958. },
  1959. //Need to change the updating of ingredients
  1960. //should update the ingredient directly, then send that. Maybe...
  1961. submitInventoryCheck: function(){
  1962. let lis = document.querySelectorAll("#inventoryCheckCard li");
  1963. let changes = [];
  1964. let fetchData = [];
  1965. for(let i = 0; i < lis.length; i++){
  1966. if(lis[i].children[1].children[1].value >= 0){
  1967. let merchIngredient = lis[i].ingredient;
  1968. if(lis[i].children[1].children[1].changed === true){
  1969. let value = 0;
  1970. if(merchIngredient.ingredient.specialUnit === "bottle"){
  1971. value = parseFloat(lis[i].children[1].children[1].value) * merchIngredient.ingredient.unitSize;
  1972. }else{
  1973. value = controller.convertToMain(merchIngredient.ingredient.unit, parseFloat(lis[i].children[1].children[1].value));
  1974. }
  1975. changes.push({
  1976. ingredient: merchIngredient.ingredient,
  1977. quantity: value
  1978. });
  1979. fetchData.push({
  1980. id: merchIngredient.ingredient.id,
  1981. quantity: value
  1982. });
  1983. lis[i].children[1].children[1].changed = false;
  1984. }
  1985. }else{
  1986. banner.createError("CANNOT HAVE NEGATIVE INGREDIENTS");
  1987. return;
  1988. }
  1989. }
  1990. if(fetchData.length > 0){
  1991. let loader = document.getElementById("loaderContainer");
  1992. loader.style.display = "flex";
  1993. fetch("/merchant/ingredients/update", {
  1994. method: "PUT",
  1995. headers: {
  1996. "Content-Type": "application/json;charset=utf-8"
  1997. },
  1998. body: JSON.stringify(fetchData)
  1999. })
  2000. .then(response => response.json())
  2001. .then((response)=>{
  2002. if(typeof(response) === "string"){
  2003. banner.createError(response);
  2004. }else{
  2005. for(let i = 0; i < changes.length; i++){
  2006. merchant.updateIngredient(changes[i].ingredient, changes[i].quantity);
  2007. }
  2008. banner.createNotification("INGREDIENTS UPDATED");
  2009. }
  2010. })
  2011. .catch((err)=>{})
  2012. .finally(()=>{
  2013. loader.style.display = "none";
  2014. });
  2015. }
  2016. }
  2017. }
  2018. module.exports = home;
  2019. },{}],11:[function(require,module,exports){
  2020. let ingredientDetails = {
  2021. dailyUse: 0,
  2022. display: function(ingredient){
  2023. document.getElementById("editIngBtn").onclick = ()=>{controller.openSidebar("editIngredient", ingredient)};
  2024. document.getElementById("removeIngBtn").onclick = ()=>{this.remove(ingredient)};
  2025. document.getElementById("ingredientDetailsCategory").innerText = ingredient.ingredient.category;
  2026. document.getElementById("ingredientDetailsName").innerText = ingredient.ingredient.name;
  2027. document.getElementById("ingredientStock").innerText = ingredient.getQuantityDisplay();
  2028. //Calculate and display average daily use
  2029. let quantities = [];
  2030. let now = new Date();
  2031. for(let i = 1; i < 31; i++){
  2032. let endDay = new Date(now.getFullYear(), now.getMonth(), now.getDate() - i)
  2033. let startDay = new Date(now.getFullYear(), now.getMonth(), now.getDate() - i - 1);
  2034. quantities.push(merchant.getSingleIngredientSold(ingredient, startDay, endDay));
  2035. }
  2036. let sum = 0;
  2037. for(let i = 0; i < quantities.length; i++){
  2038. sum += quantities[i];
  2039. }
  2040. let dailyUse = sum / quantities.length;
  2041. const dailyUseDiv = document.getElementById("dailyUse");
  2042. if(ingredient.ingredient.specialUnit === "bottle"){
  2043. dailyUseDiv.innerText = `${dailyUse.toFixed(2)} BOTTLES`;
  2044. }else{
  2045. dailyUseDiv.innerText = `${dailyUse.toFixed(2)} ${ingredient.ingredient.unit.toUpperCase()}`;
  2046. }
  2047. //Show recipes that this ingredient is a part of
  2048. let recipeList = document.getElementById("ingredientRecipeList");
  2049. let template = document.getElementById("ingredientRecipe").content.children[0];
  2050. let recipes = merchant.getRecipesForIngredient(ingredient.ingredient);
  2051. while(recipeList.children.length > 0){
  2052. recipeList.removeChild(recipeList.firstChild);
  2053. }
  2054. for(let i = 0; i < recipes.length; i++){
  2055. let recipeDiv = template.cloneNode(true);
  2056. recipeDiv.children[0].innerText = recipes[i].name;
  2057. recipeDiv.onclick = ()=>{
  2058. controller.openStrand("recipeBook");
  2059. controller.openSidebar("recipeDetails", recipes[i]);
  2060. }
  2061. recipeDiv.classList.add("choosable");
  2062. recipeList.appendChild(recipeDiv);
  2063. }
  2064. },
  2065. remove: function(ingredient){
  2066. for(let i = 0; i < merchant.recipes.length; i++){
  2067. for(let j = 0; j < merchant.recipes[i].ingredients.length; j++){
  2068. if(ingredient.ingredient === merchant.recipes[i].ingredients[j].ingredient){
  2069. banner.createError("MUST REMOVE INGREDIENT FROM ALL RECIPES BEFORE REMOVING FROM INVENTORY");
  2070. return;
  2071. }
  2072. }
  2073. }
  2074. let loader = document.getElementById("loaderContainer");
  2075. loader.style.display = "flex";
  2076. fetch(`/ingredients/remove/${ingredient.ingredient.id}`, {
  2077. method: "delete",
  2078. })
  2079. .then((response) => response.json())
  2080. .then((response)=>{
  2081. if(typeof(response) === "string"){
  2082. banner.createError(response);
  2083. }else{
  2084. merchant.removeIngredient(ingredient);
  2085. controller.openStrand("ingredients");
  2086. banner.createNotification("INGREDIENT REMOVED");
  2087. }
  2088. })
  2089. .catch((err)=>{})
  2090. .finally(()=>{
  2091. loader.style.display = "none";
  2092. });
  2093. }
  2094. }
  2095. module.exports = ingredientDetails;
  2096. },{}],12:[function(require,module,exports){
  2097. const { populate } = require("./orders");
  2098. let ingredients = {
  2099. isPopulated: false,
  2100. ingredients: [],
  2101. display: function(){
  2102. if(!this.isPopulated){
  2103. document.getElementById("ingredientSearch").oninput = ()=>{this.search()};
  2104. document.getElementById("ingredientClearButton").onclick = ()=>{this.clearSorting()};
  2105. document.getElementById("ingredientSelect").onchange = ()=>{this.sort()};
  2106. this.populateByProperty("category");
  2107. this.isPopulated = true;
  2108. }
  2109. },
  2110. populateByProperty: function(property){
  2111. let categories;
  2112. if(property === "category"){
  2113. categories = merchant.categorizeIngredients();
  2114. }else if(property === "unit"){
  2115. categories = merchant.unitizeIngredients();
  2116. }
  2117. let ingredientStrand = document.getElementById("categoryList");
  2118. let categoryTemplate = document.getElementById("categoryDiv").content.children[0];
  2119. let ingredientTemplate = document.getElementById("ingredient").content.children[0];
  2120. this.ingredients = [];
  2121. while(ingredientStrand.children.length > 0){
  2122. ingredientStrand.removeChild(ingredientStrand.firstChild);
  2123. }
  2124. for(let i = 0; i < categories.length; i++){
  2125. let categoryDiv = categoryTemplate.cloneNode(true);
  2126. categoryDiv.children[0].children[0].innerText = categories[i].name.toUpperCase();
  2127. categoryDiv.children[0].onclick = ()=>{
  2128. this.toggleCategory(categoryDiv.children[1], categoryDiv.children[0].children[1]);
  2129. };
  2130. categoryDiv.children[1].style.display = "none";
  2131. ingredientStrand.appendChild(categoryDiv);
  2132. for(let j = 0; j < categories[i].ingredients.length; j++){
  2133. let ingredient = categories[i].ingredients[j];
  2134. let ingredientDiv = ingredientTemplate.cloneNode(true);
  2135. ingredientDiv.children[0].innerText = ingredient.ingredient.name;
  2136. ingredientDiv.onclick = ()=>{
  2137. controller.openSidebar("ingredientDetails", ingredient);
  2138. ingredientDiv.classList.add("active");
  2139. };
  2140. ingredientDiv._name = ingredient.ingredient.name.toLowerCase();
  2141. ingredientDiv._unit = ingredient.ingredient.unit.toLowerCase();
  2142. ingredientDiv.classList.add("choosable");
  2143. if(ingredient.ingredient.specialUnit === "bottle"){
  2144. ingredientDiv.children[2].innerText = `${ingredient.quantity.toFixed(2)} BOTTLES`
  2145. }else{
  2146. ingredientDiv.children[2].innerText = `${ingredient.quantity.toFixed(2)} ${ingredient.ingredient.unit.toUpperCase()}`;
  2147. }
  2148. categoryDiv.children[1].appendChild(ingredientDiv);
  2149. this.ingredients.push(ingredientDiv);
  2150. }
  2151. }
  2152. },
  2153. displayIngredientsOnly: function(ingredients){
  2154. let ingredientDiv = document.getElementById("categoryList");
  2155. while(ingredientDiv.children.length > 0){
  2156. ingredientDiv.removeChild(ingredientDiv.firstChild);
  2157. }
  2158. for(let i = 0; i < ingredients.length; i++){
  2159. ingredientDiv.appendChild(ingredients[i]);
  2160. }
  2161. },
  2162. toggleCategory: function(div, button){
  2163. if(div.style.display === "none"){
  2164. 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>';
  2165. div.style.display = "flex";
  2166. }else if(div.style.display === "flex"){
  2167. 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>';
  2168. div.style.display = "none";
  2169. }
  2170. },
  2171. search: function(){
  2172. let input = document.getElementById("ingredientSearch").value.toLowerCase();
  2173. document.getElementById("ingredientSelect").selectedIndex = 0;
  2174. if(input === ""){
  2175. this.populateByProperty("category");
  2176. document.getElementById("ingredientClearButton").style.display = "none";
  2177. return;
  2178. }
  2179. let matchingIngredients = [];
  2180. for(let i = 0; i < this.ingredients.length; i++){
  2181. if(this.ingredients[i]._name.includes(input)){
  2182. matchingIngredients.push(this.ingredients[i]);
  2183. }
  2184. }
  2185. document.getElementById("ingredientClearButton").style.display = "inline";
  2186. this.displayIngredientsOnly(matchingIngredients);
  2187. },
  2188. sort: function(){
  2189. let sortType = document.getElementById("ingredientSelect").value;
  2190. if(sortType === ""){
  2191. return;
  2192. }
  2193. document.getElementById("ingredientSearch").value = "";
  2194. if(sortType === "category"){
  2195. this.populateByProperty("category");
  2196. return;
  2197. }
  2198. if(sortType === "unit"){
  2199. this.populateByProperty("unit");
  2200. return;
  2201. }
  2202. document.getElementById("ingredientClearButton").style.display = "inline";
  2203. let sortedIngredients = this.ingredients.slice().sort((a, b)=> (a[sortType] > b[sortType]) ? 1 : -1);
  2204. this.displayIngredientsOnly(sortedIngredients);
  2205. },
  2206. clearSorting: function(button){
  2207. document.getElementById("ingredientSearch").value = "";
  2208. document.getElementById("ingredientSelect").selectedIndex = 0;
  2209. document.getElementById("ingredientClearButton").style.display = "none";
  2210. this.populateByProperty("category");
  2211. }
  2212. }
  2213. module.exports = ingredients;
  2214. },{"./orders":19}],13:[function(require,module,exports){
  2215. const ingredients = require("./ingredients");
  2216. let newIngredient = {
  2217. display: function(Ingredient){
  2218. const selector = document.getElementById("unitSelector");
  2219. document.getElementById("newIngName").value = "";
  2220. document.getElementById("newIngCategory").value = "";
  2221. document.getElementById("newIngQuantity").value = 0;
  2222. document.getElementById("bottleSizeLabel").style.display = "none";
  2223. selector.value = "g";
  2224. selector.onchange = ()=>{this.unitChange()};
  2225. document.getElementById("submitNewIng").onclick = ()=>{this.submit(Ingredient)};
  2226. },
  2227. unitChange: function(){
  2228. const select = document.getElementById("unitSelector");
  2229. const bottleLabel = document.getElementById("bottleSizeLabel");
  2230. if(select.value === "bottle"){
  2231. bottleLabel.style.display = "block";
  2232. }else{
  2233. bottleLabel.style.display = "none";
  2234. }
  2235. },
  2236. submit: function(Ingredient){
  2237. let unitSelector = document.getElementById("unitSelector");
  2238. let options = document.querySelectorAll("#unitSelector option");
  2239. const quantityValue = parseFloat(document.getElementById("newIngQuantity").value);
  2240. let unit = unitSelector.value;
  2241. let newIngredient = {
  2242. ingredient: {
  2243. name: document.getElementById("newIngName").value,
  2244. category: document.getElementById("newIngCategory").value,
  2245. unitType: options[unitSelector.selectedIndex].getAttribute("type")
  2246. },
  2247. quantity: quantityValue,
  2248. defaultUnit: unit
  2249. }
  2250. //Change the ingredient if it is a special unit type (ie "bottle")
  2251. if(unit === "bottle"){
  2252. newIngredient.ingredient.unitType = "volume";
  2253. newIngredient.ingredient.unitSize = document.getElementById("bottleSize").value;
  2254. newIngredient.defaultUnit = document.getElementById("bottleUnits").value;
  2255. newIngredient.ingredient.specialUnit = unit;
  2256. newIngredient.quantity = quantityValue;
  2257. }
  2258. let loader = document.getElementById("loaderContainer");
  2259. loader.style.display = "flex";
  2260. fetch("/ingredients/create", {
  2261. method: "POST",
  2262. headers: {
  2263. "Content-Type": "application/json;charset=utf-8"
  2264. },
  2265. body: JSON.stringify(newIngredient)
  2266. })
  2267. .then((response) => response.json())
  2268. .then((response)=>{
  2269. if(typeof(response) === "string"){
  2270. banner.createError(response);
  2271. }else{
  2272. const ingredient = new Ingredient(
  2273. response.ingredient._id,
  2274. response.ingredient.name,
  2275. response.ingredient.category,
  2276. response.ingredient.unitType,
  2277. response.defaultUnit,
  2278. merchant,
  2279. response.ingredient.specialUnit,
  2280. response.ingredient.unitSize
  2281. )
  2282. merchant.addIngredient(ingredient, response.quantity);
  2283. ingredients.display();
  2284. controller.closeSidebar();
  2285. banner.createNotification("INGREDIENT CREATED");
  2286. }
  2287. })
  2288. .catch((err)=>{
  2289. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  2290. })
  2291. .finally(()=>{
  2292. loader.style.display = "none";
  2293. });
  2294. },
  2295. }
  2296. module.exports = newIngredient;
  2297. },{"./ingredients":12}],14:[function(require,module,exports){
  2298. let newOrder = {
  2299. display: function(Order){
  2300. document.getElementById("sidebarDiv").classList.add("sidebarWide");
  2301. document.getElementById("newOrderIngredientList").style.display = "flex";
  2302. let selectedList = document.getElementById("selectedIngredientList");
  2303. while(selectedList.children.length > 0){
  2304. selectedList.removeChild(selectedList.firstChild);
  2305. }
  2306. let ingredientList = document.getElementById("newOrderIngredients");
  2307. while(ingredientList.children.length > 0){
  2308. ingredientList.removeChild(ingredientList.firstChild);
  2309. }
  2310. for(let i = 0; i < merchant.ingredients.length; i++){
  2311. let ingredient = document.createElement("button");
  2312. ingredient.classList = "newOrderIngredient";
  2313. ingredient.innerText = merchant.ingredients[i].ingredient.name;
  2314. ingredient.onclick = ()=>{this.addIngredient(merchant.ingredients[i], ingredient)};
  2315. ingredientList.appendChild(ingredient);
  2316. }
  2317. document.getElementById("submitNewOrder").onclick = ()=>{this.submit(Order)};
  2318. },
  2319. addIngredient: function(ingredient, element){
  2320. element.style.display = "none";
  2321. let div = document.getElementById("selectedIngredient").content.children[0].cloneNode(true);
  2322. div.ingredient = ingredient;
  2323. div.children[0].children[1].onclick = ()=>{this.removeIngredient(div, element)};
  2324. //Display units depending on the whether it is a special unit
  2325. if(ingredient.ingredient.specialUnit === "bottle"){
  2326. div.children[0].children[0].innerText = `${ingredient.ingredient.name} (BOTTLES)`;
  2327. }else{
  2328. div.children[0].children[0].innerText = `${ingredient.ingredient.name} (${ingredient.ingredient.unit.toUpperCase()})`;
  2329. }
  2330. document.getElementById("selectedIngredientList").appendChild(div);
  2331. },
  2332. removeIngredient: function(selectedElement, element){
  2333. selectedElement.parentElement.removeChild(selectedElement);
  2334. element.style.display = "block";
  2335. },
  2336. submit: function(Order){
  2337. let date = document.getElementById("newOrderDate").value;
  2338. let taxes = document.getElementById("orderTaxes").value * 100;
  2339. let fees = document.getElementById("orderFees").value * 100;
  2340. let ingredients = document.getElementById("selectedIngredientList").children;
  2341. if(date === ""){
  2342. banner.createError("DATE IS REQUIRED FOR ORDERS");
  2343. return;
  2344. }
  2345. let data = {
  2346. name: document.getElementById("newOrderName").value,
  2347. date: date,
  2348. taxes: taxes,
  2349. fees: fees,
  2350. ingredients: []
  2351. }
  2352. for(let i = 0; i < ingredients.length; i++){
  2353. let quantity = ingredients[i].children[1].children[0].value;
  2354. let price = ingredients[i].children[1].children[1].value;
  2355. if(quantity === "" || price === ""){
  2356. banner.createError("MUST PROVIDE QUANTITY AND PRICE PER UNIT FOR ALL INGREDIENTS");
  2357. return;
  2358. }
  2359. if(quantity < 0 || price < 0){
  2360. banner.createError("QUANTITY AND PRICE MUST BE NON-NEGATIVE NUMBERS");
  2361. }
  2362. if(ingredients[i].ingredient.ingredient.specialUnit === "bottle"){
  2363. data.ingredients.push({
  2364. ingredient: ingredients[i].ingredient.ingredient.id,
  2365. quantity: quantity * ingredients[i].ingredient.ingredient.unitSize,
  2366. pricePerUnit: this.convertPrice(ingredients[i].ingredient.ingredient, price * 100)
  2367. });
  2368. }else{
  2369. data.ingredients.push({
  2370. ingredient: ingredients[i].ingredient.ingredient.id,
  2371. quantity: ingredients[i].ingredient.convertToBase(quantity),
  2372. pricePerUnit: this.convertPrice(ingredients[i].ingredient.ingredient, price * 100)
  2373. });
  2374. }
  2375. }
  2376. let loader = document.getElementById("loaderContainer");
  2377. loader.style.display = "flex";
  2378. fetch("/order/create", {
  2379. method: "post",
  2380. headers: {
  2381. "Content-Type": "application/json;charset=utf-8"
  2382. },
  2383. body: JSON.stringify(data)
  2384. })
  2385. .then((response)=>response.json())
  2386. .then((response)=>{
  2387. if(typeof(response) === "string"){
  2388. banner.createError(response);
  2389. }else{
  2390. let ingredients = [];
  2391. for(let i = 0; i < response.ingredients.length; i++){
  2392. for(let j = 0; j < merchant.ingredients.length; j++){
  2393. if(merchant.ingredients[j].ingredient.id === response.ingredients[i].ingredient){
  2394. ingredients.push({
  2395. ingredient: merchant.ingredients[j].ingredient,
  2396. quantity: response.ingredients[i].quantity,
  2397. pricePerUnit: response.ingredients[i].pricePerUnit
  2398. });
  2399. break;
  2400. }
  2401. }
  2402. }
  2403. let order = new Order(
  2404. response._id,
  2405. response.name,
  2406. response.date,
  2407. response.taxes,
  2408. response.fees,
  2409. ingredients,
  2410. merchant
  2411. );
  2412. merchant.addOrder(order, true);
  2413. controller.openStrand("orders");
  2414. banner.createNotification("NEW ORDER CREATED");
  2415. }
  2416. })
  2417. .catch((err)=>{
  2418. banner.createError("SOMETHING WENT WRONG, PLEASE REFRESH THE PAGE");
  2419. })
  2420. .finally(()=>{
  2421. loader.style.display = "none";
  2422. });
  2423. },
  2424. convertPrice: function(ingredient, price){
  2425. if(ingredient.specialUnit === "bottle"){
  2426. return price / ingredient.unitSize;
  2427. }
  2428. switch(ingredient.unit){
  2429. case "g": return price;
  2430. case "kg": return price / 1000;
  2431. case "oz": return price / 28.3495;
  2432. case "lb": return price / 453.5924;
  2433. case "ml": return price * 1000;
  2434. case "l": return price;
  2435. case "tsp": return price * 202.8842;
  2436. case "tbsp": return price * 67.6278;
  2437. case "ozfl": return price * 33.8141;
  2438. case "cup": return price * 4.1667;
  2439. case "pt": return price * 2.1134;
  2440. case "qt": return price * 1.0567;
  2441. case "gal": return price / 3.7854;
  2442. case "mm": return price * 1000;
  2443. case "cm": return price * 100;
  2444. case "m": return price;
  2445. case "in": return price * 39.3701;
  2446. case "ft": return price * 3.2808;
  2447. }
  2448. }
  2449. }
  2450. module.exports = newOrder;
  2451. },{}],15:[function(require,module,exports){
  2452. let newRecipe = {
  2453. display: function(Recipe){
  2454. document.getElementById("newRecipeName").value = "";
  2455. document.getElementById("newRecipePrice").value = "";
  2456. document.getElementById("ingredientCount").value = 1;
  2457. let categories = merchant.categorizeIngredients();
  2458. let ingredientsSelect = document.getElementById("recipeInputIngredients");
  2459. while(ingredientsSelect.children.length > 0){
  2460. ingredientsSelect.removeChild(ingredientsSelect.firstChild);
  2461. }
  2462. this.changeIngredientCount(categories);
  2463. document.getElementById("ingredientCount").onchange = ()=>{this.changeIngredientCount(categories)};
  2464. document.getElementById("submitNewRecipe").onclick = ()=>{this.submit(Recipe)};
  2465. },
  2466. //Updates the number of ingredient inputs displayed for new recipes
  2467. changeIngredientCount: function(categories){
  2468. let newCount = document.getElementById("ingredientCount").value;
  2469. let ingredientsDiv = document.getElementById("recipeInputIngredients");
  2470. let template = document.getElementById("recipeInputIngredient").content.children[0];
  2471. let oldCount = ingredientsDiv.children.length;
  2472. if(newCount > oldCount){
  2473. let newDivs = newCount - oldCount;
  2474. for(let i = 0; i < newDivs; i++){
  2475. let newNode = template.cloneNode(true);
  2476. newNode.children[0].innnerText = `INGREDIENT ${i + oldCount}`;
  2477. newNode.children[2].children[0].value = 0;
  2478. for(let j = 0; j < categories.length; j++){
  2479. let optgroup = document.createElement("optgroup");
  2480. optgroup.label = categories[j].name;
  2481. for(let k = 0; k < categories[j].ingredients.length; k++){
  2482. let option = document.createElement("option");
  2483. option.innerText = categories[j].ingredients[k].ingredient.getNameAndUnit();
  2484. option.ingredient = categories[j].ingredients[k];
  2485. optgroup.appendChild(option);
  2486. }
  2487. newNode.children[1].children[0].appendChild(optgroup);
  2488. }
  2489. ingredientsDiv.appendChild(newNode);
  2490. }
  2491. for(let i = 0; i < newCount; i++){
  2492. ingredientsDiv.children[i].children[0].innerText = `INGREDIENT ${i + 1}`;
  2493. }
  2494. }else if(newCount < oldCount){
  2495. let newDivs = oldCount - newCount;
  2496. for(let i = 0; i < newDivs; i++){
  2497. ingredientsDiv.removeChild(ingredientsDiv.children[ingredientsDiv.children.length-1]);
  2498. }
  2499. }
  2500. },
  2501. submit: function(Recipe){
  2502. let newRecipe = {
  2503. name: document.getElementById("newRecipeName").value,
  2504. price: document.getElementById("newRecipePrice").value,
  2505. ingredients: []
  2506. }
  2507. let inputs = document.getElementById("recipeInputIngredients").children;
  2508. for(let i = 0; i < inputs.length; i++){
  2509. let sel = inputs[i].children[1].children[0];
  2510. let ingredient = sel.options[sel.selectedIndex].ingredient;
  2511. newRecipe.ingredients.push({
  2512. ingredient: ingredient.ingredient.id,
  2513. quantity: ingredient.convertToBase(inputs[i].children[2].children[0].value)
  2514. });
  2515. }
  2516. let loader = document.getElementById("loaderContainer");
  2517. loader.style.display = "flex";
  2518. fetch("/recipe/create", {
  2519. method: "POST",
  2520. headers: {
  2521. "Content-Type": "application/json;charset=utf-8"
  2522. },
  2523. body: JSON.stringify(newRecipe)
  2524. })
  2525. .then((response) => response.json())
  2526. .then((response)=>{
  2527. if(typeof(response) === "string"){
  2528. banner.createError(response);
  2529. }else{
  2530. let ingredients = [];
  2531. for(let i = 0; i < response.ingredients.length; i++){
  2532. for(let j = 0; j < merchant.ingredients.length; j++){
  2533. if(merchant.ingredients[j].ingredient.id === response.ingredients[i].ingredient){
  2534. ingredients.push({
  2535. ingredient: merchant.ingredients[j].ingredient,
  2536. quantity: response.ingredients[i].quantity
  2537. });
  2538. break;
  2539. }
  2540. }
  2541. }
  2542. merchant.addRecipe(new Recipe(
  2543. response._id,
  2544. response.name,
  2545. response.price,
  2546. ingredients,
  2547. merchant
  2548. ));
  2549. banner.createNotification("RECIPE CREATED");
  2550. controller.openStrand("recipeBook");
  2551. }
  2552. })
  2553. .catch((err)=>{
  2554. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  2555. })
  2556. .finally(()=>{
  2557. loader.style.display = "none";
  2558. });
  2559. },
  2560. }
  2561. module.exports = newRecipe;
  2562. },{}],16:[function(require,module,exports){
  2563. let newTransaction = {
  2564. display: function(Transaction){
  2565. let recipeList = document.getElementById("newTransactionRecipes");
  2566. let template = document.getElementById("createTransaction").content.children[0];
  2567. while(recipeList.children.length > 0){
  2568. recipeList.removeChild(recipeList.firstChild);
  2569. }
  2570. for(let i = 0; i < merchant.recipes.length; i++){
  2571. let recipeDiv = template.cloneNode(true);
  2572. recipeDiv.recipe = merchant.recipes[i];
  2573. recipeList.appendChild(recipeDiv);
  2574. recipeDiv.children[0].innerText = merchant.recipes[i].name;
  2575. }
  2576. document.getElementById("submitNewTransaction").onclick = ()=>{this.submit(Transaction)};
  2577. },
  2578. submit: function(Transaction){
  2579. let recipeDivs = document.getElementById("newTransactionRecipes");
  2580. let date = document.getElementById("newTransactionDate").valueAsDate;
  2581. if(date > new Date()){
  2582. banner.createError("CANNOT HAVE A DATE IN THE FUTURE");
  2583. return;
  2584. }
  2585. let data = {
  2586. date: date,
  2587. recipes: [],
  2588. ingredientUpdates: {}
  2589. };
  2590. for(let i = 0; i < recipeDivs.children.length; i++){
  2591. let quantity = recipeDivs.children[i].children[1].value;
  2592. const recipe = recipeDivs.children[i].recipe;
  2593. if(quantity !== "" && quantity > 0){
  2594. data.recipes.push({
  2595. recipe: recipe.id,
  2596. quantity: quantity
  2597. });
  2598. for(let j = 0; j < recipe.ingredients.length; j++){
  2599. let ingredient = recipe.ingredients[j];
  2600. if(data.ingredientUpdates[ingredient.ingredient.id]){
  2601. data.ingredientUpdates[ingredient.ingredient.id] += ingredient.convertToBase(ingredient.quantity) * quantity;
  2602. }else{
  2603. data.ingredientUpdates[ingredient.ingredient.id] = ingredient.convertToBase(ingredient.quantity) * quantity;
  2604. }
  2605. }
  2606. }else if(quantity < 0){
  2607. banner.createError("CANNOT HAVE NEGATIVE VALUES");
  2608. return;
  2609. }
  2610. }
  2611. if(data.recipes.length > 0){
  2612. let loader = document.getElementById("loaderContainer");
  2613. loader.style.display = "flex";
  2614. fetch("/transaction/create", {
  2615. method: "post",
  2616. headers: {
  2617. "Content-Type": "application/json;charset=utf-8"
  2618. },
  2619. body: JSON.stringify(data)
  2620. })
  2621. .then(response => response.json())
  2622. .then((response)=>{
  2623. if(typeof(response) === "string"){
  2624. banner.createError(response);
  2625. }else{
  2626. const transaction = new Transaction(
  2627. response._id,
  2628. response.date,
  2629. response.recipes,
  2630. merchant
  2631. );
  2632. merchant.addTransaction(transaction);
  2633. controller.openStrand("transactions");
  2634. banner.createNotification("TRANSACTION CREATED");
  2635. }
  2636. })
  2637. .catch((err)=>{
  2638. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  2639. })
  2640. .finally(()=>{
  2641. loader.style.display = "none";
  2642. });
  2643. }
  2644. }
  2645. }
  2646. module.exports = newTransaction;
  2647. },{}],17:[function(require,module,exports){
  2648. let orderDetails = {
  2649. display: function(order){
  2650. document.getElementById("removeOrderBtn").onclick = ()=>{this.remove(order)};
  2651. document.getElementById("orderDetailName").innerText = order.name;
  2652. document.getElementById("orderDetailDate").innerText = order.date.toLocaleDateString("en-US");
  2653. document.getElementById("orderDetailTax").innerText = `$${order.taxes.toFixed(2)}`;
  2654. document.getElementById("orderDetailFee").innerText = `$${order.fees.toFixed(2)}`;
  2655. let ingredientList = document.getElementById("orderIngredients");
  2656. while(ingredientList.children.length > 0){
  2657. ingredientList.removeChild(ingredientList.firstChild);
  2658. }
  2659. let template = document.getElementById("orderIngredient").content.children[0];
  2660. for(let i = 0; i < order.ingredients.length; i++){
  2661. let ingredientDiv = template.cloneNode(true);
  2662. const ingredient = order.ingredients[i].ingredient;
  2663. ingredientDiv.children[0].innerText = order.ingredients[i].ingredient.name;
  2664. ingredientDiv.children[2].innerText = `$${order.ingredients[i].cost().toFixed(2)}`;
  2665. const ingredientDisplay = ingredientDiv.children[1];
  2666. if(ingredient.specialUnit === "bottle"){
  2667. ingredientDisplay.innerText = `${order.ingredients[i].quantity.toFixed(2)} bottles x $${order.ingredients.pricePerUnit.toFixed(2)}`;
  2668. }else{
  2669. ingredientDisplay.innerText = `${order.ingredients[i].quantity.toFixed(2)} ${ingredient.unit.toUpperCase()} X $${order.ingredients[i].pricePerUnit.toFixed(2)}`;
  2670. }
  2671. ingredientList.appendChild(ingredientDiv);
  2672. }
  2673. document.getElementById("orderDetailTotal").innerText = `$${order.getIngredientCost().toFixed(2)}`;
  2674. document.querySelector("#orderTotalPrice p").innerText = `$${order.getTotalCost().toFixed(2)}`;
  2675. },
  2676. remove: function(order){
  2677. let loader = document.getElementById("loaderContainer");
  2678. loader.style.display = "flex";
  2679. fetch(`/order/${order.id}`, {
  2680. method: "DELETE",
  2681. headers: {
  2682. "Content-Type": "application/json;charset=utf-8"
  2683. }
  2684. })
  2685. .then((response) => response.json())
  2686. .then((response)=>{
  2687. if(typeof(response) === "string"){
  2688. banner.createError(response);
  2689. }else{
  2690. merchant.removeOrder(order);
  2691. controller.openStrand("orders");
  2692. banner.createNotification("ORDER REMOVED");
  2693. }
  2694. })
  2695. .catch((err)=>{
  2696. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  2697. })
  2698. .finally(()=>{
  2699. loader.style.display = "none";
  2700. });
  2701. }
  2702. }
  2703. module.exports = orderDetails;
  2704. },{}],18:[function(require,module,exports){
  2705. let orderFilter = {
  2706. display: function(Order){
  2707. let now = new Date();
  2708. let past = new Date(now.getFullYear(), now.getMonth(), now.getDate() - 30);
  2709. let ingredientList = document.getElementById("orderFilterIngredients");
  2710. document.getElementById("orderFilterDateFrom").valueAsDate = past;
  2711. document.getElementById("orderFilterDateTo").valueAsDate = now;
  2712. while(ingredientList.children.length > 0){
  2713. ingredientList.removeChild(ingredientList.firstChild);
  2714. }
  2715. for(let i = 0; i < merchant.ingredients.length; i++){
  2716. let element = document.createElement("div");
  2717. element.classList.add("choosable");
  2718. element.ingredient = merchant.ingredients[i].ingredient.id;
  2719. element.onclick = ()=>{this.toggleActive(element)};
  2720. ingredientList.appendChild(element);
  2721. let text = document.createElement("p");
  2722. text.innerText = merchant.ingredients[i].ingredient.name;
  2723. element.appendChild(text);
  2724. }
  2725. document.getElementById("orderFilterSubmit").onclick = ()=>{this.submit(Order)};
  2726. },
  2727. toggleActive: function(element){
  2728. if(element.classList.contains("active")){
  2729. element.classList.remove("active");
  2730. }else{
  2731. element.classList.add("active");
  2732. }
  2733. },
  2734. submit: function(Order){
  2735. let data = {
  2736. startDate: document.getElementById("orderFilterDateFrom").valueAsDate,
  2737. endDate: document.getElementById("orderFilterDateTo").valueAsDate,
  2738. ingredients: []
  2739. }
  2740. if(data.startDate >= data.endDate){
  2741. banner.createError("START DATE CACNNOT BE AFTER END DATE");
  2742. return;
  2743. }
  2744. let ingredients = document.getElementById("orderFilterIngredients").children;
  2745. for(let i = 0; i < ingredients.length; i++){
  2746. if(ingredients[i].classList.contains("active")){
  2747. data.ingredients.push(ingredients[i].ingredient);
  2748. }
  2749. }
  2750. if(data.ingredients.length === 0){
  2751. for(let i = 0; i < merchant.ingredients.length; i++){
  2752. data.ingredients.push(merchant.ingredients[i].ingredient.id);
  2753. }
  2754. }
  2755. let loader = document.getElementById("loaderContainer");
  2756. loader.style.display = "flex";
  2757. fetch("/order", {
  2758. method: "post",
  2759. headers: {
  2760. "Content-Type": "application/json;charset=utf-8"
  2761. },
  2762. body: JSON.stringify(data)
  2763. })
  2764. .then(response => response.json())
  2765. .then((response)=>{
  2766. let orders = [];
  2767. if(typeof(response) === "string"){
  2768. banner.createError(response);
  2769. }else if(response.length === 0){
  2770. banner.createError("NO ORDERS MATCH YOUR SEARCH");
  2771. }else{
  2772. let ingredients = [];
  2773. for(let i = 0; i < response.length; i++){
  2774. for(let j = 0; j < response[i].ingredients.length; j++){
  2775. for(let k = 0; k < merchant.ingredients.length; k++){
  2776. if(merchant.ingredients[k].ingredient.id === response[i].ingredients[j].ingredient){
  2777. ingredients.push({
  2778. ingredient: merchant.ingredients[k].ingredient,
  2779. quantity: response[i].ingredients[j].quantity,
  2780. pricePerUnit: response[i].ingredients[j].pricePerUnit
  2781. });
  2782. break;
  2783. }
  2784. }
  2785. }
  2786. orders.push(new Order(
  2787. response[i]._id,
  2788. response[i].name,
  2789. response[i].date,
  2790. response[i].taxes,
  2791. response[i].fees,
  2792. ingredients,
  2793. merchant
  2794. ));
  2795. }
  2796. }
  2797. controller.openStrand("orders", orders);
  2798. })
  2799. .catch((err)=>{
  2800. banner.createError("UNABLE TO DISPLAY THE ORDERS");
  2801. })
  2802. .finally(()=>{
  2803. loader.style.display = "none";
  2804. });
  2805. }
  2806. }
  2807. module.exports = orderFilter;
  2808. },{}],19:[function(require,module,exports){
  2809. let orders = {
  2810. orders: [],
  2811. display: async function(Order, newOrders){
  2812. if(newOrders){
  2813. this.orders = newOrders;
  2814. }
  2815. if(this.orders.length === 0){
  2816. this.orders = await this.getOrders(Order);
  2817. }
  2818. document.getElementById("orderFilterBtn").onclick = ()=>{controller.openSidebar("orderFilter")};
  2819. document.getElementById("newOrderBtn").onclick = ()=>{controller.openSidebar("newOrder")};
  2820. let orderList = document.getElementById("orderList");
  2821. let template = document.getElementById("order").content.children[0];
  2822. while(orderList.children.length > 0){
  2823. orderList.removeChild(orderList.firstChild);
  2824. }
  2825. for(let i = 0; i < this.orders.length; i++){
  2826. let orderDiv = template.cloneNode(true);
  2827. orderDiv.order = this.orders[i];
  2828. orderDiv.children[0].innerText = this.orders[i].name;
  2829. orderDiv.children[1].innerText = `${this.orders[i].ingredients.length} ingredients`;
  2830. orderDiv.children[2].innerText = this.orders[i].date.toLocaleDateString("en-US");
  2831. orderDiv.children[3].innerText = `$${this.orders[i].getTotalCost().toFixed(2)}`;
  2832. orderDiv.onclick = ()=>{controller.openSidebar("orderDetails", this.orders[i])};
  2833. orderList.appendChild(orderDiv);
  2834. }
  2835. },
  2836. getOrders: function(Order){
  2837. let loader = document.getElementById("loaderContainer");
  2838. loader.style.display = "flex";
  2839. return fetch("/order", {
  2840. method: "get",
  2841. headers: {
  2842. "Content-Type": "application/json;charset=utf-8"
  2843. }
  2844. })
  2845. .then(response => response.json())
  2846. .then((response)=>{
  2847. if(typeof(response) === "string"){
  2848. banner.createError(response);
  2849. }else{
  2850. let orders = [];
  2851. for(let i = 0; i < response.length; i++){
  2852. let ingredients = [];
  2853. for(let j = 0; j < response[i].ingredients.length; j++){
  2854. for(let k = 0; k < merchant.ingredients.length; k++){
  2855. if(merchant.ingredients[k].ingredient.id === response[i].ingredients[j].ingredient){
  2856. ingredients.push({
  2857. ingredient: merchant.ingredients[k].ingredient,
  2858. quantity: response[i].ingredients[j].quantity,
  2859. pricePerUnit: response[i].ingredients[j].pricePerUnit
  2860. });
  2861. break;
  2862. }
  2863. }
  2864. }
  2865. orders.push(new Order(
  2866. response[i]._id,
  2867. response[i].name,
  2868. response[i].date,
  2869. response[i].taxes,
  2870. response[i].fees,
  2871. ingredients,
  2872. merchant
  2873. ));
  2874. }
  2875. return orders;
  2876. }
  2877. })
  2878. .catch((err)=>{
  2879. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  2880. })
  2881. .finally(()=>{
  2882. loader.style.display = "none";
  2883. });
  2884. }
  2885. }
  2886. module.exports = orders;
  2887. },{}],20:[function(require,module,exports){
  2888. let recipeBook = {
  2889. isPopulated: false,
  2890. recipeDivList: [],
  2891. display: function(Recipe){
  2892. if(!this.isPopulated){
  2893. this.populateRecipes();
  2894. if(merchant.pos !== "none"){
  2895. document.getElementById("posUpdateRecipe").onclick = ()=>{this.posUpdate(Recipe)};
  2896. }
  2897. document.getElementById("recipeSearch").oninput = ()=>{this.search()};
  2898. document.getElementById("recipeClearButton").onclick = ()=>{this.clearSorting()};
  2899. this.populateRecipes();
  2900. this.isPopulated = true;
  2901. }
  2902. },
  2903. populateRecipes: function(){
  2904. let recipeList = document.getElementById("recipeList");
  2905. let template = document.getElementById("recipe").content.children[0];
  2906. this.recipeDivList = [];
  2907. while(recipeList.children.length > 0){
  2908. recipeList.removeChild(recipeList.firstChild);
  2909. }
  2910. for(let i = 0; i < merchant.recipes.length; i++){
  2911. let recipeDiv = template.cloneNode(true);
  2912. recipeDiv.onclick = ()=>{controller.openSidebar("recipeDetails", merchant.recipes[i])};
  2913. recipeDiv._name = merchant.recipes[i].name;
  2914. recipeList.appendChild(recipeDiv);
  2915. recipeDiv.children[0].innerText = merchant.recipes[i].name;
  2916. recipeDiv.children[1].innerText = `$${merchant.recipes[i].price.toFixed(2)}`;
  2917. this.recipeDivList.push(recipeDiv);
  2918. }
  2919. },
  2920. search: function(){
  2921. let input = document.getElementById("recipeSearch").value.toLowerCase();
  2922. let recipeList = document.getElementById("recipeList");
  2923. let clearButton = document.getElementById("recipeClearButton");
  2924. let matchingRecipes = [];
  2925. for(let i = 0; i < this.recipeDivList.length; i++){
  2926. if(this.recipeDivList[i]._name.toLowerCase().includes(input)){
  2927. matchingRecipes.push(this.recipeDivList[i]);
  2928. }
  2929. }
  2930. while(recipeList.children.length > 0){
  2931. recipeList.removeChild(recipeList.firstChild);
  2932. }
  2933. for(let i = 0; i < matchingRecipes.length; i++){
  2934. recipeList.appendChild(matchingRecipes[i]);
  2935. }
  2936. if(input === ""){
  2937. clearButton.style.display = "none";
  2938. }else{
  2939. clearButton.style.display = "inline";
  2940. }
  2941. },
  2942. clearSorting: function(){
  2943. document.getElementById("recipeSearch").value = "";
  2944. this.search();
  2945. },
  2946. posUpdate: function(Recipe){
  2947. let loader = document.getElementById("loaderContainer");
  2948. loader.style.display = "flex";
  2949. let url = `/recipe/update/${merchant.pos}`;
  2950. fetch(url, {
  2951. method: "GET",
  2952. headers: {
  2953. "Content-Type": "application/json;charset=utf-8"
  2954. },
  2955. })
  2956. .then(response => response.json())
  2957. .then((response)=>{
  2958. if(typeof(response) === "string"){
  2959. banner.createError(response);
  2960. }else{
  2961. for(let i = 0; i < response.new.length; i++){
  2962. const recipe = new Recipe(
  2963. response.new[i]._id,
  2964. response.new[i].name,
  2965. response.new[i].price,
  2966. merchant,
  2967. []
  2968. );
  2969. merchant.addRecipe(recipe);
  2970. }
  2971. for(let i = 0; i < response.removed.length; i++){
  2972. for(let j = 0; j < merchant.recipes.length; j++){
  2973. if(merchant.recipes[j].id === response.removed[i]._id){
  2974. merchant.removeRecipe(merchant.recipes[j]);
  2975. break;
  2976. }
  2977. }
  2978. }
  2979. this.display();
  2980. }
  2981. })
  2982. .catch((err)=>{
  2983. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  2984. })
  2985. .finally(()=>{
  2986. loader.style.display = "none";
  2987. });
  2988. }
  2989. }
  2990. module.exports = recipeBook;
  2991. },{}],21:[function(require,module,exports){
  2992. let recipeDetails = {
  2993. display: function(recipe){
  2994. document.getElementById("editRecipeBtn").onclick = ()=>{controller.openSidebar("editRecipe", recipe)};
  2995. document.getElementById("recipeName").innerText = recipe.name;
  2996. if(merchant.pos === "none"){
  2997. document.getElementById("removeRecipeBtn").onclick = ()=>{this.remove(recipe)};
  2998. }
  2999. //ingredient list
  3000. let ingredientsDiv = document.getElementById("recipeIngredientList");
  3001. while(ingredientsDiv.children.length > 0){
  3002. ingredientsDiv.removeChild(ingredientsDiv.firstChild);
  3003. }
  3004. let template = document.getElementById("recipeIngredient").content.children[0];
  3005. for(let i = 0; i < recipe.ingredients.length; i++){
  3006. let recipeDiv = template.cloneNode(true);
  3007. recipeDiv.children[0].innerText = recipe.ingredients[i].ingredient.name;
  3008. recipeDiv.children[1].innerText = `${recipe.ingredients[i].getQuantityDisplay()}`;
  3009. ingredientsDiv.appendChild(recipeDiv);
  3010. }
  3011. document.getElementById("recipePrice").children[1].innerText = `$${recipe.price.toFixed(2)}`;
  3012. },
  3013. remove: function(recipe){
  3014. let loader = document.getElementById("loaderContainer");
  3015. loader.style.display = "flex";
  3016. fetch(`/recipe/remove/${recipe.id}`, {
  3017. method: "delete"
  3018. })
  3019. .then((response) => response.json())
  3020. .then((response)=>{
  3021. if(typeof(response) === "string"){
  3022. banner.createError(response);
  3023. }else{
  3024. merchant.removeRecipe(recipe);
  3025. banner.createNotification("RECIPE REMOVED");
  3026. controller.openStrand("recipeBook");
  3027. }
  3028. })
  3029. .catch((err)=>{
  3030. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  3031. })
  3032. .finally(()=>{
  3033. loader.style.display = "none";
  3034. });
  3035. },
  3036. displayAddIngredient: function(){
  3037. let template = document.getElementById("addRecIngredient").content.children[0].cloneNode(true);
  3038. template.name = "new";
  3039. document.getElementById("recipeIngredientList").appendChild(template);
  3040. let categories = merchant.categorizeIngredients();
  3041. for(let i = 0; i < categories.length; i++){
  3042. let optGroup = document.createElement("optgroup");
  3043. optGroup.label = categories[i].name;
  3044. template.children[0].appendChild(optGroup);
  3045. for(let j = 0; j < categories[i].ingredients.length; j++){
  3046. let option = document.createElement("option");
  3047. option.innerText = `${categories[i].ingredients[j].ingredient.name} (${categories[i].ingredients[j].ingredient.unit})`;
  3048. option.ingredient = categories[i].ingredients[j].ingredient;
  3049. optGroup.appendChild(option);
  3050. }
  3051. }
  3052. }
  3053. }
  3054. module.exports = recipeDetails;
  3055. },{}],22:[function(require,module,exports){
  3056. let transactionDetails = {
  3057. transaction: {},
  3058. display: function(transaction){
  3059. this.transaction = transaction;
  3060. let recipeList = document.getElementById("transactionRecipes");
  3061. let template = document.getElementById("transactionRecipe").content.children[0];
  3062. let totalRecipes = 0;
  3063. let totalPrice = 0;
  3064. while(recipeList.children.length > 0){
  3065. recipeList.removeChild(recipeList.firstChild);
  3066. }
  3067. for(let i = 0; i < transaction.recipes.length; i++){
  3068. let recipe = template.cloneNode(true);
  3069. let price = transaction.recipes[i].quantity * transaction.recipes[i].recipe.price;
  3070. recipe.children[0].innerText = transaction.recipes[i].recipe.name;
  3071. recipe.children[1].innerText = `${transaction.recipes[i].quantity} x $${transaction.recipes[i].recipe.price.toFixed(2)}`;
  3072. recipe.children[2].innerText = `$${price.toFixed(2)}`;
  3073. recipeList.appendChild(recipe);
  3074. totalRecipes += transaction.recipes[i].quantity;
  3075. totalPrice += price;
  3076. }
  3077. let months = ["January", "Fecbruary", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
  3078. let days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
  3079. let dateString = `${days[transaction.date.getDay()]}, ${months[transaction.date.getMonth()]} ${transaction.date.getDate()}, ${transaction.date.getFullYear()}`;
  3080. document.getElementById("transactionDate").innerText = dateString;
  3081. document.getElementById("transactionTime").innerText = transaction.date.toLocaleTimeString();
  3082. document.getElementById("totalRecipes").innerText = `${totalRecipes} recipes`;
  3083. document.getElementById("totalPrice").innerText = `$${totalPrice.toFixed(2)}`;
  3084. if(merchant.pos === "none"){
  3085. document.getElementById("removeTransBtn").onclick = ()=>{this.remove()};
  3086. }
  3087. },
  3088. remove: function(){
  3089. let loader = document.getElementById("loaderContainer");
  3090. loader.style.display = "flex";
  3091. fetch(`/transaction/${this.transaction.id}`, {
  3092. method: "delete",
  3093. headers: {
  3094. "Content-Type": "application/json;charset=utf-8"
  3095. },
  3096. })
  3097. .then(response => response.json())
  3098. .then((response)=>{
  3099. if(typeof(response) === "string"){
  3100. banner.createError(response);
  3101. }else{
  3102. merchant.removeTransaction(this.transaction);
  3103. controller.openStrand("transactions");
  3104. banner.createNotification("TRANSACTION REMOVED");
  3105. }
  3106. })
  3107. .catch((err)=>{
  3108. banner.createError("SOMETHING WENT WRONG. PLEASE REFRESH THE PAGE");
  3109. })
  3110. .finally(()=>{
  3111. loader.style.display = "none";
  3112. });
  3113. },
  3114. }
  3115. module.exports = transactionDetails;
  3116. },{}],23:[function(require,module,exports){
  3117. let transactions = {
  3118. isPopulated: false,
  3119. display: function(Transaction){
  3120. if(!this.isPopulated){
  3121. let transactionsList = document.getElementById("transactionsList");
  3122. let dateDropdown = document.getElementById("dateDropdown");
  3123. let recipeDropdown = document.getElementById("recipeDropDown");
  3124. let template = document.getElementById("transaction").content.children[0];
  3125. let now = new Date();
  3126. let monthAgo = new Date(now.getFullYear(), now.getMonth() - 1, now.getDate());
  3127. document.getElementById("transFilDate1").valueAsDate = monthAgo;
  3128. document.getElementById("transFilDate2").valueAsDate = now;
  3129. dateDropdown.style.display = "none";
  3130. recipeDropdown.style.display = "none";
  3131. document.getElementById("dateFilterBtn").onclick = ()=>{this.toggleDropdown(dateDropdown)};
  3132. document.getElementById("recipeFilterBtn").onclick = ()=>{this.toggleDropdown(recipeDropdown)};
  3133. while(recipeDropdown.children.length > 0){
  3134. recipeDropdown.removeChild(recipeDropdown.firstChild);
  3135. }
  3136. for(let i = 0; i < merchant.recipes.length; i++){
  3137. let checkbox = document.createElement("input");
  3138. checkbox.type = "checkbox";
  3139. checkbox.recipe = merchant.recipes[i];
  3140. recipeDropdown.appendChild(checkbox);
  3141. let label = document.createElement("label");
  3142. label.innerText = merchant.recipes[i].name;
  3143. label.for = checkbox;
  3144. recipeDropdown.appendChild(label);
  3145. let brk = document.createElement("br");
  3146. recipeDropdown.appendChild(brk);
  3147. }
  3148. while(transactionsList.children.length > 0){
  3149. transactionsList.removeChild(transactionsList.firstChild);
  3150. }
  3151. let i = 0
  3152. const transactions = merchant.getTransactions();
  3153. while(i < transactions.length && i < 100){
  3154. let transactionDiv = template.cloneNode(true);
  3155. let transaction = transactions[i];
  3156. transactionDiv.onclick = ()=>{controller.openSidebar("transactionDetails", transaction)};
  3157. transactionsList.appendChild(transactionDiv);
  3158. let totalRecipes = 0;
  3159. let totalPrice = 0;
  3160. for(let j = 0; j < transactions[i].recipes.length; j++){
  3161. totalRecipes += transactions[i].recipes[j].quantity;
  3162. totalPrice += transactions[i].recipes[j].recipe.price * transactions[i].recipes[j].quantity;
  3163. }
  3164. transactionDiv.children[0].innerText = `${transactions[i].date.toLocaleDateString()} ${transactions[i].date.toLocaleTimeString()}`;
  3165. transactionDiv.children[1].innerText = `${totalRecipes} recipes sold`;
  3166. transactionDiv.children[2].innerText = `$${totalPrice.toFixed(2)}`;
  3167. i++;
  3168. }
  3169. document.getElementById("transFormSubmit").onsubmit = ()=>{this.submitFilter(Transaction)};
  3170. this.isPopulated = true;
  3171. }
  3172. },
  3173. submitFilter: function(Transaction){
  3174. event.preventDefault();
  3175. let data = {
  3176. startDate: document.getElementById("transFilDate1").valueAsDate,
  3177. endDate: document.getElementById("transFilDate2").valueAsDate,
  3178. recipes: []
  3179. }
  3180. if(data.startDate >= data.endDate){
  3181. banner.createError("START DATE CANNOT BE AFTER END DATE");
  3182. return;
  3183. }
  3184. let recipeChoices = document.getElementById("recipeDropDown");
  3185. for(let i = 0; i < recipeChoices.children.length; i += 3){
  3186. if(recipeChoices.children[i].checked){
  3187. data.recipes.push(recipeChoices.children[i].recipe.id);
  3188. }
  3189. }
  3190. if(data.recipes.length === 0){
  3191. for(let i = 0; i < merchant.recipes.length; i++){
  3192. data.recipes.push(merchant.recipes[i].id);
  3193. }
  3194. }
  3195. let loader = document.getElementById("loaderContainer");
  3196. loader.style.display = "flex";
  3197. fetch("/transaction", {
  3198. method: "POST",
  3199. headers: {
  3200. "Content-Type": "application/json;charset=utf-8"
  3201. },
  3202. body: JSON.stringify(data)
  3203. })
  3204. .then((response) => response.json())
  3205. .then((response)=>{
  3206. if(typeof(response) === "string"){
  3207. banner.createError(response);
  3208. }else{
  3209. let transactionList = document.getElementById("transactionsList");
  3210. let template = document.getElementById("transaction").content.children[0];
  3211. while(transactionList.children.length > 0){
  3212. transactionList.removeChild(transactionList.firstChild);
  3213. }
  3214. for(let i = 0; i < response.length; i++){
  3215. let transactionDiv = template.cloneNode(true);
  3216. let recipeCount = 0;
  3217. let cost = 0;
  3218. let transaction = new Transaction(
  3219. response[i]._id,
  3220. response[i].date,
  3221. response[i].recipes,
  3222. merchant
  3223. );
  3224. for(let j = 0; j < transaction.recipes.length; j++){
  3225. recipeCount += transaction.recipes[j].quantity;
  3226. cost += transaction.recipes[j].quantity * transaction.recipes[j].recipe.price;
  3227. }
  3228. transactionDiv.children[0].innerText = `${transaction.date.toLocaleDateString()} ${transaction.date.toLocaleTimeString()}`;
  3229. transactionDiv.children[1].innerText = `${recipeCount} recipes sold`;
  3230. transactionDiv.children[2].innerText = `$${(cost / 100).toFixed(2)}`;
  3231. transactionDiv.onclick = ()=>{controller.openSidebar("transactionDetails", transaction)};
  3232. transactionList.appendChild(transactionDiv);
  3233. }
  3234. }
  3235. })
  3236. .catch((err)=>{
  3237. banner.createError("UNABLE TO DISPLAY THE TRANSACTIONS");
  3238. })
  3239. .finally(()=>{
  3240. loader.style.display = "none";
  3241. });
  3242. },
  3243. toggleDropdown: function(dropdown){
  3244. event.preventDefault();
  3245. let polyline = dropdown.parentElement.children[0].children[1].children[0].children[0];
  3246. if(dropdown.style.display === "none"){
  3247. dropdown.style.display = "block";
  3248. polyline.setAttribute("points", "18 15 12 9 6 15");
  3249. }else{
  3250. dropdown.style.display = "none";
  3251. polyline.setAttribute("points", "6 9 12 15 18 9");
  3252. }
  3253. }
  3254. }
  3255. module.exports = transactions;
  3256. },{}]},{},[7]);