{ "version": 3, "sources": ["../ui/app/components/directives/mn_main_spinner.js"], "sourcesContent": ["/*\nCopyright 2015-Present Couchbase, Inc.\n\nUse of this software is governed by the Business Source License included in\nthe file licenses/BSL-Couchbase.txt. As of the Change Date specified in that\nfile, in accordance with the Business Source License, use of this software will\nbe governed by the Apache License, Version 2.0, included in the file\nlicenses/APL2.txt.\n*/\n\nimport angular from 'angular';\nimport mnSpinner from \"./mn_spinner.js\";\nimport mnHelper from \"../mn_helper.js\";\n\nexport default \"mnMainSpinnerModule\";\n\nangular\n .module('mnMainSpinnerModule', [\n mnSpinner,\n mnHelper\n ])\n .component('mnMainSpinner', {\n bindings: {\n mnSpinnerValue: \"<\"\n },\n controller: [\"$scope\", \"mnHelper\", controller]\n });\n\nfunction controller($scope, mnHelper) {\n let initialized;\n let vm = this;\n\n this.$onChanges = onChanges;\n this.$onDestroy = onDestroy;\n\n function onChanges(v) {\n let value = v.mnSpinnerValue.currentValue;\n if (!initialized && value) {\n initialized = true;\n }\n if (!initialized) {\n return;\n }\n if (value) {\n mnHelper.mainSpinnerCounter.increase();\n } else {\n mnHelper.mainSpinnerCounter.decrease();\n }\n }\n\n function onDestroy() {\n if (initialized && vm.mnSpinnerValue) {\n mnHelper.mainSpinnerCounter.decrease();\n }\n }\n}\n"], "mappings": "0LAcA,GAAO,yBAAQ,sBAEf,UACG,OAAO,sBAAuB,CAC7B,mBACA,oBAED,UAAU,gBAAiB,CAC1B,SAAU,CACR,eAAgB,KAElB,WAAY,CAAC,SAAU,WAAY,cAGvC,oBAAoB,OAAQ,SAAU,CACpC,GAAI,aACA,GAAK,KAET,KAAK,WAAa,UAClB,KAAK,WAAa,UAElB,mBAAmB,EAAG,CACpB,GAAI,OAAQ,EAAE,eAAe,aAI7B,AAHI,CAAC,aAAe,OAClB,aAAc,IAEZ,EAAC,aAGL,CAAI,MACF,SAAS,mBAAmB,WAE5B,SAAS,mBAAmB,YAXvB,8BAeT,oBAAqB,CACnB,AAAI,aAAe,GAAG,gBACpB,SAAS,mBAAmB,WAFvB,8BAtBF", "names": [] }