Summary: Migrated PluginDebugger.js to PluginDebugger.tsx Reviewed By: passy Differential Revision: D16732025 fbshipit-source-id: c4ff5586f823e90eba14eef5a8dac114a058763b
139 lines
4.0 KiB
JavaScript
139 lines
4.0 KiB
JavaScript
/**
|
|
* Copyright 2018-present Facebook.
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
* @format
|
|
*/
|
|
|
|
import React from 'react';
|
|
import {FlexColumn, FlexRow} from 'flipper';
|
|
import {connect} from 'react-redux';
|
|
import WelcomeScreen from './chrome/WelcomeScreen.tsx';
|
|
import TitleBar from './chrome/TitleBar.tsx';
|
|
import MainSidebar from './chrome/MainSidebar.tsx';
|
|
import BugReporterDialog from './chrome/BugReporterDialog.tsx';
|
|
import ErrorBar from './chrome/ErrorBar.tsx';
|
|
import ShareSheet from './chrome/ShareSheet.js';
|
|
import SignInSheet from './chrome/SignInSheet.js';
|
|
import ExportDataPluginSheet from './chrome/ExportDataPluginSheet.tsx';
|
|
import ShareSheetExportFile from './chrome/ShareSheetExportFile.js';
|
|
import PluginContainer from './PluginContainer.js';
|
|
import Sheet from './chrome/Sheet.js';
|
|
import {ipcRenderer, remote} from 'electron';
|
|
import PluginDebugger from './chrome/PluginDebugger.tsx';
|
|
import {
|
|
ShareType,
|
|
ActiveSheet,
|
|
ACTIVE_SHEET_BUG_REPORTER,
|
|
ACTIVE_SHEET_PLUGIN_DEBUGGER,
|
|
ACTIVE_SHEET_SHARE_DATA,
|
|
ACTIVE_SHEET_SIGN_IN,
|
|
ACTIVE_SHEET_SHARE_DATA_IN_FILE,
|
|
ACTIVE_SHEET_SELECT_PLUGINS_TO_EXPORT,
|
|
ACTIVE_SHEET_PLUGIN_SHEET,
|
|
} from './reducers/application.tsx';
|
|
import type {Logger} from './fb-interfaces/Logger.js';
|
|
import type BugReporter from './fb-stubs/BugReporter.tsx';
|
|
import type BaseDevice from './devices/BaseDevice.tsx';
|
|
const version = remote.app.getVersion();
|
|
|
|
type OwnProps = {|
|
|
logger: Logger,
|
|
bugReporter: BugReporter,
|
|
|};
|
|
|
|
type Props = {|
|
|
...OwnProps,
|
|
leftSidebarVisible: boolean,
|
|
selectedDevice: ?BaseDevice,
|
|
error: ?string,
|
|
activeSheet: ActiveSheet,
|
|
share: ?ShareType,
|
|
|};
|
|
|
|
export class App extends React.Component<Props> {
|
|
componentDidMount() {
|
|
// track time since launch
|
|
const [s, ns] = process.hrtime();
|
|
const launchEndTime = s * 1e3 + ns / 1e6;
|
|
ipcRenderer.on('getLaunchTime', (event, launchStartTime) => {
|
|
this.props.logger.track(
|
|
'performance',
|
|
'launchTime',
|
|
launchEndTime - launchStartTime,
|
|
);
|
|
});
|
|
ipcRenderer.send('getLaunchTime');
|
|
ipcRenderer.send('componentDidMount');
|
|
}
|
|
|
|
getSheet = (onHide: () => mixed) => {
|
|
const {activeSheet} = this.props;
|
|
switch (activeSheet) {
|
|
case ACTIVE_SHEET_BUG_REPORTER:
|
|
return (
|
|
<BugReporterDialog
|
|
bugReporter={this.props.bugReporter}
|
|
onHide={onHide}
|
|
/>
|
|
);
|
|
case ACTIVE_SHEET_PLUGIN_DEBUGGER:
|
|
return <PluginDebugger onHide={onHide} />;
|
|
case ACTIVE_SHEET_SHARE_DATA:
|
|
return <ShareSheet onHide={onHide} logger={this.props.logger} />;
|
|
case ACTIVE_SHEET_SIGN_IN:
|
|
return <SignInSheet onHide={onHide} />;
|
|
case ACTIVE_SHEET_SELECT_PLUGINS_TO_EXPORT:
|
|
return <ExportDataPluginSheet onHide={onHide} />;
|
|
case ACTIVE_SHEET_SHARE_DATA_IN_FILE:
|
|
return (
|
|
<ShareSheetExportFile
|
|
onHide={onHide}
|
|
file={
|
|
this.props.share && this.props.share.type === 'file'
|
|
? this.props.share.file
|
|
: undefined
|
|
}
|
|
logger={this.props.logger}
|
|
/>
|
|
);
|
|
case ACTIVE_SHEET_PLUGIN_SHEET:
|
|
// Currently unused.
|
|
return null;
|
|
default:
|
|
return null;
|
|
}
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<FlexColumn grow={true}>
|
|
<TitleBar version={version} />
|
|
<Sheet>{this.getSheet}</Sheet>
|
|
<FlexRow grow={true}>
|
|
{this.props.leftSidebarVisible && <MainSidebar />}
|
|
{this.props.selectedDevice ? (
|
|
<PluginContainer logger={this.props.logger} />
|
|
) : (
|
|
<WelcomeScreen />
|
|
)}
|
|
</FlexRow>
|
|
<ErrorBar text={this.props.error} />
|
|
</FlexColumn>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default connect<Props, OwnProps, _, _, _, _>(
|
|
({
|
|
application: {leftSidebarVisible, activeSheet, share},
|
|
connections: {selectedDevice, error},
|
|
}) => ({
|
|
leftSidebarVisible,
|
|
selectedDevice,
|
|
activeSheet,
|
|
share: share,
|
|
error,
|
|
}),
|
|
)(App);
|