Show channel avatars in sidebar

This commit is contained in:
Arkadiusz Fal
2022-12-11 18:11:56 +01:00
parent bc42a2fa88
commit 38593ed488
2 changed files with 18 additions and 2 deletions

View File

@@ -11,7 +11,16 @@ struct AppSidebarSubscriptions: View {
NavigationLink(tag: TabSelection.channel(channel.id), selection: $navigation.tabSelection) {
LazyView(ChannelVideosView(channel: channel).modifier(PlayerOverlayModifier()))
} label: {
Label(channel.name, systemImage: RecentsModel.symbolSystemImage(channel.name))
if channel.thumbnailURL != nil {
HStack {
ChannelAvatarView(channel: channel, subscribedBadge: false)
.frame(width: 20, height: 20)
Text(channel.name)
}
} else {
Label(channel.name, systemImage: RecentsModel.symbolSystemImage(channel.name))
}
}
.contextMenu {
Button("Unsubscribe") {