49 lines
1.6 KiB
Swift
49 lines
1.6 KiB
Swift
/* JellyfinPlayer/Swiftfin is subject to the terms of the Mozilla Public
|
|
* License, v2.0. If a copy of the MPL was not distributed with this
|
|
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*
|
|
* Copyright 2021 Aiden Vigue & Jellyfin Contributors
|
|
*/
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
struct LibraryListView: View {
|
|
@StateObject var viewModel = LibraryListViewModel()
|
|
|
|
var body: some View {
|
|
List(viewModel.libraries, id: \.self) { library in
|
|
switch library.id {
|
|
case "favorites":
|
|
NavigationLink(destination: LazyView {
|
|
LibraryView(viewModel: .init(filters: viewModel.withFavorites), title: library.name ?? "")
|
|
}) {
|
|
Text(library.name ?? "")
|
|
}
|
|
case "genres":
|
|
NavigationLink(destination: LazyView {
|
|
EmptyView()
|
|
}) {
|
|
Text(library.name ?? "")
|
|
}
|
|
default:
|
|
NavigationLink(destination: LazyView {
|
|
LibraryView(viewModel: .init(parentID: library.id), title: library.name ?? "")
|
|
}) {
|
|
Text(library.name ?? "")
|
|
}
|
|
}
|
|
}
|
|
.navigationTitle("All Media")
|
|
.toolbar {
|
|
ToolbarItemGroup(placement: .navigationBarTrailing) {
|
|
NavigationLink(destination: LazyView {
|
|
LibrarySearchView(viewModel: .init(parentID: nil))
|
|
}) {
|
|
Image(systemName: "magnifyingglass")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|