mirror of https://github.com/sveltejs/svelte
allow await blocks in slots - fixes #1014
parent
9b09758f8c
commit
8c7e5b7758
@ -0,0 +1 @@
|
|||||||
|
<slot></slot>
|
@ -0,0 +1,49 @@
|
|||||||
|
let fulfil;
|
||||||
|
|
||||||
|
let thePromise = new Promise(f => {
|
||||||
|
fulfil = f;
|
||||||
|
});
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data: {
|
||||||
|
thePromise
|
||||||
|
},
|
||||||
|
|
||||||
|
html: `
|
||||||
|
<p>loading...</p>
|
||||||
|
`,
|
||||||
|
|
||||||
|
test(assert, component, target) {
|
||||||
|
fulfil(42);
|
||||||
|
|
||||||
|
return thePromise
|
||||||
|
.then(() => {
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<p>the value is 42</p>
|
||||||
|
`);
|
||||||
|
|
||||||
|
let reject;
|
||||||
|
|
||||||
|
thePromise = new Promise((f, r) => {
|
||||||
|
reject = r;
|
||||||
|
});
|
||||||
|
|
||||||
|
component.set({
|
||||||
|
thePromise
|
||||||
|
});
|
||||||
|
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<p>loading...</p>
|
||||||
|
`);
|
||||||
|
|
||||||
|
reject(new Error('something broke'));
|
||||||
|
|
||||||
|
return thePromise.catch(() => {});
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<p>oh no! something broke</p>
|
||||||
|
`);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,17 @@
|
|||||||
|
<Foo>
|
||||||
|
{{#await thePromise}}
|
||||||
|
<p>loading...</p>
|
||||||
|
{{then theValue}}
|
||||||
|
<p>the value is {{theValue}}</p>
|
||||||
|
{{catch theError}}
|
||||||
|
<p>oh no! {{theError.message}}</p>
|
||||||
|
{{/await}}
|
||||||
|
</Foo>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Foo from './Foo.html';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { Foo }
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in new issue