mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
75 lines
1.8 KiB
JavaScript
75 lines
1.8 KiB
JavaScript
(function (document) {
|
|
|
|
var currentOwnerId;
|
|
var currentThemeIds = [];
|
|
|
|
function playThemeSongs(items, ownerId) {
|
|
|
|
var player = getPlayer();
|
|
|
|
if (items.length && player.isDefaultPlayer && player.canAutoPlayAudio()) {
|
|
|
|
// Stop if a theme song from another ownerId
|
|
// Leave it alone if anything else (e.g user playing a movie)
|
|
if (!currentOwnerId && player.isPlaying()) {
|
|
return;
|
|
}
|
|
|
|
currentThemeIds = items.map(function (i) {
|
|
return i.Id;
|
|
});
|
|
|
|
currentOwnerId = ownerId;
|
|
|
|
player.play({
|
|
items: items
|
|
});
|
|
|
|
} else {
|
|
currentOwnerId = null;
|
|
}
|
|
}
|
|
|
|
function onPlayItem(item) {
|
|
|
|
// User played something manually
|
|
if (currentThemeIds.indexOf(item.Id) == -1) {
|
|
|
|
currentOwnerId = null;
|
|
|
|
}
|
|
}
|
|
|
|
function enabled() {
|
|
|
|
var userId = Dashboard.getCurrentUserId();
|
|
|
|
var val = appStorage.getItem('enableThemeSongs-' + userId);
|
|
|
|
var localAutoPlayers = MediaController.getPlayers().filter(function (p) {
|
|
|
|
return p.isLocalPlayer && p.canAutoPlayAudio();
|
|
});
|
|
|
|
// For bandwidth
|
|
return val == '1' || (val != '0' && localAutoPlayers.length);
|
|
}
|
|
|
|
function getPlayer() {
|
|
return MediaController.getCurrentPlayer();
|
|
}
|
|
|
|
Events.on(document, 'thememediadownload', ".libraryPage", function (e, themeMediaResult) {
|
|
|
|
if (!enabled()) {
|
|
return;
|
|
}
|
|
|
|
var ownerId = themeMediaResult.ThemeSongsResult.OwnerId;
|
|
|
|
if (ownerId != currentOwnerId) {
|
|
playThemeSongs(themeMediaResult.ThemeSongsResult.Items, ownerId);
|
|
}
|
|
});
|
|
|
|
})(document); |