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

Quote name of attribute to nested components #1555

Merged
merged 2 commits into from
Jun 29, 2018
Merged
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
40 changes: 20 additions & 20 deletions src/compile/nodes/Component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import stringifyProps from '../../utils/stringifyProps';
import CodeBuilder from '../../utils/CodeBuilder';
import getTailSnippet from '../../utils/getTailSnippet';
import getObject from '../../utils/getObject';
import { quoteNameIfNecessary } from '../../utils/quoteIfNecessary';
import { quoteNameIfNecessary, quotePropIfNecessary } from '../../utils/quoteIfNecessary';
import { escape, escapeTemplate, stringify } from '../../utils/stringify';
import Node from './shared/Node';
import Block from '../dom/Block';
Expand Down Expand Up @@ -148,7 +148,7 @@ export default class Component extends Node {
const attributeObject = usesSpread
? '{}'
: stringifyProps(
this.attributes.map(attr => `${attr.name}: ${attr.getValue()}`)
this.attributes.map(attr => `${quoteNameIfNecessary(attr.name)}: ${attr.getValue()}`)
);

if (this.attributes.length || this.bindings.length) {
Expand Down Expand Up @@ -219,7 +219,7 @@ export default class Component extends Node {
updates.push(deindent`
if (${[...attribute.dependencies]
.map(dependency => `changed.${dependency}`)
.join(' || ')}) ${name_changes}.${attribute.name} = ${attribute.getValue()};
.join(' || ')}) ${name_changes}${quotePropIfNecessary(attribute.name)} = ${attribute.getValue()};
`);
}
});
Expand Down Expand Up @@ -250,10 +250,10 @@ export default class Component extends Node {

const lhs = binding.value.node.type === 'MemberExpression'
? binding.value.snippet
: `${head}${tail} = childState.${binding.name}`;
: `${head}${tail} = childState${quotePropIfNecessary(binding.name)}`;

setFromChild = deindent`
${lhs} = childState.${binding.name};
${lhs} = childState${quotePropIfNecessary(binding.name)};

${[...binding.value.dependencies]
.map((name: string) => {
Expand All @@ -264,7 +264,7 @@ export default class Component extends Node {
if (isStoreProp) hasStoreBindings = true;
else hasLocalBindings = true;

return `${newState}.${prop} = ctx.${name};`;
return `${newState}${quotePropIfNecessary(prop)} = ctx${quotePropIfNecessary(name)};`;
})}
`;
}
Expand All @@ -279,32 +279,32 @@ export default class Component extends Node {

if (binding.value.node.type === 'MemberExpression') {
setFromChild = deindent`
${binding.value.snippet} = childState.${binding.name};
${newState}.${prop} = ctx.${key};
${binding.value.snippet} = childState${quotePropIfNecessary(binding.name)};
${newState}${quotePropIfNecessary(prop)} = ctx${quotePropIfNecessary(key)};
`;
}

else {
setFromChild = `${newState}.${prop} = childState.${binding.name};`;
setFromChild = `${newState}${quotePropIfNecessary(prop)} = childState${quotePropIfNecessary(binding.name)};`;
}
}

statements.push(deindent`
if (${binding.value.snippet} !== void 0) {
${name_initial_data}.${binding.name} = ${binding.value.snippet};
${name_updating}.${binding.name} = true;
${name_initial_data}${quotePropIfNecessary(binding.name)} = ${binding.value.snippet};
${name_updating}${quotePropIfNecessary(binding.name)} = true;
}`
);

builder.addConditional(
`!${name_updating}.${binding.name} && changed.${binding.name}`,
`!${name_updating}${quotePropIfNecessary(binding.name)} && changed${quotePropIfNecessary(binding.name)}`,
setFromChild
);

updates.push(deindent`
if (!${name_updating}.${binding.name} && ${[...binding.value.dependencies].map((dependency: string) => `changed.${dependency}`).join(' || ')}) {
${name_changes}.${binding.name} = ${binding.value.snippet};
${name_updating}.${binding.name} = ${binding.value.snippet} !== void 0;
if (!${name_updating}${quotePropIfNecessary(binding.name)} && ${[...binding.value.dependencies].map((dependency: string) => `changed.${dependency}`).join(' || ')}) {
${name_changes}${quotePropIfNecessary(binding.name)} = ${binding.value.snippet};
${name_updating}${quotePropIfNecessary(binding.name)} = ${binding.value.snippet} !== void 0;
}
`);
});
Expand All @@ -329,7 +329,7 @@ export default class Component extends Node {

beforecreate = deindent`
#component.root._beforecreate.push(() => {
${name}._bind({ ${this.bindings.map(b => `${b.name}: 1`).join(', ')} }, ${name}.get());
${name}._bind({ ${this.bindings.map(b => `${quoteNameIfNecessary(b.name)}: 1`).join(', ')} }, ${name}.get());
});
`;
}
Expand Down Expand Up @@ -519,7 +519,7 @@ export default class Component extends Node {
? getTailSnippet(binding.value.node)
: '';

return `${binding.name}: ctx.${name}${tail}`;
return `${quoteNameIfNecessary(binding.name)}: ctx${quotePropIfNecessary(name)}${tail}`;
});

function getAttributeValue(attribute) {
Expand Down Expand Up @@ -547,14 +547,14 @@ export default class Component extends Node {
if (attribute.isSpread) {
return attribute.expression.snippet;
} else {
return `{ ${attribute.name}: ${getAttributeValue(attribute)} }`;
return `{ ${quoteNameIfNecessary(attribute.name)}: ${getAttributeValue(attribute)} }`;
}
})
.concat(bindingProps.map(p => `{ ${p} }`))
.join(', ')
})`
: `{ ${this.attributes
.map(attribute => `${attribute.name}: ${getAttributeValue(attribute)}`)
.map(attribute => `${quoteNameIfNecessary(attribute.name)}: ${getAttributeValue(attribute)}`)
.concat(bindingProps)
.join(', ')} }`;

Expand Down Expand Up @@ -585,7 +585,7 @@ export default class Component extends Node {
if (${conditions.reverse().join('&&')}) {
tmp = ${expression}.data();
if ('${name}' in tmp) {
ctx.${binding.name} = tmp.${name};
ctx${quotePropIfNecessary(binding.name)} = tmp.${name};
settled = false;
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<button on:click='set({ "x-count": state["x-count"] + 1 })'>+1</button>

<script>
export default {
data: () => ({
"x-count": 0
}),
computed: {
state(arg) {
return arg;
}
}
};
</script>
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
export default {
'skip-ssr': true, // TODO delete this line, once binding works

html: `
<button>+1</button>
<p>count: 0</p>
`,

test ( assert, component, target, window ) {
const click = new window.MouseEvent( 'click' );
const button = target.querySelector( 'button' );

button.dispatchEvent( click );

assert.equal( component.get().x, 1 );
assert.htmlEqual( target.innerHTML, `
<button>+1</button>
<p>count: 1</p>
` );

button.dispatchEvent( click );

assert.equal( component.get().x, 2 );
assert.htmlEqual( target.innerHTML, `
<button>+1</button>
<p>count: 2</p>
` );
}
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<Counter bind:x-count='x'/>
<p>count: {x}</p>

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

export default {
components: {
Counter
}
};
</script>
10 changes: 10 additions & 0 deletions test/runtime/samples/component-invalid-identifier/Widget.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<p>{state["b-c"]}</p>
<script>
export default {
computed: {
state(states) {
return states;
}
}
};
</script>
3 changes: 3 additions & 0 deletions test/runtime/samples/component-invalid-identifier/_config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default {
html: '<div><p>i am a widget</p></div>'
};
11 changes: 11 additions & 0 deletions test/runtime/samples/component-invalid-identifier/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<div>
<Widget b-c="i am a widget"/>
</div>

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

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