feat(@vant/use): add useCustomFieldValue (#9200)

* feat(@vant/use): add useCustomFieldValue

* chore: upd
This commit is contained in:
neverland 2021-08-07 16:01:11 +08:00 committed by GitHub
parent 86f6692284
commit a4a2a3cb0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View File

@ -8,4 +8,5 @@ export * from './useWindowSize';
export * from './useScrollParent';
export * from './useEventListener';
export * from './usePageVisibility';
export * from './useCustomFieldValue';
export * from './onMountedOrActivated';

View File

@ -0,0 +1,24 @@
import { watch, inject, InjectionKey, Ref } from 'vue';
export type CustomFieldInjectionValue = {
customValue: Ref<(() => unknown) | undefined>;
resetValidation: () => void;
validateWithTrigger: (trigger: 'onBlur' | 'onChange' | 'onSubmit') => void;
};
export const CUSTOM_FIELD_INJECTION_KEY: InjectionKey<CustomFieldInjectionValue> = Symbol(
'van-field'
);
export function useCustomFieldValue(customValue: () => unknown) {
const field = inject(CUSTOM_FIELD_INJECTION_KEY, null);
if (field && !field.customValue.value) {
field.customValue.value = customValue;
watch(customValue, () => {
field.resetValidation();
field.validateWithTrigger('onChange');
});
}
}