Merge pull request #1992 from sveltejs/gh-1488

Fix props for logic-less components
pull/2004/head
Rich Harris 6 years ago committed by GitHub
commit 6036f00dee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -275,7 +275,7 @@ export default function dom(
const definition = has_definition const definition = has_definition
? component.alias('instance') ? component.alias('instance')
: '@identity'; : 'null';
const all_reactive_dependencies = new Set(); const all_reactive_dependencies = new Set();
component.reactive_declarations.forEach(d => { component.reactive_declarations.forEach(d => {

@ -59,7 +59,7 @@ export function init(component, options, instance, create_fragment, not_equal) {
const $$ = component.$$ = { const $$ = component.$$ = {
fragment: null, fragment: null,
ctx: null, ctx: options.props || {},
// state // state
set: noop, set: noop,
@ -82,19 +82,21 @@ export function init(component, options, instance, create_fragment, not_equal) {
let ready = false; let ready = false;
$$.ctx = instance(component, options.props || {}, (key, value) => { if (instance) {
if ($$.bound[key]) $$.bound[key](value); $$.ctx = instance(component, $$.ctx, (key, value) => {
if ($$.bound[key]) $$.bound[key](value);
if ($$.ctx) { if ($$.ctx) {
const changed = not_equal(value, $$.ctx[key]); const changed = not_equal(value, $$.ctx[key]);
if (ready && changed) { if (ready && changed) {
make_dirty(component, key); make_dirty(component, key);
} }
$$.ctx[key] = value; $$.ctx[key] = value;
return changed; return changed;
} }
}); });
}
$$.update(); $$.update();
ready = true; ready = true;

@ -1,5 +1,5 @@
/* generated by Svelte vX.Y.Z */ /* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, createElement, detachNode, identity, init, insert, noop, safe_not_equal } from "svelte/internal"; import { SvelteComponent as SvelteComponent_1, createElement, detachNode, init, insert, noop, safe_not_equal } from "svelte/internal";
function create_fragment($$, ctx) { function create_fragment($$, ctx) {
var a, link_action; var a, link_action;
@ -48,7 +48,7 @@ function link(node) {
class SvelteComponent extends SvelteComponent_1 { class SvelteComponent extends SvelteComponent_1 {
constructor(options) { constructor(options) {
super(); super();
init(this, options, identity, create_fragment, safe_not_equal); init(this, options, null, create_fragment, safe_not_equal);
} }
} }

@ -1,5 +1,5 @@
/* generated by Svelte vX.Y.Z */ /* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, append, createElement, detachNode, identity, init, insert, noop, safe_not_equal } from "svelte/internal"; import { SvelteComponent as SvelteComponent_1, append, createElement, detachNode, init, insert, noop, safe_not_equal } from "svelte/internal";
function add_css() { function add_css() {
var style = createElement("style"); var style = createElement("style");
@ -37,7 +37,7 @@ class SvelteComponent extends SvelteComponent_1 {
constructor(options) { constructor(options) {
super(); super();
if (!document.getElementById("svelte-1slhpfn-style")) add_css(); if (!document.getElementById("svelte-1slhpfn-style")) add_css();
init(this, options, identity, create_fragment, safe_not_equal); init(this, options, null, create_fragment, safe_not_equal);
} }
} }

@ -1,5 +1,5 @@
/* generated by Svelte vX.Y.Z */ /* generated by Svelte vX.Y.Z */
import { SvelteElement, createElement, detachNode, identity, init, insert, noop, safe_not_equal } from "svelte/internal"; import { SvelteElement, createElement, detachNode, init, insert, noop, safe_not_equal } from "svelte/internal";
function create_fragment($$, ctx) { function create_fragment($$, ctx) {
var div; var div;
@ -33,7 +33,7 @@ class SvelteComponent extends SvelteElement {
this.shadowRoot.innerHTML = `<style>div{animation:foo 1s}@keyframes foo{0%{opacity:0}100%{opacity:1}}</style>`; this.shadowRoot.innerHTML = `<style>div{animation:foo 1s}@keyframes foo{0%{opacity:0}100%{opacity:1}}</style>`;
init(this, { target: this.shadowRoot }, identity, create_fragment, safe_not_equal); init(this, { target: this.shadowRoot }, null, create_fragment, safe_not_equal);
if (options) { if (options) {
if (options.target) { if (options.target) {

@ -1,5 +1,5 @@
/* generated by Svelte vX.Y.Z */ /* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, identity, init, mount_component, noop, safe_not_equal } from "svelte/internal"; import { SvelteComponent as SvelteComponent_1, init, mount_component, noop, safe_not_equal } from "svelte/internal";
import LazyLoad from "./LazyLoad.html"; import LazyLoad from "./LazyLoad.html";
function create_fragment($$, ctx) { function create_fragment($$, ctx) {
@ -43,7 +43,7 @@ function func() {
class SvelteComponent extends SvelteComponent_1 { class SvelteComponent extends SvelteComponent_1 {
constructor(options) { constructor(options) {
super(); super();
init(this, options, identity, create_fragment, safe_not_equal); init(this, options, null, create_fragment, safe_not_equal);
} }
} }

@ -1,5 +1,5 @@
/* generated by Svelte vX.Y.Z */ /* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, addListener, createElement, detachNode, identity, init, insert, noop, safe_not_equal } from "svelte/internal"; import { SvelteComponent as SvelteComponent_1, addListener, createElement, detachNode, init, insert, noop, safe_not_equal } from "svelte/internal";
function create_fragment($$, ctx) { function create_fragment($$, ctx) {
var a, dispose; var a, dispose;
@ -37,7 +37,7 @@ function touchstart_handler(e) {
class SvelteComponent extends SvelteComponent_1 { class SvelteComponent extends SvelteComponent_1 {
constructor(options) { constructor(options) {
super(); super();
init(this, options, identity, create_fragment, safe_not_equal); init(this, options, null, create_fragment, safe_not_equal);
} }
} }

@ -1,5 +1,5 @@
/* generated by Svelte vX.Y.Z */ /* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, addListener, append, createElement, createText, detachNode, identity, init, insert, noop, preventDefault, run_all, safe_not_equal, stopPropagation } from "svelte/internal"; import { SvelteComponent as SvelteComponent_1, addListener, append, createElement, createText, detachNode, init, insert, noop, preventDefault, run_all, safe_not_equal, stopPropagation } from "svelte/internal";
function create_fragment($$, ctx) { function create_fragment($$, ctx) {
var div, button0, text1, button1, text3, button2, dispose; var div, button0, text1, button1, text3, button2, dispose;
@ -57,7 +57,7 @@ function handleClick() {
class SvelteComponent extends SvelteComponent_1 { class SvelteComponent extends SvelteComponent_1 {
constructor(options) { constructor(options) {
super(); super();
init(this, options, identity, create_fragment, safe_not_equal); init(this, options, null, create_fragment, safe_not_equal);
} }
} }

@ -1,5 +1,5 @@
/* generated by Svelte vX.Y.Z */ /* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, append, createElement, detachNode, identity, init, noop, safe_not_equal } from "svelte/internal"; import { SvelteComponent as SvelteComponent_1, append, createElement, detachNode, init, noop, safe_not_equal } from "svelte/internal";
function create_fragment($$, ctx) { function create_fragment($$, ctx) {
var meta0, meta1; var meta0, meta1;
@ -33,7 +33,7 @@ function create_fragment($$, ctx) {
class SvelteComponent extends SvelteComponent_1 { class SvelteComponent extends SvelteComponent_1 {
constructor(options) { constructor(options) {
super(); super();
init(this, options, identity, create_fragment, safe_not_equal); init(this, options, null, create_fragment, safe_not_equal);
} }
} }

@ -1,5 +1,5 @@
/* generated by Svelte vX.Y.Z */ /* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, append, createElement, createText, detachNode, identity, init, insert, noop, safe_not_equal } from "svelte/internal"; import { SvelteComponent as SvelteComponent_1, append, createElement, createText, detachNode, init, insert, noop, safe_not_equal } from "svelte/internal";
function create_fragment($$, ctx) { function create_fragment($$, ctx) {
var b, text_value = get_answer(), text; var b, text_value = get_answer(), text;
@ -34,7 +34,7 @@ function get_answer() { return ANSWER; }
class SvelteComponent extends SvelteComponent_1 { class SvelteComponent extends SvelteComponent_1 {
constructor(options) { constructor(options) {
super(); super();
init(this, options, identity, create_fragment, safe_not_equal); init(this, options, null, create_fragment, safe_not_equal);
} }
} }

@ -1,5 +1,5 @@
/* generated by Svelte vX.Y.Z */ /* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, append, createElement, createText, detachNode, identity, init, insert, noop, safe_not_equal } from "svelte/internal"; import { SvelteComponent as SvelteComponent_1, append, createElement, createText, detachNode, init, insert, noop, safe_not_equal } from "svelte/internal";
function create_fragment($$, ctx) { function create_fragment($$, ctx) {
var b, text_value = get_answer(), text; var b, text_value = get_answer(), text;
@ -34,7 +34,7 @@ function get_answer() { return ANSWER; }
class SvelteComponent extends SvelteComponent_1 { class SvelteComponent extends SvelteComponent_1 {
constructor(options) { constructor(options) {
super(); super();
init(this, options, identity, create_fragment, safe_not_equal); init(this, options, null, create_fragment, safe_not_equal);
} }
} }

@ -1,5 +1,5 @@
/* generated by Svelte vX.Y.Z */ /* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, createElement, detachNode, identity, init, insert, noop, safe_not_equal, setInputType } from "svelte/internal"; import { SvelteComponent as SvelteComponent_1, createElement, detachNode, init, insert, noop, safe_not_equal, setInputType } from "svelte/internal";
function create_fragment($$, ctx) { function create_fragment($$, ctx) {
var input; var input;
@ -29,7 +29,7 @@ function create_fragment($$, ctx) {
class SvelteComponent extends SvelteComponent_1 { class SvelteComponent extends SvelteComponent_1 {
constructor(options) { constructor(options) {
super(); super();
init(this, options, identity, create_fragment, safe_not_equal); init(this, options, null, create_fragment, safe_not_equal);
} }
} }

@ -1,5 +1,5 @@
/* generated by Svelte vX.Y.Z */ /* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, createText, detachNode, identity, init, insert, mount_component, noop, safe_not_equal } from "svelte/internal"; import { SvelteComponent as SvelteComponent_1, createText, detachNode, init, insert, mount_component, noop, safe_not_equal } from "svelte/internal";
import Imported from "Imported.html"; import Imported from "Imported.html";
function create_fragment($$, ctx) { function create_fragment($$, ctx) {
@ -54,7 +54,7 @@ function create_fragment($$, ctx) {
class SvelteComponent extends SvelteComponent_1 { class SvelteComponent extends SvelteComponent_1 {
constructor(options) { constructor(options) {
super(); super();
init(this, options, identity, create_fragment, safe_not_equal); init(this, options, null, create_fragment, safe_not_equal);
} }
} }

@ -1,5 +1,5 @@
/* generated by Svelte vX.Y.Z */ /* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, append, createElement, createText, detachNode, identity, init, insert, noop, safe_not_equal } from "svelte/internal"; import { SvelteComponent as SvelteComponent_1, append, createElement, createText, detachNode, init, insert, noop, safe_not_equal } from "svelte/internal";
function create_fragment($$, ctx) { function create_fragment($$, ctx) {
var h1, text0, text1, text2; var h1, text0, text1, text2;
@ -36,7 +36,7 @@ let name = 'world';
class SvelteComponent extends SvelteComponent_1 { class SvelteComponent extends SvelteComponent_1 {
constructor(options) { constructor(options) {
super(); super();
init(this, options, identity, create_fragment, safe_not_equal); init(this, options, null, create_fragment, safe_not_equal);
} }
} }

@ -1,5 +1,5 @@
/* generated by Svelte vX.Y.Z */ /* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, identity, init, noop, safe_not_equal } from "svelte/internal"; import { SvelteComponent as SvelteComponent_1, init, noop, safe_not_equal } from "svelte/internal";
function create_fragment($$, ctx) { function create_fragment($$, ctx) {
return { return {
@ -21,7 +21,7 @@ function foo(bar) {
class SvelteComponent extends SvelteComponent_1 { class SvelteComponent extends SvelteComponent_1 {
constructor(options) { constructor(options) {
super(); super();
init(this, options, identity, create_fragment, safe_not_equal); init(this, options, null, create_fragment, safe_not_equal);
} }
get foo() { get foo() {

@ -1,5 +1,5 @@
/* generated by Svelte vX.Y.Z */ /* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, append, createSvgElement, createText, detachNode, identity, init, insert, noop, safe_not_equal } from "svelte/internal"; import { SvelteComponent as SvelteComponent_1, append, createSvgElement, createText, detachNode, init, insert, noop, safe_not_equal } from "svelte/internal";
function create_fragment($$, ctx) { function create_fragment($$, ctx) {
var svg, title, text; var svg, title, text;
@ -32,7 +32,7 @@ function create_fragment($$, ctx) {
class SvelteComponent extends SvelteComponent_1 { class SvelteComponent extends SvelteComponent_1 {
constructor(options) { constructor(options) {
super(); super();
init(this, options, identity, create_fragment, safe_not_equal); init(this, options, null, create_fragment, safe_not_equal);
} }
} }

@ -0,0 +1,5 @@
<script>
export let x = 'no';
</script>
<p>Bar: {x}</p>

@ -0,0 +1,5 @@
<script>
export let x = 'yes';
</script>
<p>Foo: {x}</p>

@ -0,0 +1,31 @@
export default {
html: `
<p>Foo: yes</p>
<p>x in parent: yes</p>
`,
async test({ assert, component, target, window }) {
component.a = false;
assert.htmlEqual(target.innerHTML, `
<p>Bar: yes</p>
<p>x in parent: yes</p>
`);
component.a = true;
assert.equal(component.x, 'yes');
component.x = undefined;
assert.htmlEqual(target.innerHTML, `
<p>Foo: undefined</p>
<p>x in parent: undefined</p>
`);
component.a = false;
assert.htmlEqual(target.innerHTML, `
<p>Bar: no</p>
<p>x in parent: no</p>
`);
}
};

@ -0,0 +1,15 @@
<script>
import Foo from './Foo.html';
import Bar from './Bar.html';
export let a = true;
export let x;
</script>
{#if a}
<Foo bind:x/>
{:else}
<Bar bind:x/>
{/if}
<p>x in parent: {x}</p>

@ -0,0 +1,5 @@
<script>
export let x = 'no';
</script>
<p>Bar: {x}</p>

@ -0,0 +1,5 @@
<script>
export let x = 'yes';
</script>
<p>Foo: {x}</p>

@ -0,0 +1,31 @@
export default {
html: `
<p>Foo: yes</p>
<p>x in parent: yes</p>
`,
async test({ assert, component, target, window }) {
component.a = false;
assert.htmlEqual(target.innerHTML, `
<p>Bar: yes</p>
<p>x in parent: yes</p>
`);
component.a = true;
assert.equal(component.x, 'yes');
component.x = undefined;
assert.htmlEqual(target.innerHTML, `
<p>Foo: undefined</p>
<p>x in parent: undefined</p>
`);
component.a = false;
assert.htmlEqual(target.innerHTML, `
<p>Bar: no</p>
<p>x in parent: no</p>
`);
}
};

@ -0,0 +1,11 @@
<script>
import Foo from './Foo.html';
import Bar from './Bar.html';
export let a = true;
export let x;
</script>
<svelte:component this="{a ? Foo : Bar}" bind:x/>
<p>x in parent: {x}</p>

@ -0,0 +1,5 @@
<script>
let x = 'no';
</script>
<p>Bar: {x}</p>

@ -0,0 +1,5 @@
<script>
let x = 'yes';
</script>
<p>Foo: {x}</p>

@ -0,0 +1,31 @@
export default {
html: `
<p>Foo: yes</p>
<p>x in parent: undefined</p>
`,
async test({ assert, component, target, window }) {
component.a = false;
assert.htmlEqual(target.innerHTML, `
<p>Bar: no</p>
<p>x in parent: undefined</p>
`);
component.a = true;
assert.equal(component.x, undefined);
component.x = 'maybe';
assert.htmlEqual(target.innerHTML, `
<p>Foo: yes</p>
<p>x in parent: maybe</p>
`);
component.a = false;
assert.htmlEqual(target.innerHTML, `
<p>Bar: no</p>
<p>x in parent: maybe</p>
`);
}
};

@ -0,0 +1,11 @@
<script>
import Foo from './Foo.html';
import Bar from './Bar.html';
export let a = true;
export let x;
</script>
<svelte:component this="{a ? Foo : Bar}" bind:x/>
<p>x in parent: {x}</p>
Loading…
Cancel
Save