yattee/Shared/Player/Video Details/VideoActions.swift

105 lines
3.6 KiB
Swift
Raw Normal View History

2022-11-13 17:52:15 +00:00
import Defaults
import SwiftUI
struct VideoActions: View {
@EnvironmentObject<AccountsModel> private var accounts
@EnvironmentObject<NavigationModel> private var navigation
@EnvironmentObject<SubscriptionsModel> private var subscriptions
@EnvironmentObject<PlayerModel> private var player
var video: Video?
var body: some View {
HStack {
if let video {
2022-11-13 22:40:18 +00:00
#if !os(tvOS)
if !video.isLocal || video.localStreamIsRemoteURL {
ShareButton(contentItem: .init(video: video)) {
actionButton("Share", systemImage: "square.and.arrow.up")
}
2022-11-13 17:52:15 +00:00
2022-11-13 22:40:18 +00:00
Spacer()
}
#endif
2022-11-13 20:55:19 +00:00
if !video.isLocal {
if accounts.signedIn, accounts.app.supportsUserPlaylists {
actionButton("Add", systemImage: "text.badge.plus") {
navigation.presentAddToPlaylist(video)
2022-11-13 17:52:15 +00:00
}
2022-11-13 20:55:19 +00:00
Spacer()
}
if accounts.signedIn, accounts.app.supportsSubscriptions {
if subscriptions.isSubscribing(video.channel.id) {
actionButton("Unsubscribe", systemImage: "xmark.circle") {
#if os(tvOS)
subscriptions.unsubscribe(video.channel.id)
#else
navigation.presentUnsubscribeAlert(video.channel, subscriptions: subscriptions)
#endif
}
} else {
actionButton("Subscribe", systemImage: "star.circle") {
subscriptions.subscribe(video.channel.id) {
navigation.sidebarSectionChanged.toggle()
}
2022-11-13 17:52:15 +00:00
}
}
2022-11-13 20:55:19 +00:00
Spacer()
2022-11-13 17:52:15 +00:00
}
}
}
2022-11-13 20:55:19 +00:00
if player.currentItem == nil {
Spacer()
}
2022-11-13 17:52:15 +00:00
actionButton("Hide", systemImage: "chevron.down") {
player.hide(animate: true)
}
2022-11-13 20:55:19 +00:00
2022-11-13 17:52:15 +00:00
if player.currentItem != nil {
Spacer()
actionButton("Close", systemImage: "xmark") {
player.closeCurrentItem()
}
}
}
.padding(.horizontal)
2022-11-13 21:50:42 +00:00
.borderBottom(height: 0.5, color: Color("ControlsBorderColor"))
2022-11-13 17:52:15 +00:00
.multilineTextAlignment(.center)
.frame(maxWidth: .infinity)
.frame(height: 50)
.foregroundColor(.accentColor)
}
func actionButton(
_ name: String,
systemImage: String,
action: @escaping () -> Void = {}
) -> some View {
Button(action: action) {
VStack(spacing: 3) {
Image(systemName: systemImage)
.frame(width: 20, height: 20)
Text(name)
.foregroundColor(.secondary)
.font(.caption2)
.allowsTightening(true)
2022-11-13 17:52:15 +00:00
}
.padding(.horizontal, 6)
2022-11-13 17:52:15 +00:00
.padding(.vertical, 5)
.contentShape(Rectangle())
}
.buttonStyle(.plain)
.accessibilityLabel(Text(name))
}
}
struct VideoActions_Previews: PreviewProvider {
static var previews: some View {
VideoActions()
.injectFixtureEnvironmentObjects()
}
}