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 += '
';
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 += '
';
html += '
';
html += '
';
}
var hasOpenTag = false;
currentCategory = null;
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 += '';
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 += '
";
// 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
};
});