mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 20:44:10 +00:00
1490ab12ef
Summary: Includes React Native and its dependencies Fresco, Metro, and Yoga. Excludes samples/examples/docs. find: ^(?:( *)|( *(?:[\*~#]|::))( )? *)?Copyright (?:\(c\) )?(\d{4})\b.+Facebook[\s\S]+?BSD[\s\S]+?(?:this source tree|the same directory)\.$ replace: $1$2$3Copyright (c) $4-present, Facebook, Inc.\n$2\n$1$2$3This source code is licensed under the MIT license found in the\n$1$2$3LICENSE file in the root directory of this source tree. Reviewed By: TheSavior, yungsters Differential Revision: D7007050 fbshipit-source-id: 37dd6bf0ffec0923bfc99c260bb330683f35553e
70 lines
2.0 KiB
JavaScript
70 lines
2.0 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @providesModule RCTDeviceEventEmitter
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
const EventEmitter = require('EventEmitter');
|
|
const EventSubscriptionVendor = require('EventSubscriptionVendor');
|
|
|
|
import type EmitterSubscription from 'EmitterSubscription';
|
|
|
|
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();
|