mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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
43 lines
899 B
JavaScript
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;
|