jellyfin-web/dashboard-ui/scripts/movies.js

131 lines
3.3 KiB
JavaScript
Raw Normal View History

(function ($, document) {
2013-04-01 20:28:20 -07:00
// The base query options
var query = {
2013-04-01 20:28:20 -07:00
SortBy: "SortName",
SortOrder: "Ascending",
IncludeItemTypes: "Movie",
Recursive: true,
Fields: "PrimaryImageAspectRatio"
};
function getTableHtml(items) {
var html = '<table data-role="table" data-mode="reflow" class="ui-responsive table-stroke libraryItemsGrid">';
html += '<thead>';
html += '<tr>';
html += '<th>Name</th>';
html += '<th>Year</th>';
html += '<th>Official Rating</th>';
html += '<th>Runtime</th>';
html += '</tr>';
html += '</thead>';
html += '<tbody>';
for (var i = 0, length = items.length; i < length; i++) {
html += getRowHtml(items[i]);
}
html += '</tbody>';
html += '</table>';
return html;
}
2013-04-01 20:28:20 -07:00
function getRowHtml(item) {
2013-04-01 20:28:20 -07:00
var html = '<tr>';
2013-04-01 20:28:20 -07:00
html += '<td>' + (item.Name || "") + '</td>';
html += '<td>' + (item.ProductionYear || "") + '</td>';
html += '<td>' + (item.OfficialRating || "") + '</td>';
html += '<td>' + (item.OfficialRating || "") + '</td>';
html += '</tr>';
return html;
}
function reloadItems(page) {
Dashboard.showLoadingMsg();
ApiClient.getItems(Dashboard.getCurrentUserId(), query).done(function (result) {
$('#items', page).html(Dashboard.getPosterViewHtml({
2013-04-01 20:28:20 -07:00
items: result.Items,
useAverageAspectRatio: true
2013-04-01 20:28:20 -07:00
})).html(getTableHtml(result.Items)).trigger('create');
Dashboard.hideLoadingMsg();
});
2013-04-01 20:28:20 -07:00
}
2013-04-01 20:28:20 -07:00
$(document).on('pageinit', "#moviesPage", function () {
var page = this;
2013-04-01 20:28:20 -07:00
$('.radioSortBy', this).on('click', function () {
query.SortBy = this.getAttribute('data-sortby');
reloadItems(page);
});
$('.radioSortOrder', this).on('click', function () {
query.SortOrder = this.getAttribute('data-sortorder');
reloadItems(page);
});
$('.chkStandardFilter', this).on('change', function () {
var filterName = this.getAttribute('data-filter');
var filters = query.Filters || "";
filters = (',' + filters).replace(',' + filterName, '').substring(1);
if (this.checked) {
filters = filters ? (filters + ',' + filterName) : filterName;
}
query.Filters = filters;
reloadItems(page);
});
}).on('pageshow', "#moviesPage", function () {
reloadItems(this);
// Reset form values using the last used query
$('.radioSortBy', this).each(function () {
this.checked = query.SortBy == this.getAttribute('data-sortby');
}).checkboxradio('refresh');
$('.radioSortOrder', this).each(function () {
this.checked = query.SortOrder == this.getAttribute('data-sortorder');
}).checkboxradio('refresh');
$('.chkStandardFilter', this).each(function () {
var filters = "," + (query.Filters || "");
var filterName = this.getAttribute('data-filter');
this.checked = filters.indexOf(',' + filterName) != -1;
}).checkboxradio('refresh');
});
})(jQuery, document);