You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/input/Input.jsx

253 lines
6.6 KiB

import classNames from 'classnames';
import TextArea from './TextArea';
import omit from 'omit.js';
import inputProps from './inputProps';
import { hasProp, getComponentFromProp } from '../_util/props-util';
import { isIE, isIE9 } from '../_util/env';
6 years ago
import { ConfigConsumerProps } from '../config-provider';
import Password from './Password';
import Icon from '../icon';
import warning from '../_util/warning';
7 years ago
function noop() {}
function fixControlledValue(value) {
7 years ago
if (typeof value === 'undefined' || value === null) {
return '';
7 years ago
}
return value;
7 years ago
}
6 years ago
function hasPrefixSuffix(props) {
return 'prefix' in props || props.suffix || props.allowClear;
}
7 years ago
export default {
name: 'AInput',
inheritAttrs: false,
7 years ago
model: {
prop: 'value',
event: 'change.value',
},
props: {
...inputProps,
},
6 years ago
inject: {
configProvider: { default: () => ({}) },
},
data() {
const { value, defaultValue } = this.$props;
7 years ago
return {
7 years ago
stateValue: fixControlledValue(!hasProp(this, 'value') ? defaultValue : value),
};
7 years ago
},
watch: {
value(val) {
this.stateValue = fixControlledValue(val);
},
},
mounted() {
this.$nextTick(() => {
if (this.autoFocus) {
this.focus();
}
});
7 years ago
},
methods: {
handleKeyDown(e) {
7 years ago
if (e.keyCode === 13) {
this.$emit('pressEnter', e);
7 years ago
}
this.$emit('keydown', e);
7 years ago
},
focus() {
this.$refs.input.focus();
7 years ago
},
blur() {
this.$refs.input.blur();
7 years ago
},
select() {
this.$refs.input.select();
},
7 years ago
6 years ago
getInputClassName(prefixCls) {
const { size, disabled } = this.$props;
7 years ago
return {
[`${prefixCls}`]: true,
[`${prefixCls}-sm`]: size === 'small',
[`${prefixCls}-lg`]: size === 'large',
[`${prefixCls}-disabled`]: disabled,
};
7 years ago
},
6 years ago
setValue(value, e) {
// https://github.com/vueComponent/ant-design-vue/issues/92
if (isIE && !isIE9 && this.stateValue === value) {
return;
}
if (!hasProp(this, 'value')) {
this.stateValue = value;
} else {
this.$forceUpdate();
}
if (!e.target.composing) {
this.$emit('change.value', value);
}
this.$emit('change', e);
this.$emit('input', e);
},
handleReset(e) {
this.setValue('', e);
},
handleChange(e) {
this.setValue(e.target.value, e);
},
renderClearIcon(prefixCls) {
const { allowClear } = this.$props;
const { stateValue } = this;
if (!allowClear || stateValue === undefined || stateValue === null || stateValue === '') {
return null;
}
return (
<Icon
type="close-circle"
theme="filled"
onClick={this.handleReset}
class={`${prefixCls}-clear-icon`}
role="button"
/>
);
},
renderSuffix(prefixCls) {
const { allowClear } = this.$props;
let suffix = getComponentFromProp(this, 'suffix');
if (suffix || allowClear) {
return (
<span class={`${prefixCls}-suffix`}>
{this.renderClearIcon(prefixCls)}
{suffix}
</span>
);
}
return null;
},
renderLabeledInput(prefixCls, children) {
const props = this.$props;
let addonAfter = getComponentFromProp(this, 'addonAfter');
let addonBefore = getComponentFromProp(this, 'addonBefore');
7 years ago
// Not wrap when there is not addons
if (!addonBefore && !addonAfter) {
return children;
7 years ago
}
6 years ago
const wrapperClassName = `${prefixCls}-group`;
const addonClassName = `${wrapperClassName}-addon`;
addonBefore = addonBefore ? <span class={addonClassName}>{addonBefore}</span> : null;
7 years ago
addonAfter = addonAfter ? <span class={addonClassName}>{addonAfter}</span> : null;
7 years ago
6 years ago
const mergedWrapperClassName = {
[`${prefixCls}-wrapper`]: true,
[wrapperClassName]: addonBefore || addonAfter,
};
7 years ago
6 years ago
const mergedGroupClassName = classNames(`${prefixCls}-group-wrapper`, {
[`${prefixCls}-group-wrapper-sm`]: props.size === 'small',
[`${prefixCls}-group-wrapper-lg`]: props.size === 'large',
});
7 years ago
return (
6 years ago
<span class={mergedGroupClassName}>
<span class={mergedWrapperClassName}>
update to antd3.8.3 (#159) * refactor: align * feat: update align to 2.4.3 * feat: update trigger 2.5.4 * feat: update tooltip 3.7.2 * fix: align * feat: update vc-calendar to 9.6.2 * feat: update vc-checkbox to 2.1.5 * feat: update vc-dialog to 7.1.8 * feat: update vc-from to 2.2.1 * feat: update vc-notification to 3.1.1 * test: update snapshots * feat: update vc-tree to 1.12.6 * feat: update vc-table to 6.2.8 * feat: update vc-upload to 2.5.1 * feat: update vc-input-number to 4.0.12 * feat: update vc-tabs to 9.2.6 * refactor: vc-menu * refactor: update vc-menu to 7.0.5 * style: remove unused * feat: update pagination to 1.16.5 * feat: add vc-progress 2.2.5 tag * feat: add vc-rate 2.4.0 tag * feat: update vc-slider to 8.6.1 * fix: tooltip error * style: delete conosle * feat: update vc-steps to 3.1.1 * add vc-switch tag 1.6.0 * feat: update upload to 2.5.1 * fix: update vc-menu * fix: update store * fix: add ref dir * fix: trigger mock shouldComponentUpdate * fix: update vc-select * revert: trigger lazyrenderbox * fix: update vc-select * fix: update vc-select * fix: update vc-select * fix: update vc-menu * fix: update vc-slick ref * update style to 3.8.2 * test: update snapshots * update vc-select * update util & affix * feat: add drawer * fix: support title add slot mode * test: update affix test * update alert * update anchor * update snapshots * fix: doc and vc-drawer * update select & auto-complete * update back-top & grid * feractor: avatar * test: add drawer test * update badge * update button * update card * update divider * feat: update vc-tabs to 9.3.6 and tabs * add afterEnter callback * update form * fix: update drawer * test: update snapshots * update modal & notification * test: update snapshots * update message * update locale-provider * update dropdown * update layout popconfirm popover * update time-picker * update menu * update date-picker * docs: update input docs * update input * update snapshots * update table * update test snapshots * feat: update progress * update checkbox * feat: update spin * update radio * docs: slider steps timeline * update list * update transfer * update collapse * update cascader * update upload
6 years ago
{addonBefore}
{children}
{addonAfter}
</span>
7 years ago
</span>
);
7 years ago
},
6 years ago
renderLabeledIcon(prefixCls, children) {
const { size } = this.$props;
let suffix = this.renderSuffix(prefixCls);
if (!hasPrefixSuffix(this.$props)) {
return children;
7 years ago
}
6 years ago
let prefix = getComponentFromProp(this, 'prefix');
prefix = prefix ? <span class={`${prefixCls}-prefix`}>{prefix}</span> : null;
7 years ago
const affixWrapperCls = classNames(`${prefixCls}-affix-wrapper`, {
[`${prefixCls}-affix-wrapper-sm`]: size === 'small',
[`${prefixCls}-affix-wrapper-lg`]: size === 'large',
});
7 years ago
return (
<span class={affixWrapperCls}>
7 years ago
{prefix}
{children}
{suffix}
</span>
);
7 years ago
},
6 years ago
renderInput(prefixCls) {
7 years ago
const otherProps = omit(this.$props, [
'prefixCls',
7 years ago
'addonBefore',
'addonAfter',
'prefix',
'suffix',
'value',
'defaultValue',
]);
const { stateValue, getInputClassName, handleKeyDown, handleChange, $listeners } = this;
7 years ago
const inputProps = {
domProps: {
value: stateValue,
},
7 years ago
attrs: { ...otherProps, ...this.$attrs },
7 years ago
on: {
...$listeners,
keydown: handleKeyDown,
input: handleChange,
change: noop,
7 years ago
},
6 years ago
class: getInputClassName(prefixCls),
7 years ago
ref: 'input',
};
if ($listeners['change.value']) {
inputProps.directives = [{ name: 'ant-input' }];
}
return this.renderLabeledIcon(prefixCls, <input {...inputProps} />);
7 years ago
},
},
render() {
7 years ago
if (this.$props.type === 'textarea') {
const { $listeners } = this;
7 years ago
const textareaProps = {
props: this.$props,
attrs: this.$attrs,
on: {
7 years ago
...$listeners,
change: this.handleChange,
keydown: this.handleKeyDown,
7 years ago
},
directives: [
{
name: 'ant-input',
},
],
};
return <TextArea {...textareaProps} ref="input" />;
7 years ago
}
6 years ago
const { prefixCls: customizePrefixCls } = this.$props;
const getPrefixCls = this.configProvider.getPrefixCls || ConfigConsumerProps.getPrefixCls;
const prefixCls = getPrefixCls('input', customizePrefixCls);
return this.renderLabeledInput(prefixCls, this.renderInput(prefixCls));
7 years ago
},
};