mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
95 lines
2.8 KiB
Swift
95 lines
2.8 KiB
Swift
|
import Defaults
|
||
|
import SwiftUI
|
||
|
|
||
|
struct EditFavorites: View {
|
||
|
@EnvironmentObject<PlaylistsModel> private var playlistsModel
|
||
|
|
||
|
private var model = FavoritesModel.shared
|
||
|
|
||
|
@Default(.favorites) private var favorites
|
||
|
|
||
|
var body: some View {
|
||
|
VStack {
|
||
|
ScrollView {
|
||
|
Text("Edit Favorites")
|
||
|
.font(.system(size: 40))
|
||
|
.fontWeight(.bold)
|
||
|
.foregroundColor(.secondary)
|
||
|
|
||
|
ForEach(favorites) { item in
|
||
|
HStack {
|
||
|
Text(label(item))
|
||
|
|
||
|
Spacer()
|
||
|
HStack(spacing: 30) {
|
||
|
Button {
|
||
|
model.moveUp(item)
|
||
|
} label: {
|
||
|
Image(systemName: "arrow.up")
|
||
|
}
|
||
|
|
||
|
Button {
|
||
|
model.moveDown(item)
|
||
|
} label: {
|
||
|
Image(systemName: "arrow.down")
|
||
|
}
|
||
|
|
||
|
Button {
|
||
|
model.remove(item)
|
||
|
} label: {
|
||
|
Image(systemName: "trash")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.padding(.trailing, 40)
|
||
|
|
||
|
Divider()
|
||
|
.padding(20)
|
||
|
|
||
|
ForEach(model.addableItems()) { item in
|
||
|
HStack {
|
||
|
Text(label(item))
|
||
|
|
||
|
Spacer()
|
||
|
|
||
|
Button {
|
||
|
model.add(item)
|
||
|
} label: {
|
||
|
Label("Add to Favorites", systemImage: "heart")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.padding(.trailing, 40)
|
||
|
|
||
|
HStack {
|
||
|
Text("Add more Channels and Playlists to your Favorites using button")
|
||
|
Button {} label: {
|
||
|
Label("Add to Favorites", systemImage: "heart")
|
||
|
.labelStyle(.iconOnly)
|
||
|
}
|
||
|
.disabled(true)
|
||
|
}
|
||
|
.foregroundColor(.secondary)
|
||
|
.padding(.top, 80)
|
||
|
}
|
||
|
.frame(width: 1000, alignment: .leading)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func label(_ item: FavoriteItem) -> String {
|
||
|
if case let .playlist(id) = item.section {
|
||
|
return playlistsModel.find(id: id)?.title ?? "Unknown Playlist"
|
||
|
}
|
||
|
|
||
|
return item.section.label
|
||
|
}
|
||
|
}
|
||
|
|
||
|
struct EditFavorites_Previews: PreviewProvider {
|
||
|
static var previews: some View {
|
||
|
EditFavorites()
|
||
|
.injectFixtureEnvironmentObjects()
|
||
|
}
|
||
|
}
|