summaryrefslogtreecommitdiff
path: root/src-migrate/modules/page-content/index.tsx
blob: 547b195745028ac3bda989ce36df8a17bc27042a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { useMemo } from "react"
import { useQuery } from "react-query"
import { PageContentProps } from "~/types/pageContent"
import { getPageContent } from "~/services/pageContent"

type Props = {
  path: string
}

const PageContent = ({ path }: Props) => {
  const { data, isLoading } = useQuery<PageContentProps>(`page-content:${path}`, async () => await getPageContent({ path }))

  const parsedContent = useMemo<string>(() => {
    if (!data) return ''
    return data.content.replaceAll(
      'src="/web/image',
      `src="${process.env.NEXT_PUBLIC_ODOO_API_HOST}/web/image`
    )
  }, [data])

  if (isLoading) return <PageContentSkeleton />

  return (
    <div dangerouslySetInnerHTML={{ __html: parsedContent || '' }}></div>
  )
}

const PageContentSkeleton = () => (
  <div className="animate-pulse grid gap-y-4">
    <div className="w-full h-10 bg-gray-300 rounded" />
    <div className="h-2" />
    <div className="w-full h-4 bg-gray-300 rounded" />
    <div className="w-full h-4 bg-gray-300 rounded" />
    <div className="w-full h-4 bg-gray-300 rounded" />
    <div className="w-8/12 h-4 bg-gray-300 rounded" />
    <div className="h-2" />
    <div className="w-full h-4 bg-gray-300 rounded" />
    <div className="w-full h-4 bg-gray-300 rounded" />
    <div className="w-full h-4 bg-gray-300 rounded" />
    <div className="w-1/2 h-4 bg-gray-300 rounded" />
  </div>
)

export default PageContent