1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 13:50:32 +05:30
yattee/tvOS/TVNavigationView.swift

63 lines
2.0 KiB
Swift
Raw Normal View History

2021-07-12 02:22:49 +05:30
import Defaults
import SwiftUI
struct TVNavigationView: View {
@EnvironmentObject<NavigationState> private var navigationState
2021-08-24 03:01:51 +05:30
@EnvironmentObject<PlaybackState> private var playbackState
2021-07-12 02:22:49 +05:30
@State private var showingOptions = false
@Default(.showingAddToPlaylist) var showingAddToPlaylist
2021-07-12 02:22:49 +05:30
var body: some View {
2021-08-03 04:43:42 +05:30
TabView(selection: $navigationState.tabSelection) {
SubscriptionsView()
.tabItem { Text("Subscriptions") }
.tag(TabSelection.subscriptions)
PopularView()
.tabItem { Text("Popular") }
.tag(TabSelection.popular)
TrendingView()
.tabItem { Text("Trending") }
.tag(TabSelection.trending)
PlaylistsView()
.tabItem { Text("Playlists") }
.tag(TabSelection.playlists)
SearchView()
.tabItem { Image(systemName: "magnifyingglass") }
.tag(TabSelection.search)
}
.fullScreenCover(isPresented: $showingOptions) { OptionsView() }
.fullScreenCover(isPresented: $showingAddToPlaylist) { AddToPlaylistView() }
.fullScreenCover(isPresented: $navigationState.showingVideoDetails) {
if let video = navigationState.video {
VideoDetailsView(video)
2021-07-12 02:22:49 +05:30
}
2021-08-03 04:43:42 +05:30
}
.fullScreenCover(isPresented: $navigationState.showingChannel, onDismiss: {
navigationState.showVideoDetailsIfNeeded()
}) {
if let channel = navigationState.channel {
ChannelView(id: channel.id)
2021-07-12 02:22:49 +05:30
}
2021-08-03 04:43:42 +05:30
}
.fullScreenCover(isPresented: $navigationState.showingVideo) {
if let video = navigationState.video {
VideoPlayerView(video)
2021-08-24 03:01:51 +05:30
.environmentObject(playbackState)
}
2021-07-12 02:22:49 +05:30
}
2021-08-03 04:43:42 +05:30
.onPlayPauseCommand { showingOptions.toggle() }
2021-07-12 02:22:49 +05:30
}
}
struct TVNavigationView_Previews: PreviewProvider {
static var previews: some View {
TVNavigationView()
}
}