Summary: - rename package `'sonar'` > `'flipper'` - rename package `'sonar-static'` > `'flipper-static'` - rename package export from `window.Sonar` to `window.Flipper` Reviewed By: passy Differential Revision: D9851181 fbshipit-source-id: 34d4447c3b287496b3d20ddb54471ce777ec74e1
107 lines
2.6 KiB
JavaScript
107 lines
2.6 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 {Component, Button} from 'flipper';
|
|
import {connect} from 'react-redux';
|
|
import {spawn} from 'child_process';
|
|
import {selectDevice, preferDevice} from '../reducers/connections.js';
|
|
import type BaseDevice from '../devices/BaseDevice.js';
|
|
|
|
type Props = {
|
|
selectedDevice: ?BaseDevice,
|
|
androidEmulators: Array<string>,
|
|
devices: Array<BaseDevice>,
|
|
selectDevice: (device: BaseDevice) => void,
|
|
preferDevice: (device: string) => void,
|
|
};
|
|
|
|
class DevicesButton extends Component<Props> {
|
|
launchEmulator = (name: string) => {
|
|
const child = spawn(
|
|
`${process.env.ANDROID_HOME || ''}/tools/emulator`,
|
|
[`@${name}`],
|
|
{
|
|
detached: true,
|
|
stdio: 'ignore',
|
|
},
|
|
);
|
|
child.on('error', console.error);
|
|
this.props.preferDevice(name);
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
devices,
|
|
androidEmulators,
|
|
selectedDevice,
|
|
selectDevice,
|
|
} = this.props;
|
|
let text = 'No device selected';
|
|
let icon = 'minus-circle';
|
|
|
|
if (selectedDevice) {
|
|
text = selectedDevice.title;
|
|
icon = 'mobile';
|
|
}
|
|
|
|
const dropdown = [];
|
|
|
|
if (devices.length > 0) {
|
|
dropdown.push(
|
|
{
|
|
label: 'Running devices',
|
|
enabled: false,
|
|
},
|
|
...devices.map((device: BaseDevice) => ({
|
|
click: () => selectDevice(device),
|
|
checked: device === selectedDevice,
|
|
label: `${device.deviceType === 'physical' ? '📱 ' : ''}${
|
|
device.title
|
|
}`,
|
|
type: 'checkbox',
|
|
})),
|
|
);
|
|
}
|
|
if (androidEmulators.length > 0) {
|
|
const emulators = Array.from(androidEmulators)
|
|
.filter(
|
|
(name: string) =>
|
|
devices.findIndex((device: BaseDevice) => device.title === name) ===
|
|
-1,
|
|
)
|
|
.map((name: string) => ({
|
|
label: name,
|
|
click: () => this.launchEmulator(name),
|
|
}));
|
|
|
|
if (emulators.length > 0) {
|
|
dropdown.push(
|
|
{type: 'separator'},
|
|
{
|
|
label: 'Launch Android emulators',
|
|
enabled: false,
|
|
},
|
|
...emulators,
|
|
);
|
|
}
|
|
}
|
|
return (
|
|
<Button compact={true} icon={icon} dropdown={dropdown} disabled={false}>
|
|
{text}
|
|
</Button>
|
|
);
|
|
}
|
|
}
|
|
export default connect(
|
|
({connections: {devices, androidEmulators, selectedDevice}}) => ({
|
|
devices,
|
|
androidEmulators,
|
|
selectedDevice,
|
|
}),
|
|
{selectDevice, preferDevice},
|
|
)(DevicesButton);
|