12345678910111213141516171819202122232425262728293031323334353637 |
- import { NativeModules } from 'react-native';
-
- import { IState } from '../../app/types';
- import { REPLACE_PARTICIPANT } from '../flags/constants';
- import { getFeatureFlag } from '../flags/functions';
-
- import { IConfig } from './configType';
-
- export * from './functions.any';
-
- /**
- * Removes all analytics related options from the given configuration, in case of a libre build.
- *
- * @param {*} config - The configuration which needs to be cleaned up.
- * @returns {void}
- */
- export function _cleanupConfig(config: IConfig) {
- config.analytics = {};
- config.analytics.scriptURLs = [];
- if (NativeModules.AppInfo.LIBRE_BUILD) {
- delete config.analytics?.amplitudeAPPKey;
- delete config.analytics?.googleAnalyticsTrackingId;
- delete config.callStatsID;
- delete config.callStatsSecret;
- config.giphy = { enabled: false };
- }
- }
-
- /**
- * Returns the replaceParticipant config.
- *
- * @param {Object} state - The state of the app.
- * @returns {boolean}
- */
- export function getReplaceParticipant(state: IState): string {
- return getFeatureFlag(state, REPLACE_PARTICIPANT, false);
- }
|