mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
if collection has no playable items hide btns
This commit is contained in:
parent
5fda5a8738
commit
cb1d56defb
1 changed files with 16 additions and 0 deletions
|
@ -880,6 +880,16 @@ define(["loading", "appRouter", "layoutManager", "connectionManager", "cardBuild
|
|||
})
|
||||
}
|
||||
|
||||
function canPlaySomeItemInCollection(items) {
|
||||
var i = 0;
|
||||
for (length = items.length; i < length; i++) {
|
||||
if (playbackManager.canPlay(items[i])) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
function renderCollectionItems(page, parentItem, types, items) {
|
||||
page.querySelector(".collectionItems").innerHTML = "";
|
||||
var i, length;
|
||||
|
@ -904,6 +914,12 @@ define(["loading", "appRouter", "layoutManager", "connectionManager", "cardBuild
|
|||
renderChildren(page, parentItem)
|
||||
};
|
||||
for (i = 0, length = containers.length; i < length; i++) containers[i].notifyRefreshNeeded = notifyRefreshNeeded
|
||||
|
||||
// if nothing in the collection can be played hide play and shuffle buttons
|
||||
if (!canPlaySomeItemInCollection(items)) {
|
||||
hideAll(page, "btnPlay", false);
|
||||
hideAll(page, "btnShuffle", false);
|
||||
}
|
||||
}
|
||||
|
||||
function renderCollectionItemType(page, parentItem, type, items) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue