You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.4 KiB
89 lines
2.4 KiB
import * as React from 'react';
|
|
import { Omit } from '../_util/type';
|
|
import { WrappedFormInternalProps } from './Form';
|
|
|
|
// Heavily copied from https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/hoist-non-react-statics/index.d.ts
|
|
// tslint:disable-next-line:class-name
|
|
interface REACT_STATICS {
|
|
childContextTypes: true;
|
|
contextType: true;
|
|
contextTypes: true;
|
|
defaultProps: true;
|
|
displayName: true;
|
|
getDefaultProps: true;
|
|
getDerivedStateFromError: true;
|
|
getDerivedStateFromProps: true;
|
|
mixins: true;
|
|
propTypes: true;
|
|
type: true;
|
|
}
|
|
|
|
// tslint:disable-next-line:class-name
|
|
interface KNOWN_STATICS {
|
|
name: true;
|
|
length: true;
|
|
prototype: true;
|
|
caller: true;
|
|
callee: true;
|
|
arguments: true;
|
|
arity: true;
|
|
}
|
|
|
|
// tslint:disable-next-line:class-name
|
|
interface MEMO_STATICS {
|
|
$$typeof: true;
|
|
compare: true;
|
|
defaultProps: true;
|
|
displayName: true;
|
|
propTypes: true;
|
|
type: true;
|
|
}
|
|
|
|
// tslint:disable-next-line:class-name
|
|
interface FORWARD_REF_STATICS {
|
|
$$typeof: true;
|
|
render: true;
|
|
defaultProps: true;
|
|
displayName: true;
|
|
propTypes: true;
|
|
}
|
|
|
|
type NonReactStatics<
|
|
S extends React.ComponentType<any>,
|
|
C extends {
|
|
[key: string]: true;
|
|
} = {}
|
|
> = {
|
|
[key in Exclude<
|
|
keyof S,
|
|
S extends React.MemoExoticComponent<any>
|
|
? keyof MEMO_STATICS | keyof C
|
|
: S extends React.ForwardRefExoticComponent<any>
|
|
? keyof FORWARD_REF_STATICS | keyof C
|
|
: keyof REACT_STATICS | keyof KNOWN_STATICS | keyof C
|
|
>]: S[key];
|
|
};
|
|
|
|
// Copy from @types/react-redux https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react-redux/index.d.ts
|
|
export type Matching<InjectedProps, DecorationTargetProps> = {
|
|
[P in keyof DecorationTargetProps]: P extends keyof InjectedProps
|
|
? InjectedProps[P] extends DecorationTargetProps[P]
|
|
? DecorationTargetProps[P]
|
|
: InjectedProps[P]
|
|
: DecorationTargetProps[P];
|
|
};
|
|
|
|
export type GetProps<C> = C extends React.ComponentType<infer P> ? P : never;
|
|
|
|
export type ConnectedComponentClass<C extends React.ComponentType<any>, P> = React.ComponentClass<
|
|
JSX.LibraryManagedAttributes<C, P>
|
|
> &
|
|
NonReactStatics<C> & {
|
|
WrappedComponent: C;
|
|
};
|
|
|
|
export type FormWrappedProps<TOwnProps extends WrappedFormInternalProps> = <
|
|
C extends React.ComponentType<Matching<TOwnProps, GetProps<C>>>
|
|
>(
|
|
component: C,
|
|
) => ConnectedComponentClass<C, Omit<TOwnProps, keyof WrappedFormInternalProps>>;
|
|
|