{"version":3,"names":[],"mappings":"","sources":["category/category-controller.js"],"sourcesContent":["(function() {\r\n 'use strict';\r\n\r\n /**\r\n * @ngdoc object\r\n * @name category.controller:CategoryCtrl\r\n *\r\n * @description\r\n *\r\n */\r\n angular\r\n .module('category')\r\n .controller('CategoryCtrl', CategoryCtrl);\r\n\r\n function CategoryCtrl($scope, $stateParams, $state, $timeout, $rootScope, $mdDialog, Category, MyOrder) {\r\n\r\n $rootScope.pageTitle = \"תפריט הזמנות\";\r\n $scope.categoryId = $stateParams.categoryId;\r\n\r\n $scope.currentCategoryItems = [];\r\n\r\n\r\n $scope.changeParams = function(id) {\r\n $state.go('category', {\r\n categoryId: id\r\n }, {\r\n notify: false\r\n });\r\n $scope.categoryId = id;\r\n $scope.setCurrentItems();\r\n $scope.slideUp();\r\n }\r\n\r\n $scope.setCurrentItems = function() {\r\n if ($scope.categoryId == 0) { //pizza\r\n $scope.currentCategoryItems = $scope.menu.pizzas;\r\n } else if ($scope.categoryId == -1) { //favorites\r\n $scope.currentCategoryItems = []; //TODO\r\n } else {\r\n $scope.currentCategoryItems = _.find($scope.menu.categories, function(e) {\r\n return e.Id == $scope.categoryId\r\n }).Items;\r\n }\r\n }\r\n\r\n $scope.initCategoriesCarousel = function() {\r\n $timeout(function() {\r\n $(\".categories-menu\").slick({\r\n infinite: false,\r\n slidesToShow: 6,\r\n slidesToScroll: 6,\r\n arrows: false\r\n })\r\n }, 100);\r\n }();\r\n\r\n $scope.addItemToOrder = function(item) {\r\n MyOrder.addItemToOrder(angular.copy(item));\r\n }\r\n\r\n\r\n //-------------------------------------------------------------------\r\n //--------------------Order item functions---------------------------\r\n //-------------------------------------------------------------------\r\n $scope.currentItem = {};\r\n $scope.selectItem = function(item) {\r\n $scope.currentItem = angular.copy(item);\r\n $scope.currentItem.toppings = [];\r\n $scope.currentItem.amount = 1;\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 $scope.selectGarnish = function(garn) {\r\n garn.selected = !garn.selected;\r\n }\r\n\r\n $scope.addItemWithGarnishesToOrder = function() {\r\n var garnishesPrice = 0;\r\n $scope.currentItem.Garnishes.forEach(function(garn) {\r\n if (garn.selected) {\r\n garn.selected = false;\r\n $scope.currentItem.toppings.push(garn);\r\n garnishesPrice += garn.Price;\r\n }\r\n });\r\n $scope.currentItem.Price += garnishesPrice;\r\n MyOrder.addItemToOrder($scope.currentItem);\r\n $scope.hideDialog();\r\n $scope.slideUp();\r\n }\r\n\r\n //-------------------------------------------------------------------\r\n //--------------------Order Pizza functions--------------------------\r\n //-------------------------------------------------------------------\r\n\r\n $scope.selectPizza = function(pizza) {\r\n $scope.currentPizza = pizza;\r\n $scope.currentPizza.amount = 1;\r\n $scope.currentPizza.toppings = [];\r\n if (pizza.PizzaPrices.length > 0) {\r\n $scope.selectPizzaSize(pizza.PizzaPrices[0]);\r\n }\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 $scope.selectPizzaSize = function(pizzaPrice) {\r\n $scope.currentPizza.pizzaPrice = pizzaPrice;\r\n $scope.pizzaToppings.forEach(function(topping) {\r\n var toppingPrice = _.find(topping.ToppingPrices, function(e) {\r\n return e.PizzaSizeId == pizzaPrice.PizzaSizeId\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 })\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 })\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.amountChanged = function(pizza) {\r\n if (pizza.amount == undefined) return;\r\n if (pizza.amount > 50) pizza.amount = 50;\r\n if (pizza.amount < 1) pizza.amount = 1;\r\n }\r\n\r\n $scope.addOne = function(pizza) {\r\n if (pizza.amount < 50) pizza.amount = pizza.amount + 1;\r\n if (pizza.amount == undefined) pizza.amount = 1;\r\n }\r\n $scope.subOne = function(pizza) {\r\n if (pizza.amount > 1) pizza.amount = pizza.amount - 1;\r\n if (pizza.amount == undefined) pizza.amount = 1;\r\n }\r\n\r\n $scope.addPizzaToOrder = function() {\r\n MyOrder.addPizzaToOrder(angular.copy($scope.currentPizza));\r\n $scope.hideDialog();\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 $rootScope.$on(\"menuReady\", $scope.setCurrentItems);\r\n\r\n if ($scope.menu != undefined) $scope.setCurrentItems();\r\n\r\n }\r\n}());\r\n"],"file":"category-controller.js"}