Summary:
Quick notes:
- This looks worse than it is. It adds mandatory parentheses to single argument lambdas. Lots of outrage on Twitter about it, personally I'm {emoji:1f937_200d_2642} about it.
- Space before function, e.g. `a = function ()` is now enforced. I like this because both were fine before.
- I added `eslint-config-prettier` to the config because otherwise a ton of rules conflict with eslint itself.
Close https://github.com/facebook/flipper/pull/915
Reviewed By: jknoxville
Differential Revision: D20594929
fbshipit-source-id: ca1c65376b90e009550dd6d1f4e0831d32cbff03
135 lines
3.4 KiB
TypeScript
135 lines
3.4 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
|
|
*/
|
|
|
|
import {FlipperPlugin, FlipperDevicePlugin} from '../plugin';
|
|
import {PluginDefinition} from '../dispatcher/plugins';
|
|
import {Actions} from '.';
|
|
import produce from 'immer';
|
|
|
|
export type State = {
|
|
devicePlugins: Map<string, typeof FlipperDevicePlugin>;
|
|
clientPlugins: Map<string, typeof FlipperPlugin>;
|
|
gatekeepedPlugins: Array<PluginDefinition>;
|
|
disabledPlugins: Array<PluginDefinition>;
|
|
failedPlugins: Array<[PluginDefinition, string]>;
|
|
selectedPlugins: Array<string>;
|
|
};
|
|
|
|
type PluginClass = typeof FlipperPlugin | typeof FlipperDevicePlugin;
|
|
|
|
export type RegisterPluginAction = {
|
|
type: 'REGISTER_PLUGINS';
|
|
payload: Array<PluginClass>;
|
|
};
|
|
|
|
export type Action =
|
|
| RegisterPluginAction
|
|
| {
|
|
type: 'GATEKEEPED_PLUGINS';
|
|
payload: Array<PluginDefinition>;
|
|
}
|
|
| {
|
|
type: 'DISABLED_PLUGINS';
|
|
payload: Array<PluginDefinition>;
|
|
}
|
|
| {
|
|
type: 'FAILED_PLUGINS';
|
|
payload: Array<[PluginDefinition, string]>;
|
|
}
|
|
| {
|
|
type: 'SELECTED_PLUGINS';
|
|
payload: Array<string>;
|
|
};
|
|
|
|
const INITIAL_STATE: State = {
|
|
devicePlugins: new Map(),
|
|
clientPlugins: new Map(),
|
|
gatekeepedPlugins: [],
|
|
disabledPlugins: [],
|
|
failedPlugins: [],
|
|
selectedPlugins: [],
|
|
};
|
|
|
|
export default function reducer(
|
|
state: State | undefined = INITIAL_STATE,
|
|
action: Actions,
|
|
): State {
|
|
if (action.type === 'REGISTER_PLUGINS') {
|
|
return produce(state, (draft) => {
|
|
const {devicePlugins, clientPlugins} = draft;
|
|
action.payload.forEach((p: PluginClass) => {
|
|
if (devicePlugins.has(p.id) || clientPlugins.has(p.id)) {
|
|
return;
|
|
}
|
|
|
|
if (p.prototype instanceof FlipperDevicePlugin) {
|
|
// @ts-ignore doesn't know p must be typeof FlipperDevicePlugin here
|
|
devicePlugins.set(p.id, p);
|
|
} else if (p.prototype instanceof FlipperPlugin) {
|
|
// @ts-ignore doesn't know p must be typeof FlipperPlugin here
|
|
clientPlugins.set(p.id, p);
|
|
}
|
|
});
|
|
});
|
|
} else if (action.type === 'GATEKEEPED_PLUGINS') {
|
|
return {
|
|
...state,
|
|
gatekeepedPlugins: state.gatekeepedPlugins.concat(action.payload),
|
|
};
|
|
} else if (action.type === 'DISABLED_PLUGINS') {
|
|
return {
|
|
...state,
|
|
disabledPlugins: state.disabledPlugins.concat(action.payload),
|
|
};
|
|
} else if (action.type === 'FAILED_PLUGINS') {
|
|
return {
|
|
...state,
|
|
failedPlugins: state.failedPlugins.concat(action.payload),
|
|
};
|
|
} else if (action.type === 'SELECTED_PLUGINS') {
|
|
return {
|
|
...state,
|
|
selectedPlugins: action.payload,
|
|
};
|
|
} else {
|
|
return state;
|
|
}
|
|
}
|
|
|
|
export const selectedPlugins = (payload: Array<string>): Action => ({
|
|
type: 'SELECTED_PLUGINS',
|
|
payload,
|
|
});
|
|
|
|
export const registerPlugins = (payload: Array<PluginClass>): Action => ({
|
|
type: 'REGISTER_PLUGINS',
|
|
payload,
|
|
});
|
|
|
|
export const addGatekeepedPlugins = (
|
|
payload: Array<PluginDefinition>,
|
|
): Action => ({
|
|
type: 'GATEKEEPED_PLUGINS',
|
|
payload,
|
|
});
|
|
|
|
export const addDisabledPlugins = (
|
|
payload: Array<PluginDefinition>,
|
|
): Action => ({
|
|
type: 'DISABLED_PLUGINS',
|
|
payload,
|
|
});
|
|
|
|
export const addFailedPlugins = (
|
|
payload: Array<[PluginDefinition, string]>,
|
|
): Action => ({
|
|
type: 'FAILED_PLUGINS',
|
|
payload,
|
|
});
|