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.
173 lines
3.8 KiB
173 lines
3.8 KiB
<script>
|
|
// import TextArea from './TextArea';
|
|
|
|
import inputProps from './inputProps'
|
|
|
|
function fixControlledValue (value) {
|
|
if (typeof value === 'undefined' || value === null) {
|
|
return ''
|
|
}
|
|
return value
|
|
}
|
|
|
|
export default {
|
|
name: 'Input',
|
|
props: {
|
|
...inputProps,
|
|
},
|
|
model: {
|
|
prop: 'value',
|
|
event: 'change.value',
|
|
},
|
|
data () {
|
|
const { value, defaultValue } = this.$props
|
|
return {
|
|
stateValue: fixControlledValue(value === undefined ? defaultValue : value),
|
|
}
|
|
},
|
|
computed: {
|
|
},
|
|
watch: {
|
|
value (val) {
|
|
this.stateValue = fixControlledValue(val)
|
|
},
|
|
},
|
|
methods: {
|
|
handleKeyDown (e) {
|
|
if (e.keyCode === 13) {
|
|
this.$emit('press-enter', e)
|
|
}
|
|
this.$emit('keydown', e)
|
|
},
|
|
handleChange (e) {
|
|
const { value } = this.$props
|
|
if (value === undefined) {
|
|
this.stateValue = e.target.value
|
|
} else {
|
|
this.$forceUpdate()
|
|
this.$emit('change.value', e.target.value)
|
|
this.$emit('change', e)
|
|
}
|
|
},
|
|
|
|
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 { addonBefore, addonAfter } = this.$slots
|
|
// 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
|
|
let { prefix, suffix } = this.$slots
|
|
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 () {
|
|
const { placeholder, type, readOnly = false, name, id, disabled = false } = this.$props
|
|
const { stateValue, getInputClassName, handleKeyDown, handleChange } = this
|
|
return this.renderLabeledIcon(
|
|
<input
|
|
value={stateValue}
|
|
type={type}
|
|
readOnly={readOnly}
|
|
placeholder={placeholder}
|
|
name={name}
|
|
id={id}
|
|
disabled={disabled}
|
|
class={getInputClassName()}
|
|
onKeydown={handleKeyDown}
|
|
onInput={handleChange}
|
|
ref='input'
|
|
/>,
|
|
)
|
|
},
|
|
},
|
|
render () {
|
|
return this.renderLabeledInput(this.renderInput())
|
|
},
|
|
}
|
|
</script>
|