{"version":3,"sources":["Honeywell.ClientModel.AppsController.ts"],"names":["AppsController","prototype","loadInfo","renderAppsList","items","totalItemCount","length","$","show","each","index","ImageUrl","window","location","protocol","replace","data","Items","Honeywell_ClientModel_TemplateService_1","TemplateService","getTemplate","then","template","document","getElementById","innerHTML","pc","Honeywell_Clientmodel_PaginationController_1","PaginationController","loadPagination","handleError","reason","html","exports","on","e"],"mappings":"qMAQA,IAEAA,GAAA,WAAA,QAAAA,MAsCA,MAnCIA,GAAAC,UAAAC,SAAA,aAIAF,EAAAC,UAAAE,eAAA,SAAeC,EAAcC,GACrBD,EAAME,OAAS,IACfC,EAAE,oBAAoBC,OACtBD,EAAEH,GAAOK,KAAK,SAAUC,GACpBN,EAAMM,GAAOC,SAAwC,WAA7BC,OAAOC,SAASC,SAAwBV,EAAMM,GAAOC,SAASI,QAAQ,QAAS,UAAYX,EAAMM,GAAOC,WAGxI,IAAIK,IACAC,MAAOb,EAGX,IAAIc,GAAAC,gBAAgB,iBAAiBC,cAAcC,KAAK,SAAUC,GAE9DC,SAASC,eAAe,mBAAmBC,UAAYH,EAASN,EAEhE,IAAIU,EAKAA,GAAK,GAAIC,GAAAC,qBAAqBvB,MAElCqB,EAAGG,eAAe,WAK1B7B,EAAAC,UAAA6B,YAAA,SAAYC,GACRxB,EAAE,sBAAsByB,KAAK,6BAA+BD,EAAS,UAG7E/B,IAtCaiC,GAAAjC,eAAAA,EAwCbO,EAAEgB,UAAUW,GAAG,kBAAmB,SAAUC,IAC7B,GAAInC,IACVE","file":"Honeywell.ClientModel.AppsController.js","sourcesContent":["///<reference path=\"typings/handlebar/handlebars.d.ts\"/>\r\n/// <reference path=\"honeywell.clientmodel.paginationcontroller.ts\" />\r\nimport {DataService} from \"./Honeywell.ClientModel.DataService\";\r\nimport {TemplateService} from \"./Honeywell.ClientModel.TemplateService\";\r\nimport {MainHelper} from \"./Honeywell.ClientModel.MainHelper\";\r\nimport {PaginationController} from \"./Honeywell.Clientmodel.PaginationController\";\r\nimport * as Q from \"q\";\r\n\r\nvar currentCategory: string = \"\";\r\n\r\nexport class AppsController {\r\n\r\n\r\n    loadInfo() {\r\n\r\n    }\r\n\r\n    renderAppsList(items: any[], totalItemCount: number) {\r\n        if (items.length > 0) {\r\n            $('#js-load-info-li').show();\r\n            $(items).each(function (index) {\r\n                items[index].ImageUrl = window.location.protocol === \"https:\" ? items[index].ImageUrl.replace('http:', 'https:') : items[index].ImageUrl;\r\n            });\r\n        }\r\n        var data = {\r\n            Items: items\r\n        }\r\n\r\n        new TemplateService(\"tpl_Apps.html\").getTemplate().then(function (template: any) {\r\n\r\n            document.getElementById('js-apps-content').innerHTML = template(data);\r\n\r\n            var pc;\r\n            if (currentCategory) {\r\n                pc = new PaginationController(totalItemCount, [\"category=\" + currentCategory]);\r\n            }\r\n            else {\r\n                pc = new PaginationController(totalItemCount, []);\r\n            }\r\n            pc.loadPagination('Apps');\r\n        });\r\n\r\n    }\r\n\r\n    handleError(reason: string) {\r\n        $('#js-drawer-content').html(\"<h3>Failed To Load on page\" + reason + \"</h3>\");\r\n    }\r\n\r\n}\r\n\r\n$(document).on('SPContextLoaded', function (e) {\r\n    var apps = new AppsController();\r\n    apps.loadInfo();\r\n});\r\n\r\n\r\n"]}