UNPKG

lit-html

Version:

HTML template literals in JavaScript

433 lines 15.2 kB
/** * @license * Copyright (c) 2017 The Polymer Project Authors. All rights reserved. * This code may only be used under the BSD style license found at * http://polymer.github.io/LICENSE.txt * The complete set of authors may be found at * http://polymer.github.io/AUTHORS.txt * The complete set of contributors may be found at * http://polymer.github.io/CONTRIBUTORS.txt * Code distributed by Google as part of the polymer project is also * subject to an additional IP rights grant found at * http://polymer.github.io/PATENTS.txt */ /** * @module lit-html */ import { isDirective } from './directive.js'; import { removeNodes } from './dom.js'; import { noChange, nothing } from './part.js'; import { TemplateInstance } from './template-instance.js'; import { TemplateResult } from './template-result.js'; import { createMarker } from './template.js'; export const isPrimitive = (value) => { return (value === null || !(typeof value === 'object' || typeof value === 'function')); }; /** * Sets attribute values for AttributeParts, so that the value is only set once * even if there are multiple parts for an attribute. */ export class AttributeCommitter { constructor(element, name, strings) { this.dirty = true; this.element = element; this.name = name; this.strings = strings; this.parts = []; for (let i = 0; i < strings.length - 1; i++) { this.parts[i] = this._createPart(); } } /** * Creates a single part. Override this to create a differnt type of part. */ _createPart() { return new AttributePart(this); } _getValue() { const strings = this.strings; const l = strings.length - 1; let text = ''; for (let i = 0; i < l; i++) { text += strings[i]; const part = this.parts[i]; if (part !== undefined) { const v = part.value; if (v != null && (Array.isArray(v) || // tslint:disable-next-line:no-any typeof v !== 'string' && v[Symbol.iterator])) { for (const t of v) { text += typeof t === 'string' ? t : String(t); } } else { text += typeof v === 'string' ? v : String(v); } } } text += strings[l]; return text; } commit() { if (this.dirty) { this.dirty = false; this.element.setAttribute(this.name, this._getValue()); } } } export class AttributePart { constructor(comitter) { this.value = undefined; this.committer = comitter; } setValue(value) { if (value !== noChange && (!isPrimitive(value) || value !== this.value)) { this.value = value; // If the value is a not a directive, dirty the committer so that it'll // call setAttribute. If the value is a directive, it'll dirty the // committer if it calls setValue(). if (!isDirective(value)) { this.committer.dirty = true; } } } commit() { while (isDirective(this.value)) { const directive = this.value; this.value = noChange; directive(this); } if (this.value === noChange) { return; } this.committer.commit(); } } export class NodePart { constructor(options) { this.value = undefined; this._pendingValue = undefined; this.options = options; } /** * Inserts this part into a container. * * This part must be empty, as its contents are not automatically moved. */ appendInto(container) { this.startNode = container.appendChild(createMarker()); this.endNode = container.appendChild(createMarker()); } /** * Inserts this part between `ref` and `ref`'s next sibling. Both `ref` and * its next sibling must be static, unchanging nodes such as those that appear * in a literal section of a template. * * This part must be empty, as its contents are not automatically moved. */ insertAfterNode(ref) { this.startNode = ref; this.endNode = ref.nextSibling; } /** * Appends this part into a parent part. * * This part must be empty, as its contents are not automatically moved. */ appendIntoPart(part) { part._insert(this.startNode = createMarker()); part._insert(this.endNode = createMarker()); } /** * Appends this part after `ref` * * This part must be empty, as its contents are not automatically moved. */ insertAfterPart(ref) { ref._insert(this.startNode = createMarker()); this.endNode = ref.endNode; ref.endNode = this.startNode; } setValue(value) { this._pendingValue = value; } commit() { while (isDirective(this._pendingValue)) { const directive = this._pendingValue; this._pendingValue = noChange; directive(this); } const value = this._pendingValue; if (value === noChange) { return; } if (isPrimitive(value)) { if (value !== this.value) { this._commitText(value); } } else if (value instanceof TemplateResult) { this._commitTemplateResult(value); } else if (value instanceof Node) { this._commitNode(value); } else if (Array.isArray(value) || // tslint:disable-next-line:no-any value[Symbol.iterator]) { this._commitIterable(value); } else if (value === nothing) { this.value = nothing; this.clear(); } else { // Fallback, will render the string representation this._commitText(value); } } _insert(node) { this.endNode.parentNode.insertBefore(node, this.endNode); } _commitNode(value) { if (this.value === value) { return; } this.clear(); this._insert(value); this.value = value; } _commitText(value) { const node = this.startNode.nextSibling; value = value == null ? '' : value; if (node === this.endNode.previousSibling && node.nodeType === 3 /* Node.TEXT_NODE */) { // If we only have a single text node between the markers, we can just // set its value, rather than replacing it. // TODO(justinfagnani): Can we just check if this.value is primitive? node.data = value; } else { this._commitNode(document.createTextNode(typeof value === 'string' ? value : String(value))); } this.value = value; } _commitTemplateResult(value) { const template = this.options.templateFactory(value); if (this.value instanceof TemplateInstance && this.value.template === template) { this.value.update(value.values); } else { // Make sure we propagate the template processor from the TemplateResult // so that we use its syntax extension, etc. The template factory comes // from the render function options so that it can control template // caching and preprocessing. const instance = new TemplateInstance(template, value.processor, this.options); const fragment = instance._clone(); instance.update(value.values); this._commitNode(fragment); this.value = instance; } } _commitIterable(value) { // For an Iterable, we create a new InstancePart per item, then set its // value to the item. This is a little bit of overhead for every item in // an Iterable, but it lets us recurse easily and efficiently update Arrays // of TemplateResults that will be commonly returned from expressions like: // array.map((i) => html`${i}`), by reusing existing TemplateInstances. // If _value is an array, then the previous render was of an // iterable and _value will contain the NodeParts from the previous // render. If _value is not an array, clear this part and make a new // array for NodeParts. if (!Array.isArray(this.value)) { this.value = []; this.clear(); } // Lets us keep track of how many items we stamped so we can clear leftover // items from a previous render const itemParts = this.value; let partIndex = 0; let itemPart; for (const item of value) { // Try to reuse an existing part itemPart = itemParts[partIndex]; // If no existing part, create a new one if (itemPart === undefined) { itemPart = new NodePart(this.options); itemParts.push(itemPart); if (partIndex === 0) { itemPart.appendIntoPart(this); } else { itemPart.insertAfterPart(itemParts[partIndex - 1]); } } itemPart.setValue(item); itemPart.commit(); partIndex++; } if (partIndex < itemParts.length) { // Truncate the parts array so _value reflects the current state itemParts.length = partIndex; this.clear(itemPart && itemPart.endNode); } } clear(startNode = this.startNode) { removeNodes(this.startNode.parentNode, startNode.nextSibling, this.endNode); } } /** * Implements a boolean attribute, roughly as defined in the HTML * specification. * * If the value is truthy, then the attribute is present with a value of * ''. If the value is falsey, the attribute is removed. */ export class BooleanAttributePart { constructor(element, name, strings) { this.value = undefined; this._pendingValue = undefined; if (strings.length !== 2 || strings[0] !== '' || strings[1] !== '') { throw new Error('Boolean attributes can only contain a single expression'); } this.element = element; this.name = name; this.strings = strings; } setValue(value) { this._pendingValue = value; } commit() { while (isDirective(this._pendingValue)) { const directive = this._pendingValue; this._pendingValue = noChange; directive(this); } if (this._pendingValue === noChange) { return; } const value = !!this._pendingValue; if (this.value !== value) { if (value) { this.element.setAttribute(this.name, ''); } else { this.element.removeAttribute(this.name); } } this.value = value; this._pendingValue = noChange; } } /** * Sets attribute values for PropertyParts, so that the value is only set once * even if there are multiple parts for a property. * * If an expression controls the whole property value, then the value is simply * assigned to the property under control. If there are string literals or * multiple expressions, then the strings are expressions are interpolated into * a string first. */ export class PropertyCommitter extends AttributeCommitter { constructor(element, name, strings) { super(element, name, strings); this.single = (strings.length === 2 && strings[0] === '' && strings[1] === ''); } _createPart() { return new PropertyPart(this); } _getValue() { if (this.single) { return this.parts[0].value; } return super._getValue(); } commit() { if (this.dirty) { this.dirty = false; // tslint:disable-next-line:no-any this.element[this.name] = this._getValue(); } } } export class PropertyPart extends AttributePart { } // Detect event listener options support. If the `capture` property is read // from the options object, then options are supported. If not, then the thrid // argument to add/removeEventListener is interpreted as the boolean capture // value so we should only pass the `capture` property. let eventOptionsSupported = false; try { const options = { get capture() { eventOptionsSupported = true; return false; } }; // tslint:disable-next-line:no-any window.addEventListener('test', options, options); // tslint:disable-next-line:no-any window.removeEventListener('test', options, options); } catch (_e) { } export class EventPart { constructor(element, eventName, eventContext) { this.value = undefined; this._pendingValue = undefined; this.element = element; this.eventName = eventName; this.eventContext = eventContext; this._boundHandleEvent = (e) => this.handleEvent(e); } setValue(value) { this._pendingValue = value; } commit() { while (isDirective(this._pendingValue)) { const directive = this._pendingValue; this._pendingValue = noChange; directive(this); } if (this._pendingValue === noChange) { return; } const newListener = this._pendingValue; const oldListener = this.value; const shouldRemoveListener = newListener == null || oldListener != null && (newListener.capture !== oldListener.capture || newListener.once !== oldListener.once || newListener.passive !== oldListener.passive); const shouldAddListener = newListener != null && (oldListener == null || shouldRemoveListener); if (shouldRemoveListener) { this.element.removeEventListener(this.eventName, this._boundHandleEvent, this._options); } if (shouldAddListener) { this._options = getOptions(newListener); this.element.addEventListener(this.eventName, this._boundHandleEvent, this._options); } this.value = newListener; this._pendingValue = noChange; } handleEvent(event) { if (typeof this.value === 'function') { this.value.call(this.eventContext || this.element, event); } else { this.value.handleEvent(event); } } } // We copy options because of the inconsistent behavior of browsers when reading // the third argument of add/removeEventListener. IE11 doesn't support options // at all. Chrome 41 only reads `capture` if the argument is an object. const getOptions = (o) => o && (eventOptionsSupported ? { capture: o.capture, passive: o.passive, once: o.once } : o.capture); //# sourceMappingURL=parts.js.map