| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- const Transaction = require("./Transaction");
- let analytics = {
- transactions: {},
- ingredient: {},
- display: function(){
- console.time("display");
- let startDate = new Date();
- startDate.setMonth(startDate.getMonth() - 1);
- const dateIndices = controller.transactionIndices(merchant.transactions, startDate);
- this.transactions = merchant.transactions.slice(dateIndices[0], dateIndices[1]);
- const itemsList = document.getElementById("itemsList");
- let now = new Date();
- let lastMonth = new Date(now.getFullYear(), now.getMonth() - 1, now.getDate(), now.getHours(), now.getMinutes());
- document.getElementById("analStartDate").valueAsDate = lastMonth;
- document.getElementById("analEndDate").valueAsDate = now;
- document.getElementById("analDateBtn").onclick = ()=>{this.changeDates()};
- while(itemsList.children.length > 0){
- itemsList.removeChild(itemsList.firstChild);
- }
- for(let i = 0; i < merchant.ingredients.length; i++){
- let li = document.createElement("li");
- li.classList.add("itemButton");
- li.item = merchant.ingredients[i];
- li.innerText = merchant.ingredients[i].ingredient.name;
- li.onclick = ()=>{
- const itemsList = document.getElementById("itemsList");
- for(let i = 0; i < itemsList.children.length; i++){
- itemsList.children[i].classList.remove("analItemActive");
- }
- li.classList.add("analItemActive");
- this.ingredient = merchant.ingredients[i];
- this.ingredientDisplay();
- };
- itemsList.appendChild(li);
- }
- console.timeEnd("display");
- },
- ingredientDisplay: function(){
- console.time("load");
- //Get list of recipes that contain the ingredient
- let containingRecipes = [];
- for(let i = 0; i < merchant.recipes.length; i++){
- for(let j = 0; j < merchant.recipes[i].ingredients.length; j++){
- if(merchant.recipes[i].ingredients[j].ingredient === this.ingredient.ingredient){
- containingRecipes.push({
- recipe: merchant.recipes[i],
- quantity: merchant.recipes[i].ingredients[j].quantity
- });
- break;
- }
- }
- }
- //Create Graph
- let quantities = [];
- let dates = [];
- let currentDate = this.transactions[0].date;
- let currentQuantity = 0;
- for(let i = 0; i < this.transactions.length; i++){
- if(currentDate.getDate() !== this.transactions[i].date.getDate()){
- quantities.push(this.ingredient.ingredient.convert(currentQuantity));
- dates.push(currentDate);
- currentQuantity = 0;
- currentDate = this.transactions[i].date;
- }
- for(let j = 0; j < this.transactions[i].recipes.length; j++){
- for(let k = 0; k < containingRecipes.length; k++){
- if(this.transactions[i].recipes[j].recipe === containingRecipes[k].recipe){
- for(let l = 0; l < this.transactions[i].recipes[j].recipe.ingredients.length; l++){
- const transIngredient = this.transactions[i].recipes[j].recipe.ingredients[l];
- if(transIngredient.ingredient === this.ingredient.ingredient){
- currentQuantity += transIngredient.quantity * this.transactions[i].recipes[j].quantity;
- break;
- }
- }
- }
- }
- }
- }
- let trace = {
- x: dates,
- y: quantities,
- mode: "lines+markers"
- }
- const layout = {
- title: this.ingredient.ingredient.name,
- xaxis: {
- title: "DATE"
- },
- yaxis: {
- title: `QUANTITY (${this.ingredient.ingredient.unit.toUpperCase()})`,
- }
- }
- Plotly.newPlot("itemUseGraph", [trace], layout);
- //Create use cards
- let sum = 0;
- let max = 0;
- let min = quantities[0];
- for(let i = 0; i < quantities.length; i++){
- sum += quantities[i];
- if(quantities[i] > max){
- max = quantities[i];
- }else if(quantities[i] < min){
- min = quantities[i];
- }
- }
- document.getElementById("analMinUse").innerText = `${min.toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analAvgUse").innerText = `${(sum / quantities.length).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analMaxUse").innerText = `${max.toFixed(2)} ${this.ingredient.ingredient.unit}`;
- let dayUse = [0, 0, 0, 0, 0, 0, 0];
- let dayCount = [0, 0, 0, 0, 0, 0, 0];
- for(let i = 0; i < quantities.length; i++){
- dayUse[dates[i].getDay()] += quantities[i];
- dayCount[dates[i].getDay()]++;
- }
- document.getElementById("analDayOne").innerText = `${(dayUse[0] / dayCount[0]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analDayTwo").innerText = `${(dayUse[1] / dayCount[1]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analDayThree").innerText = `${(dayUse[2] / dayCount[2]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analDayFour").innerText = `${(dayUse[3] / dayCount[3]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analDayFive").innerText = `${(dayUse[4] / dayCount[4]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analDaySix").innerText = `${(dayUse[5] / dayCount[5]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- document.getElementById("analDaySeven").innerText = `${(dayUse[6] / dayCount[6]).toFixed(2)} ${this.ingredient.ingredient.unit}`;
- console.timeEnd("load");
- },
- changeDates: function(){
- let dates = {
- from: document.getElementById("analStartDate").valueAsDate,
- to: document.getElementById("analEndDate").valueAsDate
- }
- if(dates.from > dates.to || dates.from === "" || dates.to === "" || dates.to > new Date()){
- banner.createError("INVALID DATE");
- return;
- }
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- fetch("/transaction/retrieve", {
- method: "post",
- headers: {
- "Content-Type": "application/json;charset=utf-8"
- },
- body: JSON.stringify(dates)
- })
- .then((response)=>response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response.data);
- }else{
- this.transactions = [];
- for(let i = 0; i < response.length; i++){
- this.transactions.push(new Transaction(
- response[i]._id,
- new Date(response[i].date),
- response[i].recipes,
- merchant
- ));
- }
-
- this.ingredientDisplay();
- }
- })
- .catch((err)=>{
- banner.createError("ERROR: UNABLE TO DISPLAY THE DATA");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- }
- }
- module.exports = analytics;
|