Refactor renderer class
This commit is contained in:
parent
e2ec8312af
commit
6bd29f05dc
1 changed files with 52 additions and 40 deletions
46
render.js
46
render.js
|
@ -42,18 +42,6 @@ const snakeToCSS = key => key.replace(/^[A-Z]/, a => "-" + a).replace(/[A-Z]/g,
|
||||||
*/
|
*/
|
||||||
const fallback = (value, whenUndefined) => typeof value != "undefined" ? value : whenUndefined
|
const fallback = (value, whenUndefined) => typeof value != "undefined" ? value : whenUndefined
|
||||||
|
|
||||||
/** Recursively finds the last 'is' attribute in a list nested array of objects
|
|
||||||
* @param {Array} args
|
|
||||||
*/
|
|
||||||
const getCustom = args => args.reduce(
|
|
||||||
(current, argument) => Array.isArray(argument)
|
|
||||||
? fallback(getCustom(argument), current)
|
|
||||||
: (argument && typeof argument == "object")
|
|
||||||
? fallback(argument.is, current)
|
|
||||||
: current
|
|
||||||
, undefined
|
|
||||||
)
|
|
||||||
|
|
||||||
/** @typedef {EventTarget & {value: any}} Observable */
|
/** @typedef {EventTarget & {value: any}} Observable */
|
||||||
|
|
||||||
/** Cancelable event triggered when a reactive element gets replaced with something else */
|
/** Cancelable event triggered when a reactive element gets replaced with something else */
|
||||||
|
@ -202,10 +190,7 @@ export class DomRenderer extends Renderer {
|
||||||
* @param {Array} args
|
* @param {Array} args
|
||||||
*/
|
*/
|
||||||
node(name, args) {
|
node(name, args) {
|
||||||
const custom = getCustom(args)
|
const element = this.createElement(name)
|
||||||
const opts = custom && { is: String(custom) }
|
|
||||||
|
|
||||||
const element = this.createElement(name, opts)
|
|
||||||
this.constructor.apply(element, args)
|
this.constructor.apply(element, args)
|
||||||
return element
|
return element
|
||||||
}
|
}
|
||||||
|
@ -216,7 +201,7 @@ export class DomRenderer extends Renderer {
|
||||||
* @param {Object} options
|
* @param {Object} options
|
||||||
* @return {Node}
|
* @return {Node}
|
||||||
*/
|
*/
|
||||||
createElement(name, options) {
|
createElement(name, options={}) {
|
||||||
return document.createElement(name, options)
|
return document.createElement(name, options)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -397,6 +382,33 @@ export class DomHtmlRenderer extends DomRenderer {
|
||||||
return document.createElement(name.replace(/([a-z])([A-Z])/g, "$1-$2"), options)
|
return document.createElement(name.replace(/([a-z])([A-Z])/g, "$1-$2"), options)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Creates a new node and make it a custom element if necessary
|
||||||
|
* @param {String} name
|
||||||
|
* @param {Array} args
|
||||||
|
*/
|
||||||
|
node(name, args) {
|
||||||
|
const custom = this.getCustom(args)
|
||||||
|
const opts = custom && { is: String(custom) }
|
||||||
|
|
||||||
|
const element = this.createElement(name, opts)
|
||||||
|
this.constructor.apply(element, args)
|
||||||
|
return element
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Recursively finds the last 'is' attribute in a list nested array of objects
|
||||||
|
* @param {Array} args
|
||||||
|
*/
|
||||||
|
getCustom(args) {
|
||||||
|
return args.reduce(
|
||||||
|
(current, argument) => Array.isArray(argument)
|
||||||
|
? fallback(this.getCustom(argument), current)
|
||||||
|
: (argument && typeof argument == "object")
|
||||||
|
? fallback(argument.is, current)
|
||||||
|
: current
|
||||||
|
, undefined
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
/** @type {Object<string,SpecialAttributeDescriptor>} */
|
/** @type {Object<string,SpecialAttributeDescriptor>} */
|
||||||
static specialAttributes = {
|
static specialAttributes = {
|
||||||
value: {
|
value: {
|
||||||
|
|
Loading…
Reference in a new issue