Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Support for <svelte:boundary> on SSR / static generation (POC) #15462

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,17 +1,112 @@
/** @import { BlockStatement } from 'estree' */
/** @import { BlockStatement, Statement, Expression } from 'estree' */
/** @import { AST } from '#compiler' */
/** @import { ComponentContext } from '../types' */
import { BLOCK_CLOSE, BLOCK_OPEN } from '../../../../../internal/server/hydration.js';
import * as b from '../../../../utils/builders.js';
import { extract_identifiers } from '../../../../utils/ast.js';

/**
* @param {AST.SvelteBoundary} node
* @param {ComponentContext} context
*/
export function SvelteBoundary(node, context) {
context.state.template.push(
b.literal(BLOCK_OPEN),
/** @type {BlockStatement} */ (context.visit(node.fragment)),
b.literal(BLOCK_CLOSE)
);
/** @type {Statement[]} */
const statements = [];

/** @type {AST.SnippetBlock | null} */
let snippet = null;

/** @type {AST.ConstTag[]} */
let const_tags = [];

const nodes = [];

const payload = b.id('$$payload'); // correct ?

/** @type {Expression | undefined} */
let failed;

// Capture the `failed` explicit snippet prop
for (const attribute of node.attributes) {
if (attribute.type === 'Attribute' && attribute.name === 'failed' && attribute.value !== true) {
const chunk = Array.isArray(attribute.value)
? /** @type {AST.ExpressionTag} */ (attribute.value[0])
: attribute.value;
failed = /** @type {Expression} */ (context.visit(chunk.expression, context.state));
}
}

// Capture the `failed` implicit snippet prop
for (const child of node.fragment.nodes) {
if (child.type === 'SnippetBlock' && child.expression.name === 'failed') {
snippet = child;

/** @type {Statement[]} */
const init = [];
context.visit(snippet, { ...context.state, init });

if (init.length === 1 && init[0].type === 'FunctionDeclaration') {
failed = b.arrow(init[0].params, init[0].body);
} else {
statements.push(...init);
failed = b.id('failed');
}
} else if (child.type === 'ConstTag') {
const_tags.push(child);
} else {
nodes.push(child);
}
}

let max_referenced_const_tag = -1;

if (snippet) {
const references = context.state.scopes.get(snippet)?.references;
if (references != null && references.size) {
const keys = new Set(references.keys());

const_tags.forEach((tag, index) => {
if (has_reference(keys, tag)) {
max_referenced_const_tag = index + 1;
}
});
}
}

if (max_referenced_const_tag < 0) {
nodes.unshift(...const_tags);
} else if (max_referenced_const_tag === const_tags.length) {
const_tags.forEach((tag) => context.visit(tag, { ...context.state, init: statements }));
} else {
const_tags
.slice(0, max_referenced_const_tag)
.forEach((tag) => context.visit(tag, { ...context.state, init: statements }));
nodes.unshift(...const_tags.slice(max_referenced_const_tag));
}

const body_block = /** @type {BlockStatement} */ (context.visit({ ...node.fragment, nodes }));

const body = b.arrow([b.id('$$payload')], body_block);

statements.push(b.stmt(b.call('$.boundary', payload, body, failed)));

if (statements.length === 1) {
context.state.template.push(statements[0]);
} else {
context.state.template.push(b.block([...statements]));
}
}

/**
* @param {Set<string>} keys
* @param {AST.ConstTag} tag
*/
function has_reference(keys, tag) {
for (const declaration of tag.declaration.declarations) {
for (const id of extract_identifiers(declaration.id)) {
if (keys.has(id.name)) {
return true;
}
}
}
return false;
}
19 changes: 18 additions & 1 deletion packages/svelte/src/internal/client/dom/blocks/boundary.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/** @import { Effect, TemplateNode, } from '#client' */

import { HYDRATION_START } from '../../../../constants.js';
import { BOUNDARY_EFFECT, EFFECT_TRANSPARENT } from '../../constants.js';
import { component_context, set_component_context } from '../../context.js';
import { block, branch, destroy_effect, pause_effect } from '../../reactivity/effects.js';
Expand All @@ -17,7 +18,8 @@ import {
hydrating,
next,
remove_nodes,
set_hydrate_node
set_hydrate_node,
set_hydrating
} from '../hydration.js';
import { queue_micro_task } from '../task.js';

Expand Down Expand Up @@ -119,12 +121,27 @@ export function boundary(node, props, boundary_fn) {
}
};

let mismatch = false;

if (hydrating) {
const data = /** @type {Comment} */ (anchor).data;
hydrate_next();
if (data !== HYDRATION_START) {
anchor = remove_nodes();

set_hydrate_node(anchor);
set_hydrating(false);
mismatch = true;
}
}

boundary_effect = branch(() => boundary_fn(anchor));
reset_is_throwing_error();

if (mismatch) {
// continue in hydration mode
set_hydrating(true);
}
}, EFFECT_TRANSPARENT | BOUNDARY_EFFECT);

if (hydrating) {
Expand Down
25 changes: 23 additions & 2 deletions packages/svelte/src/internal/server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
import { escape_html } from '../../escaping.js';
import { DEV } from 'esm-env';
import { current_component, pop, push } from './context.js';
import { EMPTY_COMMENT, BLOCK_CLOSE, BLOCK_OPEN } from './hydration.js';
import { EMPTY_COMMENT, BLOCK_CLOSE, BLOCK_OPEN, BLOCK_OPEN_ELSE } from './hydration.js';
import { validate_store } from '../shared/validate.js';
import { is_boolean_attribute, is_raw_text_element, is_void } from '../../utils.js';
import { reset_elements } from './dev.js';
Expand Down Expand Up @@ -535,7 +535,28 @@ export function props_id(payload) {
return uid;
}

export { attr, clsx };
/**
* <svelte:boundary> for server-side
* @param {Payload} payload
* @param {(payload:Payload) => void} body
* @param {(payload:Payload, err: any) => void} [failed]
* @returns {void}
*/
export function boundary(payload, body, failed) {
var inner_payload = copy_payload(payload);
try {
inner_payload.out += BLOCK_OPEN;
body(inner_payload);
} catch (err) {
inner_payload = copy_payload(payload);
inner_payload.out += BLOCK_OPEN_ELSE;
failed?.(inner_payload, err);
}
inner_payload.out += BLOCK_CLOSE;
assign_payload(payload, inner_payload);
}

export { attr, clsx, to_class };

export { html } from './blocks/html.js';

Expand Down