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.
194 lines
4.4 KiB
194 lines
4.4 KiB
7 years ago
|
|
||
7 years ago
|
import TextArea from './TextArea'
|
||
|
import omit from 'omit.js'
|
||
7 years ago
|
import inputProps from './inputProps'
|
||
7 years ago
|
import { hasProp, getComponentFromProp } from '../_util/props-util'
|
||
7 years ago
|
|
||
|
function fixControlledValue (value) {
|
||
|
if (typeof value === 'undefined' || value === null) {
|
||
|
return ''
|
||
|
}
|
||
|
return value
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
name: 'Input',
|
||
|
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
|
}
|
||
|
},
|
||
|
computed: {
|
||
|
},
|
||
|
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) {
|
||
7 years ago
|
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),
|
||
|
}
|
||
|
|
||
|
if (addonBefore || addonAfter) {
|
||
|
return (
|
||
|
<span
|
||
|
class={`${props.prefixCls}-group-wrapper`}
|
||
|
>
|
||
|
<span class={className}>
|
||
|
{addonBefore}
|
||
|
{children}
|
||
|
{addonAfter}
|
||
|
</span>
|
||
|
</span>
|
||
|
)
|
||
|
}
|
||
|
return (
|
||
|
<span class={className}>
|
||
|
{addonBefore}
|
||
|
{children}
|
||
|
{addonAfter}
|
||
|
</span>
|
||
|
)
|
||
|
},
|
||
|
renderLabeledIcon (children) {
|
||
|
const { prefixCls } = this.$props
|
||
7 years ago
|
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
|
||
|
|
||
|
return (
|
||
|
<span
|
||
|
class={`${prefixCls}-affix-wrapper`}
|
||
|
>
|
||
|
{prefix}
|
||
|
{children}
|
||
|
{suffix}
|
||
|
</span>
|
||
|
)
|
||
|
},
|
||
|
|
||
|
renderInput () {
|
||
7 years ago
|
const otherProps = omit(this.$props, [
|
||
|
'prefixCls',
|
||
|
])
|
||
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: getInputClassName(),
|
||
|
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())
|
||
|
},
|
||
|
}
|
||
7 years ago
|
|