Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
00bfb645
Commit
00bfb645
authored
Sep 23, 2016
by
Bryce Johnson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix errors, get validation running for signup box and sign in.
parent
a449b9b8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
28 deletions
+38
-28
app/assets/javascripts/gl_field_errors.js.es6
app/assets/javascripts/gl_field_errors.js.es6
+31
-21
app/assets/javascripts/username_validator.js.es6
app/assets/javascripts/username_validator.js.es6
+6
-6
app/views/devise/shared/_signup_box.html.haml
app/views/devise/shared/_signup_box.html.haml
+1
-1
No files found.
app/assets/javascripts/gl_field_errors.js.es6
View file @
00bfb645
...
...
@@ -17,10 +17,10 @@
const inputErrorClass = 'gl-field-error-outline';
class GlFieldError {
constructor({ input, form }) {
constructor({ input, form
Errors
}) {
this.inputElement = $(input);
this.inputDomElement = this.inputElement.get(0);
this.form = form;
this.form = form
Errors
;
this.errorMessage = this.inputElement.attr('title') || 'This field is required.';
this.fieldErrorElement = $(`<p class='${errorMessageClass} hide'>${ this.errorMessage }</p>`);
...
...
@@ -34,7 +34,7 @@
initFieldValidation() {
// hidden when injected into DOM
$inpu
t.after(this.fieldErrorElement);
this.inputElemen
t.after(this.fieldErrorElement);
this.inputElement.off('invalid').on('invalid', this.handleInvalidInput.bind(this));
}
...
...
@@ -42,24 +42,24 @@
this.setClearState();
if (this.state.valid) {
this.setValidState();
return
this.setValidState();
}
if (this.state.empty) {
this.setEmptyState();
return
this.setEmptyState();
}
if (!this.state.valid) {
this.setInvalidState();
return
this.setInvalidState();
}
this.form.focusOnFirstInvalid.apply(this);
this.form.focusOnFirstInvalid.apply(this
.form
);
}
handleInvalidInput(event) {
event.preventDefault();
this.state.valid =
tru
e;
this.state.valid =
fals
e;
this.state.empty = false;
this.renderValidity();
...
...
@@ -77,8 +77,7 @@
updateValidityState() {
const inputVal = this.inputElement.val();
this.state.empty = !!inputVal.length;
this.state.valid = this.getInputValidity;
this.state.valid = this.getInputValidity();
this.renderValidity();
}
...
...
@@ -87,17 +86,24 @@
}
setEmptyState() {
return this.set
Clear
State();
return this.set
Invalid
State();
}
setInvalidState() {
$input.addClass(inputErrorClass);
return this.$fieldErrorElement.show();
this.inputElement.addClass(inputErrorClass);
this.inputElement.siblings('p').hide();
return this.fieldErrorElement.show();
}
setClearState() {
$input.removeClass(inputErrorClass);
return this.fieldErrorElement.hide();
const inputVal = this.inputElement.val();
if (!inputVal.split(' ').length) {
const trimmedInput = this.inputElement.val().trim();
this.inputElement.val(trimmedInput);
}
this.inputElement.removeClass(inputErrorClass);
this.inputElement.siblings('p').hide();
this.fieldErrorElement.hide();
}
checkFieldValidity(target) {
...
...
@@ -105,19 +111,23 @@
}
}
const customValidationFlag = 'no-gl-field-errors';
class GlFieldErrors {
constructor(form) {
this.form = $(form);
this.state = {
inputs: [],
valid: false
};
this.initValidators();
}
initValidators () {
// select all non-hidden inputs in form
const form = this.form;
this.inputs = this.form.find(':input:not([type=hidden])')
.toArray()
.map((input) => new GlFieldError({ input, form }));
this.state.inputs = this.form.find(':input:not([type=hidden])').toArray()
.filter((input) => !input.classList.contains(customValidationFlag))
.map((input) => new GlFieldError({ input, formErrors: this }));
this.form.on('submit', this.catchInvalidFormSubmit);
}
...
...
@@ -134,7 +144,7 @@
}
focusOnFirstInvalid () {
const firstInvalid = this.
inputs.find((input) => !inpu
t.validity.valid);
const firstInvalid = this.
state.inputs.find((input) => !input.inputDomElemen
t.validity.valid);
$(firstInvalid).focus();
}
}
...
...
app/assets/javascripts/username_validator.js.es6
View file @
00bfb645
...
...
@@ -19,7 +19,7 @@
};
const debounceTimeout = _.debounce((username) => {
this.
state.
validateUsername(username);
this.validateUsername(username);
}, debounceTimeoutDuration);
this.inputElement.on('keyup.username_check', () => {
...
...
@@ -78,7 +78,7 @@
type: 'GET',
url: `/u/${username}/exists`,
dataType: 'json',
success: (res) => this.
updateValidation
State(res.exists)
success: (res) => this.
setAvailability
State(res.exists)
});
}
}
...
...
@@ -96,10 +96,10 @@
clearFieldValidationState() {
// TODO: Double check if this is valid chaining
const $input = this.inputElement
.siblings('p').hide().end()
.removeClass(invalidInputClass);
removeClass(successInputClass);
this.inputElement.siblings('p').hide();
this.inputElement.removeClass(invalidInputClass)
.
removeClass(successInputClass);
}
setUnavailableState() {
...
...
app/views/devise/shared/_signup_box.html.haml
View file @
00bfb645
...
...
@@ -8,7 +8,7 @@
=
f
.
text_field
:name
,
class:
"form-control top"
,
required:
true
,
title:
"This field is required."
%div
.username.form-group
=
f
.
label
:username
=
f
.
text_field
:username
,
class:
"form-control middle"
,
pattern:
"[a-zA-Z0-9]+"
,
required:
true
=
f
.
text_field
:username
,
class:
"form-control middle
no-gl-field-error
"
,
pattern:
"[a-zA-Z0-9]+"
,
required:
true
%p
.gl-field-error.hide
Please create a username with only alphanumeric characters.
%p
.validation-error.hide
Username is already taken.
%p
.validation-success.hide
Username is available.
...
...
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