blob: cae50abfeb7840a87da9db0b6811606b282f19f6 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
import { useRouter } from 'next/router';
import { useEffect, useState } from 'react';
import Image from 'next/image';
import Link from 'next/link';
import { Modal } from '~/components/ui/modal';
import { getAuth } from '~/libs/auth';
import dynamic from 'next/dynamic';
const PagePopupInformation = () => {
const router = useRouter();
const isHomePage = router.pathname === '/';
const auth = getAuth();
const [active, setActive] = useState<boolean>(false);
const [data, setData] = useState<any>(null);
const [loading, setLoading] = useState(true);
useEffect(() => {
const getData = async () => {
const res = await fetch(`/api/hero-banner?type=popup-banner`);
const { data } = await res.json();
if (data) {
setData(data);
}
setLoading(false);
};
if (isHomePage && !auth) {
setActive(true);
getData();
}
}, [isHomePage, auth]);
return (
<div className='group'>
{data && !loading && (
<Modal
active={active}
className='!w-fit !bg-transparent !border-none overflow-hidden'
close={() => setActive(false)}
mode='desktop'
>
<div
className='w-[350px] md:w-[530px]'
onClick={() => setActive(false)}
>
<Link
href={data[0].url === false ? '/' : data[0].url}
aria-label='popup'
>
<Image
src={data[0]?.image}
alt={data[0]?.name}
width={1152}
height={768}
loading='eager'
sizes='(max-width: 768px) 100vw, 50vw'
priority={true}
/>
</Link>
</div>
</Modal>
)}
</div>
);
};
export default PagePopupInformation;
|