Introduce app selector

Summary: Sidebar now shows a drop down to select the app you are currently working on, rather than showing all plugins for all apps connected

Reviewed By: passy

Differential Revision: D18201094

fbshipit-source-id: a64ca380606c232d0a85bfa80f16ed0db980dfb4
This commit is contained in:
Michel Weststrate
2019-11-05 09:13:31 -08:00
committed by Facebook Github Bot
parent 9bb0dad5d6
commit 969a857fae

View File

@@ -28,6 +28,7 @@ import {
FlipperPlugin, FlipperPlugin,
FlipperDevicePlugin, FlipperDevicePlugin,
LoadingIndicator, LoadingIndicator,
Button,
} from 'flipper'; } from 'flipper';
import React, {Component, PureComponent, Fragment} from 'react'; import React, {Component, PureComponent, Fragment} from 'react';
import NotificationsHub from '../NotificationsHub'; import NotificationsHub from '../NotificationsHub';
@@ -251,9 +252,13 @@ type DispatchFromProps = {
}; };
type Props = OwnProps & StateFromProps & DispatchFromProps; type Props = OwnProps & StateFromProps & DispatchFromProps;
type State = {showSupportForm: boolean}; type State = {showSupportForm: boolean; selectedClientIndex: number};
class MainSidebar extends PureComponent<Props, State> { class MainSidebar extends PureComponent<Props, State> {
state: State = {showSupportForm: GK.get('flipper_support_requests')}; state: State = {
showSupportForm: GK.get('flipper_support_requests'),
// Not to be confused with selectedApp prop, this one only used to remember the client drowdown selector
selectedClientIndex: 0,
};
static getDerivedStateFromProps(props: Props, state: State) { static getDerivedStateFromProps(props: Props, state: State) {
if ( if (
!state.showSupportForm && !state.showSupportForm &&
@@ -272,7 +277,6 @@ class MainSidebar extends PureComponent<Props, State> {
selectedDevice, selectedDevice,
selectedPlugin, selectedPlugin,
staticView, staticView,
selectedApp,
selectPlugin, selectPlugin,
setStaticView, setStaticView,
windowIsFocused, windowIsFocused,
@@ -282,9 +286,16 @@ class MainSidebar extends PureComponent<Props, State> {
clients = clients clients = clients
.filter( .filter(
(client: Client) => (client: Client) =>
selectedDevice && selectedDevice.supportsOS(client.query.os), (selectedDevice &&
selectedDevice.supportsOS(client.query.os) &&
client.query.device_id === selectedDevice.serial) ||
// Old android sdk versions don't know their device_id
// Display their plugins under all selected devices until they die out
client.query.device_id === 'unknown',
) )
.sort((a, b) => (a.query.app || '').localeCompare(b.query.app)); .sort((a, b) => (a.query.app || '').localeCompare(b.query.app));
const client: Client | null =
clients[this.state.selectedClientIndex] || null;
const byPluginNameOrId = ( const byPluginNameOrId = (
a: typeof FlipperBasePlugin, a: typeof FlipperBasePlugin,
@@ -367,81 +378,29 @@ class MainSidebar extends PureComponent<Props, State> {
plugin={plugin} plugin={plugin}
/> />
))} ))}
{clients <ListItem style={{marginTop: 20}}>
.filter( <Button
(client: Client) => title="Select a client to see available plugins"
(selectedDevice && compact={true}
client.query.device_id === selectedDevice.serial) || dropdown={clients.map((c, index) => ({
// Old android sdk versions don't know their device_id checked: client === c,
// Display their plugins under all selected devices until they die out label: c.query.app,
client.query.device_id === 'unknown', type: 'checkbox',
) click: () => this.setState({selectedClientIndex: index}),
.map((client: Client) => { }))}
const plugins = Array.from( style={{
this.props.clientPlugins.values(), fontSize: 11,
).filter( width: '100%',
(p: typeof FlipperPlugin) => client.plugins.indexOf(p.id) > -1, overflow: 'hidden',
); }}>
{clients.length === 0
const minShowPluginsCount = ? '(Not connected to client)'
plugins.length < : this.state.selectedClientIndex >= clients.length
MAX_MINIMUM_PLUGINS + SHOW_REMAINING_PLUGIN_IF_LESS_THAN ? '(Select a client)'
? plugins.length : client.query.app}{' '}
: MAX_MINIMUM_PLUGINS; </Button>
</ListItem>
return ( {this.renderClientPlugins(client)}
<React.Fragment key={client.id}>
<SidebarHeader>{client.query.app}</SidebarHeader>
{groupPluginsByCategory(
plugins
.sort(
(a: typeof FlipperPlugin, b: typeof FlipperPlugin) =>
client.byClientLRU(plugins.length, a, b),
)
.slice(
0,
client.showAllPlugins
? client.plugins.length
: minShowPluginsCount,
),
).map(([category, plugins]) => (
<Fragment key={category}>
{category && (
<ListItem>
<CategoryName>{category}</CategoryName>
</ListItem>
)}
{plugins.map(plugin => (
<PluginSidebarListItem
key={plugin.id}
isActive={
plugin.id === selectedPlugin &&
selectedApp === client.id
}
onClick={() =>
selectPlugin({
selectedPlugin: plugin.id,
selectedApp: client.id,
deepLinkPayload: null,
})
}
plugin={plugin}
app={client.query.app}
/>
))}
</Fragment>
))}
{plugins.length > minShowPluginsCount && (
<PluginShowMoreOrLess
onClick={() =>
this.props.showMoreOrLessPlugins(client.id)
}>
{client.showAllPlugins ? 'Show less' : 'Show more'}
</PluginShowMoreOrLess>
)}
</React.Fragment>
);
})}
{uninitializedClients.map(entry => ( {uninitializedClients.map(entry => (
<React.Fragment key={JSON.stringify(entry.client)}> <React.Fragment key={JSON.stringify(entry.client)}>
<SidebarHeader>{entry.client.appName}</SidebarHeader> <SidebarHeader>{entry.client.appName}</SidebarHeader>
@@ -467,6 +426,69 @@ class MainSidebar extends PureComponent<Props, State> {
</Sidebar> </Sidebar>
); );
} }
renderClientPlugins(client: Client | null) {
if (!client) {
return null;
}
const {selectedPlugin, selectedApp, selectPlugin} = this.props;
const plugins = Array.from(this.props.clientPlugins.values()).filter(
(p: typeof FlipperPlugin) => client.plugins.indexOf(p.id) > -1,
);
const minShowPluginsCount =
plugins.length < MAX_MINIMUM_PLUGINS + SHOW_REMAINING_PLUGIN_IF_LESS_THAN
? plugins.length
: MAX_MINIMUM_PLUGINS;
return (
<React.Fragment key={client.id}>
{groupPluginsByCategory(
plugins
.sort((a: typeof FlipperPlugin, b: typeof FlipperPlugin) =>
client.byClientLRU(plugins.length, a, b),
)
.slice(
0,
client.showAllPlugins
? client.plugins.length
: minShowPluginsCount,
),
).map(([category, plugins]) => (
<Fragment key={category}>
{category && (
<ListItem>
<CategoryName>{category}</CategoryName>
</ListItem>
)}
{plugins.map(plugin => (
<PluginSidebarListItem
key={plugin.id}
isActive={
plugin.id === selectedPlugin && selectedApp === client.id
}
onClick={() =>
selectPlugin({
selectedPlugin: plugin.id,
selectedApp: client.id,
deepLinkPayload: null,
})
}
plugin={plugin}
app={client.query.app}
/>
))}
</Fragment>
))}
{plugins.length > minShowPluginsCount && (
<PluginShowMoreOrLess
onClick={() => this.props.showMoreOrLessPlugins(client.id)}>
{client.showAllPlugins ? 'Show less' : 'Show more'}
</PluginShowMoreOrLess>
)}
</React.Fragment>
);
}
} }
type PluginsByCategory = [string, (typeof FlipperPlugin)[]][]; type PluginsByCategory = [string, (typeof FlipperPlugin)[]][];