You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
2.4 KiB
106 lines
2.4 KiB
var IndexPage = {
|
|
|
|
onPageShow: function () {
|
|
IndexPage.loadLibrary(Dashboard.getCurrentUserId(), this);
|
|
},
|
|
|
|
loadLibrary: function (userId, page) {
|
|
|
|
if (!userId) {
|
|
return;
|
|
}
|
|
|
|
page = $(page);
|
|
|
|
var options = {
|
|
|
|
limit: 5,
|
|
sortBy: "DateCreated",
|
|
sortOrder: "Descending",
|
|
filters: "IsRecentlyAdded,IsNotFolder",
|
|
ImageTypes: "Primary,Backdrop,Thumb",
|
|
recursive: true
|
|
};
|
|
|
|
ApiClient.getItems(userId, options).done(function (result) {
|
|
|
|
$('#divWhatsNew', page).html(Dashboard.getPosterViewHtml({
|
|
items: result.Items,
|
|
preferBackdrop: true,
|
|
showTitle: true
|
|
}));
|
|
|
|
});
|
|
|
|
options = {
|
|
|
|
limit: 5,
|
|
sortBy: "DatePlayed",
|
|
sortOrder: "Descending",
|
|
filters: "IsResumable",
|
|
recursive: true
|
|
};
|
|
|
|
ApiClient.getItems(userId, options).done(function (result) {
|
|
|
|
$('#divResumableItems', page).html(Dashboard.getPosterViewHtml({
|
|
items: result.Items,
|
|
preferBackdrop: true,
|
|
showTitle: true
|
|
}));
|
|
|
|
if (result.Items.length) {
|
|
$('#divResumable', page).show();
|
|
} else {
|
|
$('#divResumable', page).hide();
|
|
}
|
|
|
|
});
|
|
|
|
options = {
|
|
|
|
sortBy: "SortName"
|
|
};
|
|
|
|
ApiClient.getItems(userId, options).done(function (result) {
|
|
|
|
$('#divCollections', page).html(Dashboard.getPosterViewHtml({
|
|
items: result.Items,
|
|
showTitle: true
|
|
}));
|
|
|
|
});
|
|
|
|
IndexPage.loadMyLibrary(userId, page);
|
|
},
|
|
|
|
loadMyLibrary: function (userId, page) {
|
|
|
|
var items = [{
|
|
Name: "Recently Played",
|
|
IsFolder: true
|
|
}, {
|
|
Name: "Favorites",
|
|
IsFolder: true
|
|
}, {
|
|
Name: "Genres",
|
|
IsFolder: true
|
|
}, {
|
|
Name: "Studios",
|
|
IsFolder: true
|
|
}, {
|
|
Name: "Performers",
|
|
IsFolder: true
|
|
}, {
|
|
Name: "Directors",
|
|
IsFolder: true
|
|
}];
|
|
|
|
$('#divMyLibrary', page).html(Dashboard.getPosterViewHtml({
|
|
items: items,
|
|
showTitle: true
|
|
}));
|
|
}
|
|
};
|
|
|
|
$(document).on('pageshow', "#indexPage", IndexPage.onPageShow); |