All files / src/compiler/phases/3-transform/client/visitors/shared fragment.js

96.85% Statements 123/127
97.36% Branches 37/38
100% Functions 6/6
96.8% Lines 121/125

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 1262x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 5749x 5749x 5749x 5749x 5749x 5749x 5749x 5749x 5749x 5749x 5749x 4373x 3608x 3608x 3608x 2741x 2741x 2741x 2741x 2741x 3608x 1632x 1632x 1632x 1632x 1632x 1632x 1632x 1632x 1632x 4373x 188x 4373x 1417x 1444x 27x 27x 1632x 1632x 1632x 5749x 5749x 10425x 10425x 10425x 6258x 10425x 4167x 1769x 1769x 1769x 4167x 4167x 4167x 4167x 4167x 4167x         4167x 4167x 93x 93x 4167x 4074x 4074x 4074x 4074x 4074x 4074x 4074x 4074x 4074x 4074x 4074x 4074x 4074x 4167x 4167x 10425x 10424x 5749x 2604x 2604x 2604x 25x 25x 2604x 2604x 2604x 5749x 2x 2x 2x 2x 2x 2x 5706x 5706x 5706x 5706x 5189x 5189x 5189x 5189x 5706x 5706x  
/** @import { Expression } from 'estree' */
/** @import { ExpressionTag, SvelteNode, Text } from '#compiler' */
/** @import { ComponentClientTransformState, ComponentContext } from '../../types' */
import * as b from '../../../../../utils/builders.js';
import { build_template_literal, build_update } from './utils.js';
 
/**
 * Processes an array of template nodes, joining sibling text/expression nodes
 * (e.g. `{a} b {c}`) into a single update function. Along the way it creates
 * corresponding template node references these updates are applied to.
 * @param {SvelteNode[]} nodes
 * @param {(is_text: boolean) => Expression} expression
 * @param {boolean} is_element
 * @param {ComponentContext} context
 */
export function process_children(nodes, expression, is_element, { visit, state }) {
	const within_bound_contenteditable = state.metadata.bound_contenteditable;
 
	/** @typedef {Array<Text | ExpressionTag>} Sequence */
 
	/** @type {Sequence} */
	let sequence = [];
 
	/**
	 * @param {Sequence} sequence
	 */
	function flush_sequence(sequence) {
		if (sequence.length === 1) {
			const node = sequence[0];
 
			if (node.type === 'Text') {
				let prev = expression;
				expression = () => b.call('$.sibling', prev(true));
				state.template.push(node.raw);
				return;
			}
		}
 
		const id = get_node_id(expression(true), state, 'text');
 
		state.template.push(' ');
 
		const { has_state, has_call, value } = build_template_literal(sequence, visit, state);
 
		const update = b.stmt(b.call('$.set_text', id, value));
 
		if (has_call && !within_bound_contenteditable) {
			state.init.push(build_update(update));
		} else if (has_state && !within_bound_contenteditable) {
			state.update.push(update);
		} else {
			state.init.push(b.stmt(b.assignment('=', b.member(id, 'nodeValue'), value)));
		}
 
		expression = (is_text) => b.call('$.sibling', id, is_text && b.true);
	}
 
	for (let i = 0; i < nodes.length; i += 1) {
		const node = nodes[i];
 
		if (node.type === 'Text' || node.type === 'ExpressionTag') {
			sequence.push(node);
		} else {
			if (sequence.length > 0) {
				flush_sequence(sequence);
				sequence = [];
			}
 
			if (
				node.type === 'SvelteHead' ||
				node.type === 'TitleElement' ||
				node.type === 'SnippetBlock'
			) {
				// These nodes do not contribute to the sibling/child tree
				// TODO what about e.g. ConstTag and all the other things that
				// get hoisted inside clean_nodes?
				visit(node, state);
			} else {
				if (node.type === 'EachBlock' && nodes.length === 1 && is_element) {
					node.metadata.is_controlled = true;
					visit(node, state);
				} else {
					const id = get_node_id(
						expression(false),
						state,
						node.type === 'RegularElement' ? node.name : 'node'
					);
 
					expression = (is_text) => b.call('$.sibling', id, is_text && b.true);
 
					visit(node, {
						...state,
						node: id
					});
				}
			}
		}
	}
 
	if (sequence.length > 0) {
		// if the final item in a fragment is static text,
		// we need to force `hydrate_node` to advance
		if (sequence.length === 1 && sequence[0].type === 'Text' && nodes.length > 1) {
			state.init.push(b.stmt(b.call('$.next')));
		}
 
		flush_sequence(sequence);
	}
}
 
/**
 * @param {Expression} expression
 * @param {ComponentClientTransformState} state
 * @param {string} name
 */
function get_node_id(expression, state, name) {
	let id = expression;
 
	if (id.type !== 'Identifier') {
		id = b.id(state.scope.generate(name));
 
		state.init.push(b.var(id, expression));
	}
	return id;
}