70 lines
2.0 KiB
TypeScript
70 lines
2.0 KiB
TypeScript
import type { PageProps } from './types'
|
|
import type { Shout } from '../graphql/schema/core.gen'
|
|
|
|
import { redirectPage } from '@nanostores/router'
|
|
import { createMemo, createSignal, onMount, Show } from 'solid-js'
|
|
|
|
import { Loading } from '../components/_shared/Loading'
|
|
import { PageLayout } from '../components/_shared/PageLayout'
|
|
import { FullArticle } from '../components/Article/FullArticle'
|
|
import { ReactionsProvider } from '../context/reactions'
|
|
import { router, useRouter } from '../stores/router'
|
|
import { loadShout, useArticlesStore } from '../stores/zine/articles'
|
|
import { setPageLoadManagerPromise } from '../utils/pageLoadManager'
|
|
|
|
export const ArticlePage = (props: PageProps) => {
|
|
const shouts = props.article ? [props.article] : []
|
|
const { page } = useRouter()
|
|
|
|
const slug = createMemo(() => page().params['slug'])
|
|
|
|
const { articleEntities } = useArticlesStore({
|
|
shouts,
|
|
})
|
|
|
|
const article = createMemo<Shout>(() => articleEntities()[slug()])
|
|
|
|
onMount(async () => {
|
|
if (!article() || !article().body) {
|
|
const loadShoutPromise = loadShout(slug())
|
|
setPageLoadManagerPromise(loadShoutPromise)
|
|
await loadShoutPromise
|
|
|
|
if (!article()) {
|
|
redirectPage(router, 'fourOuFour')
|
|
}
|
|
}
|
|
})
|
|
|
|
onMount(() => {
|
|
try {
|
|
// document.body.appendChild(script)
|
|
console.debug('TODO: connect ga')
|
|
} catch (error) {
|
|
console.warn(error)
|
|
}
|
|
})
|
|
const [scrollToComments, setScrollToComments] = createSignal<boolean>(false)
|
|
|
|
return (
|
|
<PageLayout
|
|
title={props.seo?.title}
|
|
headerTitle={article()?.title || ''}
|
|
slug={article()?.slug}
|
|
articleBody={article()?.body}
|
|
cover={article()?.cover}
|
|
scrollToComments={(value) => {
|
|
setScrollToComments(value)
|
|
}}
|
|
>
|
|
<ReactionsProvider>
|
|
<Show when={Boolean(article())} fallback={<Loading />}>
|
|
<FullArticle article={article()} scrollToComments={scrollToComments()} />
|
|
</Show>
|
|
</ReactionsProvider>
|
|
</PageLayout>
|
|
)
|
|
}
|
|
|
|
export const Page = ArticlePage
|