| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- let analytics = {
- isPopulated: false,
- recipesDisplay: false,
- transactionsByDate: [],
- display: async function(Transaction){
- if(!this.isPopulated){
- let to = new Date()
- let from = new Date(to.getFullYear(), to.getMonth() - 1, to.getDate());
- await this.getData(from, to, Transaction);
- let analSlider = document.getElementById("analSlider");
- analSlider.onclick = ()=>{this.switchDisplay()};
- analSlider.checked = false;
- document.getElementById("analRecipeContent").style.display = "none";
- this.populateButtons();
- this.displayIngredient(merchant.ingredients[0].ingredient);
- this.displayRecipe(merchant.recipes[0]);
-
- this.isPopulated = true;
- }
- },
- populateButtons: function(){
- let ingredientButtons = document.getElementById("analIngredientList");
- let recipeButtons = document.getElementById("analRecipeList");
- for(let i = 0; i < merchant.ingredients.length; i++){
- let button = document.createElement("button");
- button.innerText = merchant.ingredients[i].ingredient.name;
- button.classList.add("choosable");
- button.onclick = ()=>{this.displayIngredient(merchant.ingredients[i].ingredient)};
- ingredientButtons.appendChild(button);
- }
- for(let i = 0; i < merchant.recipes.length; i++){
- let button = document.createElement("button");
- button.innerText = merchant.recipes[i].name;
- button.classList.add("choosable");
- button.onclick = ()=>{this.displayRecipe(merchant.recipes[i])};
- recipeButtons.appendChild(button);
- }
- },
- getData: function(from, to, Transaction){
- let loader = document.getElementById("loaderContainer");
- loader.style.display = "flex";
- return fetch(`/transactions/${from.toISOString()}/${to.toISOString()}`)
- .then(response => response.json())
- .then((response)=>{
- if(typeof(response) === "string"){
- banner.createError(response);
- }else{
- this.transactionsByDate = [];
- for(let i = 0; i < response.length; i++){
- const date = new Date(response[i].date);
- let newDate = {
- date: date,
- transactions: []
- };
- for(let j = 0; j < response[i].transactions.length; j++){
- newDate.transactions.push(new Transaction(
- response[i].transactions[j]._id,
- date,
- response[i].transactions[j].recipes,
- merchant
- ));
- }
- this.transactionsByDate.push(newDate);
- }
- }
- })
- .catch((err)=>{
- banner.createError("UNABLE TO UPDATE THE PAGE");
- })
- .finally(()=>{
- loader.style.display = "none";
- });
- },
- displayIngredient: function(ingredient){
- //break down data into dates and quantities
- let dates = [];
- let quantities = [];
- for(let i = 0; i < this.transactionsByDate.length; i++){
- dates.push(this.transactionsByDate[i].date);
- let sum = 0;
- for(let j = 0; j < this.transactionsByDate[i].transactions.length; j++){
- let transactions = this.transactionsByDate[i].transactions[j];
- sum += transactions.getIngredientQuantity(ingredient);
- }
-
- quantities.push(sum);
- }
- //create and display the graph
- let trace = {
- x: dates,
- y: quantities,
- mode: "lines+markers",
- line: {
- color: "rgb(255, 99, 107)"
- }
- }
- const layout = {
- title: ingredient.name.toUpperCase(),
- xaxis: {title: "DATE"},
- yaxis: {title: `QUANTITY (${ingredient.unit.toUpperCase()})`}
- }
- Plotly.newPlot("itemUseGraph", [trace], layout);
- //display the boxes at the bottom
-
- },
- displayRecipe: function(recipe){
- //break down data into dates and quantities
- let dates = [];
- let quantities = [];
- for(let i = 0; i < this.transactionsByDate.length; i++){
- dates.push(this.transactionsByDate[i].date);
- let sum = 0;
- for(let j = 0; j < this.transactionsByDate[i].transactions.length; j++){
- const transaction = this.transactionsByDate[i].transactions[j];
- for(let k = 0; k < transaction.recipes.length; k++){
- if(transaction.recipes[k].recipe === recipe){
- sum += transaction.recipes[k].quantity;
- }
- }
- }
- quantities.push(sum);
- }
-
- //create and display the graph
- const trace = {
- x: dates,
- y: quantities,
- mode: "lines+markers",
- line: {
- color: "rgb(255, 99, 107)"
- }
- }
- const layout = {
- title: recipe.name.toUpperCase(),
- xaxis: {title: "DATE"},
- yaxis: {title: "QUANTITY"}
- }
- Plotly.newPlot("recipeSalesGraph", [trace], layout);
- //display the boxes at the bottom
- },
- switchDisplay: function(){
- const checkbox = document.getElementById("analSlider");
- let ingredient = document.getElementById("analIngredientContent");
- let recipe = document.getElementById("analRecipeContent");
- if(checkbox.checked === true){
- ingredient.style.display = "none";
- recipe.style.display = "flex";
- if(this.recipesDisplay === false){
- this.displayRecipe(merchant.recipes[0]);
- }
- }else{
- ingredient.style.display = "flex";
- recipe.style.display = "none";
- }
- }
- }
- module.exports = analytics;
|