types: using exact component instance type (#9256)

This commit is contained in:
neverland 2021-08-13 09:59:44 +08:00 committed by GitHub
parent f0f2059d91
commit 42888a1c22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 43 additions and 51 deletions

View File

@ -16,14 +16,13 @@ import {
isMobile, isMobile,
truthProp, truthProp,
createNamespace, createNamespace,
ComponentInstance,
} from '../utils'; } from '../utils';
// Composables // Composables
import { useExpose } from '../composables/use-expose'; import { useExpose } from '../composables/use-expose';
// Components // Components
import { Area, AreaList, AreaColumnOption } from '../area'; import { Area, AreaList, AreaColumnOption, AreaInstance } from '../area';
import { Cell } from '../cell'; import { Cell } from '../cell';
import { Field } from '../field'; import { Field } from '../field';
import { Popup } from '../popup'; import { Popup } from '../popup';
@ -120,7 +119,7 @@ export default defineComponent({
], ],
setup(props, { emit, slots }) { setup(props, { emit, slots }) {
const areaRef = ref<ComponentInstance>(); const areaRef = ref<AreaInstance>();
const state = reactive({ const state = reactive({
data: {} as AddressEditInfo, data: {} as AddressEditInfo,
@ -158,7 +157,7 @@ export default defineComponent({
const assignAreaValues = () => { const assignAreaValues = () => {
if (areaRef.value) { if (areaRef.value) {
const detail = areaRef.value.getArea(); const detail: Record<string, string> = areaRef.value.getArea();
detail.areaCode = detail.code; detail.areaCode = detail.code;
delete detail.code; delete detail.code;
extend(state.data, detail); extend(state.data, detail);

View File

@ -1,7 +1,7 @@
import { PropType, ref, defineComponent } from 'vue'; import { PropType, ref, defineComponent } from 'vue';
// Utils // Utils
import { isAndroid, ComponentInstance, createNamespace } from '../utils'; import { isAndroid, createNamespace } from '../utils';
// Components // Components
import { Cell } from '../cell'; import { Cell } from '../cell';
@ -9,6 +9,7 @@ import { Field } from '../field';
// Types // Types
import type { AddressEditSearchItem } from './types'; import type { AddressEditSearchItem } from './types';
import type { FieldInstance } from '../field/types';
const [name, bem, t] = createNamespace('address-edit-detail'); const [name, bem, t] = createNamespace('address-edit-detail');
const android = isAndroid(); const android = isAndroid();
@ -30,7 +31,7 @@ export default defineComponent({
emits: ['blur', 'focus', 'input', 'select-search'], emits: ['blur', 'focus', 'input', 'select-search'],
setup(props, { emit }) { setup(props, { emit }) {
const field = ref<ComponentInstance>(); const field = ref<FieldInstance>();
const showSearchResult = () => const showSearchResult = () =>
props.focused && props.searchResult && props.showSearchResult; props.focused && props.searchResult && props.showSearchResult;

View File

@ -12,14 +12,14 @@ import {
// Utils // Utils
import { deepClone } from '../utils/deep-clone'; import { deepClone } from '../utils/deep-clone';
import { pick, createNamespace, ComponentInstance, extend } from '../utils'; import { pick, createNamespace, extend } from '../utils';
import { pickerProps } from '../picker/Picker'; import { pickerProps } from '../picker/Picker';
// Composables // Composables
import { useExpose } from '../composables/use-expose'; import { useExpose } from '../composables/use-expose';
// Components // Components
import { Picker } from '../picker'; import { Picker, PickerInstance } from '../picker';
// Types // Types
import type { AreaList, AreaColumnType, AreaColumnOption } from './types'; import type { AreaList, AreaColumnType, AreaColumnOption } from './types';
@ -80,7 +80,7 @@ export default defineComponent({
emits: ['change', 'confirm', 'cancel'], emits: ['change', 'confirm', 'cancel'],
setup(props, { emit, slots }) { setup(props, { emit, slots }) {
const pickerRef = ref<ComponentInstance>(); const pickerRef = ref<PickerInstance>();
const state = reactive({ const state = reactive({
code: props.value, code: props.value,
@ -235,7 +235,9 @@ export default defineComponent({
const getValues = () => { const getValues = () => {
if (pickerRef.value) { if (pickerRef.value) {
const values = pickerRef.value.getValues().filter(Boolean); const values = pickerRef.value
.getValues<AreaColumnOption>()
.filter(Boolean);
return parseValues(values); return parseValues(values);
} }
return []; return [];

View File

@ -2,7 +2,7 @@ import { Calendar, CalendarDayItem } from '..';
import { mount, later } from '../../../test'; import { mount, later } from '../../../test';
import { getNextDay, getPrevDay } from '../utils'; import { getNextDay, getPrevDay } from '../utils';
import { now, minDate, maxDate } from './utils'; import { now, minDate, maxDate } from './utils';
import type { ComponentInstance } from '../../utils'; import type { CalendarInstance } from '../types';
test('should reset to default date when calling reset method', async () => { test('should reset to default date when calling reset method', async () => {
const defaultDate = [minDate, getNextDay(minDate)]; const defaultDate = [minDate, getNextDay(minDate)];
@ -21,7 +21,7 @@ test('should reset to default date when calling reset method', async () => {
await days[15].trigger('click'); await days[15].trigger('click');
await days[18].trigger('click'); await days[18].trigger('click');
(wrapper.vm as ComponentInstance).reset(); (wrapper.vm as CalendarInstance).reset();
wrapper.find('.van-calendar__confirm').trigger('click'); wrapper.find('.van-calendar__confirm').trigger('click');
expect(wrapper.emitted<[Date, Date]>('confirm')![0][0]).toEqual(defaultDate); expect(wrapper.emitted<[Date, Date]>('confirm')![0][0]).toEqual(defaultDate);
@ -44,7 +44,7 @@ test('should reset to specific date when calling reset method with date', async
await days[18].trigger('click'); await days[18].trigger('click');
const newDate = [getPrevDay(maxDate), maxDate]; const newDate = [getPrevDay(maxDate), maxDate];
(wrapper.vm as ComponentInstance).reset(newDate); (wrapper.vm as CalendarInstance).reset(newDate);
wrapper.find('.van-calendar__confirm').trigger('click'); wrapper.find('.van-calendar__confirm').trigger('click');
expect(wrapper.emitted<[Date, Date]>('confirm')![0][0]).toEqual(newDate); expect(wrapper.emitted<[Date, Date]>('confirm')![0][0]).toEqual(newDate);

View File

@ -2,7 +2,8 @@
import { ref, reactive } from 'vue'; import { ref, reactive } from 'vue';
import { useTranslate } from '@demo/use-translate'; import { useTranslate } from '@demo/use-translate';
import { useRefs } from '../../composables/use-refs'; import { useRefs } from '../../composables/use-refs';
import { ComponentInstance } from '../../utils'; import type { CheckboxInstance } from '../types';
import type { CheckboxGroupInstance } from '../../checkbox-group';
const i18n = { const i18n = {
'zh-CN': { 'zh-CN': {
@ -56,8 +57,8 @@ const state = reactive({
const activeIcon = 'https://img.yzcdn.cn/vant/user-active.png'; const activeIcon = 'https://img.yzcdn.cn/vant/user-active.png';
const inactiveIcon = 'https://img.yzcdn.cn/vant/user-inactive.png'; const inactiveIcon = 'https://img.yzcdn.cn/vant/user-inactive.png';
const group = ref<ComponentInstance>(); const group = ref<CheckboxGroupInstance>();
const [refs, setRefs] = useRefs<ComponentInstance>(); const [refs, setRefs] = useRefs<CheckboxInstance>();
const toggle = (index: number) => { const toggle = (index: number) => {
refs.value[index].toggle(); refs.value[index].toggle();

View File

@ -1,8 +1,8 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref } from 'vue'; import { ref } from 'vue';
import { useTranslate } from '@demo/use-translate'; import { useTranslate } from '@demo/use-translate';
import { ComponentInstance } from '../../utils';
import { Toast } from '../../toast'; import { Toast } from '../../toast';
import type { CountDownInstance } from '../CountDown';
const i18n = { const i18n = {
'zh-CN': { 'zh-CN': {
@ -31,7 +31,7 @@ const i18n = {
const t = useTranslate(i18n); const t = useTranslate(i18n);
const time = ref(30 * 60 * 60 * 1000); const time = ref(30 * 60 * 60 * 1000);
const countDown = ref<ComponentInstance>(); const countDown = ref<CountDownInstance>();
const start = () => { const start = () => {
countDown.value?.start(); countDown.value?.start();

View File

@ -16,7 +16,6 @@ import {
isDate, isDate,
padZero, padZero,
createNamespace, createNamespace,
ComponentInstance,
} from '../utils'; } from '../utils';
import { import {
times, times,
@ -30,7 +29,7 @@ import {
import { useExpose } from '../composables/use-expose'; import { useExpose } from '../composables/use-expose';
// Components // Components
import { Picker } from '../picker'; import { Picker, PickerInstance } from '../picker';
// Types // Types
import { DatetimePickerColumnType, DatetimePickerType } from './types'; import { DatetimePickerColumnType, DatetimePickerType } from './types';
@ -75,7 +74,7 @@ export default defineComponent({
return undefined; return undefined;
}; };
const picker = ref<ComponentInstance>(); const picker = ref<PickerInstance>();
const currentDate = ref(formatValue(props.modelValue)); const currentDate = ref(formatValue(props.modelValue));
const getBoundary = (type: 'max' | 'min', value: Date) => { const getBoundary = (type: 'max' | 'min', value: Date) => {
@ -218,8 +217,7 @@ export default defineComponent({
case 'minute': case 'minute':
return formatter('minute', padZero(value.getMinutes())); return formatter('minute', padZero(value.getMinutes()));
default: default:
// no default return '';
return null;
} }
}); });

View File

@ -8,21 +8,14 @@ import {
} from 'vue'; } from 'vue';
// Utils // Utils
import { import { pick, clamp, extend, padZero, createNamespace } from '../utils';
pick,
clamp,
extend,
padZero,
createNamespace,
ComponentInstance,
} from '../utils';
import { times, sharedProps, pickerKeys } from './utils'; import { times, sharedProps, pickerKeys } from './utils';
// Composables // Composables
import { useExpose } from '../composables/use-expose'; import { useExpose } from '../composables/use-expose';
// Components // Components
import { Picker } from '../picker'; import { Picker, PickerInstance } from '../picker';
const [name] = createNamespace('time-picker'); const [name] = createNamespace('time-picker');
@ -66,7 +59,7 @@ export default defineComponent({
return `${hour}:${minute}`; return `${hour}:${minute}`;
}; };
const picker = ref<ComponentInstance>(); const picker = ref<PickerInstance>();
const currentDate = ref(formatValue(props.modelValue)); const currentDate = ref(formatValue(props.modelValue));
const ranges = computed(() => [ const ranges = computed(() => [

View File

@ -1,7 +1,7 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed, reactive, ref } from 'vue'; import { computed, reactive, ref } from 'vue';
import { useTranslate } from '@demo/use-translate'; import { useTranslate } from '@demo/use-translate';
import { ComponentInstance } from '../../utils'; import type { DropdownItemInstance } from '../../dropdown-item';
const i18n = { const i18n = {
'zh-CN': { 'zh-CN': {
@ -44,7 +44,7 @@ const i18n = {
}, },
}; };
const item = ref<ComponentInstance>(); const item = ref<DropdownItemInstance>();
const t = useTranslate(i18n); const t = useTranslate(i18n);
const state = reactive({ const state = reactive({

View File

@ -18,7 +18,6 @@ import {
Interceptor, Interceptor,
callInterceptor, callInterceptor,
createNamespace, createNamespace,
ComponentInstance,
} from '../utils'; } from '../utils';
// Composables // Composables
@ -27,7 +26,7 @@ import { useExpose } from '../composables/use-expose';
// Components // Components
import { Icon } from '../icon'; import { Icon } from '../icon';
import { Swipe, SwipeToOptions } from '../swipe'; import { Swipe, SwipeInstance, SwipeToOptions } from '../swipe';
import { Popup, PopupCloseIconPosition } from '../popup'; import { Popup, PopupCloseIconPosition } from '../popup';
import ImagePreviewItem from './ImagePreviewItem'; import ImagePreviewItem from './ImagePreviewItem';
@ -88,7 +87,7 @@ export default defineComponent({
emits: ['scale', 'close', 'closed', 'change', 'update:show'], emits: ['scale', 'close', 'closed', 'change', 'update:show'],
setup(props, { emit, slots }) { setup(props, { emit, slots }) {
const swipeRef = ref<ComponentInstance>(); const swipeRef = ref<SwipeInstance>();
const windowSize = useWindowSize(); const windowSize = useWindowSize();
const state = reactive({ const state = reactive({

View File

@ -32,15 +32,15 @@ export type PickerColumn = PickerOption[] | PickerObjectColumn;
export type PickerExpose = { export type PickerExpose = {
confirm: () => void; confirm: () => void;
getValues: () => PickerOption[]; getValues: <T = PickerOption>() => T[];
setValues: (values: string[]) => void; setValues: (values: string[]) => void;
getIndexes: () => number[]; getIndexes: () => number[];
setIndexes: (indexes: number[]) => void; setIndexes: (indexes: number[]) => void;
getColumnIndex: (index: number) => number; getColumnIndex: (index: number) => number;
setColumnIndex: (columnIndex: number, optionIndex: number) => void; setColumnIndex: (columnIndex: number, optionIndex: number) => void;
getColumnValue: (index: number) => PickerOption; getColumnValue: <T = PickerOption>(index: number) => T;
setColumnValue: (index: number, value: string) => void; setColumnValue: (index: number, value: string) => void;
getColumnValues: (index: number) => PickerOption[]; getColumnValues: <T = PickerOption>(index: number) => T[];
setColumnValues: (index: number, options: PickerOption[]) => void; setColumnValues: (index: number, options: PickerOption[]) => void;
}; };

View File

@ -5,9 +5,8 @@ import {
pick, pick,
extend, extend,
truthProp, truthProp,
createNamespace,
preventDefault, preventDefault,
ComponentInstance, createNamespace,
} from '../utils'; } from '../utils';
import { fieldSharedProps } from '../field/Field'; import { fieldSharedProps } from '../field/Field';
@ -15,7 +14,7 @@ import { fieldSharedProps } from '../field/Field';
import { useExpose } from '../composables/use-expose'; import { useExpose } from '../composables/use-expose';
// Components // Components
import { Field } from '../field'; import { Field, FieldInstance } from '../field';
// Types // Types
import type { SearchShape } from './types'; import type { SearchShape } from './types';
@ -48,7 +47,7 @@ export default defineComponent({
emits: ['search', 'cancel', 'update:modelValue'], emits: ['search', 'cancel', 'update:modelValue'],
setup(props, { emit, slots, attrs }) { setup(props, { emit, slots, attrs }) {
const filedRef = ref<ComponentInstance>(); const filedRef = ref<FieldInstance>();
const onCancel = () => { const onCancel = () => {
if (!slots.action) { if (!slots.action) {

View File

@ -1,6 +1,6 @@
import { Search } from '..'; import { Search } from '..';
import { mount } from '../../../test'; import { mount } from '../../../test';
import type { ComponentInstance } from '../../utils'; import type { SearchInstance } from '../types';
test('should emit update:modelValue event when input value changed', () => { test('should emit update:modelValue event when input value changed', () => {
const onUpdateModelValue = jest.fn(); const onUpdateModelValue = jest.fn();
@ -126,7 +126,7 @@ test('should call input.focus when vm.focus is called', () => {
const onFocus = jest.fn(); const onFocus = jest.fn();
wrapper.find('input').element.focus = onFocus; wrapper.find('input').element.focus = onFocus;
(wrapper.vm as ComponentInstance).focus(); (wrapper.vm as SearchInstance).focus();
expect(onFocus).toHaveBeenCalledTimes(1); expect(onFocus).toHaveBeenCalledTimes(1);
}); });
@ -135,6 +135,6 @@ test('should call input.blur when vm.blur is called', () => {
const onBlur = jest.fn(); const onBlur = jest.fn();
wrapper.find('input').element.blur = onBlur; wrapper.find('input').element.blur = onBlur;
(wrapper.vm as ComponentInstance).blur(); (wrapper.vm as SearchInstance).blur();
expect(onBlur).toHaveBeenCalledTimes(1); expect(onBlur).toHaveBeenCalledTimes(1);
}); });

View File

@ -1,6 +1,6 @@
import { ref, watch, onMounted, defineComponent } from 'vue'; import { ref, watch, onMounted, defineComponent } from 'vue';
import { ComponentInstance, createNamespace } from '../utils'; import { createNamespace } from '../utils';
import { Swipe } from '../swipe'; import { Swipe, SwipeInstance } from '../swipe';
const [name, bem] = createNamespace('tabs'); const [name, bem] = createNamespace('tabs');
@ -29,7 +29,7 @@ export default defineComponent({
emits: ['change'], emits: ['change'],
setup(props, { emit, slots }) { setup(props, { emit, slots }) {
const swipeRef = ref<ComponentInstance>(); const swipeRef = ref<SwipeInstance>();
const onChange = (index: number) => emit('change', index); const onChange = (index: number) => emit('change', index);