91 lines
2.9 KiB
Swift
91 lines
2.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) 2025 Jellyfin & Jellyfin Contributors
|
|
//
|
|
|
|
import Defaults
|
|
import Factory
|
|
import JellyfinAPI
|
|
import SwiftUI
|
|
|
|
struct UserProfileSettingsView: View {
|
|
|
|
@EnvironmentObject
|
|
private var router: UserProfileSettingsCoordinator.Router
|
|
|
|
@ObservedObject
|
|
private var viewModel: SettingsViewModel
|
|
@StateObject
|
|
private var profileImageViewModel: UserProfileImageViewModel
|
|
|
|
@State
|
|
private var isPresentingConfirmReset: Bool = false
|
|
|
|
init(viewModel: SettingsViewModel) {
|
|
self.viewModel = viewModel
|
|
self._profileImageViewModel = StateObject(wrappedValue: UserProfileImageViewModel(user: viewModel.userSession.user.data))
|
|
}
|
|
|
|
var body: some View {
|
|
SplitFormWindowView()
|
|
.descriptionView {
|
|
UserProfileImage(
|
|
userID: viewModel.userSession.user.id,
|
|
source: viewModel.userSession.user.profileImageSource(
|
|
client: viewModel.userSession.client,
|
|
maxWidth: 400
|
|
)
|
|
)
|
|
.aspectRatio(contentMode: .fit)
|
|
.frame(maxWidth: 400)
|
|
}
|
|
.contentView {
|
|
|
|
// TODO: bring reset password to tvOS
|
|
// Section {
|
|
// ChevronButton(L10n.password)
|
|
// .onSelect {
|
|
// router.route(to: \.resetUserPassword, viewModel.userSession.user.id)
|
|
// }
|
|
// }
|
|
|
|
Section {
|
|
ChevronButton(L10n.security) {
|
|
router.route(to: \.localSecurity)
|
|
}
|
|
}
|
|
|
|
// TODO: Do we want this option on tvOS?
|
|
// Section {
|
|
// // TODO: move under future "Storage" tab
|
|
// // when downloads implemented
|
|
// Button(L10n.resetSettings) {
|
|
// isPresentingConfirmReset = true
|
|
// }
|
|
// .foregroundStyle(.red)
|
|
// } footer: {
|
|
// Text(L10n.resetSettingsDescription)
|
|
// }
|
|
}
|
|
.navigationTitle(L10n.user)
|
|
.confirmationDialog(
|
|
L10n.resetSettings,
|
|
isPresented: $isPresentingConfirmReset,
|
|
titleVisibility: .visible
|
|
) {
|
|
Button(L10n.reset, role: .destructive) {
|
|
do {
|
|
try viewModel.userSession.user.deleteSettings()
|
|
} catch {
|
|
viewModel.logger.error("Unable to reset user settings: \(error.localizedDescription)")
|
|
}
|
|
}
|
|
} message: {
|
|
Text(L10n.resetSettingsMessage)
|
|
}
|
|
}
|
|
}
|