2020-07-25 20:17:08 +02:00
|
|
|
{#if $isUserLoggedIn}
|
|
|
|
<TimelinePage timeline="bookmarks">
|
|
|
|
{#if $pinnedPage !== '/bookmarks'}
|
2020-11-29 23:13:27 +01:00
|
|
|
<DynamicPageBanner title="{intl.bookmarks}" icon="#fa-bookmark"/>
|
2020-07-25 20:17:08 +02:00
|
|
|
{/if}
|
|
|
|
</TimelinePage>
|
|
|
|
{:else}
|
|
|
|
<HiddenFromSSR>
|
|
|
|
<FreeTextLayout>
|
2020-11-29 23:13:27 +01:00
|
|
|
<h1>{intl.bookmarks}</h1>
|
2020-07-25 20:17:08 +02:00
|
|
|
|
2020-11-29 23:13:27 +01:00
|
|
|
<p>{intl.bookmarksNotLoggedIn}</p>
|
2020-07-25 20:17:08 +02:00
|
|
|
</FreeTextLayout>
|
|
|
|
</HiddenFromSSR>
|
|
|
|
{/if}
|
|
|
|
<script>
|
|
|
|
import TimelinePage from '../_components/TimelinePage.html'
|
|
|
|
import FreeTextLayout from '../_components/FreeTextLayout.html'
|
|
|
|
import { store } from '../_store/store.js'
|
|
|
|
import HiddenFromSSR from '../_components/HiddenFromSSR'
|
|
|
|
import DynamicPageBanner from '../_components/DynamicPageBanner.html'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
store: () => store,
|
|
|
|
components: {
|
|
|
|
TimelinePage,
|
|
|
|
FreeTextLayout,
|
|
|
|
HiddenFromSSR,
|
|
|
|
DynamicPageBanner
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|