Files
react-native/packages/react-native/Libraries/Utilities/SceneTracker.js
T
Jesse Watts-RussellandFacebook GitHub Bot 6dc517a7fc Log route parameters in the scene-tracker (#38654)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/38654

Changelog:
[Internal][Added] - Created mechanism to add other properties in OCSceneTracker then subsequently refine them when consuming the current scene.

Reviewed By: rubennorte

Differential Revision: D47810741

fbshipit-source-id: d24e4f4d1d25fac2f3bed2e98e7a7b4642f26319
2023-07-27 20:56:11 -07:00

43 lines
899 B
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.
*
* @format
* @flow strict
*/
'use strict';
export type Scene = {name: string, [string]: mixed, ...};
let _listeners: Array<(scene: Scene) => void> = [];
let _activeScene = {name: 'default'};
const SceneTracker = {
setActiveScene(scene: Scene) {
_activeScene = scene;
_listeners.forEach(listener => listener(_activeScene));
},
getActiveScene(): Scene {
return _activeScene;
},
addActiveSceneChangedListener(callback: (scene: Scene) => void): {
remove: () => void,
...
} {
_listeners.push(callback);
return {
remove: () => {
_listeners = _listeners.filter(listener => callback !== listener);
},
};
},
};
module.exports = SceneTracker;