Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
Breeze
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DeStream-public
Breeze
Commits
eec7ee54
Commit
eec7ee54
authored
May 04, 2017
by
dev0tion
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add create form validation
parent
3b6c88a3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
5 deletions
+52
-5
create.component.html
Breeze.UI/src/app/setup/create/create.component.html
+2
-0
create.component.ts
Breeze.UI/src/app/setup/create/create.component.ts
+50
-5
No files found.
Breeze.UI/src/app/setup/create/create.component.html
View file @
eec7ee54
...
...
@@ -6,10 +6,12 @@
<div
class=
"form-group"
>
<label>
Name:
</label>
<input
class=
"form-control"
formControlName=
"walletName"
type=
"text"
placeholder=
"Enter a name for your wallet."
>
<div
*
ngIf=
"formErrors.walletName"
class=
"alert alert-danger"
>
{{formErrors.walletName}}
</div>
</div>
<div
class=
"form-group"
>
<label>
Password:
</label>
<input
class=
"form-control"
formControlName=
"walletPassword"
type=
"password"
placeholder=
"Enter a password for your wallet."
>
<div
*
ngIf=
"formErrors.walletPassword"
class=
"alert alert-danger"
>
{{formErrors.walletPassword}}
</div>
</div>
<div
class=
"form-group"
>
<label>
Network:
</label>
...
...
Breeze.UI/src/app/setup/create/create.component.ts
View file @
eec7ee54
...
...
@@ -16,11 +16,7 @@ import { Mnemonic } from '../../shared/classes/mnemonic';
export
class
CreateComponent
{
constructor
(
private
globalService
:
GlobalService
,
private
apiService
:
ApiService
,
private
router
:
Router
,
private
fb
:
FormBuilder
)
{
this
.
createWalletForm
=
fb
.
group
({
"walletName"
:
[
""
,
Validators
.
required
],
"walletPassword"
:
[
""
,
Validators
.
required
],
"selectNetwork"
:
[
"main"
,
Validators
.
required
]
});
this
.
buildCreateForm
();
}
private
createWalletForm
:
FormGroup
;
...
...
@@ -29,6 +25,55 @@ export class CreateComponent {
private
responseMessage
:
string
;
private
errorMessage
:
string
;
private
buildCreateForm
():
void
{
this
.
createWalletForm
=
this
.
fb
.
group
({
"walletName"
:
[
""
,
[
Validators
.
required
,
Validators
.
minLength
(
3
),
Validators
.
maxLength
(
24
)
]
],
"walletPassword"
:
[
""
,
Validators
.
required
],
"selectNetwork"
:
[
"main"
,
Validators
.
required
]
});
this
.
createWalletForm
.
valueChanges
.
subscribe
(
data
=>
this
.
onValueChanged
(
data
));
this
.
onValueChanged
();
}
onValueChanged
(
data
?:
any
)
{
if
(
!
this
.
createWalletForm
)
{
return
;
}
const
form
=
this
.
createWalletForm
;
for
(
const
field
in
this
.
formErrors
)
{
this
.
formErrors
[
field
]
=
''
;
const
control
=
form
.
get
(
field
);
if
(
control
&&
control
.
dirty
&&
!
control
.
valid
)
{
const
messages
=
this
.
validationMessages
[
field
];
for
(
const
key
in
control
.
errors
)
{
this
.
formErrors
[
field
]
+=
messages
[
key
]
+
' '
;
}
}
}
}
formErrors
=
{
'walletName'
:
''
,
'walletPassword'
:
''
};
validationMessages
=
{
'walletName'
:
{
'required'
:
'Name is required.'
,
'minlength'
:
'Name must be at least 3 characters long.'
,
'maxlength'
:
'Name cannot be more than 24 characters long.'
},
'walletPassword'
:
{
'required'
:
'A password is required.'
}
};
private
onBackClicked
()
{
this
.
router
.
navigate
([
"/setup"
]);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment