Skip to content

Commit

Permalink
Merge pull request #1153 from sveltejs/gh-1100
Browse files Browse the repository at this point in the history
component store bindings
  • Loading branch information
Rich-Harris authored Feb 9, 2018
2 parents db5cca9 + 99fbb69 commit e5e6959
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 19 deletions.
67 changes: 48 additions & 19 deletions src/generators/nodes/Component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,40 +140,47 @@ export default class Component extends Node {
const setParentFromChildOnChange = new CodeBuilder();
const setParentFromChildOnInit = new CodeBuilder();

const setStoreFromChildOnChange = new CodeBuilder();
const setStoreFromChildOnInit = new CodeBuilder();

bindings.forEach((binding: Binding) => {
let setParentFromChild;
let { name: key } = getObject(binding.value);

const isStoreProp = generator.options.store && key[0] === '$';
if (isStoreProp) key = key.slice(1);
const newState = isStoreProp ? 'newStoreState' : 'newState';

binding.contexts.forEach(context => {
allContexts.add(context);
});

const { name: key } = getObject(binding.value);
let setFromChild;

if (block.contexts.has(key)) {
if (!isStoreProp && block.contexts.has(key)) {
const prop = binding.dependencies[0];
const computed = isComputed(binding.value);
const tail = binding.value.type === 'MemberExpression' ? getTailSnippet(binding.value) : '';

setParentFromChild = deindent`
setFromChild = deindent`
var list = ${name_context}.${block.listNames.get(key)};
var index = ${name_context}.${block.indexNames.get(key)};
list[index]${tail} = childState.${binding.name};
${binding.dependencies
.map((prop: string) => `newState.${prop} = state.${prop};`)
.map((prop: string) => `${newState}.${prop} = state.${prop};`)
.join('\n')}
`;
}

else if (binding.value.type === 'MemberExpression') {
setParentFromChild = deindent`
setFromChild = deindent`
${binding.snippet} = childState.${binding.name};
${binding.dependencies.map((prop: string) => `newState.${prop} = state.${prop};`).join('\n')}
${binding.dependencies.map((prop: string) => `${newState}.${prop} = state.${prop};`).join('\n')}
`;
}

else {
setParentFromChild = `newState.${binding.value.name} = childState.${binding.name};`;
setFromChild = `${newState}.${key} = childState.${binding.name};`;
}

statements.push(deindent`
Expand All @@ -183,14 +190,14 @@ export default class Component extends Node {
}`
);

setParentFromChildOnChange.addConditional(
(isStoreProp ? setStoreFromChildOnChange : setParentFromChildOnChange).addConditional(
`!${name_updating}.${binding.name} && changed.${binding.name}`,
setParentFromChild
setFromChild
);

setParentFromChildOnInit.addConditional(
(isStoreProp ? setStoreFromChildOnInit : setParentFromChildOnInit).addConditional(
`!${name_updating}.${binding.name}`,
setParentFromChild
setFromChild
);

// TODO could binding.dependencies.length ever be 0?
Expand All @@ -206,23 +213,45 @@ export default class Component extends Node {

componentInitProperties.push(`data: ${name_initial_data}`);

const initialisers = [
'state = #component.get()',
!setParentFromChildOnChange.isEmpty() && 'newState = {}',
!setStoreFromChildOnChange.isEmpty() && 'newStoreState = {}',
].filter(Boolean).join(', ');

componentInitProperties.push(deindent`
_bind: function(changed, childState) {
var state = #component.get(), newState = {};
${setParentFromChildOnChange}
${name_updating} = @assign({}, changed);
#component._set(newState);
var ${initialisers};
${!setStoreFromChildOnChange.isEmpty() && deindent`
${setStoreFromChildOnChange}
${name_updating} = @assign({}, changed);
#component.store.set(newStoreState);
`}
${!setParentFromChildOnChange.isEmpty() && deindent`
${setParentFromChildOnChange}
${name_updating} = @assign({}, changed);
#component._set(newState);
`}
${name_updating} = {};
}
`);

// TODO can `!childState` ever be true?
beforecreate = deindent`
#component.root._beforecreate.push(function() {
var state = #component.get(), childState = ${name}.get(), newState = {};
var childState = ${name}.get(), ${initialisers};
if (!childState) return;
${setParentFromChildOnInit}
${name_updating} = { ${bindings.map((binding: Binding) => `${binding.name}: true`).join(', ')} };
#component._set(newState);
${!setStoreFromChildOnInit.isEmpty() && deindent`
${setStoreFromChildOnInit}
${name_updating} = { ${bindings.map((binding: Binding) => `${binding.name}: true`).join(', ')} };
#component.store.set(newStoreState);
`}
${!setParentFromChildOnInit.isEmpty() && deindent`
${setParentFromChildOnInit}
${name_updating} = { ${bindings.map((binding: Binding) => `${binding.name}: true`).join(', ')} };
#component._set(newState);
`}
${name_updating} = {};
});
`;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<input bind:value>
28 changes: 28 additions & 0 deletions test/runtime/samples/store-component-binding/_config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import { Store } from '../../../../store.js';

const store = new Store({
name: 'world'
});

export default {
store,

html: `
<h1>Hello world!</h1>
<input>
`,

test(assert, component, target, window) {
const input = target.querySelector('input');
const event = new window.Event('input');

input.value = 'everybody';
input.dispatchEvent(event);

assert.equal(store.get('name'), 'everybody');
assert.htmlEqual(target.innerHTML, `
<h1>Hello everybody!</h1>
<input>
`);
}
};
10 changes: 10 additions & 0 deletions test/runtime/samples/store-component-binding/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<h1>Hello {{$name}}!</h1>
<TextInput bind:value=$name/>

<script>
import TextInput from './TextInput.html';

export default {
components: { TextInput }
};
</script>

0 comments on commit e5e6959

Please sign in to comment.