Summary: Implemented a way for re-loading single plugin on auto-update. This make it possible to apply update without full Flipper restart. Reviewed By: mweststrate Differential Revision: D23729972 fbshipit-source-id: ed30f7cde5a0537945db0b5bb6969ae8fde42cb6
152 lines
4.6 KiB
TypeScript
152 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
|
|
*/
|
|
|
|
import {createStore} from 'redux';
|
|
import reducers, {Actions, State as StoreState, Store} from './reducers/index';
|
|
import {stateSanitizer} from './utils/reduxDevToolsConfig';
|
|
import isProduction from './utils/isProduction';
|
|
import produce from 'immer';
|
|
import {
|
|
defaultEnabledBackgroundPlugins,
|
|
getPluginKey,
|
|
isDevicePluginDefinition,
|
|
} from './utils/pluginUtils';
|
|
import Client from './Client';
|
|
import {PluginDefinition} from './plugin';
|
|
import {deconstructPluginKey} from './utils/clientUtils';
|
|
|
|
export const store: Store = createStore<StoreState, Actions, any, any>(
|
|
rootReducer,
|
|
// @ts-ignore Type definition mismatch
|
|
window.__REDUX_DEVTOOLS_EXTENSION__
|
|
? window.__REDUX_DEVTOOLS_EXTENSION__({
|
|
// @ts-ignore: stateSanitizer is not part of type definition.
|
|
stateSanitizer,
|
|
})
|
|
: undefined,
|
|
);
|
|
|
|
export function rootReducer(
|
|
state: StoreState | undefined,
|
|
action: Actions,
|
|
): StoreState {
|
|
if (action.type === 'STAR_PLUGIN' && state) {
|
|
const {plugin, selectedApp} = action.payload;
|
|
const selectedPlugin = plugin.id;
|
|
const clients = state.connections.clients.filter(
|
|
(client) => client.query.app === selectedApp,
|
|
);
|
|
return produce(state, (draft) => {
|
|
if (!draft.connections.userStarredPlugins[selectedApp]) {
|
|
draft.connections.userStarredPlugins[selectedApp] = [];
|
|
}
|
|
const plugins = draft.connections.userStarredPlugins[selectedApp];
|
|
const idx = plugins.indexOf(selectedPlugin);
|
|
if (idx === -1) {
|
|
plugins.push(selectedPlugin);
|
|
// enabling a plugin on one device enables it on all...
|
|
clients.forEach((client) => {
|
|
startPlugin(client, plugin);
|
|
});
|
|
} else {
|
|
plugins.splice(idx, 1);
|
|
// enabling a plugin on one device disables it on all...
|
|
clients.forEach((client) => {
|
|
stopPlugin(client, plugin.id);
|
|
const pluginKey = getPluginKey(
|
|
client.id,
|
|
{serial: client.query.device_id},
|
|
plugin.id,
|
|
);
|
|
delete draft.pluginMessageQueue[pluginKey];
|
|
});
|
|
}
|
|
});
|
|
} else if (action.type === 'UPDATE_PLUGIN' && state) {
|
|
const plugin: PluginDefinition = action.payload;
|
|
const clients = state.connections.clients;
|
|
return produce(state, (draft) => {
|
|
const clientsWithEnabledPlugin = clients.filter((c) => {
|
|
return (
|
|
c.supportsPlugin(plugin.id) &&
|
|
state.connections.userStarredPlugins[c.query.app]?.includes(plugin.id)
|
|
);
|
|
});
|
|
// stop plugin for each client where it is enabled
|
|
clientsWithEnabledPlugin.forEach((client) => {
|
|
stopPlugin(client, plugin.id, true);
|
|
delete draft.pluginMessageQueue[
|
|
getPluginKey(client.id, {serial: client.query.device_id}, plugin.id)
|
|
];
|
|
});
|
|
// cleanup classic plugin state
|
|
Object.keys(draft.pluginStates).forEach((pluginKey) => {
|
|
const pluginKeyParts = deconstructPluginKey(pluginKey);
|
|
if (pluginKeyParts.pluginName === plugin.id) {
|
|
delete draft.pluginStates[pluginKey];
|
|
}
|
|
});
|
|
// update plugin definition
|
|
const {devicePlugins, clientPlugins} = draft.plugins;
|
|
const p = action.payload;
|
|
if (isDevicePluginDefinition(p)) {
|
|
devicePlugins.set(p.id, p);
|
|
} else {
|
|
clientPlugins.set(p.id, p);
|
|
}
|
|
// start plugin for each client
|
|
clientsWithEnabledPlugin.forEach((client) => {
|
|
startPlugin(client, plugin, true);
|
|
});
|
|
});
|
|
}
|
|
|
|
// otherwise
|
|
return reducers(state, action);
|
|
}
|
|
|
|
if (!isProduction()) {
|
|
// For debugging purposes only
|
|
// @ts-ignore
|
|
window.flipperStore = store;
|
|
}
|
|
|
|
function stopPlugin(
|
|
client: Client,
|
|
pluginId: string,
|
|
forceInitBackgroundPlugin: boolean = false,
|
|
): boolean {
|
|
if (
|
|
(forceInitBackgroundPlugin ||
|
|
!defaultEnabledBackgroundPlugins.includes(pluginId)) &&
|
|
client?.isBackgroundPlugin(pluginId)
|
|
) {
|
|
client.deinitPlugin(pluginId);
|
|
}
|
|
// stop sandy plugins
|
|
client.stopPluginIfNeeded(pluginId);
|
|
return true;
|
|
}
|
|
|
|
function startPlugin(
|
|
client: Client,
|
|
plugin: PluginDefinition,
|
|
forceInitBackgroundPlugin: boolean = false,
|
|
) {
|
|
client.startPluginIfNeeded(plugin, true);
|
|
// background plugin? connect it needed
|
|
if (
|
|
(forceInitBackgroundPlugin ||
|
|
!defaultEnabledBackgroundPlugins.includes(plugin.id)) &&
|
|
client?.isBackgroundPlugin(plugin.id)
|
|
) {
|
|
client.initPlugin(plugin.id);
|
|
}
|
|
}
|