Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cesium2s
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
Service Desk
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
clients
Cesium-grp
cesium2s
Merge requests
!24
Check mnemonic and scan derivations to choose one
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Check mnemonic and scan derivations to choose one
feat/mnemonic-import
into
develop
Overview
4
Commits
16
Pipelines
0
Changes
23
Merged
poka
requested to merge
feat/mnemonic-import
into
develop
6 months ago
Overview
4
Commits
16
Pipelines
0
Changes
23
Expand
Closes
#37 (closed)
Edited
4 months ago
by
Benoit Lavenier
0
0
Merge request reports
Compare
develop
version 15
03dc11ee
3 months ago
version 14
52350c09
3 months ago
version 13
2025ec5a
4 months ago
version 12
069005a1
4 months ago
version 11
31bb4a3b
4 months ago
version 10
c25e124a
6 months ago
version 9
6e00ea61
6 months ago
version 8
024cabcd
6 months ago
version 7
d365ed1c
6 months ago
version 6
73001c65
6 months ago
version 5
17eb3b79
6 months ago
version 4
470edf23
6 months ago
version 3
681cd3c1
6 months ago
version 2
dcecb540
6 months ago
version 1
dcecb540
6 months ago
develop (base)
and
latest version
latest version
f1953b3f
16 commits,
3 months ago
version 15
03dc11ee
13 commits,
3 months ago
version 14
52350c09
12 commits,
3 months ago
version 13
2025ec5a
12 commits,
4 months ago
version 12
069005a1
11 commits,
4 months ago
version 11
31bb4a3b
10 commits,
4 months ago
version 10
c25e124a
10 commits,
6 months ago
version 9
6e00ea61
9 commits,
6 months ago
version 8
024cabcd
7 commits,
6 months ago
version 7
d365ed1c
6 commits,
6 months ago
version 6
73001c65
6 commits,
6 months ago
version 5
17eb3b79
5 commits,
6 months ago
version 4
470edf23
5 commits,
6 months ago
version 3
681cd3c1
4 commits,
6 months ago
version 2
dcecb540
3 commits,
6 months ago
version 1
dcecb540
5 commits,
6 months ago
23 files
+
416
−
67
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
23
Search (e.g. *.vue) (Ctrl+P)
src/app/account/auth/derivation-selection/derivation-selection.component.html
0 → 100644
+
61
−
0
Options
<ion-header>
<ion-toolbar>
<ion-title
translate
>
AUTH.SELECT_DERIVATION.TITLE
</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
@if (loading) {
<ion-item
lines=
"none"
>
<label>
LOGIN.SCAN_DERIVATIONS
</label>
</ion-item>
} @else {
<ion-list>
<ion-radio-group
[(ngModel)]=
"selectedDerivation"
(ngModelChange)=
"onSelectionChange()"
>
<ion-list-header>
<label
translate
>
AUTH.SELECT_DERIVATION.AVAILABLE_WALLETS
</label>
</ion-list-header>
@for (account of derivations; track account.address) {
<ion-item
(click)=
"selectDerivation(account)"
tappable
[class.selected]=
"selectedDerivation === account"
>
<ion-icon
aria-hidden=
"true"
slot=
"start"
name=
"key"
></ion-icon>
<ion-label>
<h2
translate
>
COMMON.ADDRESS
</h2>
<p
class=
"ion-text-nowrap"
>
<span>
{{ account.address | addressFormat }}
</span>
</p>
</ion-label>
<ion-badge
slot=
"end"
color=
"light"
>
{{ account | balance | amountFormat }}
</ion-badge>
</ion-item>
}
</ion-radio-group>
</ion-list>
}
</ion-content>
<!-- TODO: Consider using common form buttons used in the rest of the app for consistency, reusability and responsiveness -->
<ion-footer>
<ion-toolbar>
<ion-row
class=
"ion-no-padding"
>
<ion-col></ion-col>
<!-- buttons -->
<ion-col
size=
"auto"
>
<ion-button
fill=
"clear"
color=
"dark"
(click)=
"onCancel()"
>
<ion-label
translate
>
COMMON.BTN_CANCEL
</ion-label>
</ion-button>
<ion-button
[fill]=
"invalid ? 'clear' : 'solid'"
[disabled]=
"!selectedDerivation"
(click)=
"doSubmit()"
(keyup.enter)=
"doSubmit()"
color=
"tertiary"
>
<ion-label
translate
>
COMMON.BTN_CONTINUE
</ion-label>
</ion-button>
</ion-col>
</ion-row>
</ion-toolbar>
</ion-footer>
Loading