mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
76 lines
1.8 KiB
JavaScript
76 lines
1.8 KiB
JavaScript
define(['appStorage'], function (appStorage) {
|
|
|
|
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();
|
|
}
|
|
|
|
document.addEventListener('thememediadownload', function (e) {
|
|
|
|
if (!enabled()) {
|
|
return;
|
|
}
|
|
|
|
var themeMediaResult = e.detail.themeMediaResult;
|
|
var ownerId = themeMediaResult.ThemeSongsResult.OwnerId;
|
|
|
|
if (ownerId != currentOwnerId) {
|
|
playThemeSongs(themeMediaResult.ThemeSongsResult.Items, ownerId);
|
|
}
|
|
});
|
|
|
|
}); |