improve SSR hiding
This commit is contained in:
parent
aa888500ec
commit
73fbbad0cc
|
@ -0,0 +1,13 @@
|
||||||
|
<div class="{{hidden ? 'hidden' : ''}}">
|
||||||
|
<slot></slot>
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data: () => ({
|
||||||
|
hidden: true
|
||||||
|
}),
|
||||||
|
oncreate () {
|
||||||
|
this.set({hidden: !process.browser})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
|
@ -1,5 +1,6 @@
|
||||||
<FreeTextLayout>
|
<HiddenFromSSR>
|
||||||
<div class="not-logged-in-home {{hidden ? 'hidden' : ''}}">
|
<FreeTextLayout>
|
||||||
|
<div class="not-logged-in-home">
|
||||||
<div class="banner">
|
<div class="banner">
|
||||||
<svg aria-hidden="true" class="logo">
|
<svg aria-hidden="true" class="logo">
|
||||||
<use xlink:href="#pinafore-logo" />
|
<use xlink:href="#pinafore-logo" />
|
||||||
|
@ -12,7 +13,8 @@
|
||||||
|
|
||||||
<p>Don't have an instance? <a rel="noopener" target="_blank" href="https://joinmastodon.org">Join Mastodon!</a></p>
|
<p>Don't have an instance? <a rel="noopener" target="_blank" href="https://joinmastodon.org">Join Mastodon!</a></p>
|
||||||
</div>
|
</div>
|
||||||
</FreeTextLayout>
|
</FreeTextLayout>
|
||||||
|
</HiddenFromSSR>
|
||||||
<style>
|
<style>
|
||||||
.not-logged-in-home {
|
.not-logged-in-home {
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
|
@ -43,16 +45,12 @@
|
||||||
</style>
|
</style>
|
||||||
<script>
|
<script>
|
||||||
import FreeTextLayout from './FreeTextLayout.html'
|
import FreeTextLayout from './FreeTextLayout.html'
|
||||||
|
import HiddenFromSSR from './HiddenFromSSR.html'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
FreeTextLayout
|
FreeTextLayout,
|
||||||
},
|
HiddenFromSSR
|
||||||
data: () => ({
|
|
||||||
hidden: true
|
|
||||||
}),
|
|
||||||
oncreate: function () {
|
|
||||||
this.set({hidden: !process.browser})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
|
@ -6,11 +6,13 @@
|
||||||
{{#if $isUserLoggedIn}}
|
{{#if $isUserLoggedIn}}
|
||||||
<LazyTimeline timeline='federated' />
|
<LazyTimeline timeline='federated' />
|
||||||
{{else}}
|
{{else}}
|
||||||
|
<HiddenFromSSR>
|
||||||
<FreeTextLayout>
|
<FreeTextLayout>
|
||||||
<h1>Federated</h1>
|
<h1>Federated</h1>
|
||||||
|
|
||||||
<p>Your federated timeline will appear here when logged in.</p>
|
<p>Your federated timeline will appear here when logged in.</p>
|
||||||
</FreeTextLayout>
|
</FreeTextLayout>
|
||||||
|
</HiddenFromSSR>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
||||||
|
@ -19,13 +21,15 @@
|
||||||
import LazyTimeline from './_components/LazyTimeline.html'
|
import LazyTimeline from './_components/LazyTimeline.html'
|
||||||
import FreeTextLayout from './_components/FreeTextLayout.html'
|
import FreeTextLayout from './_components/FreeTextLayout.html'
|
||||||
import { store } from './_utils/store.js'
|
import { store } from './_utils/store.js'
|
||||||
|
import HiddenFromSSR from './_components/HiddenFromSSR'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
store: () => store,
|
store: () => store,
|
||||||
components: {
|
components: {
|
||||||
Layout,
|
Layout,
|
||||||
LazyTimeline,
|
LazyTimeline,
|
||||||
FreeTextLayout
|
FreeTextLayout,
|
||||||
|
HiddenFromSSR
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
|
@ -6,11 +6,13 @@
|
||||||
{{#if $isUserLoggedIn}}
|
{{#if $isUserLoggedIn}}
|
||||||
<LazyTimeline timeline='local' />
|
<LazyTimeline timeline='local' />
|
||||||
{{else}}
|
{{else}}
|
||||||
|
<HiddenFromSSR>
|
||||||
<FreeTextLayout>
|
<FreeTextLayout>
|
||||||
<h1>Local</h1>
|
<h1>Local</h1>
|
||||||
|
|
||||||
<p>Your local timeline will appear here when logged in.</p>
|
<p>Your local timeline will appear here when logged in.</p>
|
||||||
</FreeTextLayout>
|
</FreeTextLayout>
|
||||||
|
</HiddenFromSSR>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
||||||
|
@ -19,13 +21,15 @@
|
||||||
import LazyTimeline from './_components/LazyTimeline.html'
|
import LazyTimeline from './_components/LazyTimeline.html'
|
||||||
import FreeTextLayout from './_components/FreeTextLayout.html'
|
import FreeTextLayout from './_components/FreeTextLayout.html'
|
||||||
import { store } from './_utils/store.js'
|
import { store } from './_utils/store.js'
|
||||||
|
import HiddenFromSSR from './_components/HiddenFromSSR'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
store: () => store,
|
store: () => store,
|
||||||
components: {
|
components: {
|
||||||
Layout,
|
Layout,
|
||||||
LazyTimeline,
|
LazyTimeline,
|
||||||
FreeTextLayout
|
FreeTextLayout,
|
||||||
|
HiddenFromSSR
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
|
@ -3,21 +3,25 @@
|
||||||
</:Head>
|
</:Head>
|
||||||
|
|
||||||
<Layout page='notifications'>
|
<Layout page='notifications'>
|
||||||
|
<HiddenFromSSR>
|
||||||
<FreeTextLayout>
|
<FreeTextLayout>
|
||||||
<h1>Notifications</h1>
|
<h1>Notifications</h1>
|
||||||
|
|
||||||
<p>Your notifications will appear here when logged in.</p>
|
<p>Your notifications will appear here when logged in.</p>
|
||||||
</FreeTextLayout>
|
</FreeTextLayout>
|
||||||
|
</HiddenFromSSR>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Layout from './_components/Layout.html';
|
import Layout from './_components/Layout.html';
|
||||||
import FreeTextLayout from './_components/FreeTextLayout.html'
|
import FreeTextLayout from './_components/FreeTextLayout.html'
|
||||||
|
import HiddenFromSSR from './_components/HiddenFromSSR'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
Layout,
|
Layout,
|
||||||
FreeTextLayout
|
FreeTextLayout,
|
||||||
|
HiddenFromSSR
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
|
@ -18,7 +18,7 @@ body.offline,body.theme-hotpants.offline,body.theme-majesty.offline,body.theme-o
|
||||||
|
|
||||||
<noscript>
|
<noscript>
|
||||||
<style>
|
<style>
|
||||||
.not-logged-in-home.hidden {
|
.hidden {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue