pinafore/routes/_components/timeline/LazyTimeline.html

31 lines
798 B
HTML
Raw Normal View History

2018-01-19 08:51:51 +00:00
<div class="lazy-timeline">
{#await importTimeline}
<!-- awaiting promise -->
{:then constructor}
<svelte:component this={constructor} {timeline} />
{:catch error}
<div>Component failed to load. Try refreshing! {error}</div>
{/await}
2018-01-15 07:24:27 +00:00
</div>
<style>
2018-01-19 08:51:51 +00:00
.lazy-timeline {
2018-01-15 07:24:27 +00:00
width: 100%;
2018-01-19 08:51:51 +00:00
}
2018-01-15 07:24:27 +00:00
</style>
<script>
2018-01-28 00:35:44 +00:00
import { importTimeline } from '../../_utils/asyncModules'
2018-01-28 21:09:39 +00:00
import { store } from '../../_store/store'
2018-01-15 07:24:27 +00:00
export default {
2018-04-20 04:38:01 +00:00
oncreate () {
let { currentInstance } = this.store.get()
let { timeline } = this.get()
this.store.set({currentTimeline: timeline})
this.store.setForTimeline(currentInstance, timeline, {runningUpdate: false})
},
store: () => store,
2018-01-15 07:24:27 +00:00
data: () => ({
importTimeline: importTimeline()
2018-01-31 06:21:31 +00:00
})
2018-01-15 07:24:27 +00:00
}
</script>