Skip to content
Snippets Groups Projects
Commit f87c132f authored by Dariusz Rybicki's avatar Dariusz Rybicki
Browse files

Implement MyIdentityView

parent 1d4953ff
No related branches found
No related tags found
1 merge request!14[Example App] Make identity & contact
import ComposableArchitecture import ComposableArchitecture
import ComposablePresentation
import ElixxirDAppsSDK
import ErrorFeature
import SwiftUI import SwiftUI
public struct MyIdentityView: View { public struct MyIdentityView: View {
...@@ -9,15 +12,71 @@ public struct MyIdentityView: View { ...@@ -9,15 +12,71 @@ public struct MyIdentityView: View {
let store: Store<MyIdentityState, MyIdentityAction> let store: Store<MyIdentityState, MyIdentityAction>
struct ViewState: Equatable { struct ViewState: Equatable {
init(state: MyIdentityState) {} let identity: Identity?
let isMakingIdentity: Bool
init(state: MyIdentityState) {
identity = state.identity
isMakingIdentity = state.isMakingIdentity
}
var isLoading: Bool {
isMakingIdentity
}
} }
public var body: some View { public var body: some View {
WithViewStore(store.scope(state: ViewState.init)) { viewStore in WithViewStore(store.scope(state: ViewState.init)) { viewStore in
Text("MyIdentityView") Form {
.task { Section {
viewStore.send(.viewDidLoad) Text(string(for: viewStore.identity))
.textSelection(.enabled)
}
Section {
Button {
viewStore.send(.makeIdentity)
} label: {
HStack {
Text("Make new identity")
Spacer()
if viewStore.isMakingIdentity {
ProgressView()
}
}
}
} }
.disabled(viewStore.isLoading)
}
.navigationTitle("My identity")
.navigationBarBackButtonHidden(viewStore.isLoading)
.task {
viewStore.send(.viewDidLoad)
}
.sheet(
store.scope(
state: \.error,
action: MyIdentityAction.error
),
onDismiss: {
viewStore.send(.didDismissError)
},
content: ErrorView.init(store:)
)
}
}
func string(for identity: Identity?) -> String {
guard let identity = identity else {
return "No identity"
}
let encoder = JSONEncoder()
encoder.outputFormatting = .prettyPrinted
do {
let data = try encoder.encode(identity)
return String(data: data, encoding: .utf8) ?? "Decoding error"
} catch {
return "Decoding error: \(error)"
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment