|
|
@ -1076,26 +1076,7 @@ function create_block(parent, name, nodes, context) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (state.update.length > 0) {
|
|
|
|
if (state.update.length > 0) {
|
|
|
|
let render;
|
|
|
|
const render = serialize_render_stmt(state, body);
|
|
|
|
if (state.update.length === 1 && state.update[0].singular) {
|
|
|
|
|
|
|
|
render = state.update[0].singular;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
render = b.stmt(
|
|
|
|
|
|
|
|
b.call(
|
|
|
|
|
|
|
|
'$.render_effect',
|
|
|
|
|
|
|
|
b.thunk(
|
|
|
|
|
|
|
|
b.block(
|
|
|
|
|
|
|
|
state.update.map((n) => {
|
|
|
|
|
|
|
|
if (n.init) {
|
|
|
|
|
|
|
|
body.push(n.init);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return n.grouped;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!update) {
|
|
|
|
if (!update) {
|
|
|
|
update = render;
|
|
|
|
update = render;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -1135,6 +1116,35 @@ function create_block(parent, name, nodes, context) {
|
|
|
|
return body;
|
|
|
|
return body;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param {import('../types.js').ComponentClientTransformState} state
|
|
|
|
|
|
|
|
* @param {import('estree').Statement[]} body
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
function serialize_render_stmt(state, body) {
|
|
|
|
|
|
|
|
let render;
|
|
|
|
|
|
|
|
if (state.update.length === 1 && state.update[0].singular) {
|
|
|
|
|
|
|
|
render = state.update[0].singular;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
render = b.stmt(
|
|
|
|
|
|
|
|
b.call(
|
|
|
|
|
|
|
|
'$.render_effect',
|
|
|
|
|
|
|
|
b.thunk(
|
|
|
|
|
|
|
|
b.block(
|
|
|
|
|
|
|
|
state.update.map((n) => {
|
|
|
|
|
|
|
|
if (n.init) {
|
|
|
|
|
|
|
|
body.push(n.init);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return n.grouped;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return render;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Serializes the event handler function of the `on:` directive
|
|
|
|
* Serializes the event handler function of the `on:` directive
|
|
|
|
* @param {Pick<import('#compiler').OnDirective, 'name' | 'modifiers' | 'expression'>} node
|
|
|
|
* @param {Pick<import('#compiler').OnDirective, 'name' | 'modifiers' | 'expression'>} node
|
|
|
@ -2041,27 +2051,7 @@ export const template_visitors = {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (inner_context.state.update.length > 0) {
|
|
|
|
if (inner_context.state.update.length > 0) {
|
|
|
|
let render;
|
|
|
|
inner.push(serialize_render_stmt(inner_context.state, inner));
|
|
|
|
if (inner_context.state.update.length === 1 && inner_context.state.update[0].singular) {
|
|
|
|
|
|
|
|
render = inner_context.state.update[0].singular;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
render = b.stmt(
|
|
|
|
|
|
|
|
b.call(
|
|
|
|
|
|
|
|
'$.render_effect',
|
|
|
|
|
|
|
|
b.thunk(
|
|
|
|
|
|
|
|
b.block(
|
|
|
|
|
|
|
|
inner_context.state.update.map((n) => {
|
|
|
|
|
|
|
|
if (n.init) {
|
|
|
|
|
|
|
|
inner.push(n.init);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return n.grouped;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
inner.push(render);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
inner.push(...inner_context.state.after_update);
|
|
|
|
inner.push(...inner_context.state.after_update);
|
|
|
|