mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
21 lines
630 B
JavaScript
21 lines
630 B
JavaScript
|
|
let componentMapping = {
|
|
'dropdown': require('./dropdown'),
|
|
};
|
|
|
|
window.components = {};
|
|
|
|
let componentNames = Object.keys(componentMapping);
|
|
|
|
for (let i = 0, len = componentNames.length; i < len; i++) {
|
|
let name = componentNames[i];
|
|
let elems = document.querySelectorAll(`[${name}]`);
|
|
if (elems.length === 0) continue;
|
|
|
|
let component = componentMapping[name];
|
|
if (typeof window.components[name] === "undefined") window.components[name] = [];
|
|
for (let j = 0, jLen = elems.length; j < jLen; j++) {
|
|
let instance = new component(elems[j]);
|
|
window.components[name].push(instance);
|
|
}
|
|
} |