49 lines
1.4 KiB
Swift
49 lines
1.4 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) 2025 Jellyfin & Jellyfin Contributors
|
|
//
|
|
|
|
import Defaults
|
|
import SwiftUI
|
|
|
|
// TODO: show a sample poster to model indicators
|
|
|
|
struct IndicatorSettingsView: View {
|
|
|
|
@Default(.Customization.Indicators.showFavorited)
|
|
private var showFavorited
|
|
@Default(.Customization.Indicators.showProgress)
|
|
private var showProgress
|
|
@Default(.Customization.Indicators.showUnplayed)
|
|
private var showUnwatched
|
|
@Default(.Customization.Indicators.showPlayed)
|
|
private var showWatched
|
|
|
|
var body: some View {
|
|
SplitFormWindowView()
|
|
.descriptionView {
|
|
Image(systemName: "checkmark.circle.fill")
|
|
.resizable()
|
|
.aspectRatio(contentMode: .fit)
|
|
.frame(maxWidth: 400)
|
|
}
|
|
.contentView {
|
|
|
|
Section(L10n.posters) {
|
|
|
|
Toggle(L10n.showFavorited, isOn: $showFavorited)
|
|
|
|
Toggle(L10n.showProgress, isOn: $showProgress)
|
|
|
|
Toggle(L10n.showUnwatched, isOn: $showUnwatched)
|
|
|
|
Toggle(L10n.showWatched, isOn: $showWatched)
|
|
}
|
|
}
|
|
.navigationTitle(L10n.indicators)
|
|
}
|
|
}
|