2013-04-04 20:41:37 -07:00
|
|
|
|
(function ($, document) {
|
|
|
|
|
|
2013-04-30 15:34:10 -07:00
|
|
|
|
var view = "Poster";
|
2013-04-10 22:27:27 -07:00
|
|
|
|
|
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,
|
2013-04-28 13:30:33 -07:00
|
|
|
|
Fields: "DisplayMediaType,SeriesInfo,ItemCounts,DateCreated,UserData",
|
2013-04-10 22:27:27 -07:00
|
|
|
|
StartIndex: 0
|
2013-04-09 05:31:43 -07:00
|
|
|
|
};
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-10 22:27:27 -07:00
|
|
|
|
function reloadItems(page) {
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-10 22:27:27 -07:00
|
|
|
|
Dashboard.showLoadingMsg();
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-10 22:27:27 -07:00
|
|
|
|
ApiClient.getItems(Dashboard.getCurrentUserId(), query).done(function (result) {
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-10 22:27:27 -07:00
|
|
|
|
var html = '';
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-19 09:28:06 -07:00
|
|
|
|
$('.listTopPaging', page).html(LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true)).trigger('create');
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-17 15:43:31 -07:00
|
|
|
|
if (view == "Backdrop") {
|
2013-04-10 22:27:27 -07:00
|
|
|
|
html += LibraryBrowser.getPosterDetailViewHtml({
|
|
|
|
|
items: result.Items,
|
2013-04-23 07:46:27 -07:00
|
|
|
|
preferBackdrop: true,
|
|
|
|
|
context: "tv"
|
2013-04-10 22:27:27 -07:00
|
|
|
|
});
|
2013-05-15 05:05:07 -07:00
|
|
|
|
$('.itemsContainer', page).removeClass('timelineItemsContainer');
|
2013-04-10 22:27:27 -07:00
|
|
|
|
}
|
|
|
|
|
else if (view == "Poster") {
|
2013-04-11 08:43:57 -07:00
|
|
|
|
html += LibraryBrowser.getPosterDetailViewHtml({
|
2013-04-10 22:27:27 -07:00
|
|
|
|
items: result.Items,
|
2013-04-23 07:46:27 -07:00
|
|
|
|
context: "tv"
|
2013-04-10 22:27:27 -07:00
|
|
|
|
});
|
2013-05-15 05:05:07 -07:00
|
|
|
|
$('.itemsContainer', page).removeClass('timelineItemsContainer');
|
|
|
|
|
}
|
|
|
|
|
else if (view == "Timeline") {
|
|
|
|
|
html += LibraryBrowser.getPosterDetailViewHtml({
|
|
|
|
|
items: result.Items,
|
|
|
|
|
context: "tv",
|
|
|
|
|
timeline: true
|
|
|
|
|
});
|
|
|
|
|
$('.itemsContainer', page).addClass('timelineItemsContainer');
|
2013-04-10 22:27:27 -07:00
|
|
|
|
}
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-19 09:28:06 -07:00
|
|
|
|
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-19 09:28:06 -07:00
|
|
|
|
$('#items', page).html(html).trigger('create');
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-18 22:08:18 -07:00
|
|
|
|
$('.selectPage', page).on('change', function () {
|
2013-04-10 22:27:27 -07:00
|
|
|
|
query.StartIndex = (parseInt(this.value) - 1) * query.Limit;
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-04-18 22:08:18 -07:00
|
|
|
|
$('.btnNextPage', page).on('click', function () {
|
2013-04-15 15:03:05 -07:00
|
|
|
|
query.StartIndex += query.Limit;
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
2013-04-18 22:08:18 -07:00
|
|
|
|
$('.btnPreviousPage', page).on('click', function () {
|
2013-04-15 15:03:05 -07:00
|
|
|
|
query.StartIndex -= query.Limit;
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
2013-04-27 15:52:41 -07:00
|
|
|
|
$('.selectPageSize', page).on('change', function () {
|
|
|
|
|
query.Limit = parseInt(this.value);
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
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');
|
2013-04-11 05:23:02 -07:00
|
|
|
|
query.StartIndex = 0;
|
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
|
|
|
|
$('.radioSortOrder', this).on('click', function () {
|
|
|
|
|
query.SortOrder = this.getAttribute('data-sortorder');
|
2013-04-11 05:23:02 -07:00
|
|
|
|
query.StartIndex = 0;
|
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
|
|
|
|
$('.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-11 05:23:02 -07:00
|
|
|
|
query.StartIndex = 0;
|
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-11 05:23:02 -07:00
|
|
|
|
query.StartIndex = 0;
|
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;
|
2013-04-11 05:23:02 -07:00
|
|
|
|
query.StartIndex = 0;
|
2013-04-09 11:56:40 -07:00
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
2013-04-10 22:27:27 -07:00
|
|
|
|
$('#selectView', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
view = this.value;
|
|
|
|
|
|
2013-05-15 05:05:07 -07:00
|
|
|
|
if (view == "Timeline") {
|
|
|
|
|
|
|
|
|
|
query.SortBy = "PremiereDate";
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
$('#radioPremiereDate', page)[0].click();
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
}
|
2013-04-10 22:27:27 -07:00
|
|
|
|
});
|
|
|
|
|
|
2013-04-29 18:32:15 -07:00
|
|
|
|
$('#chkTrailer', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasTrailer = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkThemeSong', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasThemeSong = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkThemeVideo', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasThemeVideo = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
2013-04-09 05:31:43 -07:00
|
|
|
|
}).on('pagebeforeshow', "#tvShowsPage", function () {
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
|
var limit = LibraryBrowser.getDefaultPageSize();
|
|
|
|
|
|
|
|
|
|
// If the default page size has changed, the start index will have to be reset
|
|
|
|
|
if (limit != query.Limit) {
|
|
|
|
|
query.Limit = limit;
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
}
|
|
|
|
|
|
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-10 22:27:27 -07:00
|
|
|
|
|
|
|
|
|
$('#selectView', this).val(view).selectmenu('refresh');
|
2013-04-29 18:32:15 -07:00
|
|
|
|
|
|
|
|
|
$('#chkTrailer', this).checked(query.HasTrailer == true).checkboxradio('refresh');
|
|
|
|
|
$('#chkThemeSong', this).checked(query.HasThemeSong == true).checkboxradio('refresh');
|
|
|
|
|
$('#chkThemeVideo', this).checked(query.HasThemeVideo == true).checkboxradio('refresh');
|
2013-04-09 05:31:43 -07:00
|
|
|
|
});
|
2013-04-04 20:41:37 -07:00
|
|
|
|
|
|
|
|
|
})(jQuery, document);
|