wkit/src/html.js

757 lines
21 KiB
JavaScript
Raw Normal View History

2023-03-08 15:13:15 +08:00
import { WC_PART, NO_CHANGE, NOTHING } from './constants.js'
2023-03-08 11:50:38 +08:00
2023-03-07 19:15:23 +08:00
var ENABLE_EXTRA_SECURITY_HOOKS = true
var identityFunction = value => value
var noopSanitizer = (_node, _name, _type) => identityFunction
var setSanitizer = newSanitizer => {
if (!ENABLE_EXTRA_SECURITY_HOOKS) {
return
}
if (sanitizerFactoryInternal !== noopSanitizer) {
throw new Error(
`Attempted to overwrite existing lit-html security policy. setSanitizeDOMValueFactory should be called at most once.`
)
}
sanitizerFactoryInternal = newSanitizer
}
var _testOnlyClearSanitizerFactoryDoNotCallOrElse = () => {
sanitizerFactoryInternal = noopSanitizer
}
var createSanitizer = (node, name, type) => {
return sanitizerFactoryInternal(node, name, type)
}
var boundAttributeSuffix = '$wc$'
var marker = `wc$${String(Math.random()).slice(9)}$`
var markerMatch = '?' + marker
var nodeMarker = `<${markerMatch}>`
2023-03-13 18:37:12 +08:00
var createMarker = (v = '') => document.createComment(v)
2023-03-07 19:15:23 +08:00
var isPrimitive = value =>
value === null || (typeof value != 'object' && typeof value != 'function')
var isArray = Array.isArray
var isIterable = value =>
isArray(value) ||
typeof (value === null || value === void 0
2023-03-08 11:50:38 +08:00
? false
2023-03-07 19:15:23 +08:00
: value[Symbol.iterator]) === 'function'
2023-03-08 11:50:38 +08:00
var SPACE_CHAR = `[ \n\f\r]`
var ATTR_VALUE_CHAR = `[^ \n\f\r"'\`<>=]`
2023-03-07 19:15:23 +08:00
var NAME_CHAR = `[^\\s"'>=/]`
var textEndRegex = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g
var COMMENT_START = 1
var TAG_NAME = 2
var DYNAMIC_TAG_NAME = 3
var commentEndRegex = /-->/g
var comment2EndRegex = />/g
var tagEndRegex = new RegExp(
`>|${SPACE_CHAR}(?:(${NAME_CHAR}+)(${SPACE_CHAR}*=${SPACE_CHAR}*(?:${ATTR_VALUE_CHAR}|("|')|))|$)`,
'g'
)
var ENTIRE_MATCH = 0
var ATTRIBUTE_NAME = 1
var SPACES_AND_EQUALS = 2
var QUOTE_CHAR = 3
var singleQuoteAttrEndRegex = /'/g
var doubleQuoteAttrEndRegex = /"/g
var rawTextElement = /^(?:script|style|textarea|title)$/i
var HTML_RESULT = 1
var SVG_RESULT = 2
var ATTRIBUTE_PART = 1
var CHILD_PART = 2
var PROPERTY_PART = 3
var BOOLEAN_ATTRIBUTE_PART = 4
var EVENT_PART = 5
var ELEMENT_PART = 6
var COMMENT_PART = 7
2023-03-08 15:13:15 +08:00
2023-03-08 11:50:38 +08:00
var templateCache = new WeakMap()
2023-03-13 18:37:12 +08:00
var walker = document.createTreeWalker(document, 129, null, false)
2023-03-07 19:15:23 +08:00
var sanitizerFactoryInternal = noopSanitizer
var getTemplateHtml = (strings, type) => {
2023-03-08 15:13:15 +08:00
const len = strings.length - 1
2023-03-07 19:15:23 +08:00
const attrNames = []
let html2 = type === SVG_RESULT ? '<svg>' : ''
let rawTextEndRegex
let regex = textEndRegex
2023-03-08 15:13:15 +08:00
for (let i = 0; i < len; i++) {
2023-03-07 19:15:23 +08:00
const s = strings[i]
let attrNameEndIndex = -1
let attrName
let lastIndex = 0
let match
while (lastIndex < s.length) {
regex.lastIndex = lastIndex
match = regex.exec(s)
if (match === null) {
2023-03-06 19:20:23 +08:00
break
2023-03-07 19:15:23 +08:00
}
lastIndex = regex.lastIndex
if (regex === textEndRegex) {
if (match[COMMENT_START] === '!--') {
regex = commentEndRegex
} else if (match[COMMENT_START] !== void 0) {
regex = comment2EndRegex
} else if (match[TAG_NAME] !== void 0) {
if (rawTextElement.test(match[TAG_NAME])) {
rawTextEndRegex = new RegExp(`</${match[TAG_NAME]}`, 'g')
}
regex = tagEndRegex
} else if (match[DYNAMIC_TAG_NAME] !== void 0) {
regex = tagEndRegex
2023-03-06 19:20:23 +08:00
}
2023-03-07 19:15:23 +08:00
} else if (regex === tagEndRegex) {
if (match[ENTIRE_MATCH] === '>') {
regex =
rawTextEndRegex !== null && rawTextEndRegex !== void 0
? rawTextEndRegex
: textEndRegex
attrNameEndIndex = -1
} else if (match[ATTRIBUTE_NAME] === void 0) {
attrNameEndIndex = -2
} else {
attrNameEndIndex = regex.lastIndex - match[SPACES_AND_EQUALS].length
attrName = match[ATTRIBUTE_NAME]
regex =
match[QUOTE_CHAR] === void 0
? tagEndRegex
: match[QUOTE_CHAR] === '"'
? doubleQuoteAttrEndRegex
: singleQuoteAttrEndRegex
}
} else if (
regex === doubleQuoteAttrEndRegex ||
regex === singleQuoteAttrEndRegex
) {
regex = tagEndRegex
} else if (regex === commentEndRegex || regex === comment2EndRegex) {
regex = textEndRegex
} else {
regex = tagEndRegex
rawTextEndRegex = void 0
}
}
const end =
regex === tagEndRegex && strings[i + 1].startsWith('/>') ? ' ' : ''
html2 +=
regex === textEndRegex
? s + nodeMarker
: attrNameEndIndex >= 0
? (attrNames.push(attrName),
s.slice(0, attrNameEndIndex) +
boundAttributeSuffix +
s.slice(attrNameEndIndex)) +
marker +
end
: s +
marker +
(attrNameEndIndex === -2 ? (attrNames.push(void 0), i) : end)
}
const htmlResult =
2023-03-08 15:13:15 +08:00
html2 + (strings[len] || '<?>') + (type === SVG_RESULT ? '</svg>' : '')
2023-03-07 19:15:23 +08:00
if (!Array.isArray(strings) || !strings.hasOwnProperty('raw')) {
let message = 'invalid template strings array'
throw new Error(message)
}
return [htmlResult, attrNames]
}
class Template {
constructor({ strings, ['__dom_type__']: type }, options) {
this.parts = []
let node
let nodeIndex = 0
let attrNameIndex = 0
const partCount = strings.length - 1
const parts = this.parts
const [html2, attrNames] = getTemplateHtml(strings, type)
this.el = Template.createElement(html2, options)
walker.currentNode = this.el.content
if (type === SVG_RESULT) {
const content = this.el.content
const svgElement = content.firstChild
svgElement.remove()
content.append(...svgElement.childNodes)
}
while ((node = walker.nextNode()) !== null && parts.length < partCount) {
if (node.nodeType === 1) {
if (node.hasAttributes()) {
const attrsToRemove = []
for (const name of node.getAttributeNames()) {
if (
name.endsWith(boundAttributeSuffix) ||
name.startsWith(marker)
) {
const realName = attrNames[attrNameIndex++]
attrsToRemove.push(name)
if (realName !== void 0) {
const value = node.getAttribute(
realName.toLowerCase() + boundAttributeSuffix
)
const statics = value.split(marker)
const m = /([.?@])?(.*)/.exec(realName)
parts.push({
type: ATTRIBUTE_PART,
index: nodeIndex,
name: m[2],
strings: statics,
ctor:
m[1] === '.'
? PropertyPart
: m[1] === '?'
? BooleanAttributePart
: m[1] === '@'
? EventPart
: AttributePart
})
} else {
parts.push({
type: ELEMENT_PART,
index: nodeIndex
})
}
}
}
for (const name of attrsToRemove) {
node.removeAttribute(name)
}
}
if (rawTextElement.test(node.tagName)) {
const strings2 = node.textContent.split(marker)
const lastIndex = strings2.length - 1
if (lastIndex > 0) {
node.textContent = ''
for (let i = 0; i < lastIndex; i++) {
node.append(strings2[i], createMarker())
walker.nextNode()
parts.push({ type: CHILD_PART, index: ++nodeIndex })
}
node.append(strings2[lastIndex], createMarker())
}
}
} else if (node.nodeType === 8) {
const data = node.data
if (data === markerMatch) {
parts.push({ type: CHILD_PART, index: nodeIndex })
} else {
let i = -1
while ((i = node.data.indexOf(marker, i + 1)) !== -1) {
parts.push({ type: COMMENT_PART, index: nodeIndex })
i += marker.length - 1
}
}
}
nodeIndex++
2023-03-06 19:20:23 +08:00
}
2023-03-07 19:15:23 +08:00
}
static createElement(html2, _options) {
2023-03-13 18:37:12 +08:00
let el = document.createElement('template')
2023-03-07 19:15:23 +08:00
el.innerHTML = html2
return el
}
}
function resolveDirective(part, value, parent = part, attributeIndex) {
2023-03-08 15:13:15 +08:00
if (value === NO_CHANGE) {
2023-03-07 19:15:23 +08:00
return value
}
let currentDirective =
attributeIndex !== void 0
2023-03-08 11:50:38 +08:00
? parent.__directives?.[attributeIndex]
2023-03-07 19:15:23 +08:00
: parent.__directive
2023-03-08 11:50:38 +08:00
2023-03-07 19:15:23 +08:00
const nextDirectiveConstructor = isPrimitive(value)
? void 0
: value['_$litDirective$']
2023-03-08 11:50:38 +08:00
if (currentDirective?.constructor !== nextDirectiveConstructor) {
currentDirective._$notifyDirectiveConnectionChanged?.call(
currentDirective,
false
)
2023-03-07 19:15:23 +08:00
if (nextDirectiveConstructor === void 0) {
currentDirective = void 0
} else {
currentDirective = new nextDirectiveConstructor(part)
currentDirective._$initialize(part, parent, attributeIndex)
}
if (attributeIndex !== void 0) {
2023-03-08 11:50:38 +08:00
if (!parent.__directives) {
parent.__directives = []
}
parent.__directives[attributeIndex] = currentDirective
2023-03-07 19:15:23 +08:00
} else {
parent.__directive = currentDirective
}
}
if (currentDirective !== void 0) {
value = resolveDirective(
part,
currentDirective._$resolve(part, value.values),
currentDirective,
attributeIndex
)
2023-03-06 19:20:23 +08:00
}
2023-03-07 19:15:23 +08:00
return value
2023-03-06 19:20:23 +08:00
}
2023-03-07 19:15:23 +08:00
class TemplateInstance {
constructor(template, parent) {
this._parts = []
this._$disconnectableChildren = void 0
this._$template = template
this._$parent = parent
}
get parentNode() {
return this._$parent.parentNode
}
get _$isConnected() {
return this._$parent._$isConnected
}
_clone(options) {
2023-03-13 18:37:12 +08:00
let {
2023-03-07 19:15:23 +08:00
el: { content },
parts
} = this._$template
2023-03-13 18:37:12 +08:00
let fragment = (options?.creationScope || document).importNode(
content,
true
)
2023-03-07 19:15:23 +08:00
walker.currentNode = fragment
let node = walker.nextNode()
let nodeIndex = 0
let partIndex = 0
let templatePart = parts[0]
2023-03-13 18:37:12 +08:00
2023-03-07 19:15:23 +08:00
while (templatePart !== void 0) {
if (nodeIndex === templatePart.index) {
let part
if (templatePart.type === CHILD_PART) {
part = new ChildPart(node, node.nextSibling, this, options)
} else if (templatePart.type === ATTRIBUTE_PART) {
part = new templatePart.ctor(
node,
templatePart.name,
templatePart.strings,
this,
options
)
} else if (templatePart.type === ELEMENT_PART) {
part = new ElementPart(node, this, options)
}
this._parts.push(part)
templatePart = parts[++partIndex]
}
if (
nodeIndex !==
(templatePart === null || templatePart === void 0
? void 0
: templatePart.index)
) {
node = walker.nextNode()
nodeIndex++
}
}
return fragment
}
_update(values) {
let i = 0
for (const part of this._parts) {
if (part !== void 0) {
if (part.strings !== void 0) {
part._$setValue(values, part, i)
i += part.strings.length - 2
} else {
part._$setValue(values[i])
}
}
i++
}
}
}
class ChildPart {
constructor(startNode, endNode, parent, options) {
this.type = CHILD_PART
2023-03-08 15:13:15 +08:00
this._$committedValue = NOTHING
2023-03-07 19:15:23 +08:00
this._$disconnectableChildren = void 0
this._$startNode = startNode
this._$endNode = endNode
this._$parent = parent
this.options = options
2023-03-08 11:50:38 +08:00
this.__isConnected = options?.isConnected || true
2023-03-07 19:15:23 +08:00
if (ENABLE_EXTRA_SECURITY_HOOKS) {
this._textSanitizer = void 0
}
}
get _$isConnected() {
2023-03-08 11:50:38 +08:00
return this._$parent?._$isConnected || this.__isConnected
2023-03-07 19:15:23 +08:00
}
get parentNode() {
2023-03-08 11:11:05 +08:00
let parentNode = this._$startNode.parentNode
2023-03-07 19:15:23 +08:00
const parent = this._$parent
if (parent !== void 0 && parentNode.nodeType === 11) {
parentNode = parent.parentNode
}
return parentNode
}
get startNode() {
return this._$startNode
}
get endNode() {
return this._$endNode
}
_$setValue(value, directiveParent = this) {
value = resolveDirective(this, value, directiveParent)
if (isPrimitive(value)) {
2023-03-08 15:13:15 +08:00
if (value === NOTHING || value == null || value === '') {
if (this._$committedValue !== NOTHING) {
2023-03-07 19:15:23 +08:00
this._$clear()
}
2023-03-08 15:13:15 +08:00
this._$committedValue = NOTHING
} else if (value !== this._$committedValue && value !== NO_CHANGE) {
2023-03-07 19:15:23 +08:00
this._commitText(value)
}
} else if (value['__dom_type__'] !== void 0) {
this._commitTemplateResult(value)
} else if (value.nodeType !== void 0) {
this._commitNode(value)
} else if (isIterable(value)) {
this._commitIterable(value)
} else {
this._commitText(value)
}
}
_insert(node, ref = this._$endNode) {
2023-03-08 11:11:05 +08:00
return this._$startNode.parentNode.insertBefore(node, ref)
2023-03-07 19:15:23 +08:00
}
_commitNode(value) {
if (this._$committedValue !== value) {
this._$clear()
if (
ENABLE_EXTRA_SECURITY_HOOKS &&
sanitizerFactoryInternal !== noopSanitizer
) {
2023-03-08 11:50:38 +08:00
const parentNodeName = this._$startNode.parentNode?.nodeName
2023-03-07 19:15:23 +08:00
2023-03-08 11:50:38 +08:00
if (parentNodeName === 'STYLE' || parentNodeName === 'SCRIPT') {
throw new Error('Forbidden')
2023-03-07 19:15:23 +08:00
}
}
2023-03-08 11:11:05 +08:00
2023-03-07 19:15:23 +08:00
this._$committedValue = this._insert(value)
}
}
_commitText(value) {
if (
2023-03-08 15:13:15 +08:00
this._$committedValue !== NOTHING &&
2023-03-07 19:15:23 +08:00
isPrimitive(this._$committedValue)
) {
2023-03-08 11:11:05 +08:00
const node = this._$startNode.nextSibling
2023-03-07 19:15:23 +08:00
if (ENABLE_EXTRA_SECURITY_HOOKS) {
if (this._textSanitizer === void 0) {
this._textSanitizer = createSanitizer(node, 'data', 'property')
}
value = this._textSanitizer(value)
}
2023-03-08 11:11:05 +08:00
2023-03-07 19:15:23 +08:00
node.data = value
} else {
if (ENABLE_EXTRA_SECURITY_HOOKS) {
const textNode = document.createTextNode('')
this._commitNode(textNode)
if (this._textSanitizer === void 0) {
this._textSanitizer = createSanitizer(textNode, 'data', 'property')
}
value = this._textSanitizer(value)
2023-03-08 11:11:05 +08:00
2023-03-07 19:15:23 +08:00
textNode.data = value
} else {
2023-03-13 18:37:12 +08:00
this._commitNode(document.createTextNode(value))
2023-03-07 19:15:23 +08:00
}
}
this._$committedValue = value
}
_commitTemplateResult(result) {
const { values, ['__dom_type__']: type } = result
const template =
typeof type === 'number'
? this._$getTemplate(result)
: (type.el === void 0 &&
(type.el = Template.createElement(type.h, this.options)),
type)
2023-03-08 11:50:38 +08:00
if (this._$committedValue?._$template === template) {
2023-03-07 19:15:23 +08:00
this._$committedValue._update(values)
} else {
const instance = new TemplateInstance(template, this)
const fragment = instance._clone(this.options)
instance._update(values)
2023-03-06 19:20:23 +08:00
2023-03-07 19:15:23 +08:00
this._commitNode(fragment)
this._$committedValue = instance
}
}
_$getTemplate(result) {
let template = templateCache.get(result.strings)
if (template === void 0) {
templateCache.set(result.strings, (template = new Template(result)))
}
return template
}
_commitIterable(value) {
if (!isArray(this._$committedValue)) {
this._$committedValue = []
this._$clear()
}
const itemParts = this._$committedValue
let partIndex = 0
let itemPart
for (const item of value) {
if (partIndex === itemParts.length) {
itemParts.push(
(itemPart = new ChildPart(
this._insert(createMarker()),
this._insert(createMarker()),
this,
this.options
))
)
} else {
itemPart = itemParts[partIndex]
}
itemPart._$setValue(item)
partIndex++
}
if (partIndex < itemParts.length) {
2023-03-08 11:11:05 +08:00
this._$clear(itemPart && itemPart._$endNode.nextSibling, partIndex)
2023-03-07 19:15:23 +08:00
itemParts.length = partIndex
}
}
2023-03-08 11:11:05 +08:00
_$clear(start = this._$startNode.nextSibling, from) {
2023-03-08 11:50:38 +08:00
this._$notifyConnectionChanged?.call(this, false, true, from)
2023-03-07 19:15:23 +08:00
while (start && start !== this._$endNode) {
2023-03-08 11:50:38 +08:00
let node = start.nextSibling
2023-03-08 11:11:05 +08:00
start.remove()
2023-03-08 11:50:38 +08:00
start = node
2023-03-07 19:15:23 +08:00
}
}
setConnected(isConnected) {
if (this._$parent === void 0) {
this.__isConnected = isConnected
2023-03-08 11:50:38 +08:00
this._$notifyConnectionChanged?.call(this, isConnected)
2023-03-07 19:15:23 +08:00
}
}
2023-03-06 19:20:23 +08:00
}
2023-03-07 19:15:23 +08:00
class AttributePart {
constructor(element, name, strings, parent, options) {
this.type = ATTRIBUTE_PART
2023-03-08 15:13:15 +08:00
this._$committedValue = NOTHING
2023-03-07 19:15:23 +08:00
this._$disconnectableChildren = void 0
this.element = element
this.name = name
this._$parent = parent
this.options = options
if (strings.length > 2 || strings[0] !== '' || strings[1] !== '') {
this._$committedValue = new Array(strings.length - 1).fill(new String())
this.strings = strings
} else {
2023-03-08 15:13:15 +08:00
this._$committedValue = NOTHING
2023-03-07 19:15:23 +08:00
}
if (ENABLE_EXTRA_SECURITY_HOOKS) {
this._sanitizer = void 0
}
}
get tagName() {
return this.element.tagName
}
get _$isConnected() {
return this._$parent._$isConnected
}
_$setValue(value, directiveParent = this, valueIndex, noCommit) {
const strings = this.strings
let change = false
if (strings === void 0) {
value = resolveDirective(this, value, directiveParent, 0)
change =
!isPrimitive(value) ||
2023-03-08 15:13:15 +08:00
(value !== this._$committedValue && value !== NO_CHANGE)
2023-03-07 19:15:23 +08:00
if (change) {
this._$committedValue = value
}
} else {
const values = value
value = strings[0]
2023-03-08 15:13:15 +08:00
for (let i = 0; i < strings.length - 1; i++) {
let v = resolveDirective(
this,
values[valueIndex + i],
directiveParent,
i
)
if (v === NO_CHANGE) {
2023-03-07 19:15:23 +08:00
v = this._$committedValue[i]
}
change || (change = !isPrimitive(v) || v !== this._$committedValue[i])
2023-03-08 15:13:15 +08:00
if (v === NOTHING) {
value = NOTHING
} else if (value !== NOTHING) {
2023-03-07 19:15:23 +08:00
value += (v !== null && v !== void 0 ? v : '') + strings[i + 1]
}
this._$committedValue[i] = v
}
}
if (change && !noCommit) {
this._commitValue(value)
}
}
_commitValue(value) {
2023-03-08 15:13:15 +08:00
if (value === NOTHING) {
2023-03-08 11:11:05 +08:00
this.element.removeAttribute(this.name)
2023-03-07 19:15:23 +08:00
} else {
if (ENABLE_EXTRA_SECURITY_HOOKS) {
if (this._sanitizer === void 0) {
this._sanitizer = sanitizerFactoryInternal(
this.element,
this.name,
'attribute'
)
}
value = this._sanitizer(value !== null && value !== void 0 ? value : '')
}
2023-03-08 11:11:05 +08:00
this.element.setAttribute(
2023-03-07 19:15:23 +08:00
this.name,
value !== null && value !== void 0 ? value : ''
)
}
}
}
class PropertyPart extends AttributePart {
constructor() {
super(...arguments)
this.type = PROPERTY_PART
}
_commitValue(value) {
if (ENABLE_EXTRA_SECURITY_HOOKS) {
if (this._sanitizer === void 0) {
this._sanitizer = sanitizerFactoryInternal(
this.element,
this.name,
'property'
)
}
value = this._sanitizer(value)
}
2023-03-08 11:11:05 +08:00
2023-03-08 15:13:15 +08:00
this.element[this.name] = value === NOTHING ? void 0 : value
2023-03-07 19:15:23 +08:00
}
}
2023-03-13 18:37:12 +08:00
2023-03-07 19:15:23 +08:00
class BooleanAttributePart extends AttributePart {
constructor() {
super(...arguments)
this.type = BOOLEAN_ATTRIBUTE_PART
}
_commitValue(value) {
2023-03-08 15:13:15 +08:00
if (value && value !== NOTHING) {
2023-03-13 18:37:12 +08:00
// 布尔属性,值固定为空
this.element.setAttribute(this.name, '')
2023-03-07 19:15:23 +08:00
} else {
2023-03-08 11:11:05 +08:00
this.element.removeAttribute(this.name)
2023-03-07 19:15:23 +08:00
}
}
}
2023-03-13 18:37:12 +08:00
2023-03-07 19:15:23 +08:00
class EventPart extends AttributePart {
constructor(element, name, strings, parent, options) {
super(element, name, strings, parent, options)
this.type = EVENT_PART
}
_$setValue(newListener, directiveParent = this) {
newListener =
2023-03-08 15:13:15 +08:00
resolveDirective(this, newListener, directiveParent, 0) || NOTHING
2023-03-08 11:50:38 +08:00
2023-03-08 15:13:15 +08:00
if (newListener === NO_CHANGE) {
2023-03-07 19:15:23 +08:00
return
}
const oldListener = this._$committedValue
const shouldRemoveListener =
2023-03-08 15:13:15 +08:00
(newListener === NOTHING && oldListener !== NOTHING) ||
2023-03-07 19:15:23 +08:00
newListener.capture !== oldListener.capture ||
newListener.once !== oldListener.once ||
newListener.passive !== oldListener.passive
const shouldAddListener =
2023-03-08 15:13:15 +08:00
newListener !== NOTHING &&
(oldListener === NOTHING || shouldRemoveListener)
2023-03-08 11:11:05 +08:00
2023-03-07 19:15:23 +08:00
if (shouldRemoveListener) {
this.element.removeEventListener(this.name, this, oldListener)
}
if (shouldAddListener) {
this.element.addEventListener(this.name, this, newListener)
}
this._$committedValue = newListener
}
handleEvent(event) {
if (typeof this._$committedValue === 'function') {
2023-03-08 11:50:38 +08:00
this._$committedValue.call(this.options?.host || this.element, event)
2023-03-07 19:15:23 +08:00
} else {
this._$committedValue.handleEvent(event)
}
}
}
class ElementPart {
constructor(element, parent, options) {
this.element = element
this.type = ELEMENT_PART
this._$disconnectableChildren = void 0
this._$parent = parent
this.options = options
}
get _$isConnected() {
return this._$parent._$isConnected
}
_$setValue(value) {
resolveDirective(this, value)
}
}
export function render(value, container, options) {
2023-03-13 18:28:03 +08:00
let part = container[WC_PART]
2023-03-06 19:20:23 +08:00
2023-03-07 19:15:23 +08:00
if (part === void 0) {
2023-03-13 18:28:03 +08:00
container[WC_PART] = part = new ChildPart(
container.insertBefore(createMarker(), null),
null,
2023-03-07 19:15:23 +08:00
void 0,
options !== null && options !== void 0 ? options : {}
)
}
part._$setValue(value)
return part
}
2023-03-08 15:13:15 +08:00
export const html = (strings, ...values) => {
return {
__dom_type__: HTML_RESULT,
strings,
values
}
}
export const svg = (strings, ...values) => {
return {
__dom_type__: SVG_RESULT,
strings,
values
}
}
2023-03-07 19:15:23 +08:00
if (ENABLE_EXTRA_SECURITY_HOOKS) {
render.setSanitizer = setSanitizer
render.createSanitizer = createSanitizer
2023-03-06 19:20:23 +08:00
}