58 lines
1.9 KiB
Swift
58 lines
1.9 KiB
Swift
//
|
|
// 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 (c) 2022 Jellyfin & Jellyfin Contributors
|
|
//
|
|
|
|
import Defaults
|
|
import SwiftUI
|
|
|
|
extension HomeView {
|
|
|
|
struct ContentView: View {
|
|
|
|
@EnvironmentObject
|
|
private var homeRouter: HomeCoordinator.Router
|
|
@ObservedObject
|
|
var viewModel: HomeViewModel
|
|
|
|
@Default(.Customization.nextUpPosterType)
|
|
var nextUpPosterType
|
|
@Default(.Customization.recentlyAddedPosterType)
|
|
var recentlyAddedPosterType
|
|
|
|
var body: some View {
|
|
RefreshableScrollView {
|
|
VStack(alignment: .leading, spacing: 20) {
|
|
if !viewModel.resumeItems.isEmpty {
|
|
ContinueWatchingView(viewModel: viewModel)
|
|
}
|
|
|
|
if !viewModel.nextUpItems.isEmpty {
|
|
PosterHStack(title: L10n.nextUp, type: nextUpPosterType, items: viewModel.nextUpItems)
|
|
.onSelect { item in
|
|
homeRouter.route(to: \.item, item)
|
|
}
|
|
}
|
|
|
|
if !viewModel.latestAddedItems.isEmpty {
|
|
PosterHStack(title: L10n.recentlyAdded, type: recentlyAddedPosterType, items: viewModel.latestAddedItems)
|
|
.onSelect { item in
|
|
homeRouter.route(to: \.item, item)
|
|
}
|
|
}
|
|
|
|
ForEach(viewModel.libraries, id: \.self) { library in
|
|
LatestInLibraryView(viewModel: .init(library: library))
|
|
}
|
|
}
|
|
.padding(.bottom, 50)
|
|
} onRefresh: {
|
|
viewModel.refresh()
|
|
}
|
|
}
|
|
}
|
|
}
|