From f76c895fa0ab29d4f57f234b58227a43cd9d5e20 Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Tue, 21 Nov 2023 13:31:01 +0700 Subject: Fix page content component parsing content --- src-migrate/modules/page-content/index.tsx | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'src-migrate/modules') diff --git a/src-migrate/modules/page-content/index.tsx b/src-migrate/modules/page-content/index.tsx index cbd58633..608079f8 100644 --- a/src-migrate/modules/page-content/index.tsx +++ b/src-migrate/modules/page-content/index.tsx @@ -1,3 +1,4 @@ +import { useMemo } from "react" import { useQuery } from "react-query" import PageContentSkeleton from "~/common/components/skeleton/PageContentSkeleton" import { PageContentProps } from "~/common/types/pageContent" @@ -10,12 +11,18 @@ type Props = { const PageContent = ({ path }: Props) => { const { data, isLoading } = useQuery(`page-content:${path}`, async () => await getPageContent({ path })) - if (isLoading) { - return - } + const parsedContent = useMemo(() => { + if (!data) return '' + return data.content.replaceAll( + 'src="/web/image', + `src="${process.env.NEXT_PUBLIC_ODOO_API_HOST}/web/image` + ) + }, [data]) + + if (isLoading) return return ( -
+
) } -- cgit v1.2.3 From 4ac372ff318ee78e5d5019a1dbe95bf47b661766 Mon Sep 17 00:00:00 2001 From: "HATEC\\SPVDEV001" Date: Tue, 5 Dec 2023 09:57:39 +0700 Subject: onbording popup --- src-migrate/modules/popup-information/index.tsx | 38 +++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src-migrate/modules/popup-information/index.tsx (limited to 'src-migrate/modules') diff --git a/src-migrate/modules/popup-information/index.tsx b/src-migrate/modules/popup-information/index.tsx new file mode 100644 index 00000000..0d48a92a --- /dev/null +++ b/src-migrate/modules/popup-information/index.tsx @@ -0,0 +1,38 @@ +import { useRouter } from 'next/router'; +import { useEffect, useState } from 'react'; +import Modal from '~/common/components/elements/Modal'; +import { getAuth } from '~/common/libs/auth'; +import PageContent from '../page-content'; +import Link from 'next/link'; + +const PagePopupInformation = () => { + const router = useRouter(); + const isHomePage = router.pathname === '/'; + const auth = getAuth(); + const [active, setActive] = useState(false); + + useEffect(() => { + if (isHomePage && !auth) { + setActive(true); + } + }, [isHomePage, auth]); + return ( +
+ setActive(false)} + mode='desktop' + > +
+ + + Daftar Sekarang + +
+
+
+ ); +}; + +export default PagePopupInformation; -- cgit v1.2.3