(function ($, window) { function deletePlugin(page, uniqueid, name) { var msg = Globalize.translate('UninstallPluginConfirmation').replace("{0}", name); require(['confirm'], function (confirm) { confirm(msg, Globalize.translate('UninstallPluginHeader')).then(function () { Dashboard.showLoadingMsg(); ApiClient.uninstallPlugin(uniqueid).then(function () { reloadList(page); }); }); }); } function showNoConfigurationMessage() { Dashboard.alert({ message: Globalize.translate('NoPluginConfigurationMessage') }); } function showConnectMessage() { Dashboard.alert({ message: Globalize.translate('MessagePluginConfigurationRequiresLocalAccess') }); } function getPluginCardHtml(plugin, pluginConfigurationPages) { var configPage = $.grep(pluginConfigurationPages, function (pluginConfigurationPage) { return pluginConfigurationPage.PluginId == plugin.Id; })[0]; var html = ''; var isConnectMode = Dashboard.isConnectMode(); var configPageUrl = configPage ? Dashboard.getConfigurationPageUrl(configPage.Name) : null; var href = configPage && !isConnectMode ? configPageUrl : null; html += "
"; html += '
'; html += '
'; html += '
'; if (href) { html += ''; } else if (!configPageUrl) { html += '
'; } else if (isConnectMode) { html += '
'; } else { html += '"; html += '
'; html += '
'; html += ''; html += "
"; html += "
"; html += plugin.Name; html += "
"; html += "
"; html += plugin.Version; html += "
"; // cardFooter html += "
"; // cardBox html += "
"; // card html += "
"; return html; } function renderPlugins(page, plugins, showNoPluginsMessage) { ApiClient.getJSON(ApiClient.getUrl("dashboard/configurationpages") + "?pageType=PluginConfiguration").then(function (configPages) { populateList(page, plugins, configPages, showNoPluginsMessage); }); } function populateList(page, plugins, pluginConfigurationPages, showNoPluginsMessage) { plugins = plugins.sort(function (plugin1, plugin2) { return (plugin1.Name) > (plugin2.Name) ? 1 : -1; }); var html = plugins.map(function (p) { return getPluginCardHtml(p, pluginConfigurationPages); }).join(''); if (!plugins.length) { if (showNoPluginsMessage) { html += '
'; if (AppInfo.enableAppStorePolicy) { html += '

' + Globalize.translate('MessageNoPluginsDueToAppStore') + '

'; } else { html += '

' + Globalize.translate('MessageNoPluginsInstalled') + '

'; html += '

'; html += Globalize.translate('BrowsePluginCatalogMessage'); html += '

'; } html += '
'; } $('.installedPlugins', page).html(html); } else { var elem = $('.installedPlugins', page).html(html); $('.noConfigPluginCard', elem).on('click', function () { showNoConfigurationMessage(); }); $('.connectModePluginCard', elem).on('click', function () { showConnectMessage(); }); $('.btnCardMenu', elem).on('click', function () { showPluginMenu(page, this); }); } Dashboard.hideLoadingMsg(); } function showPluginMenu(page, elem) { var card = $(elem).parents('.card'); var id = card.attr('data-id'); var name = card.attr('data-name'); var configHref = $('.cardContent', card).attr('href'); var menuItems = []; if (configHref) { menuItems.push({ name: Globalize.translate('ButtonSettings'), id: 'open', ironIcon: 'mode-edit' }); } menuItems.push({ name: Globalize.translate('ButtonUninstall'), id: 'delete', ironIcon: 'delete' }); require(['actionsheet'], function (actionsheet) { actionsheet.show({ items: menuItems, positionTo: elem, callback: function (resultId) { switch (resultId) { case 'open': Dashboard.navigate(configHref); break; case 'delete': deletePlugin(page, id, name); break; default: break; } } }); }); } function reloadList(page) { Dashboard.showLoadingMsg(); ApiClient.getInstalledPlugins().then(function (plugins) { renderPlugins(page, plugins, true); }); } $(document).on('pageshow', "#pluginsPage", function () { reloadList(this); }); window.PluginsPage = { renderPlugins: renderPlugins }; })(jQuery, window);