vant/src/address-edit/AddressEditDetail.tsx

108 lines
2.8 KiB
TypeScript

import { PropType, ref, defineComponent } from 'vue';
// Utils
import { createNamespace } from '../utils';
// Components
import { Cell } from '../cell';
import { Field } from '../field';
// Types
import type { AddressEditSearchItem } from './types';
import type { FieldInstance } from '../field/types';
const [name, bem, t] = createNamespace('address-edit-detail');
export default defineComponent({
name,
props: {
show: Boolean,
value: String,
focused: Boolean,
detailRows: [Number, String],
searchResult: Array as PropType<AddressEditSearchItem[]>,
errorMessage: String,
detailMaxlength: [Number, String],
showSearchResult: Boolean,
},
emits: ['blur', 'focus', 'input', 'select-search'],
setup(props, { emit }) {
const field = ref<FieldInstance>();
const showSearchResult = () =>
props.focused && props.searchResult && props.showSearchResult;
const onSelect = (express: AddressEditSearchItem) => {
emit('select-search', express);
emit('input', `${express.address || ''} ${express.name || ''}`.trim());
};
const renderSearchTitle = (express: AddressEditSearchItem) => {
if (express.name) {
const text = express.name.replace(
props.value!,
`<span class=${bem('keyword')}>${props.value}</span>`
);
return <div innerHTML={text} />;
}
};
const renderSearchResult = () => {
if (!showSearchResult()) {
return;
}
const { searchResult } = props;
return searchResult!.map((express) => (
<Cell
v-slots={{
title: () => renderSearchTitle(express),
}}
clickable
key={express.name + express.address}
icon="location-o"
label={express.address}
class={bem('search-item')}
border={false}
onClick={() => onSelect(express)}
/>
));
};
const onBlur = (event: Event) => emit('blur', event);
const onFocus = (event: Event) => emit('focus', event);
const onInput = (value: string) => emit('input', value);
return () => {
if (props.show) {
return (
<>
<Field
autosize
clearable
ref={field}
class={bem()}
rows={props.detailRows}
type="textarea"
label={t('label')}
border={!showSearchResult()}
maxlength={props.detailMaxlength}
modelValue={props.value}
placeholder={t('placeholder')}
errorMessage={props.errorMessage}
onBlur={onBlur}
onFocus={onFocus}
{...{ 'onUpdate:modelValue': onInput }}
/>
{renderSearchResult()}
</>
);
}
};
},
});