feature: umkm crud and add template file for reklame
This commit is contained in:
81
resources/js/data/umkm/data-umkm.js
Normal file
81
resources/js/data/umkm/data-umkm.js
Normal file
@@ -0,0 +1,81 @@
|
||||
import gridjs from "gridjs/dist/gridjs.umd.js";
|
||||
import "gridjs/dist/gridjs.umd.js";
|
||||
import GlobalConfig from "../../global-config.js";
|
||||
import GeneralTable from "../../table-generator.js";
|
||||
|
||||
const dataUMKMColumns = [
|
||||
"Nama Usaha",
|
||||
"Alamat Usaha",
|
||||
"Deskripsi Usaha",
|
||||
"Kontak Usaha",
|
||||
"NIB",
|
||||
"Skala Usaha",
|
||||
"NIK",
|
||||
"Nama Pemilik",
|
||||
"Alamat Pemilik",
|
||||
"Kontak Pemilik",
|
||||
"Jenis Usaha",
|
||||
"Bentuk Usaha",
|
||||
"Revenue",
|
||||
"Desa",
|
||||
"Kecamatan",
|
||||
"Jumlah Karyawan",
|
||||
"Luas Tanah",
|
||||
"Ijin Status",
|
||||
{
|
||||
name: "Actions",
|
||||
widht: "120px",
|
||||
formatter: function(cell, row) {
|
||||
const id = row.cells[18].data;
|
||||
const model = "data/umkm";
|
||||
return gridjs.html(`
|
||||
<div class="d-flex justify-items-end gap-10">
|
||||
<button class="btn btn-warning me-2 btn-edit"
|
||||
data-id="${id}"
|
||||
data-model="${model}">
|
||||
<i class='bx bx-edit' ></i></button>
|
||||
<button class="btn btn-red btn-delete"
|
||||
data-id="${id}">
|
||||
<i class='bx bxs-trash' ></i></button>
|
||||
</div>
|
||||
`);
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
document.addEventListener("DOMContentLoaded", () => {
|
||||
const table = new GeneralTable(
|
||||
"umkm-data-table",
|
||||
`${GlobalConfig.apiHost}/api/umkm`,
|
||||
`${GlobalConfig.apiHost}`,
|
||||
dataUMKMColumns
|
||||
);
|
||||
|
||||
table.processData = function (data) {
|
||||
return data.data.map((item) => {
|
||||
return [
|
||||
item.business_name,
|
||||
item.business_address,
|
||||
item.business_desc,
|
||||
item.business_contact,
|
||||
item.business_id_number,
|
||||
item.business_scale,
|
||||
item.owner_id,
|
||||
item.owner_name,
|
||||
item.owner_address,
|
||||
item.owner_contact,
|
||||
item.business_type,
|
||||
item.business_form,
|
||||
item.revenue,
|
||||
item.village_name,
|
||||
item.district_name,
|
||||
item.number_of_employee,
|
||||
item.land_area,
|
||||
item.permit_status,
|
||||
item.id,
|
||||
];
|
||||
});
|
||||
};
|
||||
|
||||
table.init();
|
||||
});
|
||||
Reference in New Issue
Block a user