[improvement] enable tsx type checking for functional component (#2764)

This commit is contained in:
neverland 2019-02-16 21:58:10 +08:00 committed by GitHub
parent 2ad525c45d
commit af0fb98c9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 14 deletions

View File

@ -3,7 +3,7 @@ module.exports = {
setupFiles: ['<rootDir>/test/jest.init.js'],
moduleFileExtensions: ['js', 'vue', 'ts', 'tsx'],
transform: {
'^.+\\.js$': '<rootDir>/test/jest.transform.js',
'^.+\\.(js|ts|tsx)$': '<rootDir>/test/jest.transform.js',
'.*\\.(vue)$': '<rootDir>/node_modules/vue-jest'
},
moduleNameMapper: {

View File

@ -21,7 +21,7 @@ const inheritKey = [
const mapInheritKey: ObjectIndex = { nativeOn: 'on' };
// inherit partial context, map nativeOn to on
export function inherit(context: Context, inheritListeners: boolean): InheritContext {
export function inherit(context: Context, inheritListeners?: boolean): InheritContext {
const result = inheritKey.reduce(
(obj, key) => {
if (context.data[key]) {

View File

@ -10,25 +10,27 @@ import Vue, {
CreateElement,
RenderContext
} from 'vue/types';
import { VNode, ScopedSlot } from 'vue/types/vnode';
import { VNode } from 'vue/types/vnode';
import { InjectOptions, PropsDefinition } from 'vue/types/options';
type VantComponentOptions = ComponentOptions<Vue> & {
export type ScopedSlot = (props?: any) => VNode[] | undefined;
export type VantComponentOptions = ComponentOptions<Vue> & {
functional?: boolean;
install?: (Vue: VueConstructor) => void;
};
type DefaultProps = Record<string, any>;
export type DefaultProps = Record<string, any>;
type VantPureComponent<
export type FunctionalComponent<
Props = DefaultProps,
PropDefs = PropsDefinition<Props>
> = {
(
h: CreateElement,
props: { [key: string]: any },
props: Props,
slots: { [key: string]: ScopedSlot | undefined },
context: RenderContext
context: RenderContext<Props>
): VNode;
props?: PropDefs;
model?: {
@ -38,6 +40,8 @@ type VantPureComponent<
inject?: InjectOptions;
};
export type VantTsxComponent<T> = (props: T) => VNode;
const arrayProp = {
type: Array,
default: () => []
@ -80,7 +84,9 @@ export function unifySlots(context: RenderContext) {
return scopedSlots;
}
function transformPureComponent(pure: VantPureComponent): VantComponentOptions {
function transformFunctionalComponent(
pure: FunctionalComponent
): VantComponentOptions {
return {
functional: true,
props: pure.props,
@ -89,11 +95,11 @@ function transformPureComponent(pure: VantPureComponent): VantComponentOptions {
};
}
export default (name: string) => (
sfc: VantComponentOptions | VantPureComponent
) => {
export default (name: string) => <T = DefaultProps>(
sfc: VantComponentOptions | FunctionalComponent
): VantTsxComponent<T> => {
if (typeof sfc === 'function') {
sfc = transformPureComponent(sfc);
sfc = transformFunctionalComponent(sfc);
}
if (!sfc.functional) {
@ -108,5 +114,5 @@ export default (name: string) => (
sfc.name = name;
sfc.install = install;
return sfc;
return sfc as VantTsxComponent<T>;
};