2025-05-29 10:16:54 +00:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import * as React from "react";
|
|
|
|
|
import {
|
|
|
|
|
ColumnDef,
|
|
|
|
|
ColumnFiltersState,
|
|
|
|
|
PaginationState,
|
|
|
|
|
SortingState,
|
|
|
|
|
VisibilityState,
|
|
|
|
|
flexRender,
|
|
|
|
|
getCoreRowModel,
|
|
|
|
|
getFilteredRowModel,
|
|
|
|
|
getPaginationRowModel,
|
|
|
|
|
getSortedRowModel,
|
|
|
|
|
useReactTable,
|
|
|
|
|
} from "@tanstack/react-table";
|
|
|
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
Table,
|
|
|
|
|
TableBody,
|
|
|
|
|
TableCell,
|
|
|
|
|
TableHead,
|
|
|
|
|
TableHeader,
|
|
|
|
|
TableRow,
|
|
|
|
|
} from "@/components/ui/table";
|
|
|
|
|
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
|
|
|
|
|
import {
|
|
|
|
|
ChevronLeft,
|
|
|
|
|
ChevronRight,
|
|
|
|
|
Eye,
|
|
|
|
|
MoreVertical,
|
2025-06-03 00:59:48 +00:00
|
|
|
Plus,
|
2025-05-29 10:16:54 +00:00
|
|
|
Search,
|
|
|
|
|
SquarePen,
|
|
|
|
|
Trash2,
|
|
|
|
|
TrendingDown,
|
|
|
|
|
TrendingUp,
|
2025-06-04 17:06:44 +00:00
|
|
|
UploadIcon,
|
2025-05-29 10:16:54 +00:00
|
|
|
UserIcon,
|
|
|
|
|
} from "lucide-react";
|
2025-08-06 15:24:30 +00:00
|
|
|
import { cn, getCookiesDecrypt } from "@/lib/utils";
|
2025-05-29 10:16:54 +00:00
|
|
|
import {
|
|
|
|
|
DropdownMenu,
|
|
|
|
|
DropdownMenuContent,
|
|
|
|
|
DropdownMenuItem,
|
|
|
|
|
DropdownMenuRadioGroup,
|
|
|
|
|
DropdownMenuRadioItem,
|
|
|
|
|
DropdownMenuTrigger,
|
|
|
|
|
} from "@/components/ui/dropdown-menu";
|
|
|
|
|
import { Input } from "@/components/ui/input";
|
|
|
|
|
import { InputGroup, InputGroupText } from "@/components/ui/input-group";
|
|
|
|
|
import { paginationBlog } from "@/service/blog/blog";
|
|
|
|
|
import { ticketingPagination } from "@/service/ticketing/ticketing";
|
|
|
|
|
import { Badge } from "@/components/ui/badge";
|
2025-08-05 04:41:42 +00:00
|
|
|
import { useSearchParams } from "next/navigation";
|
2025-05-29 10:16:54 +00:00
|
|
|
import TablePagination from "@/components/table/table-pagination";
|
|
|
|
|
import columns from "./column";
|
|
|
|
|
import { getPlanningPagination } from "@/service/agenda-setting/agenda-setting";
|
|
|
|
|
import {
|
|
|
|
|
Popover,
|
|
|
|
|
PopoverContent,
|
|
|
|
|
PopoverTrigger,
|
|
|
|
|
} from "@/components/ui/popover";
|
2025-06-03 15:13:51 +00:00
|
|
|
import {
|
|
|
|
|
listDataAdvertisements,
|
|
|
|
|
listDataMedia,
|
|
|
|
|
} from "@/service/broadcast/broadcast";
|
2025-05-29 10:16:54 +00:00
|
|
|
import { listEnableCategory } from "@/service/content/content";
|
|
|
|
|
import { Checkbox } from "@/components/ui/checkbox";
|
|
|
|
|
import { close, loading } from "@/config/swal";
|
2025-08-05 04:41:42 +00:00
|
|
|
import { Link, useRouter } from "@/i18n/routing";
|
2025-06-03 00:59:48 +00:00
|
|
|
import { TambahIklanModal } from "@/components/form/setting/form-add-iklan";
|
2025-05-29 10:16:54 +00:00
|
|
|
|
2025-06-03 15:13:51 +00:00
|
|
|
const AdvertisementsList = () => {
|
2025-05-29 10:16:54 +00:00
|
|
|
const router = useRouter();
|
|
|
|
|
const searchParams = useSearchParams();
|
|
|
|
|
const [showData, setShowData] = React.useState("10");
|
|
|
|
|
const [categories, setCategories] = React.useState<any>();
|
|
|
|
|
const [dataTable, setDataTable] = React.useState<any[]>([]);
|
|
|
|
|
const [totalData, setTotalData] = React.useState<number>(1);
|
|
|
|
|
const [sorting, setSorting] = React.useState<SortingState>([]);
|
|
|
|
|
const [columnFilters, setColumnFilters] = React.useState<ColumnFiltersState>(
|
|
|
|
|
[]
|
|
|
|
|
);
|
|
|
|
|
const [columnVisibility, setColumnVisibility] =
|
|
|
|
|
React.useState<VisibilityState>({});
|
|
|
|
|
const [rowSelection, setRowSelection] = React.useState({});
|
|
|
|
|
const [pagination, setPagination] = React.useState<PaginationState>({
|
|
|
|
|
pageIndex: 0,
|
|
|
|
|
pageSize: Number(showData),
|
|
|
|
|
});
|
|
|
|
|
const [categoryFilter, setCategoryFilter] = React.useState<number[]>([]);
|
|
|
|
|
const [statusFilter, setStatusFilter] = React.useState<number[]>([]);
|
|
|
|
|
const [page, setPage] = React.useState(1);
|
|
|
|
|
const [totalPage, setTotalPage] = React.useState(1);
|
2025-08-06 15:24:30 +00:00
|
|
|
const roleId = getCookiesDecrypt("urie");
|
|
|
|
|
const levelNumber = getCookiesDecrypt("ulne");
|
|
|
|
|
const userLevelId = getCookiesDecrypt("ulie");
|
2025-05-29 10:16:54 +00:00
|
|
|
const table = useReactTable({
|
|
|
|
|
data: dataTable,
|
|
|
|
|
columns,
|
|
|
|
|
onSortingChange: setSorting,
|
|
|
|
|
onColumnFiltersChange: setColumnFilters,
|
|
|
|
|
getCoreRowModel: getCoreRowModel(),
|
|
|
|
|
getPaginationRowModel: getPaginationRowModel(),
|
|
|
|
|
getSortedRowModel: getSortedRowModel(),
|
|
|
|
|
getFilteredRowModel: getFilteredRowModel(),
|
|
|
|
|
onColumnVisibilityChange: setColumnVisibility,
|
|
|
|
|
onRowSelectionChange: setRowSelection,
|
|
|
|
|
onPaginationChange: setPagination,
|
|
|
|
|
state: {
|
|
|
|
|
sorting,
|
|
|
|
|
columnFilters,
|
|
|
|
|
columnVisibility,
|
|
|
|
|
rowSelection,
|
|
|
|
|
pagination,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
let typingTimer: any;
|
|
|
|
|
const doneTypingInterval = 1500;
|
|
|
|
|
|
|
|
|
|
const handleKeyUp = () => {
|
|
|
|
|
clearTimeout(typingTimer);
|
|
|
|
|
typingTimer = setTimeout(doneTyping, doneTypingInterval);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleKeyDown = () => {
|
|
|
|
|
clearTimeout(typingTimer);
|
|
|
|
|
typingTimer = setTimeout(doneTyping, doneTypingInterval);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
async function doneTyping() {
|
|
|
|
|
fetchData();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
const pageFromUrl = searchParams?.get("page");
|
|
|
|
|
if (pageFromUrl) {
|
|
|
|
|
setPage(Number(pageFromUrl));
|
|
|
|
|
}
|
|
|
|
|
}, [searchParams]);
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
fetchData();
|
|
|
|
|
setPagination({
|
|
|
|
|
pageIndex: 0,
|
|
|
|
|
pageSize: Number(showData),
|
|
|
|
|
});
|
|
|
|
|
}, [page, showData]);
|
|
|
|
|
|
|
|
|
|
async function fetchData() {
|
|
|
|
|
try {
|
|
|
|
|
loading();
|
2025-08-05 04:41:42 +00:00
|
|
|
const res = await listDataAdvertisements(page - 1, showData, "");
|
2025-05-29 10:16:54 +00:00
|
|
|
const data = res?.data?.data;
|
|
|
|
|
const contentData = data?.content;
|
|
|
|
|
contentData.forEach((item: any, index: number) => {
|
|
|
|
|
item.no = (page - 1) * Number(showData) + index + 1;
|
|
|
|
|
});
|
|
|
|
|
|
2025-08-12 06:31:20 +00:00
|
|
|
// console.log("contentData : ", data);
|
2025-05-29 10:16:54 +00:00
|
|
|
|
|
|
|
|
setDataTable(contentData);
|
|
|
|
|
setTotalData(data?.totalElements);
|
|
|
|
|
setTotalPage(data?.totalPages);
|
|
|
|
|
close();
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error("Error fetching tasks:", error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
getCategories();
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
async function getCategories() {
|
|
|
|
|
const category = await listEnableCategory("");
|
|
|
|
|
const resCategory = category?.data?.data?.content;
|
|
|
|
|
setCategories(resCategory);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const handleChange = (type: string, id: number, checked: boolean) => {
|
|
|
|
|
if (type === "category") {
|
|
|
|
|
if (checked) {
|
|
|
|
|
const temp: number[] = [...categoryFilter];
|
|
|
|
|
temp.push(id);
|
|
|
|
|
setCategoryFilter(temp);
|
|
|
|
|
} else {
|
|
|
|
|
const temp = categoryFilter.filter((a) => a !== id);
|
|
|
|
|
setCategoryFilter(temp);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (checked) {
|
|
|
|
|
const temp: number[] = [...statusFilter];
|
|
|
|
|
temp.push(id);
|
|
|
|
|
setStatusFilter(temp);
|
|
|
|
|
} else {
|
|
|
|
|
const temp = statusFilter.filter((a) => a !== id);
|
|
|
|
|
setStatusFilter(temp);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
2025-06-03 00:59:48 +00:00
|
|
|
<div>
|
2025-08-06 15:24:30 +00:00
|
|
|
{levelNumber === "1" && (
|
|
|
|
|
<div className="flex-none">
|
|
|
|
|
<Link href={"/admin/settings/iklan/create"}>
|
|
|
|
|
<Button
|
|
|
|
|
disabled={dataTable.length == 4}
|
|
|
|
|
color="primary"
|
|
|
|
|
className="text-white"
|
|
|
|
|
size="md"
|
|
|
|
|
>
|
|
|
|
|
<UploadIcon size={18} className="mr-2" />
|
|
|
|
|
Tambah Iklan
|
|
|
|
|
</Button>
|
|
|
|
|
</Link>
|
|
|
|
|
{dataTable.length == 4 && (
|
|
|
|
|
<p className="text-sm text-red-400 pt-1">
|
|
|
|
|
Jumlah Iklan Sudah Maksimal (4)
|
|
|
|
|
</p>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
2025-06-04 17:06:44 +00:00
|
|
|
{/* <TambahIklanModal /> */}
|
2025-06-03 00:59:48 +00:00
|
|
|
</div>
|
2025-05-29 10:16:54 +00:00
|
|
|
<div className="flex justify-between ">
|
|
|
|
|
<Input
|
|
|
|
|
type="text"
|
|
|
|
|
placeholder="Search"
|
|
|
|
|
onKeyUp={handleKeyUp}
|
|
|
|
|
onKeyDown={handleKeyDown}
|
|
|
|
|
className="max-w-[300px]"
|
|
|
|
|
/>
|
|
|
|
|
<div className="flex flex-row gap-2">
|
|
|
|
|
<DropdownMenu>
|
|
|
|
|
<DropdownMenuTrigger asChild>
|
|
|
|
|
<Button size="md" variant="outline">
|
|
|
|
|
1 - {showData} Data
|
|
|
|
|
</Button>
|
|
|
|
|
</DropdownMenuTrigger>
|
|
|
|
|
<DropdownMenuContent className="w-56 text-sm">
|
|
|
|
|
<DropdownMenuRadioGroup
|
|
|
|
|
value={showData}
|
|
|
|
|
onValueChange={setShowData}
|
|
|
|
|
>
|
|
|
|
|
<DropdownMenuRadioItem value="10">
|
|
|
|
|
1 - 10 Data
|
|
|
|
|
</DropdownMenuRadioItem>
|
|
|
|
|
<DropdownMenuRadioItem value="20">
|
|
|
|
|
1 - 20 Data
|
|
|
|
|
</DropdownMenuRadioItem>
|
|
|
|
|
<DropdownMenuRadioItem value="25">
|
|
|
|
|
1 - 25 Data
|
|
|
|
|
</DropdownMenuRadioItem>
|
|
|
|
|
<DropdownMenuRadioItem value="50">
|
|
|
|
|
1 - 50 Data
|
|
|
|
|
</DropdownMenuRadioItem>
|
|
|
|
|
</DropdownMenuRadioGroup>
|
|
|
|
|
</DropdownMenuContent>
|
|
|
|
|
</DropdownMenu>
|
|
|
|
|
<Popover>
|
|
|
|
|
<PopoverTrigger asChild>
|
|
|
|
|
<Button size="md" variant="outline">
|
|
|
|
|
Filter
|
|
|
|
|
</Button>
|
|
|
|
|
</PopoverTrigger>
|
|
|
|
|
<PopoverContent className="w-80 ">
|
|
|
|
|
<div className="flex flex-col gap-2 px-2">
|
|
|
|
|
<div className="flex justify-between text-sm">
|
|
|
|
|
<p>Filter</p>
|
|
|
|
|
<a
|
|
|
|
|
onClick={() => fetchData()}
|
|
|
|
|
className="cursor-pointer text-primary"
|
|
|
|
|
>
|
|
|
|
|
Simpan
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex flex-col gap-1 overflow-auto max-h-[300px] text-xs custom-scrollbar-table">
|
|
|
|
|
<p>Kategory</p>
|
|
|
|
|
{categories?.map((category: any) => (
|
|
|
|
|
<div className="flex items-center space-x-2">
|
|
|
|
|
<Checkbox
|
|
|
|
|
id={category.id}
|
|
|
|
|
checked={categoryFilter.includes(category.id)}
|
|
|
|
|
onCheckedChange={(e) =>
|
|
|
|
|
handleChange("category", category.id, Boolean(e))
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
<label
|
|
|
|
|
htmlFor={category.id}
|
|
|
|
|
className="text-xs font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
|
|
|
|
|
>
|
|
|
|
|
{category.name}
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
|
|
|
|
<p className="mt-3">Status</p>
|
|
|
|
|
<div className="flex items-center space-x-2">
|
|
|
|
|
<Checkbox
|
|
|
|
|
id="accepted"
|
|
|
|
|
checked={statusFilter.includes(1)}
|
|
|
|
|
onCheckedChange={(e) =>
|
|
|
|
|
handleChange("status", 1, Boolean(e))
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
<label
|
|
|
|
|
htmlFor="accepted"
|
|
|
|
|
className="text-xs font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
|
|
|
|
|
>
|
|
|
|
|
Menunggu Review
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex items-center space-x-2">
|
|
|
|
|
<Checkbox
|
|
|
|
|
id="accepted"
|
|
|
|
|
checked={statusFilter.includes(2)}
|
|
|
|
|
onCheckedChange={(e) =>
|
|
|
|
|
handleChange("status", 2, Boolean(e))
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
<label
|
|
|
|
|
htmlFor="accepted"
|
|
|
|
|
className="text-xs font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
|
|
|
|
|
>
|
|
|
|
|
Diterima
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex items-center space-x-2">
|
|
|
|
|
<Checkbox
|
|
|
|
|
id="accepted"
|
|
|
|
|
checked={statusFilter.includes(3)}
|
|
|
|
|
onCheckedChange={(e) =>
|
|
|
|
|
handleChange("status", 3, Boolean(e))
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
<label
|
|
|
|
|
htmlFor="accepted"
|
|
|
|
|
className="text-xs font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
|
|
|
|
|
>
|
|
|
|
|
Minta Update{" "}
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex items-center space-x-2">
|
|
|
|
|
<Checkbox
|
|
|
|
|
id="accepted"
|
|
|
|
|
checked={statusFilter.includes(4)}
|
|
|
|
|
onCheckedChange={(e) =>
|
|
|
|
|
handleChange("status", 4, Boolean(e))
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
<label
|
|
|
|
|
htmlFor="accepted"
|
|
|
|
|
className="text-xs font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
|
|
|
|
|
>
|
|
|
|
|
Ditolak
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</PopoverContent>
|
|
|
|
|
</Popover>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<Table className="overflow-hidden">
|
|
|
|
|
<TableHeader>
|
|
|
|
|
{table.getHeaderGroups().map((headerGroup) => (
|
|
|
|
|
<TableRow key={headerGroup.id} className="bg-default-200">
|
|
|
|
|
{headerGroup.headers.map((header) => (
|
|
|
|
|
<TableHead key={header.id}>
|
|
|
|
|
{header.isPlaceholder
|
|
|
|
|
? null
|
|
|
|
|
: flexRender(
|
|
|
|
|
header.column.columnDef.header,
|
|
|
|
|
header.getContext()
|
|
|
|
|
)}
|
|
|
|
|
</TableHead>
|
|
|
|
|
))}
|
|
|
|
|
</TableRow>
|
|
|
|
|
))}
|
|
|
|
|
</TableHeader>
|
|
|
|
|
<TableBody>
|
|
|
|
|
{table.getRowModel().rows?.length ? (
|
|
|
|
|
table.getRowModel().rows.map((row) => (
|
|
|
|
|
<TableRow
|
|
|
|
|
key={row.id}
|
|
|
|
|
data-state={row.getIsSelected() && "selected"}
|
|
|
|
|
className="h-[75px]"
|
|
|
|
|
>
|
|
|
|
|
{row.getVisibleCells().map((cell) => (
|
|
|
|
|
<TableCell key={cell.id}>
|
|
|
|
|
{flexRender(cell.column.columnDef.cell, cell.getContext())}
|
|
|
|
|
</TableCell>
|
|
|
|
|
))}
|
|
|
|
|
</TableRow>
|
|
|
|
|
))
|
|
|
|
|
) : (
|
|
|
|
|
<TableRow>
|
|
|
|
|
<TableCell colSpan={columns.length} className="h-24 text-center">
|
|
|
|
|
No results.
|
|
|
|
|
</TableCell>
|
|
|
|
|
</TableRow>
|
|
|
|
|
)}
|
|
|
|
|
</TableBody>
|
|
|
|
|
</Table>
|
|
|
|
|
<TablePagination
|
|
|
|
|
table={table}
|
|
|
|
|
totalData={totalData}
|
|
|
|
|
totalPage={totalPage}
|
|
|
|
|
/>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2025-06-03 15:13:51 +00:00
|
|
|
export default AdvertisementsList;
|