2013-04-04 20:41:37 -07:00
|
|
|
|
(function ($, document) {
|
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
// The base query options
|
|
|
|
|
var query = {
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
SortBy: "SortName",
|
|
|
|
|
SortOrder: "Ascending",
|
|
|
|
|
IncludeItemTypes: "Series",
|
|
|
|
|
Recursive: true,
|
|
|
|
|
Fields: "PrimaryImageAspectRatio,SeriesInfo"
|
|
|
|
|
};
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
function getTableHtml(items) {
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
var html = '<div class="libraryItemsGridContainer"><table data-role="table" data-mode="reflow" class="ui-responsive table-stroke libraryItemsGrid">';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
html += '<thead>';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
html += '<tr>';
|
|
|
|
|
html += '<th> </th>';
|
|
|
|
|
html += '<th>Name</th>';
|
|
|
|
|
html += '<th>Year</th>';
|
|
|
|
|
html += '<th>Official Rating</th>';
|
|
|
|
|
html += '<th>Runtime</th>';
|
|
|
|
|
html += '<th>Community Rating</th>';
|
|
|
|
|
html += '</tr>';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
html += '</thead>';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
html += '<tbody>';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
for (var i = 0, length = items.length; i < length; i++) {
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
html += getRowHtml(items[i]);
|
|
|
|
|
}
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
html += '</tbody>';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
html += '</table></div>';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
return html;
|
|
|
|
|
}
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
function getRowHtml(item) {
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
var html = '<tr>';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
html += '<td>';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
var url = "itemdetails.html?id=" + item.Id;
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
var imageTags = item.ImageTags;
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
html += '<a href="' + url + '">';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
if (imageTags.Primary) {
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
html += '<img class="libraryGridImage" src="' + ApiClient.getImageUrl(item.Id, {
|
|
|
|
|
type: "Primary",
|
|
|
|
|
height: 150,
|
|
|
|
|
tag: item.ImageTags.Primary
|
|
|
|
|
}) + '" />';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
html += '<img class="libraryGridImage" style="background:' + LibraryBrowser.getMetroColor(item.Id) + ';" src="css/images/items/list/collection.png" />';
|
|
|
|
|
}
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
html += '</a></td>';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
html += '<td><a href="' + url + '">' + item.Name + '</a></td>';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
html += '<td>' + (item.ProductionYear || "") + '</td>';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
html += '<td>' + (item.OfficialRating || "") + '</td>';
|
|
|
|
|
html += '<td>' + (item.RunTimeTicks || "") + '</td>';
|
|
|
|
|
html += '<td>' + (item.CommunityRating || "") + '</td>';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
html += '</tr>';
|
|
|
|
|
return html;
|
|
|
|
|
}
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
function reloadItems(page) {
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
Dashboard.showLoadingMsg();
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
ApiClient.getItems(Dashboard.getCurrentUserId(), query).done(function (result) {
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
$('#items', page).html(LibraryBrowser.getPosterViewHtml({
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
items: result.Items,
|
|
|
|
|
useAverageAspectRatio: true
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
}))/*.html(getTableHtml(result.Items)).trigger('create')*/;
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
|
|
|
});
|
|
|
|
|
}
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
$(document).on('pageinit', "#tvShowsPage", function () {
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
var page = this;
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
$('.radioSortBy', this).on('click', function () {
|
|
|
|
|
query.SortBy = this.getAttribute('data-sortby');
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
$('.radioSortOrder', this).on('click', function () {
|
|
|
|
|
query.SortOrder = this.getAttribute('data-sortorder');
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
$('.chkStandardFilter', this).on('change', function () {
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
var filterName = this.getAttribute('data-filter');
|
|
|
|
|
var filters = query.Filters || "";
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
filters = (',' + filters).replace(',' + filterName, '').substring(1);
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
if (this.checked) {
|
|
|
|
|
filters = filters ? (filters + ',' + filterName) : filterName;
|
|
|
|
|
}
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
query.Filters = filters;
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
$('.chkStatus', this).on('change', function () {
|
2013-04-06 11:57:38 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
var filterName = this.getAttribute('data-filter');
|
|
|
|
|
var filters = query.SeriesStatus || "";
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
filters = (',' + filters).replace(',' + filterName, '').substring(1);
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
if (this.checked) {
|
|
|
|
|
filters = filters ? (filters + ',' + filterName) : filterName;
|
|
|
|
|
}
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
query.SeriesStatus = filters;
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 11:56:40 -07:00
|
|
|
|
$('.chkAirDays', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
var filterName = this.getAttribute('data-filter');
|
|
|
|
|
var filters = query.AirDays || "";
|
|
|
|
|
|
|
|
|
|
filters = (',' + filters).replace(',' + filterName, '').substring(1);
|
|
|
|
|
|
|
|
|
|
if (this.checked) {
|
|
|
|
|
filters = filters ? (filters + ',' + filterName) : filterName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
query.AirDays = filters;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
}).on('pagebeforeshow', "#tvShowsPage", function () {
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
reloadItems(this);
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
}).on('pageshow', "#tvShowsPage", function () {
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
// Reset form values using the last used query
|
|
|
|
|
$('.radioSortBy', this).each(function () {
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
this.checked = query.SortBy == this.getAttribute('data-sortby');
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
}).checkboxradio('refresh');
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
$('.chkStatus', this).each(function () {
|
|
|
|
|
|
|
|
|
|
var filters = "," + (query.SeriesStatus || "");
|
|
|
|
|
var filterName = this.getAttribute('data-filter');
|
|
|
|
|
|
|
|
|
|
this.checked = filters.indexOf(',' + filterName) != -1;
|
|
|
|
|
|
|
|
|
|
}).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');
|
2013-04-09 11:56:40 -07:00
|
|
|
|
|
|
|
|
|
$('.chkAirDays', this).each(function () {
|
|
|
|
|
|
|
|
|
|
var filters = "," + (query.AirDays || "");
|
|
|
|
|
var filterName = this.getAttribute('data-filter');
|
|
|
|
|
|
|
|
|
|
this.checked = filters.indexOf(',' + filterName) != -1;
|
|
|
|
|
|
|
|
|
|
}).checkboxradio('refresh');
|
2013-04-09 05:31:43 -07:00
|
|
|
|
});
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
|
|
|
|
})(jQuery, document);
|