mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
fa406ac2aa
Summary: Adds types to Event Emitters and migrates the most relevant modules using them in `react-native`. The most relevant file of this diff is `react-native/Libraries/vendor/emitter/__flowtests__/EventEmitter-flowtest.js` with the Flow tests showing and testing the behavior of the new types Changelog: [Internal] Add types for Event Emitters and subclasses Reviewed By: motiz88 Differential Revision: D25587936 fbshipit-source-id: feeb09f9ad15d383cdd82deaaaba0d12b94e868b
238 lines
7.6 KiB
JavaScript
238 lines
7.6 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 NativeEventEmitter from '../EventEmitter/NativeEventEmitter';
|
|
import type EventSubscription from '../vendor/emitter/_EventSubscription';
|
|
import type EmitterSubscription from '../vendor/emitter/_EmitterSubscription';
|
|
import logError from '../Utilities/logError';
|
|
import EventEmitter from '../vendor/emitter/EventEmitter';
|
|
import NativeAppState from './NativeAppState';
|
|
import invariant from 'invariant';
|
|
|
|
export type AppStateValues = 'inactive' | 'background' | 'active';
|
|
|
|
type AppStateEventDefinitions = {
|
|
change: [AppStateValues],
|
|
memoryWarning: [],
|
|
blur: [],
|
|
focus: [],
|
|
};
|
|
|
|
type NativeAppStateEventDefinitions = {
|
|
appStateDidChange: [{app_state: AppStateValues}],
|
|
appStateFocusChange: [boolean],
|
|
memoryWarning: [],
|
|
};
|
|
|
|
/**
|
|
* `AppState` can tell you if the app is in the foreground or background,
|
|
* and notify you when the state changes.
|
|
*
|
|
* See https://reactnative.dev/docs/appstate.html
|
|
*/
|
|
class AppState extends NativeEventEmitter<NativeAppStateEventDefinitions> {
|
|
_eventHandlers: {
|
|
[key: $Keys<AppStateEventDefinitions>]: Map<
|
|
/* Handler */ $FlowFixMe,
|
|
EventSubscription<NativeAppStateEventDefinitions, $FlowFixMe>,
|
|
>,
|
|
...,
|
|
};
|
|
_supportedEvents: $ReadOnlyArray<$Keys<AppStateEventDefinitions>> = [
|
|
'change',
|
|
'memoryWarning',
|
|
'blur',
|
|
'focus',
|
|
];
|
|
currentState: ?string;
|
|
isAvailable: boolean;
|
|
|
|
constructor() {
|
|
super(NativeAppState);
|
|
|
|
this.isAvailable = true;
|
|
this._eventHandlers = this._supportedEvents.reduce((handlers, key) => {
|
|
handlers[key] = new Map();
|
|
return handlers;
|
|
}, {});
|
|
|
|
this.currentState = NativeAppState.getConstants().initialAppState;
|
|
|
|
let eventUpdated = false;
|
|
|
|
// TODO: this is a terrible solution - in order to ensure `currentState`
|
|
// prop is up to date, we have to register an observer that updates it
|
|
// whenever the state changes, even if nobody cares. We should just
|
|
// deprecate the `currentState` property and get rid of this.
|
|
this.addListener('appStateDidChange', appStateData => {
|
|
eventUpdated = true;
|
|
this.currentState = appStateData.app_state;
|
|
});
|
|
|
|
// TODO: see above - this request just populates the value of `currentState`
|
|
// when the module is first initialized. Would be better to get rid of the
|
|
// prop and expose `getCurrentAppState` method directly.
|
|
NativeAppState.getCurrentAppState(appStateData => {
|
|
// It's possible that the state will have changed here & listeners need to be notified
|
|
if (!eventUpdated && this.currentState !== appStateData.app_state) {
|
|
this.currentState = appStateData.app_state;
|
|
// $FlowExpectedError[incompatible-call]
|
|
this.emit('appStateDidChange', appStateData);
|
|
}
|
|
}, logError);
|
|
}
|
|
|
|
// TODO: now that AppState is a subclass of NativeEventEmitter, we could
|
|
// deprecate `addEventListener` and `removeEventListener` and just use
|
|
// addListener` and `listener.remove()` directly. That will be a breaking
|
|
// change though, as both the method and event names are different
|
|
// (addListener events are currently required to be globally unique).
|
|
/**
|
|
* Add a handler to AppState changes by listening to the `change` event type
|
|
* and providing the handler.
|
|
*
|
|
* See https://reactnative.dev/docs/appstate.html#addeventlistener
|
|
*/
|
|
addEventListener<K: $Keys<AppStateEventDefinitions>>(
|
|
type: K,
|
|
handler: (...$ElementType<AppStateEventDefinitions, K>) => void,
|
|
): void {
|
|
invariant(
|
|
this._supportedEvents.indexOf(type) !== -1,
|
|
'Trying to subscribe to unknown event: "%s"',
|
|
type,
|
|
);
|
|
|
|
switch (type) {
|
|
case 'change': {
|
|
// $FlowIssue[invalid-tuple-arity] Flow cannot refine handler based on the event type
|
|
const changeHandler: AppStateValues => void = handler;
|
|
this._eventHandlers[type].set(
|
|
handler,
|
|
this.addListener('appStateDidChange', appStateData => {
|
|
changeHandler(appStateData.app_state);
|
|
}),
|
|
);
|
|
break;
|
|
}
|
|
case 'memoryWarning': {
|
|
// $FlowIssue[invalid-tuple-arity] Flow cannot refine handler based on the event type
|
|
const memoryWarningHandler: () => void = handler;
|
|
this._eventHandlers[type].set(
|
|
handler,
|
|
this.addListener('memoryWarning', memoryWarningHandler),
|
|
);
|
|
break;
|
|
}
|
|
|
|
case 'blur':
|
|
case 'focus': {
|
|
// $FlowIssue[invalid-tuple-arity] Flow cannot refine handler based on the event type
|
|
const focusOrBlurHandler: () => void = handler;
|
|
this._eventHandlers[type].set(
|
|
handler,
|
|
this.addListener('appStateFocusChange', hasFocus => {
|
|
if (type === 'blur' && !hasFocus) {
|
|
focusOrBlurHandler();
|
|
}
|
|
if (type === 'focus' && hasFocus) {
|
|
focusOrBlurHandler();
|
|
}
|
|
}),
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Remove a handler by passing the `change` event type and the handler.
|
|
*
|
|
* See https://reactnative.dev/docs/appstate.html#removeeventlistener
|
|
*/
|
|
removeEventListener<K: $Keys<AppStateEventDefinitions>>(
|
|
type: K,
|
|
handler: (...$ElementType<AppStateEventDefinitions, K>) => void,
|
|
) {
|
|
invariant(
|
|
this._supportedEvents.indexOf(type) !== -1,
|
|
'Trying to remove listener for unknown event: "%s"',
|
|
type,
|
|
);
|
|
const subscription = this._eventHandlers[type].get(handler);
|
|
if (!subscription) {
|
|
return;
|
|
}
|
|
subscription.remove();
|
|
this._eventHandlers[type].delete(handler);
|
|
}
|
|
}
|
|
|
|
class MissingNativeModuleError extends Error {
|
|
constructor() {
|
|
super(
|
|
'Cannot use AppState module when native RCTAppState is not included in the build.\n' +
|
|
'Either include it, or check AppState.isAvailable before calling any methods.',
|
|
);
|
|
}
|
|
}
|
|
|
|
class MissingNativeAppStateShim extends EventEmitter<NativeAppStateEventDefinitions> {
|
|
// AppState
|
|
isAvailable: boolean = false;
|
|
currentState: ?string = null;
|
|
|
|
addEventListener<K: $Keys<AppStateEventDefinitions>>(
|
|
type: K,
|
|
handler: (...$ElementType<AppStateEventDefinitions, K>) => mixed,
|
|
): void {
|
|
throw new MissingNativeModuleError();
|
|
}
|
|
|
|
removeEventListener<K: $Keys<AppStateEventDefinitions>>(
|
|
type: K,
|
|
handler: (...$ElementType<AppStateEventDefinitions, K>) => mixed,
|
|
) {
|
|
throw new MissingNativeModuleError();
|
|
}
|
|
|
|
// $FlowIssue[invalid-tuple-arity]
|
|
addListener<K: $Keys<NativeAppStateEventDefinitions>>(
|
|
eventType: K,
|
|
// $FlowIssue[incompatible-extend]
|
|
listener: (...$ElementType<NativeAppStateEventDefinitions, K>) => mixed,
|
|
context: $FlowFixMe,
|
|
): EmitterSubscription<NativeAppStateEventDefinitions, K> {
|
|
throw new MissingNativeModuleError();
|
|
}
|
|
|
|
removeAllListeners<K: $Keys<NativeAppStateEventDefinitions>>(
|
|
eventType: ?K,
|
|
): void {
|
|
throw new MissingNativeModuleError();
|
|
}
|
|
|
|
removeSubscription<K: $Keys<NativeAppStateEventDefinitions>>(
|
|
subscription: EmitterSubscription<NativeAppStateEventDefinitions, K>,
|
|
): void {
|
|
throw new MissingNativeModuleError();
|
|
}
|
|
}
|
|
|
|
// This module depends on the native `RCTAppState` module. If you don't include it,
|
|
// `AppState.isAvailable` will return `false`, and any method calls will throw.
|
|
// We reassign the class variable to keep the autodoc generator happy.
|
|
const AppStateInstance: AppState | MissingNativeAppStateShim = NativeAppState
|
|
? new AppState()
|
|
: new MissingNativeAppStateShim();
|
|
|
|
module.exports = AppStateInstance;
|