7ab232e770
issue #5409 & #5336 - update settings/general - update signin - update signup - update edit user - update reset password - update setup/three - remove `formatErrors` function from validationEngine mixin (it's no longer needed as inline validations should handle this instead)
47 lines
1.6 KiB
JavaScript
47 lines
1.6 KiB
JavaScript
import BaseValidator from './base';
|
|
|
|
var SettingValidator = BaseValidator.create({
|
|
properties: ['title', 'description', 'password', 'postsPerPage'],
|
|
title: function (model) {
|
|
var title = model.get('title');
|
|
|
|
if (!validator.isLength(title, 0, 150)) {
|
|
model.get('errors').add('title', 'Title is too long');
|
|
this.invalidate();
|
|
}
|
|
},
|
|
description: function (model) {
|
|
var desc = model.get('description');
|
|
|
|
if (!validator.isLength(desc, 0, 200)) {
|
|
model.get('errors').add('description', 'Description is too long');
|
|
this.invalidate();
|
|
}
|
|
},
|
|
password: function (model) {
|
|
var isPrivate = model.get('isPrivate'),
|
|
password = model.get('password');
|
|
|
|
if (isPrivate && password === '') {
|
|
model.get('errors').add('password', 'Password must be supplied');
|
|
this.invalidate();
|
|
}
|
|
},
|
|
postsPerPage: function (model) {
|
|
var postsPerPage = model.get('postsPerPage');
|
|
|
|
if (!validator.isInt(postsPerPage)) {
|
|
model.get('errors').add('postsPerPage', 'Posts per page must be a number');
|
|
this.invalidate();
|
|
} else if (postsPerPage > 1000) {
|
|
model.get('errors').add('postsPerPage', 'The maximum number of posts per page is 1000');
|
|
this.invalidate();
|
|
} else if (postsPerPage < 1) {
|
|
model.get('errors').add('postsPerPage', 'The minimum number of posts per page is 1');
|
|
this.invalidate();
|
|
}
|
|
}
|
|
});
|
|
|
|
export default SettingValidator;
|