jellyfin-web/dashboard-ui/scripts/musicrecommended.js

190 lines
5.4 KiB
JavaScript
Raw Normal View History

2013-04-25 16:28:01 -07:00
(function ($, document) {
2015-04-12 22:12:02 -07:00
function itemsPerRow() {
2015-05-16 12:09:02 -07:00
2015-04-12 22:12:02 -07:00
var screenWidth = $(window).width();
2015-04-29 10:39:23 -07:00
return screenWidth >= 1920 ? 9 : (screenWidth >= 1200 ? 12 : (screenWidth >= 1000 ? 10 : 8));
2015-04-12 22:12:02 -07:00
}
2015-05-16 12:09:02 -07:00
function enableScrollX() {
2015-06-04 13:27:46 -07:00
return $.browser.mobile && AppInfo.enableAppLayouts;
2015-05-16 12:09:02 -07:00
}
function getSquareShape() {
return enableScrollX() ? 'overflowSquare' : 'square';
}
2015-04-11 18:38:38 -07:00
function loadLatest(page, parentId) {
2013-04-25 16:28:01 -07:00
2015-06-17 08:39:46 -07:00
Dashboard.showLoadingMsg();
var userId = Dashboard.getCurrentUserId();
2013-04-25 16:28:01 -07:00
var options = {
IncludeItemTypes: "Audio",
2015-04-12 22:12:02 -07:00
Limit: itemsPerRow(),
2014-12-10 23:20:28 -07:00
Fields: "PrimaryImageAspectRatio,SyncInfo",
2014-11-30 12:01:33 -07:00
ParentId: parentId,
ImageTypeLimit: 1,
2014-12-01 05:43:34 -07:00
EnableImageTypes: "Primary,Backdrop,Banner,Thumb"
2013-04-25 16:28:01 -07:00
};
ApiClient.getJSON(ApiClient.getUrl('Users/' + userId + '/Items/Latest', options)).done(function (items) {
2013-04-25 16:28:01 -07:00
$('#recentlyAddedSongs', page).html(LibraryBrowser.getPosterViewHtml({
items: items,
2013-12-27 14:20:27 -07:00
showUnplayedIndicator: false,
2015-05-11 12:59:59 -07:00
showLatestItemsPopup: false,
2015-05-16 12:09:02 -07:00
shape: getSquareShape(),
2013-04-25 17:52:55 -07:00
showTitle: true,
2015-01-22 23:15:15 -07:00
showParentTitle: true,
2015-04-11 18:38:38 -07:00
lazy: true,
cardLayout: true
2015-01-22 23:15:15 -07:00
})).lazyChildren();
2013-04-25 17:52:55 -07:00
2015-06-17 08:39:46 -07:00
Dashboard.hideLoadingMsg();
2013-04-25 17:52:55 -07:00
});
2015-04-11 18:38:38 -07:00
}
2013-04-25 17:52:55 -07:00
2015-04-11 18:38:38 -07:00
function loadRecentlyPlayed(page, parentId) {
var options = {
2013-04-25 17:52:55 -07:00
SortBy: "DatePlayed",
SortOrder: "Descending",
IncludeItemTypes: "Audio",
2015-04-12 22:12:02 -07:00
Limit: itemsPerRow(),
2013-04-25 17:52:55 -07:00
Recursive: true,
2014-12-10 23:20:28 -07:00
Fields: "PrimaryImageAspectRatio,AudioInfo,SyncInfo",
2014-05-01 19:54:33 -07:00
Filters: "IsPlayed",
2014-11-30 12:01:33 -07:00
ParentId: parentId,
ImageTypeLimit: 1,
2014-12-01 05:43:34 -07:00
EnableImageTypes: "Primary,Backdrop,Banner,Thumb"
2013-04-25 17:52:55 -07:00
};
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
if (result.Items.length) {
$('#recentlyPlayed', page).show();
} else {
$('#recentlyPlayed', page).hide();
}
$('#recentlyPlayedSongs', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
2013-12-27 14:20:27 -07:00
showUnplayedIndicator: false,
2015-05-16 12:09:02 -07:00
shape: getSquareShape(),
2013-04-25 17:52:55 -07:00
showTitle: true,
showParentTitle: true,
2015-01-22 23:15:15 -07:00
defaultAction: 'play',
2015-04-11 18:38:38 -07:00
lazy: true,
cardLayout: true
2015-01-22 23:15:15 -07:00
})).lazyChildren();
2013-04-25 17:52:55 -07:00
});
2015-04-11 18:38:38 -07:00
}
function loadFrequentlyPlayed(page, parentId) {
var options = {
2013-04-25 17:52:55 -07:00
SortBy: "PlayCount",
SortOrder: "Descending",
IncludeItemTypes: "Audio",
2015-04-12 22:12:02 -07:00
Limit: itemsPerRow(),
2013-04-25 17:52:55 -07:00
Recursive: true,
2014-12-10 23:20:28 -07:00
Fields: "PrimaryImageAspectRatio,AudioInfo,SyncInfo",
2014-05-01 19:54:33 -07:00
Filters: "IsPlayed",
2014-11-30 12:01:33 -07:00
ParentId: parentId,
ImageTypeLimit: 1,
2014-12-01 05:43:34 -07:00
EnableImageTypes: "Primary,Backdrop,Banner,Thumb"
2013-04-25 17:52:55 -07:00
};
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
if (result.Items.length) {
$('#topPlayed', page).show();
} else {
$('#topPlayed', page).hide();
}
$('#topPlayedSongs', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
2013-12-27 14:20:27 -07:00
showUnplayedIndicator: false,
2015-05-16 12:09:02 -07:00
shape: getSquareShape(),
2013-04-25 17:52:55 -07:00
showTitle: true,
showParentTitle: true,
2015-01-22 23:15:15 -07:00
defaultAction: 'play',
2015-04-11 18:38:38 -07:00
lazy: true,
cardLayout: true
2015-01-22 23:15:15 -07:00
})).lazyChildren();
2013-04-25 16:28:01 -07:00
});
2015-04-11 18:38:38 -07:00
}
function loadPlaylists(page, parentId) {
var options = {
SortBy: "SortName",
SortOrder: "Ascending",
IncludeItemTypes: "Playlist",
Recursive: true,
2015-04-12 11:58:21 -07:00
ParentId: parentId,
2015-04-11 18:38:38 -07:00
Fields: "PrimaryImageAspectRatio,SortName,CumulativeRunTimeTicks,CanDelete,SyncInfo",
StartIndex: 0,
2015-04-12 22:12:02 -07:00
Limit: itemsPerRow()
2015-04-11 18:38:38 -07:00
};
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
var elem;
if (result.Items.length) {
elem = $('#playlists', page).show();
} else {
elem = $('#playlists', page).hide();
}
$('.itemsContainer', elem).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
2015-05-16 12:09:02 -07:00
shape: getSquareShape(),
2015-04-11 18:38:38 -07:00
showTitle: true,
lazy: true,
2015-04-12 22:12:02 -07:00
defaultAction: 'play',
2015-04-11 18:38:38 -07:00
coverImage: true,
showItemCounts: true,
cardLayout: true
})).lazyChildren();
});
}
2015-06-18 21:23:55 -07:00
$(document).on('pagebeforeshowready', "#musicRecommendedPage", function () {
2015-04-11 18:38:38 -07:00
var parentId = LibraryMenu.getTopParentId();
var page = this;
loadLatest(page, parentId);
loadPlaylists(page, parentId);
loadRecentlyPlayed(page, parentId);
loadFrequentlyPlayed(page, parentId);
2015-05-16 12:09:02 -07:00
2015-06-28 07:45:21 -07:00
var containers = page.querySelectorAll('.itemsContainer');
2015-05-16 12:09:02 -07:00
if (enableScrollX()) {
2015-06-28 07:45:21 -07:00
$(containers).addClass('hiddenScrollX');
2015-05-16 12:09:02 -07:00
} else {
2015-06-28 07:45:21 -07:00
$(containers).removeClass('hiddenScrollX');
2015-05-16 12:09:02 -07:00
}
2013-04-25 16:28:01 -07:00
});
})(jQuery, document);