2021-09-25 13:48:22 +05:30
|
|
|
import Defaults
|
2021-08-30 03:06:18 +05:30
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct AppSidebarSubscriptions: View {
|
2022-11-25 02:06:05 +05:30
|
|
|
@ObservedObject private var navigation = NavigationModel.shared
|
2022-12-11 20:45:42 +05:30
|
|
|
@ObservedObject private var subscriptions = SubscribedChannelsModel.shared
|
2021-08-30 03:06:18 +05:30
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
Section(header: Text("Subscriptions")) {
|
|
|
|
ForEach(subscriptions.all) { channel in
|
2021-09-29 04:31:49 +05:30
|
|
|
NavigationLink(tag: TabSelection.channel(channel.id), selection: $navigation.tabSelection) {
|
2022-12-11 03:07:14 +05:30
|
|
|
LazyView(ChannelVideosView(channel: channel).modifier(PlayerOverlayModifier()))
|
2021-08-30 03:06:18 +05:30
|
|
|
} label: {
|
2022-01-06 22:25:56 +05:30
|
|
|
Label(channel.name, systemImage: RecentsModel.symbolSystemImage(channel.name))
|
2021-08-30 03:06:18 +05:30
|
|
|
}
|
|
|
|
.contextMenu {
|
|
|
|
Button("Unsubscribe") {
|
2022-06-25 04:51:05 +05:30
|
|
|
navigation.presentUnsubscribeAlert(channel, subscriptions: subscriptions)
|
2021-08-30 03:06:18 +05:30
|
|
|
}
|
|
|
|
}
|
2021-09-29 04:31:49 +05:30
|
|
|
.id("channel\(channel.id)")
|
2021-08-30 03:06:18 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-12-11 17:08:57 +05:30
|
|
|
|
|
|
|
struct AppSidebarSubscriptions_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
|
|
|
AppSidebarSubscriptions()
|
|
|
|
}
|
|
|
|
}
|