Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
X
xpub-faraday
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
xpub
xpub-faraday
Commits
98604e91
Commit
98604e91
authored
6 years ago
by
Anca Ursachi
Browse files
Options
Downloads
Patches
Plain Diff
feat(passwordConfirmation.js): Making the regex for password field.
parent
a07a6905
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!196
S25 - EiC submit revision
,
!189
S25
,
!183
Hin 961 strong password
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/component-faraday-ui/src/PasswordConfirmation.js
+43
-9
43 additions, 9 deletions
packages/component-faraday-ui/src/PasswordConfirmation.js
with
43 additions
and
9 deletions
packages/component-faraday-ui/src/PasswordConfirmation.js
+
43
−
9
View file @
98604e91
import
React
,
{
Fragment
}
from
'
react
'
import
{
required
}
from
'
xpub-validators
'
import
{
connect
}
from
'
react-redux
'
import
{
getFormValues
}
from
'
redux-form
'
import
{
ValidatedField
,
TextField
}
from
'
@pubsweet/ui
'
import
{
th
}
from
'
@pubsweet/ui-toolkit
'
import
{
Row
,
Item
,
Label
}
from
'
pubsweet-component-faraday-ui
'
import
{
Row
,
Item
,
Label
,
IconButton
}
from
'
pubsweet-component-faraday-ui
'
import
styled
from
'
styled-components
'
const
PasswordField
=
input
=>
<
TextField
{...
input
}
type
=
"
password
"
/>
const
PasswordConfirmation
=
()
=>
(
const
minLength
=
(
value
,
min
)
=>
!!
(
value
&&
value
.
length
>
min
)
const
atLeastOneUppercase
=
value
=>
{
const
uppercaseRegex
=
new
RegExp
(
/
([
A-Z
])
+/
)
return
uppercaseRegex
.
test
(
value
)
}
const
atLeastOneLowerrcase
=
value
=>
{
const
lowercaseRegex
=
new
RegExp
(
/
([
a-z
])
+/
)
return
lowercaseRegex
.
test
(
value
)
}
const
atLeastOneDigit
=
value
=>
{
const
digitRegex
=
new
RegExp
(
/
([
0-9
])
+/
)
return
digitRegex
.
test
(
value
)
}
const
atLeastOnePunctuation
=
value
=>
{
const
punctuationRegex
=
new
RegExp
(
/
([
,'!@#$%^&*(){}[
\]
<>?
/\\
|.:;_-
])
+/
)
return
punctuationRegex
.
test
(
value
)
}
const
PasswordConfirmation
=
({
formValues
:
{
password
=
''
}
})
=>
(
<
Fragment
>
<
Row
mb
=
{
2
}
>
<
Item
data
-
test
-
id
=
"
sign-up-password
"
vertical
>
...
...
@@ -31,20 +50,33 @@ const PasswordConfirmation = () => (
<
/Row
>
<
Row
mb
=
{
2
}
>
<
Item
vertical
>
<
RulesTitle
>
The
password
must
contain
:
<
/RulesTitle
>
<
div
style
=
{{
display
:
'
flex
'
}}
>
<
IconButton
icon
=
"
info
"
iconSize
=
{
2
}
primary
/>
<
RulesTitle
>
The
password
must
contain
:
<
/RulesTitle
>
<
/div
>
<
Rules
>
<
Rule
>
at
least
6
characters
<
/Rule
>
<
Rule
>
at
least
1
uppercase
character
(
A
-
Z
)
<
/Rule
>
<
Rule
>
at
least
1
lowercase
character
(
a
-
z
)
<
/Rule
>
<
Rule
>
at
least
1
digit
(
0
-
9
)
<
/Rule
>
<
Rule
>
at
least
1
special
character
(
punctuation
)
<
/Rule
>
<
Rule
fulfilled
=
{
minLength
(
password
,
6
)}
>
at
least
6
characters
<
/Rule
>
<
Rule
fulfilled
=
{
atLeastOneUppercase
(
password
)}
>
at
least
1
uppercase
character
(
A
-
Z
)
<
/Rule
>
<
Rule
fulfilled
=
{
atLeastOneLowerrcase
(
password
)}
>
at
least
1
lowercase
character
(
a
-
z
)
<
/Rule
>
<
Rule
fulfilled
=
{
atLeastOneDigit
(
password
)}
>
at
least
1
digit
(
0
-
9
)
<
/Rule
>
<
Rule
fulfilled
=
{
atLeastOnePunctuation
(
password
)}
>
at
least
1
special
character
(
punctuation
)
<
/Rule
>
<
/Rules
>
<
/Item
>
<
/Row
>
<
/Fragment
>
)
export
default
PasswordConfirmation
export
default
connect
(
state
=>
({
formValues
:
getFormValues
(
'
signUpInvitation
'
)(
state
),
}))(
PasswordConfirmation
)
const
RulesTitle
=
styled
.
p
`
margin: 0px;
...
...
@@ -75,4 +107,6 @@ const Rules = styled.div`
`
const
Rule
=
styled
.
p
`
margin: 0px;
text-decoration:
${
props
=>
(
props
.
fulfilled
?
'
line-through
'
:
'
none
'
)}
;
color:
${
props
=>
(
props
.
fulfilled
?
th
(
'
colorPrimary
'
)
:
'
inherit
'
)}
;
`
This diff is collapsed.
Click to expand it.
Preview
0%
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