106 lines
3.3 KiB
Swift
106 lines
3.3 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 SwiftUI
|
|
|
|
struct LocalUserAccessPolicyView: View {
|
|
|
|
@Binding
|
|
private var pinHint: String
|
|
@Binding
|
|
private var accessPolicy: UserAccessPolicy
|
|
|
|
@Router
|
|
private var router
|
|
|
|
@State
|
|
private var listSize: CGSize = .zero
|
|
@State
|
|
private var updatePinHint: String
|
|
@State
|
|
private var updateSignInPolicy: UserAccessPolicy
|
|
|
|
init(
|
|
pinHint: Binding<String>,
|
|
accessPolicy: Binding<UserAccessPolicy>
|
|
) {
|
|
self._pinHint = pinHint
|
|
self._accessPolicy = accessPolicy
|
|
self._updatePinHint = State(initialValue: pinHint.wrappedValue)
|
|
self._updateSignInPolicy = State(initialValue: accessPolicy.wrappedValue)
|
|
}
|
|
|
|
var body: some View {
|
|
List {
|
|
Section {
|
|
CaseIterablePicker(L10n.security, selection: $updateSignInPolicy)
|
|
} footer: {
|
|
VStack(alignment: .leading, spacing: 10) {
|
|
Text(
|
|
L10n.additionalSecurityAccessDescription
|
|
)
|
|
|
|
// frame necessary with bug within BulletedList
|
|
BulletedList {
|
|
|
|
VStack(alignment: .leading, spacing: 5) {
|
|
Text(UserAccessPolicy.requireDeviceAuthentication.displayTitle)
|
|
.fontWeight(.semibold)
|
|
|
|
Text(L10n.requireDeviceAuthDescription)
|
|
}
|
|
|
|
VStack(alignment: .leading, spacing: 5) {
|
|
Text(UserAccessPolicy.requirePin.displayTitle)
|
|
.fontWeight(.semibold)
|
|
|
|
Text(L10n.requirePinDescription)
|
|
}
|
|
|
|
VStack(alignment: .leading, spacing: 5) {
|
|
Text(UserAccessPolicy.none.displayTitle)
|
|
.fontWeight(.semibold)
|
|
|
|
Text(L10n.saveUserWithoutAuthDescription)
|
|
}
|
|
}
|
|
.frame(width: max(10, listSize.width - 50))
|
|
}
|
|
}
|
|
|
|
if accessPolicy == .requirePin {
|
|
Section {
|
|
TextField(L10n.hint, text: $updatePinHint)
|
|
} header: {
|
|
Text(L10n.hint)
|
|
} footer: {
|
|
Text(L10n.setPinHintDescription)
|
|
}
|
|
}
|
|
}
|
|
.animation(.linear, value: accessPolicy)
|
|
.navigationTitle(L10n.security)
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
.navigationBarCloseButton {
|
|
router.dismiss()
|
|
}
|
|
.onChange(of: updatePinHint) { newValue in
|
|
let truncated = String(newValue.prefix(120))
|
|
updatePinHint = truncated
|
|
pinHint = truncated
|
|
}
|
|
.onChange(of: updatePinHint) { newValue in
|
|
pinHint = newValue
|
|
}
|
|
.onChange(of: updateSignInPolicy) { newValue in
|
|
accessPolicy = newValue
|
|
}
|
|
.trackingSize($listSize)
|
|
}
|
|
}
|