(function ($, document) {
var view = "Poster";
// The base query options
var query = {
SortBy: "SortName",
SortOrder: "Ascending",
IncludeItemTypes: "Movie",
Recursive: true,
Fields: "PrimaryImageAspectRatio,UserData,DisplayMediaType,ItemCounts,DateCreated",
Limit: LibraryBrowser.getDetaultPageSize(),
StartIndex: 0
};
function getTableHtml(result) {
var items = result.Items;
var html = '';
html += '
';
html += '';
html += '';
html += ' | ';
html += 'Name | ';
html += 'Type | ';
html += 'Year | ';
html += 'Rating | ';
html += 'Runtime | ';
html += 'Community Rating | ';
html += ' | ';
html += '
';
html += '';
html += '';
for (var i = 0, length = items.length; i < length; i++) {
html += getRowHtml(items[i]);
}
html += '';
html += '
';
return html;
}
function getRowHtml(item) {
var html = '';
html += '';
var url = "itemdetails.html?id=" + item.Id;
html += '';
if (item.BackdropImageTags && item.BackdropImageTags.length) {
html += '';
}
else if (item.ImageTags && item.ImageTags.Thumb) {
html += '';
}
else if (item.ImageTags && item.ImageTags.Primary) {
html += '';
}
else {
html += '';
}
html += ' | ';
html += '' + item.Name + ' | ';
html += '' + (item.VideoType == "VideoFile" ? item.DisplayMediaType : item.VideoType) + ' | ';
html += '' + (item.ProductionYear || "") + ' | ';
html += '' + (item.OfficialRating || "") + ' | ';
var minutes = (item.RunTimeTicks || 0) / 600000000;
minutes = minutes || 1;
html += '' + parseInt(minutes) + 'min | ';
html += '' + (item.CommunityRating || "") + ' | ';
html += '';
var userData = item.UserData || {};
if (userData.Played) {
html += '';
} else {
html += '';
}
if (typeof userData.Likes == "undefined") {
html += '';
html += '';
} else if (userData.Likes) {
html += '';
html += '';
} else {
html += '';
html += '';
}
if (userData.IsFavorite) {
html += '';
} else {
html += '';
}
html += ' | ';
html += '
';
return html;
}
function reloadItems(page) {
Dashboard.showLoadingMsg();
ApiClient.getItems(Dashboard.getCurrentUserId(), query).done(function (result) {
var html = '';
var showPaging = result.TotalRecordCount > query.Limit;
if (showPaging) {
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
}
if (view == "Poster") {
html += LibraryBrowser.getPosterViewHtml({
items: result.Items,
useAverageAspectRatio: true
});
}
else if (view == "Grid") {
html += getTableHtml(result);
}
if (showPaging) {
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
}
var elem = $('#items', page);
// cleanup existing event handlers
$('select', elem).off('change');
elem.html(html).trigger('create');
$('select', elem).on('change', function() {
query.StartIndex = (parseInt(this.value) - 1) * query.Limit;
reloadItems(page);
});
Dashboard.hideLoadingMsg();
});
}
$(document).on('pageinit', "#moviesPage", function () {
var page = this;
$('.radioSortBy', this).on('click', function () {
query.StartIndex = 0;
query.SortBy = this.getAttribute('data-sortby');
reloadItems(page);
});
$('.radioSortOrder', this).on('click', function () {
query.StartIndex = 0;
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.StartIndex = 0;
query.Filters = filters;
reloadItems(page);
});
$('.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;
}
query.StartIndex = 0;
query.VideoTypes = filters;
reloadItems(page);
});
$('#selectView', this).on('change', function () {
view = this.value;
reloadItems(page);
});
$('#chk3D', this).on('change', function () {
query.StartIndex = 0;
query.VideoFormats = this.checked ? this.getAttribute('data-filter') : null;
reloadItems(page);
});
}).on('pagebeforeshow', "#moviesPage", function () {
reloadItems(this);
}).on('pageshow', "#moviesPage", function () {
// 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');
$('.chkVideoTypeFilter', this).each(function () {
var filters = "," + (query.VideoTypes || "");
var filterName = this.getAttribute('data-filter');
this.checked = filters.indexOf(',' + filterName) != -1;
}).checkboxradio('refresh');
$('#selectView', this).val(view).selectmenu('refresh');
$('#chk3D', this).checked(query.VideoFormats == "Digital3D,Sbs3D").checkboxradio('refresh');
});
})(jQuery, document);