Update app name on client change

Summary: This diff refactors the way appName is shown. We populate the appName through selectedApp, thus keeping different redux prop is not needed. This diff gets rid off the appName prop from the redux store and makes sure that appName gets updated on client change.

Reviewed By: mweststrate

Differential Revision: D18764685

fbshipit-source-id: 5ff94c83f84b03bbee34518aface46d4544af77f
This commit is contained in:
Pritesh Nandgaonkar
2019-12-03 04:49:33 -08:00
committed by Facebook Github Bot
parent b1fb67c9c4
commit d21be33b9a
4 changed files with 22 additions and 7 deletions

View File

@@ -37,10 +37,11 @@ import promiseTimeout from './promiseTimeout';
import {Idler} from './Idler';
import {setStaticView} from '../reducers/connections';
import {
SupportFormV2State,
resetSupportFormV2State,
SupportFormRequestDetailsState,
} from '../reducers/supportForm';
import {setSelectPluginsToExportActiveSheet} from '../reducers/application';
import {getCurrentAppName} from '../utils/clientUtils';
export const IMPORT_FLIPPER_TRACE_EVENT = 'import-flipper-trace';
export const EXPORT_FLIPPER_TRACE_EVENT = 'export-flipper-trace';
@@ -58,7 +59,7 @@ export type ExportType = {
pluginStates: PluginStatesExportState;
activeNotifications: Array<PluginNotification>;
};
supportRequestDetails?: SupportFormV2State;
supportRequestDetails?: SupportFormRequestDetailsState;
};
type ProcessPluginStatesOptions = {
@@ -544,7 +545,11 @@ export function exportStore(
idler,
);
if (exportData != null) {
exportData.supportRequestDetails = state.supportForm?.supportFormV2;
exportData.supportRequestDetails = {
...state.supportForm?.supportFormV2,
appName: getCurrentAppName(state.connections.selectedApp),
};
statusUpdate && statusUpdate('Serializing Flipper data...');
const serializedString = JSON.stringify(exportData);
if (serializedString.length <= 0) {