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

213 lines
5.2 KiB

import classNames from 'classnames'
7 years ago
import TextArea from './TextArea'
import omit from 'omit.js'
7 years ago
import inputProps from './inputProps'
import { hasProp, getComponentFromProp, getStyle, getClass } from '../_util/props-util'
7 years ago
function fixControlledValue (value) {
if (typeof value === 'undefined' || value === null) {
return ''
}
return value
}
export default {
inheritAttrs: false,
name: 'AInput',
7 years ago
props: {
...inputProps,
},
7 years ago
model: {
prop: 'value',
event: 'change.value',
},
7 years ago
data () {
const { value, defaultValue } = this.$props
return {
7 years ago
stateValue: fixControlledValue(!hasProp(this, 'value') ? defaultValue : value),
7 years ago
}
},
mounted () {
this.$nextTick(() => {
if (this.autoFocus) {
this.focus()
}
})
7 years ago
},
watch: {
value (val) {
this.stateValue = fixControlledValue(val)
},
},
methods: {
handleKeyDown (e) {
if (e.keyCode === 13) {
7 years ago
this.$emit('pressEnter', e)
7 years ago
}
this.$emit('keydown', e)
},
handleChange (e) {
7 years ago
if (!hasProp(this, 'value')) {
7 years ago
this.stateValue = e.target.value
} else {
this.$forceUpdate()
}
7 years ago
this.$emit('change.value', e.target.value)
this.$emit('change', e)
7 years ago
this.$emit('input', e)
7 years ago
},
focus () {
this.$refs.input.focus()
},
blur () {
this.$refs.input.blur()
},
getInputClassName () {
const { prefixCls, size, disabled } = this.$props
return {
[`${prefixCls}`]: true,
[`${prefixCls}-sm`]: size === 'small',
[`${prefixCls}-lg`]: size === 'large',
[`${prefixCls}-disabled`]: disabled,
}
},
renderLabeledInput (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
}
const wrapperClassName = `${props.prefixCls}-group`
const addonClassName = `${wrapperClassName}-addon`
addonBefore = addonBefore ? (
<span class={addonClassName}>
{addonBefore}
</span>
) : null
addonAfter = addonAfter ? (
<span class={addonClassName}>
{addonAfter}
</span>
) : null
const className = {
[`${props.prefixCls}-wrapper`]: true,
[wrapperClassName]: (addonBefore || addonAfter),
}
const groupClassName = classNames(`${props.prefixCls}-group-wrapper`, {
[`${props.prefixCls}-group-wrapper-sm`]: props.size === 'small',
[`${props.prefixCls}-group-wrapper-lg`]: props.size === 'large',
})
7 years ago
if (addonBefore || addonAfter) {
return (
<span
class={groupClassName}
style={getStyle(this)}
7 years ago
>
<span class={className}>
{addonBefore}
{children}
{addonAfter}
</span>
</span>
)
}
return (
<span class={className}>
{addonBefore}
{children}
{addonAfter}
</span>
)
},
renderLabeledIcon (children) {
const { prefixCls, size } = this.$props
let prefix = getComponentFromProp(this, 'prefix')
let suffix = getComponentFromProp(this, 'suffix')
7 years ago
if (!prefix && !suffix) {
return children
}
prefix = prefix ? (
<span class={`${prefixCls}-prefix`}>
{prefix}
</span>
) : null
suffix = suffix ? (
<span class={`${prefixCls}-suffix`}>
{suffix}
</span>
) : null
const affixWrapperCls = classNames(getClass(this), `${prefixCls}-affix-wrapper`, {
[`${prefixCls}-affix-wrapper-sm`]: size === 'small',
[`${prefixCls}-affix-wrapper-lg`]: size === 'large',
})
7 years ago
return (
<span
class={affixWrapperCls}
style={getStyle(this)}
7 years ago
>
{prefix}
{children}
{suffix}
</span>
)
},
renderInput () {
7 years ago
const otherProps = omit(this.$props, [
'prefixCls',
7 years ago
'addonBefore',
'addonAfter',
'prefix',
'suffix',
7 years ago
])
7 years ago
const { stateValue, getInputClassName, handleKeyDown, handleChange, $listeners } = this
const inputProps = {
domProps: {
value: stateValue,
},
7 years ago
attrs: { ...otherProps, ...this.$attrs },
7 years ago
on: {
...$listeners,
keydown: handleKeyDown,
input: handleChange,
},
class: classNames(getInputClassName(), getClass(this)),
7 years ago
ref: 'input',
7 years ago
}
7 years ago
return this.renderLabeledIcon(
<input
7 years ago
{...inputProps}
7 years ago
/>,
)
},
},
render () {
7 years ago
if (this.$props.type === 'textarea') {
7 years ago
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
},
}
return <TextArea {...textareaProps} ref='input' />
}
7 years ago
return this.renderLabeledInput(this.renderInput())
},
}