define(['jQuery', 'cardStyle'], function ($) { // The base query options var query = { TargetSystems: 'Server', IsAdult: false }; function reloadList(page) { Dashboard.showLoadingMsg(); if (AppInfo.enableAppStorePolicy) { $('.optionAdultContainer', page).hide(); } else { $('.optionAdultContainer', page).show(); } query.IsAppStoreSafe = true; var promise1 = ApiClient.getAvailablePlugins(query); var promise2 = ApiClient.getInstalledPlugins(); Promise.all([promise1, promise2]).then(function (responses) { populateList({ catalogElement: $('#pluginTiles', page), noItemsElement: $("#noPlugins", page), availablePlugins: responses[0], installedPlugins: responses[1] }); }); } function populateList(options) { populateListInternal(options); } function populateListInternal(options) { var availablePlugins = options.availablePlugins; var installedPlugins = options.installedPlugins; var allPlugins = availablePlugins.filter(function (p) { p.category = p.category || "General"; p.categoryDisplayName = Globalize.translate('PluginCategory' + p.category.replace(' ', '')); if (options.categories) { if (options.categories.indexOf(p.category) == -1) { return false; } } if (options.targetSystem) { if (p.targetSystem != options.targetSystem) { return false; } } return p.type == "UserInstalled"; }); availablePlugins = allPlugins.sort(function (a, b) { var aName = (a.category); var bName = (b.category); if (aName > bName) { return 1; } if (bName > aName) { return -1; } aName = (a.name); bName = (b.name); if (aName > bName) { return 1; } if (bName > aName) { return -1; } return 0; }); var html = ''; var i, length, plugin; var currentCategory; if (!options.categories) { currentCategory = Globalize.translate('HeaderTopPlugins'); html += '
' + currentCategory + '
'; var topPlugins = allPlugins.slice(0).sort(function (a, b) { if (a.installs > b.installs) { return -1; } if (b.installs > a.installs) { return 1; } var aName = (a.name); var bName = (b.name); if (aName > bName) { return 1; } if (bName > aName) { return -1; } return 0; }); html += '
'; var limit = screen.availWidth >= 1920 ? 15 : 12; for (i = 0, length = Math.min(topPlugins.length, limit) ; i < length; i++) { html += getPluginHtml(topPlugins[i], options, installedPlugins); } html += '
'; } var hasOpenTag = false; if (options.showCategory === false) { html += '
'; hasOpenTag = true; } for (i = 0, length = availablePlugins.length; i < length; i++) { plugin = availablePlugins[i]; var category = plugin.categoryDisplayName; if (category != currentCategory) { if (options.showCategory !== false) { if (currentCategory) { hasOpenTag = false; html += '
'; html += '
'; html += '
'; html += '
'; } html += '
' + category + '
'; html += '
'; hasOpenTag = true; } currentCategory = category; } html += getPluginHtml(plugin, options, installedPlugins); } if (hasOpenTag) { html += '
'; } if (!availablePlugins.length && options.noItemsElement) { $(options.noItemsElement).hide(); } $(options.catalogElement).html(html); Dashboard.hideLoadingMsg(); } function getPluginHtml(plugin, options, installedPlugins) { var html = ''; var href = plugin.externalUrl ? plugin.externalUrl : "addplugin.html?name=" + encodeURIComponent(plugin.name) + "&guid=" + plugin.guid; if (options.context) { href += "&context=" + options.context; } var target = plugin.externalUrl ? ' target="_blank"' : ''; html += "
"; html += '
'; html += '
'; html += '
'; html += ''; if (plugin.thumbImage) { html += '"; html += '
'; html += "
"; html += plugin.name; html += "
"; if (!plugin.isExternal) { html += "
"; if (plugin.avgRating) { html += 'star'; html += plugin.avgRating.toFixed(1); } if (plugin.totalRatings) { html += "
"; html += " " + Globalize.translate('LabelNumberReviews').replace("{0}", plugin.totalRatings); } html += "
"; html += "
"; } var installedPlugin = plugin.isApp ? null : installedPlugins.filter(function (ip) { return ip.Id == plugin.guid; })[0]; html += "
"; if (installedPlugin) { html += Globalize.translate('LabelVersionInstalled').replace("{0}", installedPlugin.Version); } else { html += ' '; } html += "
"; // cardFooter html += "
"; // cardBox html += "
"; // card html += "
"; return html; } function getTabs() { return [ { href: 'plugins.html', name: Globalize.translate('TabMyPlugins') }, { href: 'plugincatalog.html', name: Globalize.translate('TabCatalog') }]; } $(document).on('pageinit', "#pluginCatalogPage", function () { var page = this; $('#selectSystem', page).on('change', function () { query.TargetSystems = this.value; reloadList(page); }); $('#chkAdult', page).on('change', function () { query.IsAdult = this.checked ? null : false; reloadList(page); }); }).on('pageshow', "#pluginCatalogPage", function () { LibraryMenu.setTabs('plugins', 1, getTabs); var page = this; reloadList(page); }); window.PluginCatalog = { renderCatalog: populateList }; });