first commit
This commit is contained in:
224
衣莎项目/源码/YiShaXiYi/extend/wux/dist/input/index.js
vendored
Normal file
224
衣莎项目/源码/YiShaXiYi/extend/wux/dist/input/index.js
vendored
Normal file
@@ -0,0 +1,224 @@
|
||||
import baseComponent from '../helpers/baseComponent'
|
||||
import classNames from '../helpers/classNames'
|
||||
import eventsMixin from '../helpers/eventsMixin'
|
||||
import styleToCssString from '../helpers/styleToCssString'
|
||||
|
||||
const defaultEvents = {
|
||||
onChange() {},
|
||||
onFocus() {},
|
||||
onBlur() {},
|
||||
onConfirm() {},
|
||||
onClear() {},
|
||||
onError() {},
|
||||
}
|
||||
|
||||
baseComponent({
|
||||
behaviors: [eventsMixin({ defaultEvents })],
|
||||
relations: {
|
||||
'../field/index': {
|
||||
type: 'ancestor',
|
||||
},
|
||||
},
|
||||
properties: {
|
||||
prefixCls: {
|
||||
type: String,
|
||||
value: 'wux-input',
|
||||
},
|
||||
label: {
|
||||
type: String,
|
||||
value: '',
|
||||
},
|
||||
extra: {
|
||||
type: String,
|
||||
value: '',
|
||||
},
|
||||
defaultValue: {
|
||||
type: String,
|
||||
value: '',
|
||||
},
|
||||
value: {
|
||||
type: String,
|
||||
value: '',
|
||||
observer(newVal) {
|
||||
if (this.data.controlled) {
|
||||
this.updated(newVal)
|
||||
}
|
||||
},
|
||||
},
|
||||
controlled: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
},
|
||||
type: {
|
||||
type: String,
|
||||
value: 'text',
|
||||
},
|
||||
password: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
},
|
||||
placeholder: {
|
||||
type: String,
|
||||
value: '',
|
||||
},
|
||||
placeholderStyle: {
|
||||
type: [String, Object],
|
||||
value: '',
|
||||
observer(newVal) {
|
||||
this.setData({
|
||||
extStyle: styleToCssString(newVal),
|
||||
})
|
||||
},
|
||||
},
|
||||
placeholderClass: {
|
||||
type: String,
|
||||
value: 'input-placeholder',
|
||||
},
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
},
|
||||
maxlength: {
|
||||
type: Number,
|
||||
value: 140,
|
||||
},
|
||||
cursorSpacing: {
|
||||
type: Number,
|
||||
value: 11,
|
||||
},
|
||||
focus: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
},
|
||||
confirmType: {
|
||||
type: String,
|
||||
value: 'done',
|
||||
},
|
||||
confirmHold: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
},
|
||||
cursor: {
|
||||
type: Number,
|
||||
value: -1,
|
||||
},
|
||||
selectionStart: {
|
||||
type: Number,
|
||||
value: -1,
|
||||
},
|
||||
selectionEnd: {
|
||||
type: Number,
|
||||
value: -1,
|
||||
},
|
||||
adjustPosition: {
|
||||
type: Boolean,
|
||||
value: true,
|
||||
},
|
||||
clear: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
},
|
||||
error: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
},
|
||||
},
|
||||
data: {
|
||||
inputValue: '',
|
||||
inputFocus: false,
|
||||
extStyle: '',
|
||||
},
|
||||
computed: {
|
||||
classes: ['prefixCls, disabled, inputFocus, error', function(prefixCls, disabled, inputFocus, hasError) {
|
||||
const wrap = classNames(prefixCls, {
|
||||
[`${prefixCls}--focus`]: inputFocus,
|
||||
[`${prefixCls}--disabled`]: disabled,
|
||||
[`${prefixCls}--error`]: hasError,
|
||||
})
|
||||
const label = `${prefixCls}__label`
|
||||
const control = `${prefixCls}__control`
|
||||
const item = `${prefixCls}__item`
|
||||
const clear = `${prefixCls}__clear`
|
||||
const error = `${prefixCls}__error`
|
||||
const extra = `${prefixCls}__extra`
|
||||
|
||||
return {
|
||||
wrap,
|
||||
label,
|
||||
control,
|
||||
item,
|
||||
clear,
|
||||
error,
|
||||
extra,
|
||||
}
|
||||
}],
|
||||
},
|
||||
methods: {
|
||||
updated(inputValue) {
|
||||
if (this.hasFieldDecorator) return
|
||||
if (this.data.inputValue !== inputValue) {
|
||||
this.setData({ inputValue })
|
||||
}
|
||||
},
|
||||
onChange(e) {
|
||||
const { value } = e.detail
|
||||
|
||||
if (!this.data.controlled) {
|
||||
this.updated(value)
|
||||
}
|
||||
|
||||
this.triggerEvent('change', e.detail)
|
||||
},
|
||||
onFocus(e) {
|
||||
this.clearTimer()
|
||||
|
||||
this.setData({
|
||||
inputFocus: true,
|
||||
})
|
||||
|
||||
this.triggerEvent('focus', e.detail)
|
||||
},
|
||||
onBlur(e) {
|
||||
this.setTimer()
|
||||
this.triggerEvent('blur', e.detail)
|
||||
},
|
||||
onConfirm(e) {
|
||||
this.triggerEvent('confirm', e.detail)
|
||||
},
|
||||
onClear(e) {
|
||||
const params = { value: '' }
|
||||
|
||||
if (!this.data.controlled) {
|
||||
this.updated(params.value)
|
||||
}
|
||||
|
||||
this.triggerEvent('change', params)
|
||||
this.triggerEvent('clear', params)
|
||||
},
|
||||
onError() {
|
||||
const { inputValue: value } = this.data
|
||||
this.triggerEvent('error', { value })
|
||||
},
|
||||
setTimer() {
|
||||
this.clearTimer()
|
||||
|
||||
this.timeout = setTimeout(() => {
|
||||
this.setData({
|
||||
inputFocus: false,
|
||||
})
|
||||
}, 200)
|
||||
},
|
||||
clearTimer() {
|
||||
if (this.timeout) {
|
||||
clearTimeout(this.timeout)
|
||||
this.timeout = null
|
||||
}
|
||||
},
|
||||
},
|
||||
attached() {
|
||||
const { defaultValue, value, controlled } = this.data
|
||||
const inputValue = controlled ? value : defaultValue
|
||||
|
||||
this.updated(inputValue)
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user