mirror of
https://github.com/facebook/react.git
synced 2026-02-23 20:23:02 +00:00
213 lines
5.1 KiB
JavaScript
213 lines
5.1 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
export type ReactNode =
|
|
| React$Element<any>
|
|
| ReactPortal
|
|
| ReactText
|
|
| ReactFragment
|
|
| ReactProvider<any>
|
|
| ReactConsumer<any>
|
|
| ReactEventComponent
|
|
| ReactEventTarget;
|
|
|
|
export type ReactEmpty = null | void | boolean;
|
|
|
|
export type ReactFragment = ReactEmpty | Iterable<React$Node>;
|
|
|
|
export type ReactNodeList = ReactEmpty | React$Node;
|
|
|
|
export type ReactText = string | number;
|
|
|
|
export type ReactProvider<T> = {
|
|
$$typeof: Symbol | number,
|
|
type: ReactProviderType<T>,
|
|
key: null | string,
|
|
ref: null,
|
|
props: {
|
|
value: T,
|
|
children?: ReactNodeList,
|
|
},
|
|
};
|
|
|
|
export type ReactProviderType<T> = {
|
|
$$typeof: Symbol | number,
|
|
_context: ReactContext<T>,
|
|
};
|
|
|
|
export type ReactConsumer<T> = {
|
|
$$typeof: Symbol | number,
|
|
type: ReactContext<T>,
|
|
key: null | string,
|
|
ref: null,
|
|
props: {
|
|
children: (value: T) => ReactNodeList,
|
|
unstable_observedBits?: number,
|
|
},
|
|
};
|
|
|
|
export type ReactContext<T> = {
|
|
$$typeof: Symbol | number,
|
|
Consumer: ReactContext<T>,
|
|
Provider: ReactProviderType<T>,
|
|
|
|
_calculateChangedBits: ((a: T, b: T) => number) | null,
|
|
|
|
_currentValue: T,
|
|
_currentValue2: T,
|
|
_threadCount: number,
|
|
|
|
// DEV only
|
|
_currentRenderer?: Object | null,
|
|
_currentRenderer2?: Object | null,
|
|
};
|
|
|
|
export type ReactPortal = {
|
|
$$typeof: Symbol | number,
|
|
key: null | string,
|
|
containerInfo: any,
|
|
children: ReactNodeList,
|
|
// TODO: figure out the API for cross-renderer implementation.
|
|
implementation: any,
|
|
};
|
|
|
|
export type RefObject = {|
|
|
current: any,
|
|
|};
|
|
|
|
export type ReactEventResponderEventType =
|
|
| string
|
|
| {name: string, passive?: boolean};
|
|
|
|
export type ReactEventResponder = {
|
|
targetEventTypes?: Array<ReactEventResponderEventType>,
|
|
rootEventTypes?: Array<ReactEventResponderEventType>,
|
|
createInitialState?: (props: null | Object) => Object,
|
|
allowMultipleHostChildren: boolean,
|
|
stopLocalPropagation: boolean,
|
|
onEvent?: (
|
|
event: ReactResponderEvent,
|
|
context: ReactResponderContext,
|
|
props: null | Object,
|
|
state: null | Object,
|
|
) => void,
|
|
onEventCapture?: (
|
|
event: ReactResponderEvent,
|
|
context: ReactResponderContext,
|
|
props: null | Object,
|
|
state: null | Object,
|
|
) => void,
|
|
onRootEvent?: (
|
|
event: ReactResponderEvent,
|
|
context: ReactResponderContext,
|
|
props: null | Object,
|
|
state: null | Object,
|
|
) => void,
|
|
onMount?: (
|
|
context: ReactResponderContext,
|
|
props: null | Object,
|
|
state: null | Object,
|
|
) => void,
|
|
onUnmount?: (
|
|
context: ReactResponderContext,
|
|
props: null | Object,
|
|
state: null | Object,
|
|
) => void,
|
|
onOwnershipChange?: (
|
|
context: ReactResponderContext,
|
|
props: null | Object,
|
|
state: null | Object,
|
|
) => void,
|
|
};
|
|
|
|
export type ReactEventComponentInstance = {|
|
|
currentFiber: mixed,
|
|
props: null | Object,
|
|
responder: ReactEventResponder,
|
|
rootEventTypes: null | Set<string>,
|
|
rootInstance: mixed,
|
|
state: null | Object,
|
|
|};
|
|
|
|
export type ReactEventComponent = {|
|
|
$$typeof: Symbol | number,
|
|
displayName: string,
|
|
props: null | Object,
|
|
responder: ReactEventResponder,
|
|
|};
|
|
|
|
export type ReactEventTarget = {|
|
|
$$typeof: Symbol | number,
|
|
displayName?: string,
|
|
type: Symbol | number,
|
|
|};
|
|
|
|
type AnyNativeEvent = Event | KeyboardEvent | MouseEvent | Touch;
|
|
|
|
export type PointerType =
|
|
| ''
|
|
| 'mouse'
|
|
| 'keyboard'
|
|
| 'pen'
|
|
| 'touch'
|
|
| 'trackpad';
|
|
|
|
export type ReactResponderEvent = {
|
|
nativeEvent: AnyNativeEvent,
|
|
passive: boolean,
|
|
passiveSupported: boolean,
|
|
pointerId: null | number,
|
|
pointerType: PointerType,
|
|
target: Element | Document,
|
|
type: string,
|
|
};
|
|
|
|
export opaque type EventPriority = 0 | 1 | 2;
|
|
|
|
export const DiscreteEvent: EventPriority = 0;
|
|
export const UserBlockingEvent: EventPriority = 1;
|
|
export const ContinuousEvent: EventPriority = 2;
|
|
|
|
export type ReactResponderContext = {
|
|
dispatchEvent: (
|
|
eventObject: Object,
|
|
listener: (Object) => void,
|
|
eventPriority: EventPriority,
|
|
) => void,
|
|
isTargetWithinElement: (
|
|
childTarget: Element | Document,
|
|
parentTarget: Element | Document,
|
|
) => boolean,
|
|
isTargetWithinEventComponent: (Element | Document) => boolean,
|
|
isTargetWithinEventResponderScope: (Element | Document) => boolean,
|
|
isEventWithinTouchHitTarget: (event: ReactResponderEvent) => boolean,
|
|
addRootEventTypes: (
|
|
rootEventTypes: Array<ReactEventResponderEventType>,
|
|
) => void,
|
|
removeRootEventTypes: (
|
|
rootEventTypes: Array<ReactEventResponderEventType>,
|
|
) => void,
|
|
hasOwnership: () => boolean,
|
|
requestResponderOwnership: () => boolean,
|
|
requestGlobalOwnership: () => boolean,
|
|
releaseOwnership: () => boolean,
|
|
setTimeout: (func: () => void, timeout: number) => number,
|
|
clearTimeout: (timerId: number) => void,
|
|
getFocusableElementsInScope(): Array<HTMLElement>,
|
|
getActiveDocument(): Document,
|
|
objectAssign: Function,
|
|
getEventCurrentTarget(event: ReactResponderEvent): Element,
|
|
getTimeStamp: () => number,
|
|
isTargetWithinHostComponent: (
|
|
target: Element | Document,
|
|
elementType: string,
|
|
deep: boolean,
|
|
) => boolean,
|
|
};
|