{"version":3,"sources":["controllers/products-controller.js"],"names":["angular","module","controller","$scope","$location","$timeout","api","query","c","config","filterType","key","init","loading","search","_getProducts","onFilterChange","$event","p","queryString","filterKey","get","then","response","products","Products","length","noProducts","directive","restrict","replace","transclude","templateUrl","scope","isLoading"],"mappings":";;;;;;;;AAAC,aAAY;AACTA,EAAAA,OAAO,CAACC,MAAR,CAAe,cAAf,EAA+B,CAAC,WAAD,CAA/B,EACKC,UADL,CACgB,cADhB,EACgC,CAAC,QAAD,EAAW,WAAX,EAAwB,UAAxB,EAAoC,WAApC,EACxB,UAACC,MAAD,EAASC,SAAT,EAAoBC,QAApB,EAA8BC,GAA9B,EAAsC;AAElCH,IAAAA,MAAM,CAACI,KAAP,GAAe,EAAf;AACAJ,IAAAA,MAAM,CAACI,KAAP,CAAaC,CAAb,GAAiB,EAAjB;AAGA,QAAMC,MAAM,GAAG;AACXC,MAAAA,UAAU,EAAE,UADD;AAEXC,MAAAA,GAAG,EAAE;AAFM,KAAf;;AAKAR,IAAAA,MAAM,CAACS,IAAP,GAAc,YAAY;AACtBT,MAAAA,MAAM,CAACU,OAAP,GAAiB,IAAjB;AAEAV,MAAAA,MAAM,CAACI,KAAP,qBAAoBH,SAAS,CAACU,MAAV,EAApB;;AAEAC,MAAAA,YAAY,CAACZ,MAAM,CAACI,KAAR,EAAeE,MAAf,CAAZ;AACH,KAND;;AASAN,IAAAA,MAAM,CAACa,cAAP,GAAwB,UAACC,MAAD,EAAY;AAChCd,MAAAA,MAAM,CAACU,OAAP,GAAiB,IAAjB;AAEAV,MAAAA,MAAM,CAACI,KAAP,CAAaW,CAAb,GAAiBf,MAAM,CAACgB,WAAxB;;AAEAJ,MAAAA,YAAY,CAACZ,MAAM,CAACI,KAAR,EAAeE,MAAf,CAAZ;AACH,KAND;;AAUA,aAASM,YAAT,CAAsBK,SAAtB,EAAiCX,MAAjC,EAAyC;AACrCH,MAAAA,GAAG,CAACe,GAAJ,CAAQD,SAAR,EAAmBX,MAAnB,EAA2Ba,IAA3B,CAAgC,UAAAC,QAAQ,EAAI;AAExCpB,QAAAA,MAAM,CAACqB,QAAP,GAAkBD,QAAQ,CAACE,QAA3B;;AACA,YAAItB,MAAM,CAACqB,QAAP,CAAgBE,MAAhB,IAA0B,CAA9B,EAAiC;AAC7BvB,UAAAA,MAAM,CAACwB,UAAP,GAAoB,IAApB;AACH;;AAEDtB,QAAAA,QAAQ,CAAC,YAAY;AACjBF,UAAAA,MAAM,CAACU,OAAP,GAAiB,KAAjB;AACH,SAFO,EAEL,GAFK,CAAR;AAGH,OAVD;AAWH;AAEJ,GA7CuB,CADhC,EAgDKe,SAhDL,CAgDe,UAhDf,EAgD2B,CACnB,YAAY;AACR,WAAO;AACHC,MAAAA,QAAQ,EAAE,GADP;AAEHC,MAAAA,OAAO,EAAE,IAFN;AAGHC,MAAAA,UAAU,EAAE,KAHT;AAIHC,MAAAA,WAAW,EAAE,8CAJV;AAKHC,MAAAA,KAAK,EAAE;AACHT,QAAAA,QAAQ,EAAE,WADP;AAEHU,QAAAA,SAAS,EAAE;AAFR;AALJ,KAAP;AAUH,GAZkB,CAhD3B;AA8DH,CA/DA,GAAD","sourcesContent":["(function () {\r\n angular.module('productsCtrl', ['filterApi'])\r\n .controller('productsCtrl', ['$scope', '$location', '$timeout', 'filterApi',\r\n ($scope, $location, $timeout, api) => {\r\n\r\n $scope.query = {};\r\n $scope.query.c = '';\r\n\r\n\r\n const config = {\r\n filterType: 'products',\r\n key: 'p'\r\n };\r\n\r\n $scope.init = function () {\r\n $scope.loading = true;\r\n\r\n $scope.query = { ...$location.search() };\r\n\r\n _getProducts($scope.query, config);\r\n }\r\n \r\n \r\n $scope.onFilterChange = ($event) => {\r\n $scope.loading = true;\r\n\r\n $scope.query.p = $scope.queryString;\r\n\r\n _getProducts($scope.query, config); \r\n }\r\n\r\n \r\n\r\n function _getProducts(filterKey, config) {\r\n api.get(filterKey, config).then(response => {\r\n\r\n $scope.products = response.Products;\r\n if ($scope.products.length == 0) {\r\n $scope.noProducts = true;\r\n }\r\n\r\n $timeout(function () {\r\n $scope.loading = false;\r\n }, 200);\r\n });\r\n }\r\n \r\n }\r\n ])\r\n .directive('products', [\r\n function () {\r\n return {\r\n restrict: 'A',\r\n replace: true,\r\n transclude: false,\r\n templateUrl: '/Assets/ngtemplates/filterable-products.html',\r\n scope: {\r\n products: '=products',\r\n isLoading: '='\r\n }\r\n }\r\n }\r\n ])\r\n}());"],"file":"../../controllers/products-controller.js"}