2013-04-01 17:54:06 -07:00
|
|
|
|
(function ($, document) {
|
|
|
|
|
|
2013-04-30 15:34:10 -07:00
|
|
|
|
var view = "Poster";
|
2013-04-08 14:05:00 -07:00
|
|
|
|
|
2013-04-01 20:28:20 -07:00
|
|
|
|
// The base query options
|
|
|
|
|
var query = {
|
2013-04-01 17:54:06 -07:00
|
|
|
|
|
2013-04-01 20:28:20 -07:00
|
|
|
|
SortBy: "SortName",
|
|
|
|
|
SortOrder: "Ascending",
|
|
|
|
|
IncludeItemTypes: "Movie",
|
|
|
|
|
Recursive: true,
|
2013-12-22 10:16:24 -07:00
|
|
|
|
Fields: "DateCreated,PrimaryImageAspectRatio",
|
2013-04-08 14:05:00 -07:00
|
|
|
|
StartIndex: 0
|
2013-04-01 20:28:20 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
function reloadItems(page) {
|
|
|
|
|
|
|
|
|
|
Dashboard.showLoadingMsg();
|
2013-04-10 22:27:27 -07:00
|
|
|
|
|
2013-04-01 20:28:20 -07:00
|
|
|
|
ApiClient.getItems(Dashboard.getCurrentUserId(), query).done(function (result) {
|
2013-04-01 17:54:06 -07:00
|
|
|
|
|
2013-05-17 12:18:54 -07:00
|
|
|
|
// Scroll back up so they can see the results from the beginning
|
|
|
|
|
$(document).scrollTop(0);
|
|
|
|
|
|
2013-04-08 14:05:00 -07:00
|
|
|
|
var html = '';
|
|
|
|
|
|
2013-04-19 09:28:06 -07:00
|
|
|
|
$('.listTopPaging', page).html(LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true)).trigger('create');
|
2013-04-08 14:05:00 -07:00
|
|
|
|
|
2013-10-18 09:09:47 -07:00
|
|
|
|
updateFilterControls(page);
|
|
|
|
|
|
2013-10-17 09:24:35 -07:00
|
|
|
|
var checkSortOption = $('.radioSortBy:checked', page);
|
|
|
|
|
$('.viewSummary', page).html(LibraryBrowser.getViewSummaryHtml(query, checkSortOption)).trigger('create');
|
|
|
|
|
|
2013-12-22 10:16:24 -07:00
|
|
|
|
if (view == "Thumb") {
|
|
|
|
|
html = LibraryBrowser.getPosterViewHtml({
|
2013-04-10 22:27:27 -07:00
|
|
|
|
items: result.Items,
|
2013-12-22 10:16:24 -07:00
|
|
|
|
shape: "backdrop",
|
|
|
|
|
preferThumb: true,
|
|
|
|
|
context: 'movies'
|
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-12-22 10:16:24 -07:00
|
|
|
|
html = LibraryBrowser.getPosterViewHtml({
|
2013-04-04 21:15:00 -07:00
|
|
|
|
items: result.Items,
|
2013-12-22 10:16:24 -07:00
|
|
|
|
shape: "portrait",
|
|
|
|
|
context: 'movies',
|
2013-12-25 07:39:46 -07:00
|
|
|
|
useAverageAspectRatio: true,
|
2014-01-13 09:48:37 -07:00
|
|
|
|
showTitle: true,
|
|
|
|
|
centerText: true
|
2013-04-08 14:05:00 -07:00
|
|
|
|
});
|
2013-05-15 05:05:07 -07:00
|
|
|
|
$('.itemsContainer', page).removeClass('timelineItemsContainer');
|
|
|
|
|
}
|
|
|
|
|
else if (view == "Timeline") {
|
2014-01-02 14:21:06 -07:00
|
|
|
|
html = LibraryBrowser.getPosterViewHtml({
|
2013-05-15 05:05:07 -07:00
|
|
|
|
items: result.Items,
|
2014-01-02 14:21:06 -07:00
|
|
|
|
shape: "portrait",
|
|
|
|
|
context: 'movies',
|
|
|
|
|
useAverageAspectRatio: true,
|
|
|
|
|
showTitle: true,
|
2014-01-13 09:48:37 -07:00
|
|
|
|
timeline: true,
|
|
|
|
|
centerText: true
|
2013-05-15 05:05:07 -07:00
|
|
|
|
});
|
|
|
|
|
$('.itemsContainer', page).addClass('timelineItemsContainer');
|
2013-04-04 21:15:00 -07:00
|
|
|
|
}
|
2013-04-08 14:05:00 -07:00
|
|
|
|
|
2013-04-19 09:28:06 -07:00
|
|
|
|
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
|
2013-04-01 20:28:20 -07:00
|
|
|
|
|
2014-01-14 22:01:58 -07:00
|
|
|
|
$('#items', page).html(html).trigger('create').createPosterItemHoverMenu();
|
2013-04-08 14:05:00 -07:00
|
|
|
|
|
2013-04-18 22:08:18 -07:00
|
|
|
|
$('.selectPage', page).on('change', function () {
|
2013-04-08 14:05:00 -07:00
|
|
|
|
query.StartIndex = (parseInt(this.value) - 1) * query.Limit;
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
2013-05-15 05:05:07 -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-08 14:05:00 -07:00
|
|
|
|
|
2013-04-27 15:52:41 -07:00
|
|
|
|
$('.selectPageSize', page).on('change', function () {
|
|
|
|
|
query.Limit = parseInt(this.value);
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
2013-10-12 09:55:58 -07:00
|
|
|
|
LibraryBrowser.saveQueryValues('movies', query);
|
2013-10-18 09:09:47 -07:00
|
|
|
|
|
2013-04-01 20:28:20 -07:00
|
|
|
|
Dashboard.hideLoadingMsg();
|
2013-04-01 17:54:06 -07:00
|
|
|
|
});
|
2013-04-01 20:28:20 -07:00
|
|
|
|
}
|
2013-04-01 17:54:06 -07:00
|
|
|
|
|
2013-10-18 09:09:47 -07:00
|
|
|
|
function updateFilterControls(page) {
|
|
|
|
|
|
|
|
|
|
// Reset form values using the last used query
|
|
|
|
|
$('.radioSortBy', page).each(function () {
|
|
|
|
|
|
|
|
|
|
this.checked = (query.SortBy || '').toLowerCase() == this.getAttribute('data-sortby').toLowerCase();
|
|
|
|
|
|
|
|
|
|
}).checkboxradio('refresh');
|
|
|
|
|
|
|
|
|
|
$('.radioSortOrder', page).each(function () {
|
|
|
|
|
|
|
|
|
|
this.checked = (query.SortOrder || '').toLowerCase() == this.getAttribute('data-sortorder').toLowerCase();
|
|
|
|
|
|
|
|
|
|
}).checkboxradio('refresh');
|
|
|
|
|
|
|
|
|
|
$('.chkStandardFilter', page).each(function () {
|
|
|
|
|
|
|
|
|
|
var filters = "," + (query.Filters || "");
|
|
|
|
|
var filterName = this.getAttribute('data-filter');
|
|
|
|
|
|
|
|
|
|
this.checked = filters.indexOf(',' + filterName) != -1;
|
|
|
|
|
|
|
|
|
|
}).checkboxradio('refresh');
|
|
|
|
|
|
|
|
|
|
$('.chkVideoTypeFilter', page).each(function () {
|
|
|
|
|
|
|
|
|
|
var filters = "," + (query.VideoTypes || "");
|
|
|
|
|
var filterName = this.getAttribute('data-filter');
|
|
|
|
|
|
|
|
|
|
this.checked = filters.indexOf(',' + filterName) != -1;
|
|
|
|
|
|
|
|
|
|
}).checkboxradio('refresh');
|
|
|
|
|
|
|
|
|
|
$('#selectView', page).val(view).selectmenu('refresh');
|
|
|
|
|
|
|
|
|
|
$('#chk3D', page).checked(query.Is3D == true).checkboxradio('refresh');
|
2013-10-26 15:01:21 -07:00
|
|
|
|
$('#chkHD', page).checked(query.IsHD == true).checkboxradio('refresh');
|
|
|
|
|
$('#chkSD', page).checked(query.IsHD == false).checkboxradio('refresh');
|
2013-10-18 09:09:47 -07:00
|
|
|
|
|
|
|
|
|
$('#chkSubtitle', page).checked(query.HasSubtitles == true).checkboxradio('refresh');
|
|
|
|
|
$('#chkTrailer', page).checked(query.HasTrailer == true).checkboxradio('refresh');
|
|
|
|
|
$('#chkSpecialFeature', page).checked(query.HasSpecialFeature == true).checkboxradio('refresh');
|
|
|
|
|
$('#chkThemeSong', page).checked(query.HasThemeSong == true).checkboxradio('refresh');
|
|
|
|
|
$('#chkThemeVideo', page).checked(query.HasThemeVideo == true).checkboxradio('refresh');
|
|
|
|
|
|
2013-12-01 19:24:14 -07:00
|
|
|
|
$('#chkMissingImdbId', page).checked(query.HasImdbId == false).checkboxradio('refresh');
|
|
|
|
|
$('#chkMissingTmdbId', page).checked(query.HasTmdbId == false).checkboxradio('refresh');
|
|
|
|
|
$('#chkMissingOverview', page).checked(query.HasOverview == false).checkboxradio('refresh');
|
|
|
|
|
$('#chkYearMismatch', page).checked(query.IsYearMismatched == true).checkboxradio('refresh');
|
|
|
|
|
|
2013-10-18 09:09:47 -07:00
|
|
|
|
$('.alphabetPicker', page).alphaValue(query.NameStartsWithOrGreater);
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-01 20:28:20 -07:00
|
|
|
|
$(document).on('pageinit', "#moviesPage", function () {
|
|
|
|
|
|
|
|
|
|
var page = this;
|
2013-04-01 17:54:06 -07:00
|
|
|
|
|
2013-04-01 20:28:20 -07:00
|
|
|
|
$('.radioSortBy', this).on('click', function () {
|
2013-04-08 14:05:00 -07:00
|
|
|
|
query.StartIndex = 0;
|
2013-04-01 20:28:20 -07:00
|
|
|
|
query.SortBy = this.getAttribute('data-sortby');
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('.radioSortOrder', this).on('click', function () {
|
2013-04-08 14:05:00 -07:00
|
|
|
|
query.StartIndex = 0;
|
2013-04-01 20:28:20 -07:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-08 14:05:00 -07:00
|
|
|
|
query.StartIndex = 0;
|
2013-04-01 20:28:20 -07:00
|
|
|
|
query.Filters = filters;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
2013-04-04 08:38:41 -07:00
|
|
|
|
|
|
|
|
|
$('.chkVideoTypeFilter', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
var filterName = this.getAttribute('data-filter');
|
|
|
|
|
var filters = query.VideoTypes || "";
|
|
|
|
|
|
|
|
|
|
filters = (',' + filters).replace(',' + filterName, '').substring(1);
|
|
|
|
|
|
|
|
|
|
if (this.checked) {
|
|
|
|
|
filters = filters ? (filters + ',' + filterName) : filterName;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-08 14:05:00 -07:00
|
|
|
|
query.StartIndex = 0;
|
2013-04-04 08:38:41 -07:00
|
|
|
|
query.VideoTypes = filters;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
2013-04-08 14:05:00 -07:00
|
|
|
|
|
2013-04-04 21:15:00 -07:00
|
|
|
|
$('#selectView', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
view = this.value;
|
|
|
|
|
|
2013-05-15 05:05:07 -07:00
|
|
|
|
if (view == "Timeline") {
|
|
|
|
|
|
|
|
|
|
query.SortBy = "PremiereDate";
|
2014-01-02 14:21:06 -07:00
|
|
|
|
query.SortOrder = "Descending";
|
2013-05-15 05:05:07 -07:00
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
$('#radioPremiereDate', page)[0].click();
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-13 09:25:18 -07:00
|
|
|
|
LibraryBrowser.saveViewSetting('movies', view);
|
2013-04-04 21:15:00 -07:00
|
|
|
|
});
|
2013-04-04 08:38:41 -07:00
|
|
|
|
|
2013-04-07 06:34:46 -07:00
|
|
|
|
$('#chk3D', this).on('change', function () {
|
|
|
|
|
|
2013-04-08 14:05:00 -07:00
|
|
|
|
query.StartIndex = 0;
|
2013-07-11 06:56:09 -07:00
|
|
|
|
query.Is3D = this.checked ? true : null;
|
2013-04-07 06:34:46 -07:00
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
2013-05-15 05:05:07 -07:00
|
|
|
|
|
2013-10-26 15:01:21 -07:00
|
|
|
|
$('#chkHD', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.IsHD = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkSD', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.IsHD = this.checked ? false : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
2013-04-29 18:29:04 -07:00
|
|
|
|
$('#chkSubtitle', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasSubtitles = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
2013-05-15 05:05:07 -07:00
|
|
|
|
|
2013-04-29 18:29:04 -07:00
|
|
|
|
$('#chkTrailer', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasTrailer = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
2013-05-15 05:05:07 -07:00
|
|
|
|
|
2013-04-29 18:29:04 -07:00
|
|
|
|
$('#chkSpecialFeature', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasSpecialFeature = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
2013-05-15 05:05:07 -07:00
|
|
|
|
|
2013-04-29 18:29:04 -07:00
|
|
|
|
$('#chkThemeSong', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasThemeSong = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
2013-05-15 05:05:07 -07:00
|
|
|
|
|
2013-04-29 18:29:04 -07:00
|
|
|
|
$('#chkThemeVideo', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasThemeVideo = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
2013-05-16 12:00:42 -07:00
|
|
|
|
$('.alphabetPicker', this).on('alphaselect', function (e, character) {
|
|
|
|
|
|
2013-05-16 20:24:41 -07:00
|
|
|
|
query.NameStartsWithOrGreater = character;
|
2013-05-17 11:05:49 -07:00
|
|
|
|
query.StartIndex = 0;
|
2013-05-16 12:00:42 -07:00
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
2013-10-18 09:09:47 -07:00
|
|
|
|
|
2013-05-16 12:00:42 -07:00
|
|
|
|
}).on('alphaclear', function (e) {
|
|
|
|
|
|
2013-05-16 20:24:41 -07:00
|
|
|
|
query.NameStartsWithOrGreater = '';
|
2013-05-16 12:00:42 -07:00
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
2013-04-07 06:34:46 -07:00
|
|
|
|
|
2013-12-01 19:24:14 -07:00
|
|
|
|
$('#radioBasicFilters', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
if (this.checked) {
|
|
|
|
|
$('.basicFilters', page).show();
|
|
|
|
|
$('.advancedFilters', page).hide();
|
|
|
|
|
} else {
|
|
|
|
|
$('.basicFilters', page).hide();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#radioAdvancedFilters', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
if (this.checked) {
|
|
|
|
|
$('.advancedFilters', page).show();
|
|
|
|
|
$('.basicFilters', page).hide();
|
|
|
|
|
} else {
|
|
|
|
|
$('.advancedFilters', page).hide();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkMissingImdbId', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasImdbId = this.checked ? false : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkMissingTmdbId', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasTmdbId = this.checked ? false : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkMissingOverview', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasOverview = this.checked ? false : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkYearMismatch', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.IsYearMismatched = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
2013-04-08 14:05:00 -07:00
|
|
|
|
}).on('pagebeforeshow', "#moviesPage", function () {
|
|
|
|
|
|
2014-01-13 09:25:18 -07:00
|
|
|
|
var page = this;
|
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-10-17 13:59:46 -07:00
|
|
|
|
LibraryBrowser.loadSavedQueryValues('movies', query);
|
|
|
|
|
|
2014-01-13 09:25:18 -07:00
|
|
|
|
LibraryBrowser.getSavedViewSetting('movies').done(function (val) {
|
|
|
|
|
|
|
|
|
|
if (val) {
|
|
|
|
|
$('#selectView', page).val(val).selectmenu('refresh').trigger('change');
|
|
|
|
|
} else {
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
}
|
|
|
|
|
});
|
2013-04-08 14:05:00 -07:00
|
|
|
|
|
2013-04-01 20:28:20 -07:00
|
|
|
|
}).on('pageshow', "#moviesPage", function () {
|
|
|
|
|
|
2013-10-18 09:09:47 -07:00
|
|
|
|
updateFilterControls(this);
|
2013-04-01 20:28:20 -07:00
|
|
|
|
});
|
2013-04-01 17:54:06 -07:00
|
|
|
|
|
|
|
|
|
})(jQuery, document);
|