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 126 127 128 129 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 5750x 5750x 5750x 5750x 5750x 5750x 5750x 5750x 5750x 5750x 5750x 4374x 3608x 3608x 3608x 2741x 2741x 2741x 2741x 2741x 3608x 1633x 1633x 1633x 1633x 1633x 1633x 1633x 1633x 1633x 1633x 1633x 1633x 4374x 189x 4374x 1417x 1444x 27x 27x 1633x 1633x 1633x 5750x 5750x 10427x 10427x 10427x 6260x 10427x 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 10427x 10426x 5750x 2605x 2605x 2605x 25x 25x 2605x 2605x 2605x 5750x 2x 2x 2x 2x 2x 2x 5707x 5707x 5707x 5707x 5190x 5190x 5190x 5190x 5707x 5707x | /** @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(false)); state.template.push(node.raw); return; } } // if this is a standalone `{expression}`, make sure we handle the case where // no text node was created because the expression was empty during SSR const needs_hydration_check = sequence.length === 1; const id = get_node_id(expression(needs_hydration_check), 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; } |