jellyflood/Swiftfin tvOS/Views/VideoPlayerContainerState/PlaybackControls/Components/ActionButtons/PlayNextItemActionButton.swift

45 lines
1.1 KiB
Swift

//
// Swiftfin is subject to the terms of the Mozilla Public
// License, v2.0. If a copy of the MPL was not distributed with this
// file, you can obtain one at https://mozilla.org/MPL/2.0/.
//
// Copyright (c) 2025 Jellyfin & Jellyfin Contributors
//
import SwiftUI
extension VideoPlayer.PlaybackControls.NavigationBar.ActionButtons {
struct PlayNextItem: View {
@EnvironmentObject
private var manager: MediaPlayerManager
var body: some View {
if let queue = manager.queue {
_PlayNextItem(queue: queue)
}
}
}
private struct _PlayNextItem: View {
@EnvironmentObject
private var manager: MediaPlayerManager
@ObservedObject
var queue: AnyMediaPlayerQueue
var body: some View {
Button(
L10n.playNextItem,
systemImage: VideoPlayerActionButton.playNextItem.systemImage
) {
guard let nextItem = queue.nextItem else { return }
manager.playNewItem(provider: nextItem)
}
.disabled(queue.nextItem == nil)
}
}
}