102 lines
3.1 KiB
Swift
102 lines
3.1 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) 2024 Jellyfin & Jellyfin Contributors
|
|
//
|
|
|
|
import JellyfinAPI
|
|
import SwiftUI
|
|
|
|
// TODO: background refresh for programs with timer?
|
|
|
|
// Note: there are some unsafe first element accesses, but `ChannelProgram` data should always have a single program
|
|
|
|
struct ProgramsView: View {
|
|
|
|
@EnvironmentObject
|
|
private var router: VideoPlayerWrapperCoordinator.Router
|
|
|
|
@StateObject
|
|
private var programsViewModel = ProgramsViewModel()
|
|
|
|
private var contentView: some View {
|
|
ScrollView(showsIndicators: false) {
|
|
VStack(spacing: 20) {
|
|
if programsViewModel.recommended.isNotEmpty {
|
|
programsSection(title: L10n.onNow, keyPath: \.recommended)
|
|
}
|
|
|
|
if programsViewModel.series.isNotEmpty {
|
|
programsSection(title: L10n.series, keyPath: \.series)
|
|
}
|
|
|
|
if programsViewModel.movies.isNotEmpty {
|
|
programsSection(title: L10n.movies, keyPath: \.movies)
|
|
}
|
|
|
|
if programsViewModel.kids.isNotEmpty {
|
|
programsSection(title: L10n.kids, keyPath: \.kids)
|
|
}
|
|
|
|
if programsViewModel.sports.isNotEmpty {
|
|
programsSection(title: L10n.sports, keyPath: \.sports)
|
|
}
|
|
|
|
if programsViewModel.news.isNotEmpty {
|
|
programsSection(title: L10n.news, keyPath: \.news)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@ViewBuilder
|
|
private func programsSection(
|
|
title: String,
|
|
keyPath: KeyPath<ProgramsViewModel, [ChannelProgram]>
|
|
) -> some View {
|
|
PosterHStack(
|
|
title: title,
|
|
type: .landscape,
|
|
items: programsViewModel[keyPath: keyPath]
|
|
)
|
|
.content {
|
|
ProgramButtonContent(program: $0.programs[0])
|
|
}
|
|
.imageOverlay {
|
|
ProgramProgressOverlay(program: $0.programs[0])
|
|
}
|
|
.onSelect { channelProgram in
|
|
guard let mediaSource = channelProgram.channel.mediaSources?.first else { return }
|
|
router.route(
|
|
to: \.liveVideoPlayer,
|
|
LiveVideoPlayerManager(item: channelProgram.channel, mediaSource: mediaSource)
|
|
)
|
|
}
|
|
}
|
|
|
|
var body: some View {
|
|
WrappedView {
|
|
switch programsViewModel.state {
|
|
case .content:
|
|
if programsViewModel.hasNoResults {
|
|
L10n.noResults.text
|
|
} else {
|
|
contentView
|
|
}
|
|
case let .error(error):
|
|
Text(error.localizedDescription)
|
|
case .initial, .refreshing:
|
|
ProgressView()
|
|
}
|
|
}
|
|
.ignoresSafeArea(edges: [.bottom, .horizontal])
|
|
.onFirstAppear {
|
|
if programsViewModel.state == .initial {
|
|
programsViewModel.send(.refresh)
|
|
}
|
|
}
|
|
}
|
|
}
|