* Do not bind topLevelType to dispatch A previous change made it such that all top level event types correspond to their associated native event string values. This commit eliminates the .bind attached to dispatch and fixes a related flow type. * Add note about why casting event.type to a topLevelType is safe * Move interactiveUpdates comment to point of assignment
33 lines
859 B
JavaScript
33 lines
859 B
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
|
|
*/
|
|
|
|
import type {Fiber} from 'react-reconciler/src/ReactFiber';
|
|
import type {
|
|
DispatchConfig,
|
|
ReactSyntheticEvent,
|
|
} from './ReactSyntheticEventType';
|
|
import type {TopLevelType} from './TopLevelEventTypes';
|
|
|
|
export type EventTypes = {[key: string]: DispatchConfig};
|
|
|
|
export type AnyNativeEvent = Event | KeyboardEvent | MouseEvent | TouchEvent;
|
|
|
|
export type PluginName = string;
|
|
|
|
export type PluginModule<NativeEvent> = {
|
|
eventTypes: EventTypes,
|
|
extractEvents: (
|
|
topLevelType: TopLevelType,
|
|
targetInst: null | Fiber,
|
|
nativeTarget: NativeEvent,
|
|
nativeEventTarget: EventTarget,
|
|
) => ?ReactSyntheticEvent,
|
|
tapMoveThreshold?: number,
|
|
};
|