Summary: moved `app/src/server` to `flipper-server-core/src` and fixed any fallout from that (aka integration points I missed on the preparing diffs). Reviewed By: passy Differential Revision: D31541378 fbshipit-source-id: 8a7e0169ebefa515781f6e5e0f7b926415d4b7e9
199 lines
4.6 KiB
TypeScript
199 lines
4.6 KiB
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
// This is fine, we're using a focus event.
|
|
// eslint-disable-next-line flipper/no-electron-remote-imports
|
|
import {remote} from 'electron';
|
|
import {v1 as uuidv1} from 'uuid';
|
|
import {Actions} from './';
|
|
|
|
export type LauncherMsg = {
|
|
message: string;
|
|
severity: 'warning' | 'error';
|
|
};
|
|
|
|
export type StatusMessageType = {
|
|
msg: string;
|
|
sender: string;
|
|
};
|
|
|
|
type SubShareType =
|
|
| {
|
|
type: 'file';
|
|
file: string;
|
|
}
|
|
| {
|
|
type: 'link';
|
|
url?: string;
|
|
};
|
|
|
|
export type ShareType = {
|
|
statusComponent?: React.ReactNode;
|
|
closeOnFinish: boolean;
|
|
} & SubShareType;
|
|
|
|
export type State = {
|
|
leftSidebarVisible: boolean;
|
|
rightSidebarVisible: boolean;
|
|
rightSidebarAvailable: boolean;
|
|
windowIsFocused: boolean;
|
|
share: ShareType | null;
|
|
sessionId: string | null;
|
|
launcherMsg: LauncherMsg;
|
|
statusMessages: Array<string>;
|
|
};
|
|
|
|
type BooleanActionType =
|
|
| 'leftSidebarVisible'
|
|
| 'rightSidebarVisible'
|
|
| 'rightSidebarAvailable';
|
|
|
|
export type Action =
|
|
| {
|
|
type: BooleanActionType;
|
|
payload?: boolean;
|
|
}
|
|
| {
|
|
type: 'windowIsFocused';
|
|
payload: {isFocused: boolean; time: number};
|
|
}
|
|
| {
|
|
type: 'LAUNCHER_MSG';
|
|
payload: {
|
|
severity: 'warning' | 'error';
|
|
message: string;
|
|
};
|
|
}
|
|
| {
|
|
type: 'ADD_STATUS_MSG';
|
|
payload: {msg: string; sender: string};
|
|
}
|
|
| {
|
|
type: 'REMOVE_STATUS_MSG';
|
|
payload: {msg: string; sender: string};
|
|
};
|
|
|
|
export const initialState: () => State = () => ({
|
|
leftSidebarVisible: true,
|
|
rightSidebarVisible: true,
|
|
rightSidebarAvailable: false,
|
|
windowIsFocused: remote.getCurrentWindow().isFocused(),
|
|
activeSheet: null,
|
|
share: null,
|
|
sessionId: uuidv1(),
|
|
launcherMsg: {
|
|
severity: 'warning',
|
|
message: '',
|
|
},
|
|
statusMessages: [],
|
|
trackingTimeline: [],
|
|
});
|
|
|
|
function statusMessage(sender: string, msg: string): string {
|
|
const messageTrimmed = msg.trim();
|
|
const senderTrimmed = sender.trim();
|
|
let statusMessage = senderTrimmed.length > 0 ? senderTrimmed : '';
|
|
statusMessage =
|
|
statusMessage.length > 0 && messageTrimmed.length > 0
|
|
? `${statusMessage}: ${messageTrimmed}`
|
|
: '';
|
|
return statusMessage;
|
|
}
|
|
|
|
export default function reducer(
|
|
state: State | undefined,
|
|
action: Actions,
|
|
): State {
|
|
state = state || initialState();
|
|
if (
|
|
action.type === 'leftSidebarVisible' ||
|
|
action.type === 'rightSidebarVisible' ||
|
|
action.type === 'rightSidebarAvailable'
|
|
) {
|
|
const newValue =
|
|
typeof action.payload === 'undefined'
|
|
? !state[action.type]
|
|
: action.payload;
|
|
|
|
if (state[action.type] === newValue) {
|
|
// value hasn't changed
|
|
return state;
|
|
} else {
|
|
return {
|
|
...state,
|
|
[action.type]: newValue,
|
|
};
|
|
}
|
|
} else if (action.type === 'windowIsFocused') {
|
|
return {
|
|
...state,
|
|
windowIsFocused: action.payload.isFocused,
|
|
};
|
|
} else if (action.type === 'LAUNCHER_MSG') {
|
|
return {
|
|
...state,
|
|
launcherMsg: action.payload,
|
|
};
|
|
} else if (action.type === 'ADD_STATUS_MSG') {
|
|
const {sender, msg} = action.payload;
|
|
const statusMsg = statusMessage(sender, msg);
|
|
if (statusMsg.length > 0) {
|
|
return {
|
|
...state,
|
|
statusMessages: [...state.statusMessages, statusMsg],
|
|
};
|
|
}
|
|
return state;
|
|
} else if (action.type === 'REMOVE_STATUS_MSG') {
|
|
const {sender, msg} = action.payload;
|
|
const statusMsg = statusMessage(sender, msg);
|
|
if (statusMsg.length > 0) {
|
|
const statusMessages = [...state.statusMessages];
|
|
statusMessages.splice(statusMessages.indexOf(statusMsg), 1);
|
|
return {...state, statusMessages};
|
|
}
|
|
return state;
|
|
} else {
|
|
return state;
|
|
}
|
|
}
|
|
|
|
export const toggleAction = (
|
|
type: BooleanActionType,
|
|
payload?: boolean,
|
|
): Action => ({
|
|
type,
|
|
payload,
|
|
});
|
|
|
|
export const toggleLeftSidebarVisible = (payload?: boolean): Action => ({
|
|
type: 'leftSidebarVisible',
|
|
payload,
|
|
});
|
|
|
|
export const toggleRightSidebarVisible = (payload?: boolean): Action => ({
|
|
type: 'rightSidebarVisible',
|
|
payload,
|
|
});
|
|
|
|
export const toggleRightSidebarAvailable = (payload?: boolean): Action => ({
|
|
type: 'rightSidebarAvailable',
|
|
payload,
|
|
});
|
|
|
|
export const addStatusMessage = (payload: StatusMessageType): Action => ({
|
|
type: 'ADD_STATUS_MSG',
|
|
payload,
|
|
});
|
|
|
|
export const removeStatusMessage = (payload: StatusMessageType): Action => ({
|
|
type: 'REMOVE_STATUS_MSG',
|
|
payload,
|
|
});
|