171 lines
6.1 KiB
TypeScript
171 lines
6.1 KiB
TypeScript
'use client'
|
|
import { currentScroll, globalNotifPage, SkeletonSingle, TEMA, WARNA } from '@/module/_global';
|
|
import { ActionIcon, Box, Center, Divider, Grid, Group, Spoiler, Stack, Text, TextInput } from '@mantine/core';
|
|
import React, { useEffect, useState } from 'react';
|
|
import { TfiAnnouncement } from "react-icons/tfi";
|
|
import { HiMagnifyingGlass } from 'react-icons/hi2';
|
|
import { useRouter, useSearchParams } from 'next/navigation';
|
|
import { useShallowEffect } from '@mantine/hooks';
|
|
import { IListDataAnnouncement } from '../lib/type_announcement';
|
|
import { funGetAllAnnouncement } from '../lib/api_announcement';
|
|
import toast from 'react-hot-toast';
|
|
import { useHookstate } from '@hookstate/core';
|
|
|
|
|
|
export default function ListAnnouncement() {
|
|
const [isData, setIsData] = useState<IListDataAnnouncement[]>([])
|
|
const [searchQuery, setSearchQuery] = useState('')
|
|
const router = useRouter()
|
|
const [loading, setLoading] = useState(true);
|
|
const tema = useHookstate(TEMA)
|
|
const load = useHookstate(globalNotifPage)
|
|
|
|
// ini
|
|
const { value: containerRef } = useHookstate(currentScroll);
|
|
const [isPage, setPage] = useState(1)
|
|
|
|
|
|
const fetchData = async (loading: boolean) => {
|
|
try {
|
|
if (loading)
|
|
setLoading(true)
|
|
const response = await funGetAllAnnouncement('?search=' + searchQuery + '&page=' + isPage)
|
|
if (response.success) {
|
|
// if (response.data.length > 0) {
|
|
if (isPage == 1) {
|
|
setIsData(response?.data)
|
|
} else {
|
|
setIsData([...isData, ...response?.data])
|
|
}
|
|
// }
|
|
} else {
|
|
toast.error(response.message);
|
|
}
|
|
setLoading(false);
|
|
} catch (error) {
|
|
toast.error("Gagal mendapatkan pengumuman, coba lagi nanti");
|
|
console.error(error);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
}
|
|
|
|
function onSearch(val:string){
|
|
setSearchQuery(val)
|
|
setPage(1)
|
|
}
|
|
|
|
useShallowEffect(() => {
|
|
fetchData(true)
|
|
}, [searchQuery])
|
|
|
|
|
|
useShallowEffect(() => {
|
|
fetchData(false)
|
|
}, [isPage])
|
|
|
|
|
|
// useShallowEffect(() => {
|
|
// if (load.get().category == "announcement") {
|
|
// console.log('masuk sinii', load.get().load)
|
|
// fetchData()
|
|
// }
|
|
// }, [load.get().load])
|
|
|
|
|
|
useEffect(() => {
|
|
const handleScroll = async () => {
|
|
if (containerRef && containerRef.current) {
|
|
const scrollTop = containerRef.current.scrollTop;
|
|
const containerHeight = containerRef.current.clientHeight;
|
|
const scrollHeight = containerRef.current.scrollHeight;
|
|
|
|
if (scrollTop + containerHeight >= scrollHeight) {
|
|
setPage(isPage + 1)
|
|
}
|
|
}
|
|
};
|
|
|
|
const container = containerRef?.current;
|
|
container?.addEventListener("scroll", handleScroll);
|
|
|
|
return () => {
|
|
container?.removeEventListener("scroll", handleScroll);
|
|
};
|
|
}, [containerRef, isPage]);
|
|
|
|
return (
|
|
<Box p={20}>
|
|
<TextInput
|
|
styles={{
|
|
input: {
|
|
color: tema.get().utama,
|
|
borderRadius: tema.get().utama,
|
|
borderColor: tema.get().utama,
|
|
},
|
|
}}
|
|
size="md"
|
|
radius={30}
|
|
leftSection={<HiMagnifyingGlass size={20} />}
|
|
placeholder="Pencarian"
|
|
onChange={(e) => onSearch(e.target.value)}
|
|
/>
|
|
{loading
|
|
? Array(6)
|
|
.fill(null)
|
|
.map((_, i) => (
|
|
<Box key={i}>
|
|
<SkeletonSingle />
|
|
</Box>
|
|
))
|
|
: (isData.length === 0) ?
|
|
<Stack align="stretch" justify="center" w={"100%"} h={"60vh"}>
|
|
<Text c="dimmed" ta={"center"} fs={"italic"}>Tidak ada pengumuman</Text>
|
|
</Stack>
|
|
:
|
|
isData.map((v, i) => {
|
|
return (
|
|
<Box key={i} mt={20}>
|
|
<Box >
|
|
<Grid>
|
|
<Grid.Col span={2}>
|
|
<Center>
|
|
<ActionIcon variant="light" bg={tema.get().bgFiturHome} size={50} radius={100} aria-label="icon">
|
|
<TfiAnnouncement color={tema.get().utama} size={25} />
|
|
</ActionIcon>
|
|
</Center>
|
|
</Grid.Col>
|
|
<Grid.Col span={10}>
|
|
<Grid onClick={() => {
|
|
router.push(`/announcement/${v.id}`)
|
|
}} mb={10}>
|
|
<Grid.Col span={{
|
|
base: 7,
|
|
xl: 8
|
|
}}>
|
|
<Text fw={'bold'} c={tema.get().utama} lineClamp={1}>{v.title}</Text>
|
|
</Grid.Col>
|
|
<Grid.Col span={{
|
|
base: 5,
|
|
xl: 4
|
|
}}>
|
|
<Text ta={"end"} fw={'lighter'} c={tema.get().utama} fz={13}>{v.createdAt}</Text>
|
|
</Grid.Col>
|
|
</Grid>
|
|
{/* <Text c={tema.get().utama} lineClamp={2}>{v.desc}</Text> */}
|
|
<Spoiler maxHeight={50} showLabel="Lebih banyak" hideLabel="Lebih sedikit">
|
|
<Text c={tema.get().utama} onClick={() => {
|
|
router.push(`/announcement/${v.id}`)
|
|
}} >{v.desc}</Text>
|
|
</Spoiler>
|
|
</Grid.Col>
|
|
</Grid>
|
|
</Box>
|
|
<Divider my={15} />
|
|
</Box>
|
|
)
|
|
})}
|
|
</Box>
|
|
);
|
|
}
|