core/src/plugin/decorators/dependency.ts

62 lines
1.7 KiB
TypeScript
Raw Normal View History

import { Auto } from './auto';
2020-11-21 15:41:08 +00:00
2020-11-29 19:23:43 +00:00
/**
* Fire the following method automatically when a dependency is (re)loaded.
* @param dependency Name of the dependency
2020-11-29 19:23:43 +00:00
*/
export function DependencyLoad(dependency: string) {
2020-11-21 15:41:08 +00:00
return (
target: any,
propertyKey: string,
descriptor: PropertyDescriptor,
) => {
const originalMethod = descriptor.value;
descriptor.value = function(...args: any[]): void {
const self = this as any;
self.stream.on(self.name, 'pluginLoaded', (plugin: any) => {
2020-11-28 13:34:34 +00:00
if (typeof plugin === 'string') {
return;
2020-11-21 15:41:08 +00:00
}
2020-11-28 13:34:34 +00:00
const nameof = plugin.manifest.name;
if (nameof !== dependency) {
2020-11-21 15:41:08 +00:00
return;
}
2020-11-28 13:34:34 +00:00
originalMethod.call(self, plugin);
2020-11-21 15:41:08 +00:00
});
};
// Set the function to be autoexecuted when the plugin is initialized.
Auto()(target, propertyKey, descriptor);
2020-11-21 15:41:08 +00:00
return descriptor;
};
}
2020-11-29 19:23:43 +00:00
/**
* Fire the following method automatically when a dependency is unloaded.
* @param dependency Name of the dependency
2020-11-29 19:23:43 +00:00
*/
export function DependencyUnload(dependency: string) {
2020-11-21 15:41:08 +00:00
return (
target: any,
propertyKey: string,
descriptor: PropertyDescriptor,
) => {
const originalMethod = descriptor.value;
descriptor.value = function(...args: any[]): void {
const self = this as any;
self.stream.on(self.name, 'pluginUnloaded', (plugin: any) => {
2020-11-28 13:34:34 +00:00
let nameof = plugin;
2020-11-21 15:41:08 +00:00
if (typeof plugin !== 'string') {
2020-11-28 13:34:34 +00:00
nameof = plugin.manifest.name;
2020-11-21 15:41:08 +00:00
}
if (nameof !== dependency) {
2020-11-21 15:41:08 +00:00
return;
}
2020-11-28 13:34:34 +00:00
originalMethod.call(self, plugin);
2020-11-21 15:41:08 +00:00
});
};
// Set the function to be autoexecuted when the plugin is initialized.
Auto()(target, propertyKey, descriptor);
2020-11-21 15:41:08 +00:00
return descriptor;
};
}