Summary: People often want to share Flipper's verison number in bug reports, etc. This makes it as easy as a single click to copy the version number. Reviewed By: jknoxville Differential Revision: D15516592 fbshipit-source-id: 72582e2acb23113b3a0af062a83d444031f058d6
188 lines
4.8 KiB
JavaScript
188 lines
4.8 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 type {ActiveSheet, LauncherMsg} from '../reducers/application';
|
|
|
|
import {
|
|
colors,
|
|
Button,
|
|
ButtonGroup,
|
|
FlexRow,
|
|
Component,
|
|
Spacer,
|
|
styled,
|
|
Text,
|
|
LoadingIndicator,
|
|
} from 'flipper';
|
|
import {connect} from 'react-redux';
|
|
import {
|
|
setActiveSheet,
|
|
toggleLeftSidebarVisible,
|
|
toggleRightSidebarVisible,
|
|
ACTIVE_SHEET_BUG_REPORTER,
|
|
} from '../reducers/application.js';
|
|
import DevicesButton from './DevicesButton.js';
|
|
import ScreenCaptureButtons from './ScreenCaptureButtons.js';
|
|
import AutoUpdateVersion from './AutoUpdateVersion.js';
|
|
import UpdateIndicator from './UpdateIndicator.js';
|
|
import config from '../fb-stubs/config.js';
|
|
import {isAutoUpdaterEnabled} from '../utils/argvUtils.js';
|
|
import isProduction from '../utils/isProduction.js';
|
|
import {clipboard} from 'electron';
|
|
|
|
const AppTitleBar = styled(FlexRow)(({focused}) => ({
|
|
background: focused
|
|
? `linear-gradient(to bottom, ${colors.macOSTitleBarBackgroundTop} 0%, ${
|
|
colors.macOSTitleBarBackgroundBottom
|
|
} 100%)`
|
|
: colors.macOSTitleBarBackgroundBlur,
|
|
borderBottom: `1px solid ${
|
|
focused ? colors.macOSTitleBarBorder : colors.macOSTitleBarBorderBlur
|
|
}`,
|
|
height: 38,
|
|
flexShrink: 0,
|
|
width: '100%',
|
|
alignItems: 'center',
|
|
paddingLeft: 80,
|
|
paddingRight: 10,
|
|
justifyContent: 'space-between',
|
|
WebkitAppRegion: 'drag',
|
|
zIndex: 4,
|
|
}));
|
|
|
|
type OwnProps = {|
|
|
version: string,
|
|
|};
|
|
|
|
type Props = {|
|
|
...OwnProps,
|
|
windowIsFocused: boolean,
|
|
leftSidebarVisible: boolean,
|
|
rightSidebarVisible: boolean,
|
|
rightSidebarAvailable: boolean,
|
|
downloadingImportData: boolean,
|
|
toggleLeftSidebarVisible: (visible?: boolean) => void,
|
|
toggleRightSidebarVisible: (visible?: boolean) => void,
|
|
setActiveSheet: (sheet: ActiveSheet) => void,
|
|
launcherMsg: LauncherMsg,
|
|
|};
|
|
|
|
const VersionText = styled(Text)({
|
|
color: colors.light50,
|
|
marginLeft: 4,
|
|
marginTop: 2,
|
|
cursor: 'pointer',
|
|
display: 'block',
|
|
padding: '4px 10px',
|
|
'&:hover': {
|
|
backgroundColor: `rgba(0,0,0,0.05)`,
|
|
borderRadius: '999em',
|
|
},
|
|
});
|
|
|
|
class Version extends Component<{children: string}, {copied: boolean}> {
|
|
state = {
|
|
copied: false,
|
|
};
|
|
_onClick = () => {
|
|
clipboard.writeText(this.props.children);
|
|
this.setState({copied: true});
|
|
setTimeout(() => this.setState({copied: false}), 1000);
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<VersionText onClick={this._onClick}>
|
|
{this.state.copied ? 'Copied' : this.props.children}
|
|
</VersionText>
|
|
);
|
|
}
|
|
}
|
|
|
|
const Importing = styled(FlexRow)({
|
|
color: colors.light50,
|
|
alignItems: 'center',
|
|
marginLeft: 10,
|
|
});
|
|
|
|
class TitleBar extends Component<Props> {
|
|
render() {
|
|
return (
|
|
<AppTitleBar focused={this.props.windowIsFocused} className="toolbar">
|
|
<DevicesButton />
|
|
<ScreenCaptureButtons />
|
|
{this.props.downloadingImportData && (
|
|
<Importing>
|
|
<LoadingIndicator size={16} />
|
|
Importing data...
|
|
</Importing>
|
|
)}
|
|
<Spacer />
|
|
<Version>{this.props.version + (isProduction() ? '' : '-dev')}</Version>
|
|
|
|
{isAutoUpdaterEnabled() ? (
|
|
<AutoUpdateVersion version={this.props.version} />
|
|
) : (
|
|
<UpdateIndicator launcherMsg={this.props.launcherMsg} />
|
|
)}
|
|
{config.bugReportButtonVisible && (
|
|
<Button
|
|
compact={true}
|
|
onClick={() => this.props.setActiveSheet(ACTIVE_SHEET_BUG_REPORTER)}
|
|
title="Report Bug"
|
|
icon="bug"
|
|
/>
|
|
)}
|
|
<ButtonGroup>
|
|
<Button
|
|
compact={true}
|
|
selected={this.props.leftSidebarVisible}
|
|
onClick={() => this.props.toggleLeftSidebarVisible()}
|
|
icon="icons/sidebar_left.svg"
|
|
iconSize={20}
|
|
title="Toggle Plugins"
|
|
/>
|
|
<Button
|
|
compact={true}
|
|
selected={this.props.rightSidebarVisible}
|
|
onClick={() => this.props.toggleRightSidebarVisible()}
|
|
icon="icons/sidebar_right.svg"
|
|
iconSize={20}
|
|
title="Toggle Details"
|
|
disabled={!this.props.rightSidebarAvailable}
|
|
/>
|
|
</ButtonGroup>
|
|
</AppTitleBar>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default connect<Props, OwnProps, _, _, _, _>(
|
|
({
|
|
application: {
|
|
windowIsFocused,
|
|
leftSidebarVisible,
|
|
rightSidebarVisible,
|
|
rightSidebarAvailable,
|
|
downloadingImportData,
|
|
launcherMsg,
|
|
},
|
|
}) => ({
|
|
windowIsFocused,
|
|
leftSidebarVisible,
|
|
rightSidebarVisible,
|
|
rightSidebarAvailable,
|
|
downloadingImportData,
|
|
launcherMsg,
|
|
}),
|
|
{
|
|
setActiveSheet,
|
|
toggleLeftSidebarVisible,
|
|
toggleRightSidebarVisible,
|
|
},
|
|
)(TitleBar);
|