mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-30 11:24:21 +01:00
35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
Application.Directives.directive('bsJasnyFileinput', [function () {
|
|
return {
|
|
require: ['ngModel'],
|
|
link: function ($scope, elm, attrs, requiredCtrls) {
|
|
var ngModelCtrl = requiredCtrls[0];
|
|
var fileinput = elm.parents('[data-provides=fileinput]');
|
|
var filetypeRegex = attrs.bsJasnyFileinput;
|
|
fileinput.on('clear.bs.fileinput', function (e) {
|
|
if (ngModelCtrl) {
|
|
ngModelCtrl.$setViewValue(null);
|
|
ngModelCtrl.$setPristine();
|
|
$scope.$apply();
|
|
}
|
|
});
|
|
fileinput.on('change.bs.fileinput', function (e, files) {
|
|
if (ngModelCtrl) {
|
|
if (files) {
|
|
ngModelCtrl.$setViewValue(files.result);
|
|
} else {
|
|
ngModelCtrl.$setPristine();
|
|
}
|
|
|
|
// TODO: ne marche pas pour filetype
|
|
if (filetypeRegex) {
|
|
if (files && typeof files.type !== 'undefined' && files.type.match(new RegExp(filetypeRegex))) { ngModelCtrl.$setValidity('filetype', true); } else { ngModelCtrl.$setValidity('filetype', false); }
|
|
};
|
|
}
|
|
$scope.$apply();
|
|
});
|
|
}
|
|
};
|
|
}]);
|