{"version":3,"names":[],"mappings":"","sources":["combo/combo-controller.js"],"sourcesContent":["(function() {\r\n 'use strict';\r\n\r\n /**\r\n * @ngdoc object\r\n * @name combo.controller:ComboCtrl\r\n *\r\n * @description\r\n *\r\n */\r\n angular\r\n .module('combo')\r\n .controller('ComboCtrl', ComboCtrl);\r\n\r\n function ComboCtrl($scope, $rootScope, $mdDialog, MyOrder) {\r\n $rootScope.pageTitle = \"מבצעים\";\r\n\r\n $scope.selectedCombo = undefined;\r\n $scope.selectedItems = [];\r\n $scope.selectedPizzas = [];\r\n\r\n $scope.selectCombo = function(combo) {\r\n $scope.selectedCombo = combo;\r\n $scope.selectedCombo.ItemCombos.forEach(function(comboItem) {\r\n\r\n var itemsToPush = $scope.getArray(comboItem.Quantity);\r\n itemsToPush.forEach(function(item) {\r\n item.comboItemId = comboItem.Id;\r\n })\r\n\r\n $scope.selectedItems.push({\r\n items:itemsToPush\r\n });\r\n\r\n })\r\n $scope.selectedCombo.PizzaCombos.forEach(function(comboPizza, index) {\r\n $scope.selectedPizzas.push({\r\n items: [$scope.getArray(comboPizza.Quantity)]\r\n })\r\n for (var i = 0; i < comboPizza.Quantity; i++) {\r\n $scope.selectPizzaSize(comboPizza.SizeId);\r\n comboPizza.Pizza.comboPizzaId = comboPizza.Id;\r\n $scope.selectedPizzas[index].items[i] = angular.copy(comboPizza.Pizza);\r\n }\r\n })\r\n }\r\n\r\n\r\n\r\n $scope.getArray = function(num) {\r\n return new Array(num);\r\n }\r\n\r\n $scope.addItem = function(item, comboItemIndex, itemIndex, comboItemId) {\r\n //if ($scope.selectedCombo.items == undefined) $scope.selectedCombo.items = $scope.getArray($scope.selectedCombo.length);\r\n item.comboItemId = comboItemId;\r\n $scope.selectedItems[comboItemIndex].items[itemIndex] = angular.copy(item);\r\n }\r\n\r\n $scope.itemGarnishesDialog = function(item) {\r\n //var item = $scope.selectedItems[comboItemIndex].items[itemIndex];\r\n $scope.currentItem = item;\r\n if ($scope.currentItem.toppings == undefined) $scope.currentItem.toppings = [];\r\n\r\n $mdDialog.show({\r\n templateUrl: 'dialogs/menuGarnishes.html',\r\n scope: $scope,\r\n preserveScope: true\r\n });\r\n }\r\n\r\n //Item Garnishes functions\r\n $scope.selectGarnish = function(garn) {\r\n garn.selected = !garn.selected;\r\n }\r\n\r\n $scope.addItemWithGarnishesToOrder = function() {\r\n $scope.currentItem.Garnishes.forEach(function(garn) {\r\n if (garn.selected) {\r\n $scope.currentItem.toppings.push(garn);\r\n }\r\n });\r\n $scope.hideDialog();\r\n }\r\n\r\n //Pizza toppings function\r\n $scope.addPizzaToOrder = function() {\r\n $scope.hideDialog();\r\n }\r\n\r\n $scope.addPizzaToppings = function(pizza, comboPizzaId) {\r\n $scope.currentPizza = pizza;\r\n $scope.currentPizza.comboPizzaId = comboPizzaId;\r\n if ($scope.currentPizza.toppings == undefined) $scope.currentPizza.toppings = [];\r\n $scope.setPizzaToppingForEdit();\r\n $mdDialog.show({\r\n templateUrl: 'dialogs/pizzaDetails.html',\r\n scope: $scope,\r\n preserveScope: true\r\n });\r\n }\r\n\r\n\r\n\r\n $scope.selectQuarter = function(quarterNum, topping) {\r\n switch (quarterNum) {\r\n case 0:\r\n if (!topping.firstQuarter) {\r\n topping.firstQuarter = true;\r\n topping.totalPrice = $scope.removeOrAddToppingToPizza(topping.firstQuarter, topping.Id, 1, topping.currentPrice / 4, topping.Name);\r\n } else if (!topping.secondQuarter) {\r\n topping.secondQuarter = true;\r\n topping.totalPrice = $scope.removeOrAddToppingToPizza(topping.secondQuarter, topping.Id, 2, topping.currentPrice / 4, topping.Name);\r\n } else if (!topping.thirdQuarter) {\r\n topping.thirdQuarter = true;\r\n topping.totalPrice = $scope.removeOrAddToppingToPizza(topping.thirdQuarter, topping.Id, 3, topping.currentPrice / 4, topping.Name);\r\n } else if (!topping.forthQuarter) {\r\n topping.forthQuarter = true;\r\n topping.totalPrice = $scope.removeOrAddToppingToPizza(topping.forthQuarter, topping.Id, 4, topping.currentPrice / 4, topping.Name);\r\n }\r\n break;\r\n case 1:\r\n topping.firstQuarter = !topping.firstQuarter;\r\n topping.totalPrice = $scope.removeOrAddToppingToPizza(topping.firstQuarter, topping.Id, quarterNum, topping.currentPrice / 4, topping.Name);\r\n break;\r\n case 2:\r\n topping.secondQuarter = !topping.secondQuarter;\r\n topping.totalPrice = $scope.removeOrAddToppingToPizza(topping.secondQuarter, topping.Id, quarterNum, topping.currentPrice / 4, topping.Name)\r\n break;\r\n case 3:\r\n topping.thirdQuarter = !topping.thirdQuarter;\r\n topping.totalPrice = $scope.removeOrAddToppingToPizza(topping.thirdQuarter, topping.Id, quarterNum, topping.currentPrice / 4, topping.Name)\r\n break;\r\n case 4:\r\n topping.forthQuarter = !topping.forthQuarter;\r\n topping.totalPrice = $scope.removeOrAddToppingToPizza(topping.forthQuarter, topping.Id, quarterNum, topping.currentPrice / 4, topping.Name)\r\n break;\r\n default:\r\n }\r\n }\r\n\r\n $scope.removeOrAddToppingToPizza = function(isAdd, toppingId, quarterNum, quarterPrice, toppingName) {\r\n if (isAdd) {\r\n var topping = _.find($scope.currentPizza.toppings, function(e) {\r\n return e.toppingId == toppingId\r\n })\r\n if (topping != undefined) {\r\n topping.quarterNums.push(quarterNum)\r\n topping.totalPrice = quarterPrice * topping.quarterNums.length;\r\n return quarterPrice * topping.quarterNums.length;\r\n } else {\r\n $scope.currentPizza.toppings.push({\r\n toppingId: toppingId,\r\n quarterNums: [quarterNum],\r\n totalPrice: quarterPrice,\r\n Name: toppingName,\r\n quarterPrice: quarterPrice\r\n })\r\n return quarterPrice;\r\n }\r\n\r\n } else {\r\n var topping = _.find($scope.currentPizza.toppings, function(e) {\r\n return e.toppingId == toppingId\r\n })\r\n var index = _.findIndex(topping.quarterNums, function(e) {\r\n return e == quarterNum\r\n });\r\n if (index >= 0) {\r\n topping.quarterNums.splice(index, 1);\r\n }\r\n topping.totalPrice = quarterPrice * topping.quarterNums.length;\r\n return topping.totalPrice;\r\n }\r\n }\r\n\r\n $scope.setPizzaToppingForEdit = function() {\r\n $scope.currentPizza.toppings.forEach(function(top) {\r\n top.quarterNums.forEach(function(quarterNum) {\r\n var originalTopping = _.find($scope.pizzaToppings, function(e) {\r\n return e.Id == top.toppingId\r\n });\r\n switch (quarterNum) {\r\n case 1:\r\n originalTopping.firstQuarter = true;\r\n break;\r\n case 2:\r\n originalTopping.secondQuarter = true;\r\n break;\r\n case 3:\r\n originalTopping.thirdQuarter = true;\r\n break;\r\n case 4:\r\n originalTopping.forthQuarter = true;\r\n break;\r\n default:\r\n\r\n }\r\n });\r\n })\r\n }\r\n\r\n $scope.selectPizzaSize = function(sizeId) {\r\n $scope.pizzaToppings.forEach(function(topping) {\r\n var toppingPrice = _.find(topping.ToppingPrices, function(e) {\r\n return e.PizzaSizeId == sizeId\r\n });\r\n topping.currentPrice = toppingPrice.Price;\r\n var quarterPrice = toppingPrice.Price / 4;\r\n\r\n // $scope.currentPizza.toppings.forEach(function(top) {\r\n // // top.totalPrice = quarterPrice * top.quarterNums.length;\r\n // //if (top.toppingId == topping.Id) topping.totalPrice = quarterPrice * top.quarterNums.length;\r\n // top.quarterPrice = quarterPrice;\r\n // })\r\n\r\n })\r\n }\r\n\r\n\r\n $scope.hideDialog = function() {\r\n $scope.pizzaToppings.forEach(function(top) {\r\n top.firstQuarter = false;\r\n top.secondQuarter = false;\r\n top.thirdQuarter = false;\r\n top.forthQuarter = false;\r\n top.currentCalcPrice = undefined;\r\n top.totalPrice = undefined;\r\n })\r\n $mdDialog.hide();\r\n }\r\n\r\n $scope.addComboToOrder = function(valid) {\r\n if (!valid) return;\r\n MyOrder.addComboToOrder($scope.selectedCombo, $scope.selectedPizzas, $scope.selectedItems);\r\n $scope.selectedCombo = undefined;\r\n }\r\n }\r\n}());\r\n"],"file":"combo-controller.js"}