Remove classic plugin infra

Summary:
This removes all code duplication / old plugin infra that isn't needed anymore when all plugin run on the Sandy plugin infra structure.

The diff is quite large, but the minimal one that passes tests and compiles. Existing tests are preserved by wrapping all remaining tests in `wrapSandy` for classic plugins where needed

Reviewed By: passy

Differential Revision: D29394738

fbshipit-source-id: 1315fabd9f048576aed15ed5f1cb6414d5fdbd40
This commit is contained in:
Michel Weststrate
2021-06-30 10:40:50 -07:00
committed by Facebook GitHub Bot
parent 9d6abd62c6
commit 16154e1343
31 changed files with 564 additions and 2330 deletions

View File

@@ -27,18 +27,10 @@ import {
type Parameters = {[key: string]: any};
export type PluginDefinition = ClientPluginDefinition | DevicePluginDefinition;
export type PluginDefinition = _SandyPluginDefinition;
export type DevicePluginDefinition =
| typeof FlipperDevicePlugin
| _SandyPluginDefinition;
export type ClientPluginDefinition =
| typeof FlipperPlugin
| _SandyPluginDefinition;
export type ClientPluginMap = Map<string, ClientPluginDefinition>;
export type DevicePluginMap = Map<string, DevicePluginDefinition>;
export type ClientPluginMap = Map<string, PluginDefinition>;
export type DevicePluginMap = Map<string, PluginDefinition>;
// This function is intended to be called from outside of the plugin.
// If you want to `call` from the plugin use, this.client.call
@@ -211,6 +203,10 @@ export abstract class FlipperBasePlugin<
}
}
/**
* @deprecated Please use the newer "Sandy" plugin APIs!
* https://fbflipper.com/docs/extending/sandy-migration
*/
export class FlipperDevicePlugin<
S,
A extends BaseAction,
@@ -240,6 +236,10 @@ export class FlipperDevicePlugin<
}
}
/**
* @deprecated Please use the newer "Sandy" plugin APIs!
* https://fbflipper.com/docs/extending/sandy-migration
*/
export class FlipperPlugin<
S,
A extends BaseAction,