1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-30 11:24:21 +01:00
fab-manager/app/assets/javascripts/directives/validators.js

49 lines
1.2 KiB
JavaScript
Raw Normal View History

/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/
'use strict';
2016-03-23 18:39:41 +01:00
Application.Directives.directive('url', [ function() {
const URL_REGEXP = /^(https?:\/\/)([\da-z\.-]+)\.([-a-z0-9\.]{2,30})([\/\w \.-]*)*\/?$/;
return {
require: 'ngModel',
link(scope, element, attributes, ctrl) {
return ctrl.$validators.url = function(modelValue, viewValue) {
if (ctrl.$isEmpty(modelValue)) {
return true;
}
if (URL_REGEXP.test(viewValue)) {
return true;
}
2016-03-23 18:39:41 +01:00
// otherwise, this is invalid
return false;
};
}
};
}
]);
2016-03-23 18:39:41 +01:00
Application.Directives.directive('endpoint', [ function() {
const ENDPOINT_REGEXP = /^\/?([-._~:?#\[\]@!$&'()*+,;=%\w]+\/?)*$/;
return {
require: 'ngModel',
link(scope, element, attributes, ctrl) {
return ctrl.$validators.endpoint = function(modelValue, viewValue) {
if (ctrl.$isEmpty(modelValue)) {
return true;
}
if (ENDPOINT_REGEXP.test(viewValue)) {
return true;
}
2016-03-23 18:39:41 +01:00
// otherwise, this is invalid
return false;
};
}
};
}
]);