types: improve Field injection typing (#8975)

* types: improve inject typing

* types: update
This commit is contained in:
neverland 2021-07-03 20:05:14 +08:00 committed by GitHub
parent 11e856d099
commit 5c080f3a6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 4 deletions

View File

@ -1,11 +1,11 @@
import { ComponentInstance } from '../utils';
import { watch, inject } from 'vue';
import { watch, inject, InjectionKey } from 'vue';
import type { FieldProvide } from '../field/types';
export const FORM_KEY = Symbol('van-form');
export const FIELD_KEY = Symbol('van-field');
export const FIELD_KEY: InjectionKey<FieldProvide> = Symbol('van-field');
export function useLinkField(getValue: () => unknown) {
const field = inject(FIELD_KEY, null) as ComponentInstance | null;
const field = inject(FIELD_KEY, null);
if (field && !field.childFieldValue.value) {
field.childFieldValue.value = getValue;

View File

@ -1,3 +1,5 @@
import type { Ref } from 'vue';
export type FieldType =
| 'tel'
| 'text'
@ -37,6 +39,12 @@ export type FieldRule = {
formatter?: (value: any, rule: FieldRule) => string;
};
export type FieldProvide = {
childFieldValue: Ref<(() => unknown) | undefined>;
resetValidation: () => void;
validateWithTrigger: (trigger: FieldValidateTrigger) => void;
};
declare global {
interface EventTarget {
composing?: boolean;