pinafore/routes/_components/timeline/LazyTimeline.html

58 lines
1.4 KiB
HTML
Raw Normal View History

2018-01-19 08:51:51 +00:00
<div class="lazy-timeline">
{{#if !$initialized}}
2018-01-28 20:51:48 +00:00
<!-- <div transition:fade> -->
2018-01-19 08:51:51 +00:00
<div class="loading-page">
<LoadingSpinner />
</div>
2018-01-28 20:51:48 +00:00
<!-- </div> -->
2018-01-15 07:24:27 +00:00
{{/if}}
2018-01-19 08:51:51 +00:00
{{#await promise}}
{{then constructor}}
<:Component {constructor} :timeline />
2018-01-19 08:51:51 +00:00
{{catch error}}
<div>Component failed to load. Please 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
min-height: 60vh;
}
.loading-page {
2018-01-31 02:26:13 +00:00
position: fixed;
top: 72px;
2018-01-19 08:51:51 +00:00
left: 0;
bottom: 0;
right: 0;
2018-01-15 07:24:27 +00:00
display: flex;
align-items: center;
justify-content: center;
2018-01-31 02:26:13 +00:00
z-index: 50;
2018-01-15 07:24:27 +00:00
}
</style>
<script>
2018-01-28 00:35:44 +00:00
import { importTimeline } from '../../_utils/asyncModules'
import LoadingSpinner from '../LoadingSpinner.html'
2018-01-28 20:51:48 +00:00
// TODO: the transition seems to occasionally cause an error in Svelte, transition_run is undefined
//import { fade } from 'svelte-transitions'
2018-01-28 21:09:39 +00:00
import { store } from '../../_store/store'
2018-01-15 07:24:27 +00:00
export default {
oncreate() {
let instanceName = this.store.get('currentInstance')
let timeline = this.get('timeline')
this.store.set({currentTimeline: timeline})
this.store.setForTimeline(instanceName, timeline, {runningUpdate: false})
},
store: () => store,
2018-01-15 07:24:27 +00:00
data: () => ({
promise: importTimeline()
2018-01-15 07:24:27 +00:00
}),
components: {
LoadingSpinner
2018-01-28 20:51:48 +00:00
}/*,
2018-01-15 07:24:27 +00:00
transitions: {
fade
2018-01-28 20:51:48 +00:00
}*/
2018-01-15 07:24:27 +00:00
}
</script>