mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
2933b887cd
Summary: Renames `EventSubscription.js`, `EmitterSubscription.js`, and `EventSubscriptionVendor.js` to `_EventSubscription.js`, `_EmitterSubscription.js`, and `_EventSubscriptionVendor.js`, respectively. This is to indicate that those files are implementation details and should not be directly referenced. Instead, the `EventSubscription` type exported from `EventEmitter.js` should be used. The remaining stragglers that are importing `_EmitterSubscription.js` and `_EventSubscriptionVendor.js` after this commit will be cleaned up when `RCTDeviceEventEmitter` is refactored. Changelog: [Internal] (Note: this ignores all push blocking failures!) Reviewed By: cpojer Differential Revision: D22182310 fbshipit-source-id: 82be685f231395bd7b8e9986141b5df1367bec71
84 lines
2.2 KiB
JavaScript
84 lines
2.2 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.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import EventEmitter from '../vendor/emitter/EventEmitter';
|
|
import type EmitterSubscription from '../vendor/emitter/_EmitterSubscription';
|
|
import EventSubscriptionVendor from '../vendor/emitter/_EventSubscriptionVendor';
|
|
|
|
function checkNativeEventModule(eventType: ?string) {
|
|
if (eventType) {
|
|
if (eventType.lastIndexOf('statusBar', 0) === 0) {
|
|
throw new Error(
|
|
'`' +
|
|
eventType +
|
|
'` event should be registered via the StatusBarIOS module',
|
|
);
|
|
}
|
|
if (eventType.lastIndexOf('keyboard', 0) === 0) {
|
|
throw new Error(
|
|
'`' +
|
|
eventType +
|
|
'` event should be registered via the Keyboard module',
|
|
);
|
|
}
|
|
if (eventType === 'appStateDidChange' || eventType === 'memoryWarning') {
|
|
throw new Error(
|
|
'`' +
|
|
eventType +
|
|
'` event should be registered via the AppState module',
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Deprecated - subclass NativeEventEmitter to create granular event modules instead of
|
|
* adding all event listeners directly to RCTDeviceEventEmitter.
|
|
*/
|
|
class RCTDeviceEventEmitter extends EventEmitter {
|
|
sharedSubscriber: EventSubscriptionVendor;
|
|
|
|
constructor() {
|
|
const sharedSubscriber = new EventSubscriptionVendor();
|
|
super(sharedSubscriber);
|
|
this.sharedSubscriber = sharedSubscriber;
|
|
}
|
|
|
|
addListener(
|
|
eventType: string,
|
|
listener: Function,
|
|
context: ?Object,
|
|
): EmitterSubscription {
|
|
if (__DEV__) {
|
|
checkNativeEventModule(eventType);
|
|
}
|
|
return super.addListener(eventType, listener, context);
|
|
}
|
|
|
|
removeAllListeners(eventType: ?string) {
|
|
if (__DEV__) {
|
|
checkNativeEventModule(eventType);
|
|
}
|
|
super.removeAllListeners(eventType);
|
|
}
|
|
|
|
removeSubscription(subscription: EmitterSubscription) {
|
|
if (subscription.emitter !== this) {
|
|
subscription.emitter.removeSubscription(subscription);
|
|
} else {
|
|
super.removeSubscription(subscription);
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = (new RCTDeviceEventEmitter(): RCTDeviceEventEmitter);
|