mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
227 lines
4.8 KiB
TypeScript
227 lines
4.8 KiB
TypeScript
import { nextTick } from '../common/utils';
|
|
import { VantComponent } from '../common/component';
|
|
import { commonProps, inputProps, textareaProps } from './props';
|
|
import { InputDetails } from './types';
|
|
|
|
VantComponent({
|
|
field: true,
|
|
|
|
classes: ['input-class', 'right-icon-class', 'label-class'],
|
|
|
|
props: {
|
|
...commonProps,
|
|
...inputProps,
|
|
...textareaProps,
|
|
size: String,
|
|
icon: String,
|
|
label: String,
|
|
error: Boolean,
|
|
center: Boolean,
|
|
isLink: Boolean,
|
|
leftIcon: String,
|
|
rightIcon: String,
|
|
autosize: null,
|
|
required: Boolean,
|
|
iconClass: String,
|
|
clickable: Boolean,
|
|
inputAlign: String,
|
|
customStyle: String,
|
|
errorMessage: String,
|
|
arrowDirection: String,
|
|
showWordLimit: Boolean,
|
|
errorMessageAlign: String,
|
|
readonly: {
|
|
type: Boolean,
|
|
observer: 'setShowClear',
|
|
},
|
|
clearable: {
|
|
type: Boolean,
|
|
observer: 'setShowClear',
|
|
},
|
|
clearTrigger: {
|
|
type: String,
|
|
value: 'focus',
|
|
},
|
|
border: {
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
titleWidth: {
|
|
type: String,
|
|
value: '6.2em',
|
|
},
|
|
clearIcon: {
|
|
type: String,
|
|
value: 'clear',
|
|
},
|
|
extraEventParams: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
},
|
|
|
|
data: {
|
|
focused: false,
|
|
innerValue: '',
|
|
showClear: false,
|
|
},
|
|
|
|
watch: {
|
|
value(this: WechatMiniprogram.Component.TrivialInstance, value) {
|
|
if (value !== this.value) {
|
|
this.setData({ innerValue: value });
|
|
this.value = value;
|
|
|
|
this.setShowClear();
|
|
}
|
|
},
|
|
clearTrigger() {
|
|
this.setShowClear();
|
|
},
|
|
},
|
|
|
|
created() {
|
|
this.value = this.data.value;
|
|
this.setData({ innerValue: this.value });
|
|
},
|
|
|
|
methods: {
|
|
formatValue(value: string) {
|
|
const { maxlength } = this.data;
|
|
|
|
if (maxlength !== -1 && value.length > maxlength) {
|
|
return value.slice(0, maxlength);
|
|
}
|
|
|
|
return value;
|
|
},
|
|
|
|
onInput(event: WechatMiniprogram.Input | WechatMiniprogram.TextareaInput) {
|
|
const { value = '' } = event.detail || {};
|
|
|
|
const formatValue = this.formatValue(value);
|
|
|
|
this.value = formatValue;
|
|
|
|
this.setShowClear();
|
|
|
|
return this.emitChange({
|
|
...event.detail,
|
|
value: formatValue,
|
|
});
|
|
},
|
|
|
|
onFocus(
|
|
event: WechatMiniprogram.InputFocus | WechatMiniprogram.TextareaFocus
|
|
) {
|
|
this.focused = true;
|
|
this.setShowClear();
|
|
this.$emit('focus', event.detail);
|
|
},
|
|
|
|
onBlur(
|
|
event: WechatMiniprogram.InputBlur | WechatMiniprogram.TextareaBlur
|
|
) {
|
|
this.focused = false;
|
|
this.setShowClear();
|
|
this.$emit('blur', event.detail);
|
|
},
|
|
|
|
onClickIcon() {
|
|
this.$emit('click-icon');
|
|
},
|
|
|
|
onClickInput(event: WechatMiniprogram.TouchEvent) {
|
|
this.$emit('click-input', event.detail);
|
|
},
|
|
|
|
onClear() {
|
|
this.setData({ innerValue: '' });
|
|
this.value = '';
|
|
this.setShowClear();
|
|
|
|
nextTick(() => {
|
|
this.emitChange({ value: '' });
|
|
this.$emit('clear', '');
|
|
});
|
|
},
|
|
|
|
onConfirm(
|
|
event: WechatMiniprogram.InputConfirm | WechatMiniprogram.TextareaConfirm
|
|
) {
|
|
const { value = '' } = event.detail || {};
|
|
this.value = value;
|
|
this.setShowClear();
|
|
this.$emit('confirm', value);
|
|
},
|
|
|
|
setValue(value: string) {
|
|
this.value = value;
|
|
this.setShowClear();
|
|
|
|
if (value === '') {
|
|
this.setData({ innerValue: '' });
|
|
}
|
|
|
|
this.emitChange({ value });
|
|
},
|
|
|
|
onLineChange(event: WechatMiniprogram.TextareaLineChange) {
|
|
this.$emit('linechange', event.detail);
|
|
},
|
|
|
|
onKeyboardHeightChange(
|
|
event:
|
|
| WechatMiniprogram.InputKeyboardHeightChange
|
|
| WechatMiniprogram.TextareaKeyboardHeightChange
|
|
) {
|
|
this.$emit('keyboardheightchange', event.detail);
|
|
},
|
|
|
|
onBindNicknameReview(event) {
|
|
this.$emit('nicknamereview', event.detail);
|
|
},
|
|
|
|
emitChange(detail: InputDetails) {
|
|
const { extraEventParams } = this.data;
|
|
|
|
this.setData({ value: detail.value });
|
|
|
|
let result: InputDetails | undefined;
|
|
|
|
const data = extraEventParams
|
|
? {
|
|
...detail,
|
|
callback: (data: InputDetails) => {
|
|
result = data;
|
|
},
|
|
}
|
|
: detail.value;
|
|
|
|
this.$emit('input', data);
|
|
this.$emit('change', data);
|
|
|
|
return result;
|
|
},
|
|
|
|
setShowClear() {
|
|
const { clearable, readonly, clearTrigger } = this.data;
|
|
const { focused, value } = this;
|
|
|
|
let showClear = false;
|
|
|
|
if (clearable && !readonly) {
|
|
const hasValue = !!value;
|
|
const trigger =
|
|
clearTrigger === 'always' || (clearTrigger === 'focus' && focused);
|
|
|
|
showClear = hasValue && trigger;
|
|
}
|
|
|
|
this.setView({ showClear });
|
|
},
|
|
|
|
noop() {},
|
|
},
|
|
});
|