2021-06-10 02:21:23 +05:30
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct ContentView: View {
|
2021-06-17 15:32:39 +05:30
|
|
|
@ObservedObject private var state = AppState()
|
|
|
|
@StateObject private var trendingState = TrendingState()
|
2021-06-12 02:41:59 +05:30
|
|
|
|
2021-06-17 15:32:39 +05:30
|
|
|
@State private var tabSelection = TabSelection.popular
|
2021-06-12 02:41:59 +05:30
|
|
|
|
2021-06-10 02:21:23 +05:30
|
|
|
var body: some View {
|
2021-06-11 04:20:10 +05:30
|
|
|
NavigationView {
|
2021-06-12 02:41:59 +05:30
|
|
|
TabView(selection: $tabSelection) {
|
2021-06-17 15:32:39 +05:30
|
|
|
SubscriptionsView(tabSelection: $tabSelection)
|
2021-06-12 04:19:42 +05:30
|
|
|
.tabItem { Text("Subscriptions") }
|
|
|
|
.tag(TabSelection.subscriptions)
|
|
|
|
|
2021-06-17 15:32:39 +05:30
|
|
|
PopularVideosView(tabSelection: $tabSelection)
|
2021-06-11 18:06:26 +05:30
|
|
|
.tabItem { Text("Popular") }
|
2021-06-12 02:41:59 +05:30
|
|
|
.tag(TabSelection.popular)
|
|
|
|
|
|
|
|
if state.showingChannel {
|
2021-06-17 15:32:39 +05:30
|
|
|
ChannelView(tabSelection: $tabSelection)
|
2021-06-12 04:19:42 +05:30
|
|
|
.tabItem { Text("\(state.channel) Channel") }
|
2021-06-12 02:41:59 +05:30
|
|
|
.tag(TabSelection.channel)
|
|
|
|
}
|
|
|
|
|
2021-06-17 15:32:39 +05:30
|
|
|
TrendingView(tabSelection: $tabSelection)
|
|
|
|
.tabItem { Text("Trending") }
|
|
|
|
.tag(TabSelection.trending)
|
|
|
|
|
|
|
|
SearchView(tabSelection: $tabSelection)
|
2021-06-11 18:06:26 +05:30
|
|
|
.tabItem { Image(systemName: "magnifyingglass") }
|
2021-06-12 02:41:59 +05:30
|
|
|
.tag(TabSelection.search)
|
2021-06-11 04:20:10 +05:30
|
|
|
}
|
|
|
|
}
|
2021-06-17 15:32:39 +05:30
|
|
|
.environmentObject(state)
|
|
|
|
.environmentObject(trendingState)
|
2021-06-10 02:21:23 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ContentView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
|
|
|
ContentView()
|
|
|
|
}
|
|
|
|
}
|