/** * [slug].tsx * * # Dynamic Slug Route Handler * * ## Overview * * This file handles dynamic routing based on the `slug` parameter in the URL. Depending on the prefix of the slug, it renders different pages: * * - **Author Page**: If the `slug` starts with `@`, it renders the `AuthorPage` component for the specified author. * - **Topic Page**: If the `slug` starts with `!`, it renders the `TopicPage` component for the specified topic. * - **Article Page**: For all other slugs, it renders the `ArticlePageComponent`, displaying the full article details. * * ## Components * * - **SlugPage**: The main component that determines which page to render based on the `slug`. * - **InnerArticlePage**: Fetches and displays the detailed view of an article. * - **AuthorPage**: Displays author-specific information (imported from `../author/[slug]/[...tab]`). * - **TopicPage**: Displays topic-specific information (imported from `../topic/[slug]/[...tab]`). **/ import { RouteDefinition, RouteSectionProps, useLocation, useParams } from '@solidjs/router' import { HttpStatusCode } from '@solidjs/start' import { ErrorBoundary, Show, Suspense, createEffect, onMount } from 'solid-js' import { FourOuFourView } from '~/components/Views/FourOuFour' import { Loading } from '~/components/_shared/Loading' import { gaIdentity } from '~/config' import { useLocalize } from '~/context/localize' import { getShout } from '~/graphql/api/public' import type { Author, Reaction, Shout, Topic } from '~/graphql/schema/core.gen' import { initGA, loadGAScript } from '~/utils/ga' import { descFromBody, keywordsFromTopics } from '~/utils/meta' import { FullArticle } from '../../components/Article/FullArticle' import { PageLayout } from '../../components/_shared/PageLayout' import { ReactionsProvider } from '../../context/reactions' import AuthorPage, { AuthorPageProps } from '../author/[slug]/[...tab]' import TopicPage, { TopicPageProps } from '../topic/[slug]/[...tab]' const fetchShout = async (slug: string): Promise => { if (slug.startsWith('@')) return const shoutLoader = getShout({ slug }) const result = await shoutLoader() return result } export const route: RouteDefinition = { load: async ({ params }) => ({ article: await fetchShout(params.slug) }) } export type ArticlePageProps = { article?: Shout comments?: Reaction[] votes?: Reaction[] author?: Author } export type SlugPageProps = { article?: Shout comments?: Reaction[] votes?: Reaction[] author?: Author topics: Topic[] } export default function ArticlePage(props: RouteSectionProps) { const loc = useLocation() const { t } = useLocalize() const params = useParams() console.debug('Initial slug from useParams:', params.slug) const [data, setData] = createSignal(undefined) const fetchData = async (slug: string) => { console.debug('Fetching article with slug (useParams):', slug) const result = await fetchShout(slug) console.debug('Fetched article data (useParams):', result) setData(result) } onMount(() => { console.debug('onMount triggered') fetchData(params.slug) }) createEffect(() => { console.debug('Slug changed (useParams):', params.slug) fetchData(params.slug) }) createEffect(() => { const article = data() if (!article?.id) return console.debug('Page view event for article:', article) window?.gtag?.('event', 'page_view', { page_title: article.title, page_location: window?.location.href || '', page_path: loc.pathname }) }) return ( { console.error('Rendering 500 error page') return }}> }> {console.warn('Rendering 404 error page - no article data found')} } > {console.debug('Rendering article page with data:', data())} ) }