react-native
Version:
A framework for building native apps using React
43 lines (35 loc) • 1.01 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 strict
* @format
* @oncall react_native
*/
class FuseboxSessionObserver {
#hasNativeSupport: boolean;
constructor() {
this.#hasNativeSupport = global.hasOwnProperty(
'__DEBUGGER_SESSION_OBSERVER__',
);
}
hasActiveSession(): boolean {
if (!this.#hasNativeSupport) {
return false;
}
return global.__DEBUGGER_SESSION_OBSERVER__.hasActiveSession;
}
subscribe(callback: (status: boolean) => void): () => void {
if (!this.#hasNativeSupport) {
return () => {};
}
global.__DEBUGGER_SESSION_OBSERVER__.subscribers.add(callback);
return () => {
global.__DEBUGGER_SESSION_OBSERVER__.subscribers.delete(callback);
};
}
}
const observerInstance: FuseboxSessionObserver = new FuseboxSessionObserver();
export default observerInstance;