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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile
iOS
Elixxir dApps SDK Swift
Merge requests
!11
[Example App] Monitor network health
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
[Example App] Monitor network health
feature/example-network-health-monitor
into
main
Overview
0
Commits
8
Pipelines
0
Changes
12
Merged
[Example App] Monitor network health
Dariusz Rybicki
requested to merge
feature/example-network-health-monitor
into
main
Jun 6, 2022
Overview
0
Commits
8
Pipelines
0
Changes
12
This MR contains
!9 (merged)
(make sure to merge it before reviewing this MR)
Display network health in the example app.
Monitor network health changes in the example app.
Edited
Jun 8, 2022
by
Dariusz Rybicki
0
0
Merge request reports
Compare
main
version 3
473295a2
Jun 8, 2022
version 2
473295a2
Jun 8, 2022
version 1
473295a2
Jun 6, 2022
main (base)
and
latest version
latest version
721e81ea
8 commits,
Jun 8, 2022
version 3
473295a2
7 commits,
Jun 8, 2022
version 2
473295a2
8 commits,
Jun 8, 2022
version 1
473295a2
16 commits,
Jun 6, 2022
12 files
+
434
−
27
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Example/example-app/Sources/AppFeature/App.swift
+
6
−
1
View file @ 721e81ea
Edit in single-file editor
Open in Web IDE
Show full file
@@ -29,6 +29,7 @@ extension AppEnvironment {
)
.
eraseToAnyScheduler
()
return
AppEnvironment
(
makeId
:
UUID
.
init
,
hasClient
:
clientSubject
.
map
{
$0
!=
nil
}
.
eraseToAnyPublisher
(),
mainScheduler
:
mainScheduler
,
landing
:
LandingEnvironment
(
@@ -40,7 +41,11 @@ extension AppEnvironment {
mainScheduler
:
mainScheduler
,
error
:
ErrorEnvironment
()
),
session
:
SessionEnvironment
()
session
:
SessionEnvironment
(
getClient
:
{
clientSubject
.
value
},
bgScheduler
:
bgScheduler
,
mainScheduler
:
mainScheduler
)
)
}
}
Loading