Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Elixxir dApps SDK Swift
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile
iOS
Elixxir dApps SDK Swift
Commits
f87c132f
Commit
f87c132f
authored
2 years ago
by
Dariusz Rybicki
Browse files
Options
Downloads
Patches
Plain Diff
Implement MyIdentityView
parent
1d4953ff
No related branches found
No related tags found
1 merge request
!14
[Example App] Make identity & contact
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Example/example-app/Sources/MyIdentityFeature/MyIdentityView.swift
+63
-4
63 additions, 4 deletions
...xample-app/Sources/MyIdentityFeature/MyIdentityView.swift
with
63 additions
and
4 deletions
Example/example-app/Sources/MyIdentityFeature/MyIdentityView.swift
+
63
−
4
View file @
f87c132f
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
)
"
}
}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment