1eb21c71ce
- Swift 6, SwiftUI, MVVM + async/await architecture - iOS 17.0 minimum deployment target - Two targets: Mayday app + MaydayLiveActivity widget extension - Models: UserResponse, TokenPair, AppNotification, SessionResponse, AlertAttributes - Services: HTTPClient (actor), AuthService, KeychainService, NotificationsAPIService, PushNotificationService - ViewModels: AuthViewModel, NotificationsViewModel, SettingsViewModel - Views: Login/Register/VerifyEmail, NotificationsList/Detail, Settings/ChangePassword/Sessions - APNs push notifications with UIApplicationDelegate - ActivityKit Live Activities for Dynamic Island + Lock Screen - Keychain (Security framework) token storage - 30-second polling with pagination for notifications - Xcode project file (project.pbxproj) with correct build phases for both targets Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
97 lines
3.5 KiB
Swift
97 lines
3.5 KiB
Swift
import SwiftUI
|
|
|
|
struct SettingsView: View {
|
|
@EnvironmentObject var authViewModel: AuthViewModel
|
|
@StateObject private var viewModel = SettingsViewModel()
|
|
@Environment(\.dismiss) var dismiss
|
|
@State private var showChangePassword = false
|
|
@State private var showSessions = false
|
|
@State private var showLogoutAllConfirm = false
|
|
|
|
var body: some View {
|
|
NavigationStack {
|
|
Form {
|
|
Section("Аккаунт") {
|
|
if let user = authViewModel.currentUser {
|
|
LabeledContent("Email", value: user.email)
|
|
}
|
|
}
|
|
|
|
Section {
|
|
Button("Сменить пароль") {
|
|
showChangePassword = true
|
|
}
|
|
|
|
Toggle(isOn: .constant(true)) {
|
|
Label("Push-уведомления", systemImage: "bell.badge")
|
|
}
|
|
.onChange(of: true) { _, _ in
|
|
// Open system settings
|
|
if let url = URL(string: UIApplication.openNotificationSettingsURLString) {
|
|
UIApplication.shared.open(url)
|
|
}
|
|
}
|
|
}
|
|
|
|
Section {
|
|
Button {
|
|
showSessions = true
|
|
} label: {
|
|
HStack {
|
|
Text("Активные сессии")
|
|
Spacer()
|
|
if !viewModel.sessions.isEmpty {
|
|
Text("(\(viewModel.sessions.count))")
|
|
.foregroundStyle(.secondary)
|
|
}
|
|
Image(systemName: "chevron.right")
|
|
.foregroundStyle(.secondary)
|
|
}
|
|
}
|
|
.foregroundStyle(.primary)
|
|
}
|
|
|
|
Section {
|
|
Button("Выйти из аккаунта", role: .destructive) {
|
|
Task { await authViewModel.logout() }
|
|
}
|
|
|
|
Button("Выйти на всех устройствах", role: .destructive) {
|
|
showLogoutAllConfirm = true
|
|
}
|
|
}
|
|
}
|
|
.navigationTitle("Настройки")
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
.toolbar {
|
|
ToolbarItem(placement: .topBarTrailing) {
|
|
Button("Готово") { dismiss() }
|
|
}
|
|
}
|
|
.sheet(isPresented: $showChangePassword) {
|
|
ChangePasswordView()
|
|
}
|
|
.sheet(isPresented: $showSessions) {
|
|
SessionsView()
|
|
.environmentObject(viewModel)
|
|
}
|
|
.confirmationDialog(
|
|
"Выйти на всех устройствах?",
|
|
isPresented: $showLogoutAllConfirm,
|
|
titleVisibility: .visible
|
|
) {
|
|
Button("Выйти везде", role: .destructive) {
|
|
Task {
|
|
_ = try? await NotificationsAPIService.shared.logoutAll()
|
|
await authViewModel.logout()
|
|
}
|
|
}
|
|
Button("Отмена", role: .cancel) {}
|
|
}
|
|
.task {
|
|
await viewModel.loadSessions()
|
|
}
|
|
}
|
|
}
|
|
}
|