yattee/Shared/Player/VideoDetails.swift

395 lines
12 KiB
Swift
Raw Normal View History

2021-08-22 19:13:33 +00:00
import Foundation
import SwiftUI
struct VideoDetails: View {
enum Page {
case details, queue
}
@Binding var sidebarQueue: Bool
@Binding var fullScreen: Bool
2021-08-25 22:12:59 +00:00
@State private var subscribed = false
@State private var confirmationShown = false
@State private var presentingAddToPlaylist = false
2021-10-26 22:59:59 +00:00
@State private var presentingShareSheet = false
2021-11-02 19:40:49 +00:00
@State private var shareURL = ""
2021-08-25 22:12:59 +00:00
@State private var currentPage = Page.details
@Environment(\.dismiss) private var dismiss
2021-10-28 17:14:55 +00:00
@Environment(\.inNavigationView) private var inNavigationView
2021-10-20 22:21:50 +00:00
@EnvironmentObject<AccountsModel> private var accounts
@EnvironmentObject<PlayerModel> private var player
@EnvironmentObject<PlaylistsModel> private var playlists
@EnvironmentObject<SubscriptionsModel> private var subscriptions
init(
sidebarQueue: Binding<Bool>? = nil,
fullScreen: Binding<Bool>? = nil
) {
_sidebarQueue = sidebarQueue ?? .constant(true)
_fullScreen = fullScreen ?? .constant(false)
}
var video: Video? {
player.currentItem?.video
}
2021-08-22 19:13:33 +00:00
var body: some View {
VStack(alignment: .leading) {
Group {
Group {
HStack(spacing: 0) {
title
2021-08-25 22:12:59 +00:00
toggleFullScreenDetailsButton
}
#if os(macOS)
.padding(.top, 10)
#endif
2021-08-22 19:13:33 +00:00
if !video.isNil {
Divider()
2021-08-25 22:12:59 +00:00
}
subscriptionsSection
}
.padding(.horizontal)
if !video.isNil, !sidebarQueue {
pagePicker
.padding(.horizontal)
}
}
.contentShape(Rectangle())
.onSwipeGesture(
up: {
withAnimation {
fullScreen = true
}
},
down: {
withAnimation {
if fullScreen {
fullScreen = false
} else {
self.dismiss()
2021-08-25 22:12:59 +00:00
}
}
}
)
2021-08-22 19:13:33 +00:00
switch currentPage {
case .details:
ScrollView(.vertical) {
detailsPage
}
case .queue:
PlayerQueueView(fullScreen: $fullScreen)
.edgesIgnoringSafeArea(.horizontal)
}
}
2021-10-28 17:14:55 +00:00
.padding(.top, inNavigationView && fullScreen ? 10 : 0)
.onAppear {
2021-10-23 12:24:00 +00:00
#if !os(macOS)
if video.isNil {
currentPage = .queue
}
#endif
2021-10-20 22:21:50 +00:00
guard video != nil, accounts.app.supportsSubscriptions else {
subscribed = false
return
}
2021-08-25 22:12:59 +00:00
subscribed = subscriptions.isSubscribing(video!.channel.id)
}
.onChange(of: sidebarQueue) { queue in
#if !os(macOS)
if queue {
currentPage = .details
} else {
currentPage = .queue
}
#endif
}
.edgesIgnoringSafeArea(.horizontal)
.frame(minWidth: 0, maxWidth: .infinity, alignment: .leading)
}
var title: some View {
Group {
if video != nil {
Text(video!.title)
.onAppear {
#if !os(macOS)
currentPage = .details
2021-08-25 22:12:59 +00:00
#endif
}
.font(.title2.bold())
} else {
Text("Not playing")
.foregroundColor(.secondary)
}
Spacer()
}
}
var toggleFullScreenDetailsButton: some View {
Button {
withAnimation {
fullScreen.toggle()
}
} label: {
Label("Resize", systemImage: fullScreen ? "chevron.down" : "chevron.up")
.labelStyle(.iconOnly)
}
.help("Toggle fullscreen details")
.buttonStyle(.plain)
.keyboardShortcut("t")
}
var subscriptionsSection: some View {
Group {
if video != nil {
HStack(alignment: .center) {
HStack(spacing: 4) {
if subscribed {
Image(systemName: "star.circle.fill")
}
VStack(alignment: .leading) {
Text(video!.channel.name)
.font(.system(size: 13))
.bold()
if let subscribers = video!.channel.subscriptionsString {
Text("\(subscribers) subscribers")
.font(.caption2)
}
}
}
.foregroundColor(.secondary)
2021-10-20 22:21:50 +00:00
if accounts.app.supportsSubscriptions {
Spacer()
2021-10-20 22:21:50 +00:00
Section {
if subscribed {
Button("Unsubscribe") {
2021-10-20 22:21:50 +00:00
confirmationShown = true
}
#if os(iOS)
.tint(.gray)
#endif
.confirmationDialog("Are you you want to unsubscribe from \(video!.channel.name)?", isPresented: $confirmationShown) {
Button("Unsubscribe") {
subscriptions.unsubscribe(video!.channel.id)
withAnimation {
subscribed.toggle()
}
}
}
} else {
Button("Subscribe") {
subscriptions.subscribe(video!.channel.id)
withAnimation {
subscribed.toggle()
}
}
2021-10-20 22:21:50 +00:00
.tint(.blue)
}
2021-08-25 22:12:59 +00:00
}
2021-10-20 22:21:50 +00:00
.font(.system(size: 13))
.buttonStyle(.borderless)
.buttonBorderShape(.roundedRectangle)
2021-08-25 22:12:59 +00:00
}
}
}
}
}
2021-08-25 22:12:59 +00:00
var pagePicker: some View {
Picker("Page", selection: $currentPage) {
Text("Details").tag(Page.details)
Text("Queue").tag(Page.queue)
}
2021-08-25 22:12:59 +00:00
.pickerStyle(.segmented)
.onDisappear {
currentPage = .details
}
}
var publishedDateSection: some View {
Group {
if let video = player.currentVideo {
HStack(spacing: 4) {
if let published = video.publishedDate {
Text(published)
}
2021-08-22 19:13:33 +00:00
if let publishedAt = video.publishedAt {
if video.publishedDate != nil {
Text("")
.foregroundColor(.secondary)
.opacity(0.3)
}
Text(publishedAt.formatted(date: .abbreviated, time: .omitted))
2021-08-22 19:13:33 +00:00
}
}
.font(.system(size: 12))
.padding(.bottom, -1)
.foregroundColor(.secondary)
2021-08-22 19:13:33 +00:00
}
}
}
2021-08-22 19:13:33 +00:00
var countsSection: some View {
Group {
if let video = player.currentVideo {
HStack {
2021-10-26 22:59:59 +00:00
ShareButton(
contentItem: ContentItem(video: video),
2021-11-02 19:40:49 +00:00
presentingShareSheet: $presentingShareSheet,
shareURL: $shareURL
2021-10-26 22:59:59 +00:00
)
Spacer()
2021-08-25 22:12:59 +00:00
if let views = video.viewsCount {
videoDetail(label: "Views", value: views, symbol: "eye.fill")
}
2021-08-25 22:12:59 +00:00
if let likes = video.likesCount {
Divider()
2021-08-22 19:13:33 +00:00
videoDetail(label: "Likes", value: likes, symbol: "hand.thumbsup.circle.fill")
}
2021-08-25 22:12:59 +00:00
if let dislikes = video.dislikesCount {
Divider()
2021-08-22 19:13:33 +00:00
videoDetail(label: "Dislikes", value: dislikes, symbol: "hand.thumbsdown.circle.fill")
}
2021-08-25 22:12:59 +00:00
Spacer()
2021-10-26 22:59:59 +00:00
if accounts.app.supportsUserPlaylists {
Button {
presentingAddToPlaylist = true
} label: {
Label("Add to Playlist", systemImage: "text.badge.plus")
.labelStyle(.iconOnly)
.help("Add to Playlist...")
}
.buttonStyle(.plain)
}
2021-08-22 19:13:33 +00:00
}
.frame(maxHeight: 35)
.foregroundColor(.secondary)
2021-08-22 19:13:33 +00:00
}
}
.sheet(isPresented: $presentingAddToPlaylist) {
if let video = video {
AddToPlaylistView(video: video)
}
}
2021-10-26 22:59:59 +00:00
#if os(iOS)
.sheet(isPresented: $presentingShareSheet) {
2021-11-02 19:40:49 +00:00
ShareSheet(activityItems: [shareURL])
2021-10-26 22:59:59 +00:00
}
#endif
}
private var contentItem: ContentItem {
ContentItem(video: player.currentVideo!)
}
2021-08-25 22:12:59 +00:00
var detailsPage: some View {
Group {
if let video = player.currentItem?.video {
Group {
2021-10-20 22:21:50 +00:00
HStack {
publishedDateSection
Spacer()
}
2021-08-22 19:13:33 +00:00
Divider()
countsSection
2021-08-22 19:13:33 +00:00
}
Divider()
2021-08-22 19:13:33 +00:00
VStack(alignment: .leading, spacing: 10) {
2021-10-20 22:21:50 +00:00
if let description = video.description {
Text(description)
.font(.caption)
} else {
Text("No description")
.foregroundColor(.secondary)
}
2021-08-22 19:13:33 +00:00
ScrollView(.horizontal, showsIndicators: showScrollIndicators) {
HStack {
ForEach(video.keywords, id: \.self) { keyword in
HStack(alignment: .center, spacing: 0) {
Text("#")
.font(.system(size: 11).bold())
2021-08-22 19:13:33 +00:00
Text(keyword)
.frame(maxWidth: 500)
}
.font(.caption)
.foregroundColor(.white)
.padding(.vertical, 4)
.padding(.horizontal, 8)
.background(Color("VideoDetailLikesSymbolColor"))
.mask(RoundedRectangle(cornerRadius: 3))
}
}
.padding(.bottom, 10)
2021-08-22 19:13:33 +00:00
}
}
}
}
.padding(.horizontal)
2021-08-25 22:12:59 +00:00
}
func videoDetail(label: String, value: String, symbol: String) -> some View {
VStack(spacing: 4) {
HStack(spacing: 2) {
Image(systemName: symbol)
Text(label.uppercased())
}
.font(.system(size: 9))
.opacity(0.6)
Text(value)
}
.frame(maxWidth: 100)
2021-08-22 19:13:33 +00:00
}
var showScrollIndicators: Bool {
#if os(macOS)
false
#else
true
#endif
}
}
2021-08-25 22:12:59 +00:00
struct VideoDetails_Previews: PreviewProvider {
static var previews: some View {
VideoDetails(sidebarQueue: .constant(true))
2021-09-29 11:45:00 +00:00
.injectFixtureEnvironmentObjects()
2021-08-22 19:13:33 +00:00
}
}