salix/client/core/src/components/textfield/textfield.js

57 lines
1.5 KiB
JavaScript
Raw Normal View History

2018-02-10 15:18:01 +00:00
import ngModule from '../../module';
import Input from '../../lib/input';
import './style.scss';
2017-11-16 13:30:17 +00:00
export default class Textfield extends Input {
constructor($element, $scope, $attrs, vnTemplate) {
super($element, $scope);
2018-02-10 15:18:01 +00:00
vnTemplate.normalizeInputAttrs($attrs);
2017-09-12 10:45:29 +00:00
this._value = null;
2017-11-16 13:30:17 +00:00
this.type = $attrs.type || 'text';
2017-09-13 07:45:42 +00:00
this.showActions = false;
2017-11-16 13:30:17 +00:00
this.hasInfo = Boolean($attrs.info);
this.info = $attrs.info || null;
2017-09-27 10:27:18 +00:00
this.hasFocus = false;
this.hasMouseIn = false;
componentHandler.upgradeElement($element[0].firstChild);
2017-09-12 10:45:29 +00:00
}
get value() {
return this._value;
}
set value(value) {
this._value = (value === undefined || value === '') ? null : value;
2017-09-13 07:45:42 +00:00
this.input.value = this._value;
2017-09-13 08:59:34 +00:00
this.hasValue = Boolean(this._value);
2017-09-13 07:45:42 +00:00
this.mdlUpdate();
}
set vnTabIndex(value) {
this.input.tabindex = value;
}
2017-09-13 07:45:42 +00:00
clear() {
this.value = null;
2017-05-18 15:35:07 +00:00
this.input.focus();
}
mdlUpdate() {
let mdlElement = this.element.firstChild.MaterialTextfield;
if (mdlElement) mdlElement.updateClasses_();
}
}
Textfield.$inject = ['$element', '$scope', '$attrs', 'vnTemplate'];
2018-02-10 15:18:01 +00:00
ngModule.component('vnTextfield', {
2017-09-12 09:44:56 +00:00
template: require('./textfield.html'),
2017-11-16 13:30:17 +00:00
controller: Textfield,
2017-09-12 10:45:29 +00:00
bindings: {
value: '=model',
2017-09-13 07:45:42 +00:00
label: '@?',
name: '@?',
disabled: '<?',
readonly: '<?',
2017-09-13 07:45:42 +00:00
rule: '@?',
type: '@?',
vnTabIndex: '@?'
2017-09-12 10:45:29 +00:00
}
2017-09-13 07:45:42 +00:00
});