Skip to content

Commit

Permalink
show validation error if time input is partially filled (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
jelhan committed Nov 2, 2019
1 parent 17c6761 commit 6571a07
Show file tree
Hide file tree
Showing 11 changed files with 70 additions and 7 deletions.
20 changes: 18 additions & 2 deletions app/components/create-options-datetime.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { inject as service } from '@ember/service';
import { readOnly, mapBy, filter } from '@ember/object/computed';
import Component from '@ember/component';
import { isPresent, isEmpty } from '@ember/utils';
import { observer, get } from '@ember/object';
import { action, observer, get } from '@ember/object';
import {
validator, buildValidations
}
Expand Down Expand Up @@ -128,7 +128,7 @@ export default Component.extend(modelValidations, {
} else {
this.set('shouldShowErrors', true);
}
}
},
},
// dates are sorted
datesForFirstDay: readOnly('groupedDates.firstObject.items'),
Expand All @@ -148,4 +148,20 @@ export default Component.extend(modelValidations, {
groupedDates: groupBy('dates', raw('day')),

store: service(),

inputChanged: action(function(date, value) {
// reset partially filled state
date.set('isPartiallyFilled', false);

date.set('time', value);
}),

validateInput: action(function(date, event) {
let element = event.target;

if (!element.checkValidity()) {
// partially filled time input
date.set('isPartiallyFilled', true);
}
}),
});
1 change: 1 addition & 0 deletions app/locales/ca/translations.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ export default {
phone: '{{description}} ha de ser un número de telèfon vàlid',
url: '{{description}} ha de ser un URL vàlid ',
time: '{{description}} ha de ser un orari vàlid (p. ex. 10:45)',
'time.notPartially': 'Partially times are not supported',
unique: '{{description}} ha de ser explícita',
'unique.name': 'Aquest nom ja s\'ha usat'
}
Expand Down
1 change: 1 addition & 0 deletions app/locales/de/translations.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ export default {
phone: '{{description}} muss eine gültige Telefonnummer sein',
url: '{{description}} muss eine gültige URL sein',
time: '{{description}} muss eine gültige Zeit sein (z.B. 10:45)',
'time.notPartially': 'Zeiten müssen vollständig sein',
unique: '{{description}} müssen eindeutig sein',
'unique.name': 'Dieser Name wurde bereits genutzt'
}
Expand Down
1 change: 1 addition & 0 deletions app/locales/en/translations.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ export default {
phone: '{{description}} must be a valid phone number',
url: '{{description}} must be a valid URL ',
time: '{{description}} must be a valid time (e.g. 10:45)',
'time.notPartially': 'Partially times are not supported',
unique: '{{description}} must be explicit',
'unique.name': 'This name has already been used'
}
Expand Down
1 change: 1 addition & 0 deletions app/locales/es/translations.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ export default {
phone: '{{description}} debe de ser un número de teléfono valido',
url: '{{description}} debe de ser una URL valida',
time: '{{description}} debe de ser un horario valido (p.ej. 10:45)',
'time.notPartially': 'Partially times are not supported',
unique: '{{description}} debe de ser único',
'unique.name': 'Este nombre ya está usado'
}
Expand Down
1 change: 1 addition & 0 deletions app/locales/it/translations.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ export default {
phone: '{{description}} deve essere un numero di telefono valido.',
url: '{{description}} deve essere un URL valido ',
time: '{{description}} deve essere un orario valido (ad es. 10:45)',
'time.notPartially': 'Partially times are not supported',
unique: '{{description}} deve essere esplicito',
'unique.name': 'Questo nome è già stato usato'
}
Expand Down
18 changes: 16 additions & 2 deletions app/models/option.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ from 'ember-cp-validations';
const { attr } = DS;

const Validations = buildValidations({
isPartiallyFilled: validator('falsy', {
messageKey: 'errors.time.notPartially',
dependentKeys: ['model.i18n.locale'],
}),
title: [
validator('iso8601', {
active: readOnly('model.poll.isFindADate'),
Expand Down Expand Up @@ -48,7 +52,11 @@ const Validations = buildValidations({
validator('alias', {
alias: 'title',
firstMessageOnly: true
})
}),
// alias is partially filled validation as that's part of time validation
validator('alias', {
alias: 'isPartiallyFilled',
}),
]
});

Expand Down Expand Up @@ -114,6 +122,12 @@ export default Fragment.extend(Validations, {
this.title.length === 'YYYY-MM-DDTHH:mm:ss.SSSZ'.length;
}),

// isPartiallyFilled should be set only for times on creation if input is filled
// partially (e.g. "11:--"). It's required cause ember-cp-validations does not
// provide any method to push a validation error into validations. It's only
// working based on a property of the model.
isPartiallyFilled: false,

time: computed('date', {
get() {
const date = this.date;
Expand All @@ -130,7 +144,7 @@ export default Fragment.extend(Validations, {
return date.format('HH:mm');
},
set(key, value) {
const date = this.date;
let date = this.date;
assert(
'can not set a time if current value is not a valid date',
moment.isMoment(date)
Expand Down
5 changes: 4 additions & 1 deletion app/templates/components/create-options-datetime.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,13 @@
<div class="input-group">
<el.control
@autofocus={{unless index true false}}
@onChange={{action (mut el.value)}}
@onChange={{action this.inputChanged date}}
@placeholder="00:00"
@type="time"
@value={{el.value}}

{{on "focusout" (action this.validateInput date)}}

id={{el.id}}
/>
<div class="input-group-append">
Expand Down
9 changes: 9 additions & 0 deletions app/validators/falsy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import BaseValidator from 'ember-cp-validations/validators/base';

const Truthy = BaseValidator.extend({
validate(value, options) {
return value ? this.createErrorMessage('iso8601', value, options) : true;
}
});

export default Truthy;
4 changes: 2 additions & 2 deletions tests/integration/components/create-options-datetime-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module('Integration | Component | create options datetime', function(hooks) {
* that ones could be identifed by class 'ws-inputreplace'
*/

test('it generates inpute field for options iso 8601 date string (without time)', async function(assert) {
test('it generates input field for options iso 8601 date string (without time)', async function(assert) {
// validation is based on validation of every option fragment
// which validates according to poll model it belongs to
// therefore each option needs to be pushed to poll model to have it as
Expand Down Expand Up @@ -55,7 +55,7 @@ module('Integration | Component | create options datetime', function(hooks) {
);
});

test('it generates inpute field for options iso 8601 datetime string (with time)', async function(assert) {
test('it generates input field for options iso 8601 datetime string (with time)', async function(assert) {
// validation is based on validation of every option fragment
// which validates according to poll model it belongs to
// therefore each option needs to be pushed to poll model to have it as
Expand Down
16 changes: 16 additions & 0 deletions tests/unit/validators/falsy-test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';

module('Unit | Validator | falsy', function(hooks) {
setupTest(hooks);

test('`false` passes validation', function(assert) {
let validator = this.owner.lookup('validator:falsy');
assert.ok(validator.validate(false) === true);
});

test('`true` fails validation', function(assert) {
let validator = this.owner.lookup('validator:falsy');
assert.ok(typeof validator.validate(true) === 'string');
});
});

0 comments on commit 6571a07

Please sign in to comment.