HumanBreak/src/initPlugin.ts
2022-11-13 18:02:05 +08:00

28 lines
930 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 需要引入所有的插件
import pop from './plugin/template';
window.addEventListener('load', () => {
// 每个引入的插件都要在这里执行,否则不会被转发
const toForward = [pop()];
// 初始化所有插件并转发到core上
(async function () {
for (const data of toForward) {
for (const name in data) {
const d = data[name as keyof typeof data];
if (!(name in core.plugin)) {
// @ts-ignore
core.plugin[name as keyof PluginDeclaration] = d;
}
if (!(d instanceof Function)) continue;
if (name in core) continue;
if (name.startsWith('_')) continue;
// @ts-ignore
core[name as ForwardKeys<PluginDeclaration>] = d;
}
}
console.log('插件转发完成!');
})();
});