-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
75 lines (67 loc) · 2.86 KB
/
index.js
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
let hookRegistry = {}
export default {
/**
* Vue's plugin install hook.
*
* Collects all available extensions and maintains a list of hooks, pointing to them.
* @param {Object} Vue The main Vue instance
* @param {Object} options An named index of objects:
* "extensions": a named index of modules that export an extension:
* name: the name of the extensions
* hooks: array of objects with the following schema:
* component: a Vue component implementing that hook. They will be rendered within the
* <extensionpoint> tag with given hook name.
* weight: the "weight" of that component. "heavier" components sink down in the
* list and are rendered *after* "lighter" ones.
* Default weight = 0
*/
install: (Vue, options) => {
for (let extensionName in options.extensions) {
let extension = options.extensions[extensionName]
if(extension.initialize) {
extension.initialize()
}
for (let hook in extension.hooks) {
let extensionArray = extension.hooks[hook]
// set a default weight for all extensions if there is none set.
for (let obj of extensionArray) {
if (!obj.weigth) {
obj.weigth = 0
}
}
// if hook is not known already, create it
if (hookRegistry[hook] === undefined) {
hookRegistry[hook] = extensionArray
} else {
// if hook already exists, merge new one
hookRegistry[hook] = hookRegistry[hook].concat(extensionArray)
}
// console.debug(`Registering component '${extensionName}' for hook '${hook}'`, extensionArray)
}
// at this point, all extensions are registered.
// TODO: Make a list documentating all ExtensionPoints.
}
Vue.component('extensionpoint', {
name: 'extensionpoint',
props: {
hook: String
},
computed: {
extensions () {
// console.log(`hook ${this.hook}: `, hookRegistry[this.hook])
if (hookRegistry[this.hook] === undefined) {
return null
}
return hookRegistry[this.hook].sort((obj1, obj2) => {
return obj1.weight - obj2.weight
})
}
},
template: `
<div class="extension-container">
<component :is="extensionComponent.component" v-for="extensionComponent in extensions" :key="extensionComponent.component.id"/>
</div>
`
})
}
}