5
5
// Created by 若葉良介 on 2023/12/22.
6
6
//
7
7
8
- // AndroidのConfirmationFragment相当
9
- // https://github.com/datasign-inc/tw2023-wallet-android/blob/3655ace01d3c454529e34f1b78a4329f44508d23/app/src/main/java/com/ownd_project/tw2023_wallet_android/ui/confirmation/ConfirmationFragment.kt#L1
8
+
9
+ /*
10
+ -------------------------------------------------------------------------------
11
+ Caution!
12
+
13
+ `CredentialOfferView` will be significantly revised in PR#17,
14
+ which has been filed to make it ID1 compliant.
15
+ This PR#17 will be merged soon, but will not be included in the next release.
16
+
17
+ With that in mind, the current content below contains a stopgap measure
18
+ that was implemented to get through the next release.
19
+
20
+ -------------------------------------------------------------------------------
21
+ */
10
22
11
23
import SwiftUI
12
24
@@ -37,35 +49,19 @@ func getClaimNames(credentialSupported: CredentialSupported?) -> [String] {
37
49
struct CredentialOfferView : View {
38
50
@Environment ( \. presentationMode) var presentationMode
39
51
@Environment ( CredentialOfferArgs . self) var args
40
- var viewModel : CredentialOfferViewModel
52
+ @ StateObject var viewModel : CredentialOfferViewModel = . init ( )
41
53
@State private var navigateToHome = false
42
54
@State private var navigateToPinInput = false
43
55
@State private var showErrorDialog = false
44
56
45
- init ( viewModel: CredentialOfferViewModel = CredentialOfferViewModel ( ) ) {
46
- self . viewModel = viewModel
47
- }
48
-
49
- var body : some View {
50
- NavigationStack {
51
- Group {
52
- if viewModel. dataModel. isLoading {
53
- ProgressView ( ) . progressViewStyle ( CircularProgressViewStyle ( ) )
54
- }
55
- else {
56
- let issuerDisplayName = viewModel. dataModel. metaData? . display? . first? . name ?? " "
57
- let credentialSupported = viewModel. dataModel. metaData? . credentialsSupported
58
- . keys
59
- let firstCredentialName = credentialSupported? . first
60
- let targetCredential =
61
- firstCredentialName == nil
62
- ? nil
63
- : viewModel. dataModel. metaData? . credentialsSupported [ firstCredentialName!]
64
-
65
- let credentialDisplayName = getCredentialDisplayName (
66
- credentialSupported: targetCredential)
67
- let displayNames : [ String ] = getClaimNames (
68
- credentialSupported: targetCredential)
57
+ private func contentWithMetaData(
58
+ issuerDisplayName: String ,
59
+ credentialDisplayName: String ,
60
+ displayNames: [ String ]
61
+ ) -> some View {
62
+ GeometryReader { geometry in
63
+ ScrollView {
64
+ VStack {
69
65
HStack {
70
66
Button ( " Cancel " ) {
71
67
presentationMode. wrappedValue. dismiss ( )
@@ -74,67 +70,103 @@ struct CredentialOfferView: View {
74
70
. padding ( . horizontal, 16 )
75
71
Spacer ( )
76
72
}
77
- GeometryReader { geometry in
78
- ScrollView {
79
- VStack {
80
- Text (
81
- String (
82
- format: NSLocalizedString (
83
- " credentialOfferText " , comment: " " ) , issuerDisplayName,
84
- credentialDisplayName)
85
- )
86
- . modifier ( Title3Black ( ) )
87
- Image ( " issue_confirmation " )
88
- . resizable ( )
89
- . scaledToFit ( )
90
- . frame ( width: geometry. size. width * 0.65 ) // 横幅の65%に設定
91
- }
92
- Text ( " Items to be issued " )
93
- . padding ( . vertical, 16 )
94
- . frame ( maxWidth: . infinity, alignment: . leading) // 左寄せ
95
- . modifier ( BodyGray ( ) )
96
- ForEach ( displayNames, id: \. self) { displayName in
97
- CredentialSubjectLow ( item: displayName)
73
+
74
+ Text (
75
+ String (
76
+ format: NSLocalizedString (
77
+ " credentialOfferText " , comment: " " ) , issuerDisplayName,
78
+ credentialDisplayName)
79
+ )
80
+ . modifier ( Title3Black ( ) )
81
+ Image ( " issue_confirmation " )
82
+ . resizable ( )
83
+ . scaledToFit ( )
84
+ . frame ( width: geometry. size. width * 0.65 ) // 横幅の65%に設定
85
+ }
86
+ Text ( " Items to be issued " )
87
+ . padding ( . vertical, 16 )
88
+ . frame ( maxWidth: . infinity, alignment: . leading) // 左寄せ
89
+ . modifier ( BodyGray ( ) )
90
+ ForEach ( displayNames, id: \. self) { displayName in
91
+ CredentialSubjectLow ( item: displayName)
92
+ }
93
+ Text ( " issuing_authority_information " )
94
+ . frame ( maxWidth: . infinity, alignment: . leading) // 左寄せ
95
+ . padding ( . top, 32 )
96
+ . modifier ( BodyBlack ( ) )
97
+
98
+ IssuerDetail (
99
+ issuerMetadata: viewModel. dataModel. metaData, showTitle: false )
100
+ ActionButtonBlack (
101
+ title: " issue_credential " ,
102
+ action: {
103
+ let pinRequired = viewModel. checkIfPinIsRequired ( )
104
+ if pinRequired {
105
+ self . navigateToPinInput = true
106
+ }
107
+ else {
108
+ Task {
109
+ try await viewModel. sendRequest ( userPin: nil )
110
+ self . navigateToHome = true
98
111
}
99
- Text ( " issuing_authority_information " )
100
- . frame ( maxWidth: . infinity, alignment: . leading) // 左寄せ
101
- . padding ( . top, 32 )
102
- . modifier ( BodyBlack ( ) )
103
-
104
- IssuerDetail (
105
- issuerMetadata: viewModel. dataModel. metaData, showTitle: false )
106
- ActionButtonBlack (
107
- title: " issue_credential " ,
108
- action: {
109
- let pinRequired = viewModel. checkIfPinIsRequired ( )
110
- if pinRequired {
111
- self . navigateToPinInput = true
112
- }
113
- else {
114
- Task {
115
- try await viewModel. sendRequest ( userPin: nil )
116
- self . navigateToHome = true
117
- }
118
- }
119
- }
120
- )
121
- . padding ( . vertical, 16 )
122
- . navigationDestination (
123
- isPresented: $navigateToHome,
124
- destination: {
125
- Home ( )
126
- }
127
- )
128
- . navigationDestination (
129
- isPresented: $navigateToPinInput,
130
- destination: {
131
- PinCodeInput ( viewModel: self . viewModel)
132
- }
133
- )
134
112
}
135
- . padding ( . horizontal, 16 ) // 左右に16dpのパディング
136
- . padding ( . vertical, 16 )
137
113
}
114
+ )
115
+ . padding ( . vertical, 16 )
116
+ . navigationDestination (
117
+ isPresented: $navigateToHome,
118
+ destination: {
119
+ Home ( )
120
+ }
121
+ )
122
+ . navigationDestination (
123
+ isPresented: $navigateToPinInput,
124
+ destination: {
125
+ PinCodeInput ( viewModel: self . viewModel)
126
+ }
127
+ )
128
+ }
129
+ . padding ( . horizontal, 16 ) // 左右に16dpのパディング
130
+ . padding ( . vertical, 16 )
131
+ }
132
+ }
133
+
134
+ @ViewBuilder
135
+ private var content : some View {
136
+
137
+ if let issuerDisplayName = viewModel. dataModel. metaData? . display? . first? . name,
138
+ let credentialName = viewModel. credential_vct,
139
+ let credentialSupported = viewModel. dataModel. metaData? . credentialsSupported,
140
+ let targetCredential = viewModel. dataModel. metaData? . credentialsSupported [
141
+ credentialName]
142
+ {
143
+
144
+ let credentialDisplayName = getCredentialDisplayName (
145
+ credentialSupported: targetCredential)
146
+ let displayNames : [ String ] = getClaimNames (
147
+ credentialSupported: targetCredential)
148
+
149
+ contentWithMetaData (
150
+ issuerDisplayName: issuerDisplayName, credentialDisplayName: credentialDisplayName,
151
+ displayNames: displayNames)
152
+ }
153
+ else {
154
+ EmptyView ( )
155
+ . onAppear {
156
+ print ( " Unable to load metadata " )
157
+ showErrorDialog = true
158
+ }
159
+ }
160
+ }
161
+
162
+ var body : some View {
163
+ NavigationStack {
164
+ Group {
165
+ if viewModel. dataModel. isLoading {
166
+ ProgressView ( ) . progressViewStyle ( CircularProgressViewStyle ( ) )
167
+ }
168
+ else {
169
+ content
138
170
}
139
171
}
140
172
. navigationBarTitle ( " " , displayMode: . inline)
0 commit comments