123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- <template>
- <div :class="[
- type === 'textarea' ? 'el-textarea' : 'el-input',
- inputSize ? 'el-input--' + inputSize : '',
- {
- 'is-disabled': inputDisabled,
- 'el-input-group': $slots.prepend || $slots.append,
- 'el-input-group--append': $slots.append,
- 'el-input-group--prepend': $slots.prepend,
- 'el-input--prefix': $slots.prefix || prefixIcon,
- 'el-input--suffix': $slots.suffix || suffixIcon
- }
- ]"
- @mouseenter="hovering = true"
- @mouseleave="hovering = false"
- >
- <template v-if="type !== 'textarea'">
- <!-- 前置元素 -->
- <div class="el-input-group__prepend" v-if="$slots.prepend">
- <slot name="prepend"></slot>
- </div>
- <input
- :tabindex="tabindex"
- v-if="type !== 'textarea'"
- class="el-input__inner"
- v-bind="$props"
- :disabled="inputDisabled"
- :autocomplete="autoComplete"
- :value="currentValue"
- ref="input"
- @input="handleInput"
- @focus="handleFocus"
- @blur="handleBlur"
- @change="handleChange"
- :aria-label="label"
- >
- <!-- 前置内容 -->
- <span class="el-input__prefix" v-if="$slots.prefix || prefixIcon" :style="prefixOffset">
- <slot name="prefix"></slot>
- <i class="el-input__icon"
- v-if="prefixIcon"
- :class="prefixIcon">
- </i>
- </span>
- <!-- 后置内容 -->
- <span
- class="el-input__suffix"
- v-if="$slots.suffix || suffixIcon || showClear || validateState && needStatusIcon"
- :style="suffixOffset">
- <span class="el-input__suffix-inner">
- <template v-if="!showClear">
- <slot name="suffix"></slot>
- <i class="el-input__icon"
- v-if="suffixIcon"
- :class="suffixIcon">
- </i>
- </template>
- <i v-else
- class="el-input__icon el-icon-circle-close el-input__clear"
- @click="clear"
- ></i>
- </span>
- <i class="el-input__icon"
- v-if="validateState"
- :class="['el-input__validateIcon', validateIcon]">
- </i>
- </span>
- <!-- 后置元素 -->
- <div class="el-input-group__append" v-if="$slots.append">
- <slot name="append"></slot>
- </div>
- </template>
- <textarea
- v-else
- :tabindex="tabindex"
- class="el-textarea__inner"
- :value="currentValue"
- @input="handleInput"
- ref="textarea"
- v-bind="$props"
- :disabled="inputDisabled"
- :style="textareaStyle"
- @focus="handleFocus"
- @blur="handleBlur"
- @change="handleChange"
- :aria-label="label"
- >
- </textarea>
- </div>
- </template>
- <script>
- import emitter from 'element-ui/src/mixins/emitter';
- import Migrating from 'element-ui/src/mixins/migrating';
- import calcTextareaHeight from './calcTextareaHeight';
- import merge from 'element-ui/src/utils/merge';
- export default {
- name: 'ElInput',
- componentName: 'ElInput',
- mixins: [emitter, Migrating],
- inject: {
- elForm: {
- default: ''
- },
- elFormItem: {
- default: ''
- }
- },
- data() {
- return {
- currentValue: this.value,
- textareaCalcStyle: {},
- prefixOffset: null,
- suffixOffset: null,
- hovering: false,
- focused: false
- };
- },
- props: {
- value: [String, Number],
- placeholder: String,
- size: String,
- resize: String,
- name: String,
- form: String,
- id: String,
- maxlength: Number,
- minlength: Number,
- readonly: Boolean,
- autofocus: Boolean,
- disabled: Boolean,
- type: {
- type: String,
- default: 'text'
- },
- autosize: {
- type: [Boolean, Object],
- default: false
- },
- rows: {
- type: Number,
- default: 2
- },
- autoComplete: {
- type: String,
- default: 'off'
- },
- max: {},
- min: {},
- step: {},
- validateEvent: {
- type: Boolean,
- default: true
- },
- suffixIcon: String,
- prefixIcon: String,
- label: String,
- clearable: {
- type: Boolean,
- default: false
- },
- tabindex: String
- },
- computed: {
- _elFormItemSize() {
- return (this.elFormItem || {}).elFormItemSize;
- },
- validateState() {
- return this.elFormItem ? this.elFormItem.validateState : '';
- },
- needStatusIcon() {
- return this.elForm ? this.elForm.statusIcon : false;
- },
- validateIcon() {
- return {
- validating: 'el-icon-loading',
- success: 'el-icon-circle-check',
- error: 'el-icon-circle-close'
- }[this.validateState];
- },
- textareaStyle() {
- return merge({}, this.textareaCalcStyle, { resize: this.resize });
- },
- inputSize() {
- return this.size || this._elFormItemSize || (this.$ELEMENT || {}).size;
- },
- inputDisabled() {
- return this.disabled || (this.elForm || {}).disabled;
- },
- isGroup() {
- return this.$slots.prepend || this.$slots.append;
- },
- showClear() {
- return this.clearable && this.currentValue !== '' && (this.focused || this.hovering);
- }
- },
- watch: {
- 'value'(val, oldValue) {
- this.setCurrentValue(val);
- }
- },
- methods: {
- focus() {
- (this.$refs.input || this.$refs.textarea).focus();
- },
- getMigratingConfig() {
- return {
- props: {
- 'icon': 'icon is removed, use suffix-icon / prefix-icon instead.',
- 'on-icon-click': 'on-icon-click is removed.'
- },
- events: {
- 'click': 'click is removed.'
- }
- };
- },
- handleBlur(event) {
- this.focused = false;
- this.$emit('blur', event);
- if (this.validateEvent) {
- this.dispatch('ElFormItem', 'el.form.blur', [this.currentValue]);
- }
- },
- inputSelect() {
- (this.$refs.input || this.$refs.textarea).select();
- },
- resizeTextarea() {
- if (this.$isServer) return;
- const { autosize, type } = this;
- if (type !== 'textarea') return;
- if (!autosize) {
- this.textareaCalcStyle = {
- minHeight: calcTextareaHeight(this.$refs.textarea).minHeight
- };
- return;
- }
- const minRows = autosize.minRows;
- const maxRows = autosize.maxRows;
- this.textareaCalcStyle = calcTextareaHeight(this.$refs.textarea, minRows, maxRows);
- },
- handleFocus(event) {
- this.focused = true;
- this.$emit('focus', event);
- },
- handleInput(event) {
- const value = event.target.value;
- this.$emit('input', value);
- this.setCurrentValue(value);
- },
- handleChange(event) {
- this.$emit('change', event.target.value);
- },
- setCurrentValue(value) {
- if (value === this.currentValue) return;
- this.$nextTick(_ => {
- this.resizeTextarea();
- });
- this.currentValue = value;
- if (this.validateEvent) {
- this.dispatch('ElFormItem', 'el.form.change', [value]);
- }
- },
- calcIconOffset(place) {
- const pendantMap = {
- 'suf': 'append',
- 'pre': 'prepend'
- };
- const pendant = pendantMap[place];
- if (this.$slots[pendant]) {
- return { transform: `translateX(${place === 'suf' ? '-' : ''}${this.$el.querySelector(`.el-input-group__${pendant}`).offsetWidth}px)` };
- }
- },
- clear() {
- this.$emit('input', '');
- this.$emit('change', '');
- this.$emit('clear');
- this.setCurrentValue('');
- this.focus();
- }
- },
- created() {
- this.$on('inputSelect', this.inputSelect);
- },
- mounted() {
- this.resizeTextarea();
- if (this.isGroup) {
- this.prefixOffset = this.calcIconOffset('pre');
- this.suffixOffset = this.calcIconOffset('suf');
- }
- }
- };
- </script>
|