33 lines
875 B
HTML
33 lines
875 B
HTML
![]() |
{#if $isUserLoggedIn}
|
||
|
<TimelinePage timeline="conversations">
|
||
|
{#if $pinnedPage !== '/conversations'}
|
||
|
<DynamicPageBanner title="Conversations" icon="#fa-envelope"/>
|
||
|
{/if}
|
||
|
</TimelinePage>
|
||
|
{:else}
|
||
|
<HiddenFromSSR>
|
||
|
<FreeTextLayout>
|
||
|
<h1>Conversations</h1>
|
||
|
|
||
|
<p>Your conversations will appear here when logged in.</p>
|
||
|
</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>
|