react-native-web
Version:
React Native for Web
90 lines (79 loc) • 2.25 kB
JavaScript
/**
* Copyright (c) Meta Platforms, Inc. and 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 canUseDOM from '../canUseDom';
type Listener = (e: any) => void;
export type EventOptions = {
capture?: boolean,
passive?: boolean,
once?: boolean
};
const emptyFunction = () => {};
function supportsPassiveEvents(): boolean {
let supported = false;
// Check if browser supports event with passive listeners
// https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener#Safely_detecting_option_support
if (canUseDOM) {
try {
const options = {};
Object.defineProperty(options, 'passive', {
get() {
supported = true;
return false;
}
});
window.addEventListener('test', null, options);
window.removeEventListener('test', null, options);
} catch (e) {}
}
return supported;
}
const canUsePassiveEvents = supportsPassiveEvents();
function getOptions(options: ?EventOptions): EventOptions | boolean {
if (options == null) {
return false;
}
return canUsePassiveEvents ? options : Boolean(options.capture);
}
/**
* Shim generic API compatibility with ReactDOM's synthetic events, without needing the
* large amount of code ReactDOM uses to do this. Ideally we wouldn't use a synthetic
* event wrapper at all.
*/
function isPropagationStopped() {
return this.cancelBubble;
}
function isDefaultPrevented() {
return this.defaultPrevented;
}
function normalizeEvent(event: any) {
event.nativeEvent = event;
event.persist = emptyFunction;
event.isDefaultPrevented = isDefaultPrevented;
event.isPropagationStopped = isPropagationStopped;
return event;
}
/**
*
*/
export function addEventListener(
target: EventTarget,
type: any,
listener: Listener,
options: ?EventOptions
): () => void {
const opts = getOptions(options);
const compatListener = (e: any) => listener(normalizeEvent(e));
target.addEventListener(type, compatListener, opts);
return function removeEventListener() {
if (target != null) {
target.removeEventListener(type, compatListener, opts);
}
};
}