forked from ca-d/open-scd-core
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin-event.ts
38 lines (33 loc) · 992 Bytes
/
plugin-event.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { targetLocales } from '../locales.js';
export type Plugin = {
name: string;
translations?: Record<typeof targetLocales[number], string>;
src: string;
icon: string;
requireDoc?: boolean;
active?: boolean;
};
export type ConfigurePluginDetail = {
name: string;
kind: 'menu' | 'editor';
config: Plugin | null;
};
export type ConfigurePluginEvent = CustomEvent<ConfigurePluginDetail>;
/** The combination of name and kind uniquely identifies the plugin to be configured.
* If config is null, the plugin is removed. Otherwise, the plugin is added or reconfigured. */
export function newConfigurePluginEvent(
name: string,
kind: 'menu' | 'editor',
config: Plugin | null
): ConfigurePluginEvent {
return new CustomEvent<ConfigurePluginDetail>('oscd-configure-plugin', {
bubbles: true,
composed: true,
detail: { name, kind, config },
});
}
declare global {
interface ElementEventMap {
['oscd-configure-plugin']: ConfigurePluginEvent;
}
}