2019-04-30 10:24:12 +00:00
|
|
|
import { NativeModules } from 'react-native';
|
|
|
|
|
2022-10-20 09:11:27 +00:00
|
|
|
import { IReduxState } from '../../app/types';
|
2022-09-14 07:54:56 +00:00
|
|
|
import { REPLACE_PARTICIPANT } from '../flags/constants';
|
|
|
|
import { getFeatureFlag } from '../flags/functions';
|
|
|
|
|
|
|
|
import { IConfig } from './configType';
|
2021-06-16 11:08:18 +00:00
|
|
|
|
2019-04-30 10:24:12 +00:00
|
|
|
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}
|
|
|
|
*/
|
2022-09-14 07:54:56 +00:00
|
|
|
export function _cleanupConfig(config: IConfig) {
|
2022-09-14 11:49:13 +00:00
|
|
|
config.analytics = {};
|
2019-10-11 09:46:57 +00:00
|
|
|
config.analytics.scriptURLs = [];
|
2019-04-30 10:24:12 +00:00
|
|
|
if (NativeModules.AppInfo.LIBRE_BUILD) {
|
2021-08-17 17:24:18 +00:00
|
|
|
delete config.analytics?.amplitudeAPPKey;
|
|
|
|
delete config.analytics?.googleAnalyticsTrackingId;
|
2019-04-30 10:24:12 +00:00
|
|
|
delete config.callStatsID;
|
|
|
|
delete config.callStatsSecret;
|
2022-07-21 10:21:27 +00:00
|
|
|
config.giphy = { enabled: false };
|
2019-04-30 10:24:12 +00:00
|
|
|
}
|
|
|
|
}
|
2021-06-16 11:08:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the replaceParticipant config.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The state of the app.
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2022-10-20 09:11:27 +00:00
|
|
|
export function getReplaceParticipant(state: IReduxState): string {
|
2021-06-16 11:08:18 +00:00
|
|
|
return getFeatureFlag(state, REPLACE_PARTICIPANT, false);
|
|
|
|
}
|