mirror of https://github.com/sveltejs/svelte
parent
30595f4ee5
commit
2bb0be68d5
@ -1,103 +1,89 @@
|
||||
import { b, x } from 'code-red';
|
||||
import Component from '../../../Component';
|
||||
import Block from '../../Block';
|
||||
import BindingWrapper from '../Element/Binding';
|
||||
import { Identifier } from 'estree';
|
||||
import { compare_node } from '../../../utils/compare_node';
|
||||
import { compare_node } from '../../../utils/compare_node.js';
|
||||
|
||||
export default function bind_this(
|
||||
component: Component,
|
||||
block: Block,
|
||||
binding: BindingWrapper,
|
||||
variable: Identifier
|
||||
) {
|
||||
const fn = component.get_unique_name(`${variable.name}_binding`);
|
||||
|
||||
block.renderer.add_to_context(fn.name);
|
||||
const callee = block.renderer.reference(fn.name);
|
||||
|
||||
const { contextual_dependencies, mutation } = binding.handler;
|
||||
const dependencies = binding.get_update_dependencies();
|
||||
|
||||
const body = b`
|
||||
/**
|
||||
* @param {import('../../../Component.js').default} component
|
||||
* @param {import('../../Block.js').default} block
|
||||
* @param {import('../Element/Binding.js').default} binding
|
||||
* @param {import('estree').Identifier} variable
|
||||
*/
|
||||
export default function bind_this(component, block, binding, variable) {
|
||||
const fn = component.get_unique_name(`${variable.name}_binding`);
|
||||
block.renderer.add_to_context(fn.name);
|
||||
const callee = block.renderer.reference(fn.name);
|
||||
const { contextual_dependencies, mutation } = binding.handler;
|
||||
const dependencies = binding.get_update_dependencies();
|
||||
const body = b `
|
||||
${mutation}
|
||||
${Array.from(dependencies)
|
||||
.filter((dep) => dep[0] !== '$')
|
||||
.filter((dep) => !contextual_dependencies.has(dep))
|
||||
.map((dep) => b`${block.renderer.invalidate(dep)};`)}
|
||||
.filter((dep) => dep[0] !== '$')
|
||||
.filter((dep) => !contextual_dependencies.has(dep))
|
||||
.map((dep) => b `${block.renderer.invalidate(dep)};`)}
|
||||
`;
|
||||
if (contextual_dependencies.size) {
|
||||
|
||||
if (contextual_dependencies.size) {
|
||||
const params: Identifier[] = Array.from(contextual_dependencies).map((name) => ({
|
||||
type: 'Identifier',
|
||||
name
|
||||
}));
|
||||
component.partly_hoisted.push(b`
|
||||
/** @type {import('estree').Identifier[]} */
|
||||
const params = Array.from(contextual_dependencies).map((name) => ({
|
||||
type: 'Identifier',
|
||||
name
|
||||
}));
|
||||
component.partly_hoisted.push(b `
|
||||
function ${fn}($$value, ${params}) {
|
||||
@binding_callbacks[$$value ? 'unshift' : 'push'](() => {
|
||||
${body}
|
||||
});
|
||||
}
|
||||
`);
|
||||
|
||||
const alias_map = new Map();
|
||||
const args = [];
|
||||
for (let id of params) {
|
||||
const value = block.renderer.reference(id.name);
|
||||
let found = false;
|
||||
if (block.variables.has(id.name)) {
|
||||
let alias = id.name;
|
||||
for (
|
||||
let i = 1;
|
||||
block.variables.has(alias) && !compare_node(block.variables.get(alias).init, value);
|
||||
alias = `${id.name}_${i++}`
|
||||
);
|
||||
alias_map.set(alias, id.name);
|
||||
id = { type: 'Identifier', name: alias };
|
||||
found = block.variables.has(alias);
|
||||
}
|
||||
args.push(id);
|
||||
if (!found) {
|
||||
block.add_variable(id, value);
|
||||
}
|
||||
}
|
||||
|
||||
const assign = block.get_unique_name(`assign_${variable.name}`);
|
||||
const unassign = block.get_unique_name(`unassign_${variable.name}`);
|
||||
|
||||
block.chunks.init.push(b`
|
||||
const alias_map = new Map();
|
||||
const args = [];
|
||||
for (let id of params) {
|
||||
const value = block.renderer.reference(id.name);
|
||||
let found = false;
|
||||
if (block.variables.has(id.name)) {
|
||||
let alias = id.name;
|
||||
for (let i = 1; block.variables.has(alias) && !compare_node(block.variables.get(alias).init, value); alias = `${id.name}_${i++}`)
|
||||
;
|
||||
alias_map.set(alias, id.name);
|
||||
id = { type: 'Identifier', name: alias };
|
||||
found = block.variables.has(alias);
|
||||
}
|
||||
args.push(id);
|
||||
if (!found) {
|
||||
block.add_variable(id, value);
|
||||
}
|
||||
}
|
||||
const assign = block.get_unique_name(`assign_${variable.name}`);
|
||||
const unassign = block.get_unique_name(`unassign_${variable.name}`);
|
||||
block.chunks.init.push(b `
|
||||
const ${assign} = () => ${callee}(${variable}, ${args});
|
||||
const ${unassign} = () => ${callee}(null, ${args});
|
||||
`);
|
||||
|
||||
const condition = Array.from(args)
|
||||
.map(
|
||||
(name) => x`${name} !== ${block.renderer.reference(alias_map.get(name.name) || name.name)}`
|
||||
)
|
||||
.reduce((lhs, rhs) => x`${lhs} || ${rhs}`);
|
||||
|
||||
// we push unassign and unshift assign so that references are
|
||||
// nulled out before they're created, to avoid glitches
|
||||
// with shifting indices
|
||||
block.chunks.update.push(b`
|
||||
const condition = Array.from(args)
|
||||
.map((name) => x `${name} !== ${block.renderer.reference(alias_map.get(name.name) || name.name)}`)
|
||||
.reduce((lhs, rhs) => x `${lhs} || ${rhs}`);
|
||||
// we push unassign and unshift assign so that references are
|
||||
// nulled out before they're created, to avoid glitches
|
||||
// with shifting indices
|
||||
block.chunks.update.push(b `
|
||||
if (${condition}) {
|
||||
${unassign}();
|
||||
${args.map((a) => b`${a} = ${block.renderer.reference(alias_map.get(a.name) || a.name)}`)};
|
||||
${args.map((a) => b `${a} = ${block.renderer.reference(alias_map.get(a.name) || a.name)}`)};
|
||||
${assign}();
|
||||
}`);
|
||||
|
||||
block.chunks.destroy.push(b`${unassign}();`);
|
||||
return b`${assign}();`;
|
||||
}
|
||||
|
||||
component.partly_hoisted.push(b`
|
||||
block.chunks.destroy.push(b `${unassign}();`);
|
||||
return b `${assign}();`;
|
||||
}
|
||||
component.partly_hoisted.push(b `
|
||||
function ${fn}($$value) {
|
||||
@binding_callbacks[$$value ? 'unshift' : 'push'](() => {
|
||||
${body}
|
||||
});
|
||||
}
|
||||
`);
|
||||
|
||||
block.chunks.destroy.push(b`${callee}(null);`);
|
||||
return b`${callee}(${variable});`;
|
||||
block.chunks.destroy.push(b `${callee}(null);`);
|
||||
return b `${callee}(${variable});`;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in new issue