1
0
Fork 0

🚧 Moved hooks to pattern, but they overwrite each other

This commit is contained in:
joostdecock 2018-07-18 13:42:20 +00:00
parent 530a2b11bb
commit 7cc632ff45
3 changed files with 21 additions and 18 deletions

View file

@ -15,7 +15,6 @@ export class Pattern {
values: {[propName: string]: any} = {};
settings: {[propName: string]: any} = {mode: 'draft', units: 'metric'};
hooks: Hooks;
on: () => void;
constructor(config: PatternConfig) {
if(!config) {
@ -26,9 +25,8 @@ export class Pattern {
}
this.config = config;
this.parts = {};
this.svg = new Svg();
this.svg = new Svg(this);
this.hooks = new Hooks();
this.on = this.hooks.on;
for (let id of config.parts) {
this.parts[id] = new Part(id);
}
@ -54,11 +52,17 @@ export class Pattern {
return this.svg.render(this);
}
/** Add hook */
on(hook, method): void {
if(typeof this.hooks._hooks[method] === 'undefined') {
this.hooks._hooks[hook] = [];
}
this.hooks._hooks[hook].push(method);
}
loadPlugin(plugin: () => void): void {
console.log('Pattern::loadPlugin', plugin);
for(let hook of this.hooks.all) {
if(typeof plugin[hook] === 'function') {
console.log('Pattern::loadPlugin - hook', plugin[hook]);
this.on(hook, plugin[hook]);
}
}