deskripsi: - pindah lib di dalam app ke src ( lib setara app dan app_modules )
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
"use client";
|
|
|
|
import { RouterJob } from "@/lib/router_hipmi/router_job";
|
|
import ComponentGlobal_IsEmptyData from "@/app_modules/_global/component/is_empty_data";
|
|
import { Center, Loader } from "@mantine/core";
|
|
import _ from "lodash";
|
|
import { ScrollOnly } from "next-scroll-loader";
|
|
import { useState } from "react";
|
|
import ComponentJob_CardStatus from "../../component/card/card_view";
|
|
import job_getAllStatusPublish from "../../fun/get/status/get_list_publish";
|
|
|
|
export default function Job_Publish({ listPublish }: { listPublish: any }) {
|
|
const [data, setData] = useState(listPublish);
|
|
const [activePage, setActivePage] = useState(1);
|
|
|
|
return (
|
|
<>
|
|
{_.isEmpty(data) ? (
|
|
<ComponentGlobal_IsEmptyData />
|
|
) : (
|
|
// --- Main component --- //
|
|
<ScrollOnly
|
|
height="75vh"
|
|
renderLoading={() => (
|
|
<Center mt={"lg"}>
|
|
<Loader color={"yellow"} />
|
|
</Center>
|
|
)}
|
|
data={data}
|
|
setData={setData}
|
|
moreData={async () => {
|
|
const loadData = await job_getAllStatusPublish({
|
|
page: activePage + 1,
|
|
});
|
|
|
|
setActivePage((val) => val + 1);
|
|
|
|
return loadData;
|
|
}}
|
|
>
|
|
{(item) => (
|
|
<ComponentJob_CardStatus
|
|
data={item}
|
|
path={RouterJob.detail_publish}
|
|
/>
|
|
)}
|
|
</ScrollOnly>
|
|
)}
|
|
</>
|
|
);
|
|
}
|