-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathShopkeeperEditView.swift
More file actions
113 lines (100 loc) · 3.33 KB
/
Copy pathShopkeeperEditView.swift
File metadata and controls
113 lines (100 loc) · 3.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
//
// ShopkeeperEditView.swift
// NativeAppTemplate
//
import SwiftUI
struct ShopkeeperEditView: View {
@Environment(\.dismiss) private var dismiss
@Environment(\.openURL) var openURL
@State private var viewModel: ShopkeeperEditViewModel
init(viewModel: ShopkeeperEditViewModel) {
_viewModel = State(wrappedValue: viewModel)
}
var body: some View {
contentView
.onChange(of: viewModel.shouldDismiss) { _, shouldDismiss in
if shouldDismiss {
dismiss()
}
}
}
}
// MARK: - private
private extension ShopkeeperEditView {
var contentView: some View {
@ViewBuilder var contentView: some View {
if viewModel.isBusy {
LoadingView()
} else {
shopkeeperEditView
}
}
return contentView
}
var shopkeeperEditView: some View {
Form {
Section {
TextField(String.placeholderFullName, text: $viewModel.name)
} header: {
Text(String.fullName)
} footer: {
Text(String.fullNameIsRequired)
.foregroundStyle(Utility.isBlank(viewModel.name) ? .validationError : .clear)
}
Section {
TextField(String.placeholderEmail, text: $viewModel.email)
.textContentType(.emailAddress)
.autocapitalization(.none)
} header: {
Text(String.email)
} footer: {
if Utility.isBlank(viewModel.email) {
Text(String.emailIsRequired)
.foregroundStyle(.validationError)
} else if viewModel.hasInvalidDataEmail {
Text(String.emailIsInvalid)
.foregroundStyle(.validationError)
}
}
Section {
Picker(String.timeZone, selection: $viewModel.selectedTimeZone) {
ForEach(timeZones.keys, id: \.self) { key in
Text(timeZones[key]!).tag(key)
}
}
}
Spacer()
.listRowBackground(Color.clear)
Section {
MainButtonView(title: String.deleteMyAccount, type: .destructive(withArrow: false)) {
viewModel.isShowingDeleteConfirmationDialog = true
}
.listRowBackground(Color.clear)
}
}
.alert(
String.deleteMyAccount,
isPresented: $viewModel.isShowingDeleteConfirmationDialog
) {
Button(String.deleteMyAccount, role: .destructive) {
viewModel.destroyShopkeeper()
}
Button(String.cancel, role: .cancel) {
viewModel.isShowingDeleteConfirmationDialog = false
}
} message: {
Text(String.areYouSure)
}
.navigationTitle(String.editProfile)
.toolbar {
ToolbarItem(placement: .navigationBarTrailing) {
Button {
viewModel.updateShopkeeper()
} label: {
Text(String.save)
}
.disabled(viewModel.hasInvalidData)
}
}
}
}