salix/front/core/directives/focus.js

33 lines
840 B
JavaScript
Raw Normal View History

2018-02-10 15:18:01 +00:00
import ngModule from '../module';
/**
2018-02-10 15:18:01 +00:00
* Sets the focus and selects the text on the input.
*
* @return {Object} The directive
*/
export function directive() {
return {
restrict: 'A',
link: function($scope, $element, $attrs) {
$scope.$watch('', function() {
let input = $element[0];
let selector = 'input, textarea, button, submit';
2017-05-16 10:37:48 +00:00
if (!input.matches(selector))
input = input.querySelector(selector);
2017-02-08 16:37:54 +00:00
2017-05-16 10:37:48 +00:00
if (!input) {
console.warn(`vnFocus: Can't find a focusable element`);
2017-02-08 16:37:54 +00:00
return;
}
input.focus();
2017-05-16 10:37:48 +00:00
if (input.select)
input.select();
2017-02-08 13:45:27 +00:00
});
}
};
}
2018-02-10 15:18:01 +00:00
ngModule.directive('vnFocus', directive);