102 lines
3.5 KiB
JavaScript
102 lines
3.5 KiB
JavaScript
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
|
|
// Styles
|
|
import '../../../src/stylus/components/_textarea.styl';
|
|
// Extensions
|
|
import VTextField from '../VTextField/VTextField';
|
|
import { consoleInfo } from '../../util/console';
|
|
/* @vue/component */
|
|
export default {
|
|
name: 'v-textarea',
|
|
extends: VTextField,
|
|
props: {
|
|
autoGrow: Boolean,
|
|
noResize: Boolean,
|
|
outline: Boolean,
|
|
rowHeight: {
|
|
type: [Number, String],
|
|
default: 24,
|
|
validator: function validator(v) {
|
|
return !isNaN(parseFloat(v));
|
|
}
|
|
},
|
|
rows: {
|
|
type: [Number, String],
|
|
default: 5,
|
|
validator: function validator(v) {
|
|
return !isNaN(parseInt(v, 10));
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
classes: function classes() {
|
|
return _extends({
|
|
'v-textarea': true,
|
|
'v-textarea--auto-grow': this.autoGrow,
|
|
'v-textarea--no-resize': this.noResizeHandle
|
|
}, VTextField.options.computed.classes.call(this, null));
|
|
},
|
|
dynamicHeight: function dynamicHeight() {
|
|
return this.autoGrow ? this.inputHeight : 'auto';
|
|
},
|
|
isEnclosed: function isEnclosed() {
|
|
return this.textarea || VTextField.options.computed.isEnclosed.call(this);
|
|
},
|
|
noResizeHandle: function noResizeHandle() {
|
|
return this.noResize || this.autoGrow;
|
|
}
|
|
},
|
|
watch: {
|
|
lazyValue: function lazyValue() {
|
|
!this.internalChange && this.autoGrow && this.$nextTick(this.calculateInputHeight);
|
|
}
|
|
},
|
|
mounted: function mounted() {
|
|
var _this = this;
|
|
|
|
setTimeout(function () {
|
|
_this.autoGrow && _this.calculateInputHeight();
|
|
}, 0);
|
|
// TODO: remove (2.0)
|
|
if (this.autoGrow && this.noResize) {
|
|
consoleInfo('"no-resize" is now implied when using "auto-grow", and can be removed', this);
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
calculateInputHeight: function calculateInputHeight() {
|
|
var input = this.$refs.input;
|
|
if (input) {
|
|
input.style.height = 0;
|
|
var height = input.scrollHeight;
|
|
var minHeight = parseInt(this.rows, 10) * parseFloat(this.rowHeight);
|
|
// This has to be done ASAP, waiting for Vue
|
|
// to update the DOM causes ugly layout jumping
|
|
input.style.height = Math.max(minHeight, height) + 'px';
|
|
}
|
|
},
|
|
genInput: function genInput() {
|
|
var input = VTextField.options.methods.genInput.call(this);
|
|
input.tag = 'textarea';
|
|
delete input.data.attrs.type;
|
|
input.data.attrs.rows = this.rows;
|
|
return input;
|
|
},
|
|
onInput: function onInput(e) {
|
|
VTextField.options.methods.onInput.call(this, e);
|
|
this.autoGrow && this.calculateInputHeight();
|
|
},
|
|
onKeyDown: function onKeyDown(e) {
|
|
// Prevents closing of a
|
|
// dialog when pressing
|
|
// enter
|
|
if (this.isFocused && e.keyCode === 13) {
|
|
e.stopPropagation();
|
|
}
|
|
this.internalChange = true;
|
|
this.$emit('keydown', e);
|
|
}
|
|
}
|
|
};
|
|
//# sourceMappingURL=VTextarea.js.map
|