Move troubleshooting guide into a modal

Reviewed By: aigoncharov

Differential Revision: D48066773

fbshipit-source-id: 05aca8c75aa30325e1a8c5f31301db1e89ec25af
This commit is contained in:
Anton Kastritskiy
2023-08-07 03:54:28 -07:00
committed by Facebook GitHub Bot
parent 60419c54f2
commit 08371d3a6b
3 changed files with 52 additions and 35 deletions

View File

@@ -11,11 +11,7 @@ import {v1 as uuidv1} from 'uuid';
import {getRenderHostInstance} from 'flipper-frontend-core';
import {Actions} from './';
export type ToplevelNavigationItem =
| 'appinspect'
| 'notification'
| 'connectivity'
| undefined;
export type ToplevelNavigationItem = 'appinspect' | 'notification' | undefined;
export type LauncherMsg = {
message: string;
@@ -44,7 +40,7 @@ export type ShareType = {
export type State = {
topLevelSelection: ToplevelNavigationItem;
hasLeftSidebar: boolean;
isTroubleshootingModalOpen: boolean;
leftSidebarVisible: boolean;
rightSidebarVisible: boolean;
rightSidebarAvailable: boolean;
@@ -88,11 +84,15 @@ export type Action =
| {
type: 'REMOVE_STATUS_MSG';
payload: {msg: string; sender: string};
}
| {
type: 'TOGGLE_CONNECTIVITY_MODAL';
};
export const initialState: () => State = () => ({
topLevelSelection: 'appinspect',
hasLeftSidebar: true,
isTroubleshootingModalOpen: false,
leftSidebarVisible: true,
rightSidebarVisible: true,
rightSidebarAvailable: false,
@@ -125,7 +125,6 @@ export default function reducer(
): State {
state = state || initialState();
if (
action.type === 'hasLeftSidebar' ||
action.type === 'leftSidebarVisible' ||
action.type === 'rightSidebarVisible' ||
action.type === 'rightSidebarAvailable'
@@ -147,16 +146,15 @@ export default function reducer(
} else if (action.type === 'topLevelSelection') {
const topLevelSelection = action.payload;
const hasLeftSidebar =
topLevelSelection === 'appinspect' ||
topLevelSelection === 'notification';
return {
...state,
leftSidebarVisible: hasLeftSidebar,
hasLeftSidebar,
topLevelSelection,
};
} else if (action.type === 'TOGGLE_CONNECTIVITY_MODAL') {
return {
...state,
isTroubleshootingModalOpen: !state.isTroubleshootingModalOpen,
};
} else if (action.type === 'windowIsFocused') {
return {
...state,
@@ -206,6 +204,10 @@ export const setTopLevelSelection = (
payload,
});
export const toggleConnectivityModal = (): Action => ({
type: 'TOGGLE_CONNECTIVITY_MODAL',
});
export const toggleLeftSidebarVisible = (payload?: boolean): Action => ({
type: 'leftSidebarVisible',
payload,