|
|
@ -21,20 +21,53 @@ class PageBuilder { |
|
|
|
this.#functions = document.createElement("script"); |
|
|
|
this.#functionNames = []; |
|
|
|
this.#cssElementIdentifiers = []; |
|
|
|
this.#delayedFunctions = []; |
|
|
|
this.#repeatingFunctions = {}; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* Registers a function to be added later in a script tag in the head of the document. |
|
|
|
* @ATTENTION Be careful with intended empty strings (e.g. in variable values), |
|
|
|
* empty strings within the function code will be shrunk. |
|
|
|
* @param {string} name |
|
|
|
* @param {func} fun |
|
|
|
* @param {function} fun |
|
|
|
*/ |
|
|
|
registerFunction(name, fun) { |
|
|
|
/** |
|
|
|
* Is supposed to shrink all empty strings to length 1 |
|
|
|
* @param {string} text |
|
|
|
* @returns {string} |
|
|
|
*/ |
|
|
|
function shrinkEmptyStrings(text){ |
|
|
|
for (let i = 1; i < 10; i++) { |
|
|
|
text = text.replaceAll(" ".slice(i), ' '); |
|
|
|
} |
|
|
|
return text; |
|
|
|
} |
|
|
|
if (!this.#functionNames.includes(name)) { |
|
|
|
this.#functions.innerText += `const ${name} = ${fun};`; |
|
|
|
let clearedFuncText = shrinkEmptyStrings( |
|
|
|
fun.toString() |
|
|
|
.replaceAll('\n', ' ') |
|
|
|
.replaceAll('\r\n', ' ') |
|
|
|
.replaceAll('\n\r', ' ') |
|
|
|
); |
|
|
|
let isFuncWritten = clearedFuncText.startsWith('function'); |
|
|
|
let funcHasName = fun.name && fun.name.trim() !== ''; |
|
|
|
if(isFuncWritten){ |
|
|
|
let isNameInFuncText = clearedFuncText.startsWith(`function ${name}`); |
|
|
|
this.#functions.innerText += (funcHasName && isNameInFuncText |
|
|
|
? clearedFuncText |
|
|
|
: clearedFuncText.replace('function ', 'function '+name) |
|
|
|
)+'; '; |
|
|
|
}else{ |
|
|
|
this.#functions.innerText += `const ${name} = ${clearedFuncText}; ` |
|
|
|
} |
|
|
|
this.#functionNames.push(name); |
|
|
|
} |
|
|
|
return this; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
registerNamedFunction(namedFunction) { |
|
|
|
return this.registerFunction(namedFunction.name, namedFunction) |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
@ -83,18 +116,22 @@ class PageBuilder { |
|
|
|
head.appendChild(this.#cssClasses) |
|
|
|
|
|
|
|
/* set repeating functions */ |
|
|
|
let repeatedFun = Object.values(this.#repeatingFunctions) |
|
|
|
.reduce((a, c, i, arr) => Object.assign(a, { |
|
|
|
[c.name]: setInterval(c.fun, c.interval) |
|
|
|
}), {}); |
|
|
|
if (this.#repeatingFunctions) { |
|
|
|
let repeatedFun = Object.values(this.#repeatingFunctions) |
|
|
|
.reduce((a, c, i, arr) => Object.assign(a, { |
|
|
|
[c.name]: setInterval(c.fun, c.interval) |
|
|
|
}), {}); |
|
|
|
} |
|
|
|
|
|
|
|
/* set timeouts for funcitons executed after load */ |
|
|
|
for (let i = 0; i < this.#delayedFunctions.length; i++) { |
|
|
|
let func = this.#delayedFunctions[i]; |
|
|
|
if (func.repeat) { |
|
|
|
setTimeout(setInterval(func.func, func.interval), func.dl, func.args); |
|
|
|
} else { |
|
|
|
setTimeout(func.func, func.dl, func.args); |
|
|
|
if (this.#delayedFunctions) { |
|
|
|
for (let i = 0; i < this.#delayedFunctions.length; i++) { |
|
|
|
let func = this.#delayedFunctions[i]; |
|
|
|
if (func.repeat) { |
|
|
|
setTimeout(setInterval(func.func, func.interval), func.dl, func.args); |
|
|
|
} else { |
|
|
|
setTimeout(func.func, func.dl, func.args); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
console.log(this.#functionNames); |
|
|
@ -113,6 +150,9 @@ class PageBuilder { |
|
|
|
if (name !== '') { |
|
|
|
this.registerFunction(name, func); |
|
|
|
} |
|
|
|
if (!this.#delayedFunctions) { |
|
|
|
this.#delayedFunctions = []; |
|
|
|
} |
|
|
|
this.#delayedFunctions.push({ dl: delay, func: func, args: args, repeat: repeat, interval: interval }); |
|
|
|
} |
|
|
|
|
|
|
|