| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 | 
							- import Datatable from "@/components/Tables/Datatable";
 
- import { Button } from "reactstrap";
 
- import Link from "next/link";
 
- import moment from "moment";
 
- function TableLaporan({ listData, to, linkName, status = false, noBy = false }) {
 
-     return (
 
-         <div className="card b ">
 
-             <div className="card-body card-over">
 
-                 {listData && (
 
-                     <Datatable options={{ responsive: false, ordering: true }}>
 
-                         <table className="table w-100" data-order='[[1, "desc"]]'>
 
-                             <thead>
 
-                                 <tr>
 
-                                     <th>No.Laporan</th>
 
-                                     <th>Deskripsi Laporan</th>
 
-                                      <th>Status</th>
 
-                                     {!noBy && <th>Dibuat Oleh</th>}
 
-                                 </tr>
 
-                             </thead>
 
-                             <tbody>
 
-                                 {listData.map((data) => {
 
-                                     return (
 
-                                         <tr key={data._id}>
 
-                                             <td>
 
-                                                 {/* <td>{data.no_laporan}</td> */}
 
-                                                 <div className="media align-items-center">
 
-                                                     <div className="media-body d-flex">
 
-                                                         <div>
 
-                                                             <h4>{data.no_laporan}</h4>
 
-                                                             <p>{moment(data.createdAt).format("DD-MM-YYYY")}</p>
 
-                                                         </div>
 
-                                                     </div>
 
-                                                 </div>
 
-                                             </td>
 
-                                             <td>
 
-                                                 <div className="table-desc">
 
-                                                     <div className="media align-items-center">
 
-                                                         <div className="media-body d-flex">
 
-                                                             <div>
 
-                                                                 <h4 className="m-0">{data.pt.nama.length > 64 ? data.pt.nama.substring(0, 64) + "..." : data.pt.nama}</h4>
 
-                                                                 <p className="w-105">{data.keterangan}</p>
 
-                                                             </div>
 
-                                                         </div>
 
-                                                     </div>
 
-                                                 </div>
 
-                                             </td>
 
-                                             {data.step ? (
 
-                                                 <td>
 
-                                                     <div className="badge badge-success">{data.step}</div>
 
-                                                 </td>
 
-                                             ) : (
 
-                                                 ""
 
-                                             )}
 
-                                             {!noBy && <td>{data.user.isPrivate ? "" : data.user.nama}</td>}
 
-                                             {/* <td>
 
-                                                 <div className="ml-auto">
 
-                                                     <Link
 
-                                                         href={{
 
-                                                             pathname: to,
 
-                                                             query: { id: data._id },
 
-                                                         }}
 
-                                                     >
 
-                                                         <Button className="btn-login" color>
 
-                                                             <span className="font-color-white">
 
-                                                                 {linkName}
 
-                                                             </span>
 
-                                                         </Button>
 
-                                                     </Link>
 
-                                                 </div>
 
-                                             </td> */}
 
-                                         </tr>
 
-                                     );
 
-                                 })}
 
-                             </tbody>
 
-                         </table>
 
-                     </Datatable>
 
-                 )}
 
-             </div>
 
-         </div>
 
-     );
 
- }
 
- export default TableLaporan;
 
 
  |