step 52 : edit master data mobile
This commit is contained in:
@@ -0,0 +1,195 @@
|
||||
document.addEventListener('alpine:init', () => {
|
||||
Alpine.data('masterDataPageMobileEdit', () => ({
|
||||
// 0. Init dijalankan sebelum inisialisasi
|
||||
init() {
|
||||
let itemEdit = localStorage.getItem('itemEditMobile');
|
||||
if (itemEdit) {
|
||||
let json = JSON.parse(itemEdit);
|
||||
|
||||
this.e_harga = json.harga
|
||||
this.e_kode = json.kode
|
||||
this.e_nama = json.namaPemeriksaan
|
||||
|
||||
this.formEditArray = [];
|
||||
json.dataDetail.forEach((detail, index) => {
|
||||
this.formEditArray.push({
|
||||
idForm: detail.idDetail,
|
||||
openAlat: false,
|
||||
dataAlatForm: this.dataAlat,
|
||||
selectedAlat: {
|
||||
idAlat: detail.dataAlat.idAlat,
|
||||
namaAlat: detail.dataAlat.namaAlat,
|
||||
},
|
||||
selectedAssay: detail.dataAssay,
|
||||
searchAssay: "",
|
||||
filterItemAssay: [...this.dataAssay],
|
||||
dataAssayForm: [...this.dataAssay],
|
||||
openAssayAdd: false,
|
||||
});
|
||||
})
|
||||
|
||||
console.log('formEditArray', this.formEditArray);
|
||||
}
|
||||
},
|
||||
// 1. Inisialisasi Start
|
||||
dataAssay: [
|
||||
{
|
||||
idAssay: 1,
|
||||
namaAssay: 'Xn500'
|
||||
},
|
||||
{
|
||||
idAssay: 2,
|
||||
namaAssay: 'HGB'
|
||||
},
|
||||
{
|
||||
idAssay: 3,
|
||||
namaAssay: 'WBC'
|
||||
},
|
||||
{
|
||||
idAssay: 4,
|
||||
namaAssay: 'RBC'
|
||||
},
|
||||
{
|
||||
idAssay: 5,
|
||||
namaAssay: 'PLT'
|
||||
},
|
||||
],
|
||||
dataAlat: [
|
||||
{
|
||||
idAlat: 1,
|
||||
namaAlat: 'Hema 01',
|
||||
},
|
||||
{
|
||||
idAlat: 2,
|
||||
namaAlat: 'Axsym',
|
||||
},
|
||||
{
|
||||
idAlat: 3,
|
||||
namaAlat: 'Cobas C311',
|
||||
},
|
||||
],
|
||||
e_kode: '',
|
||||
e_nama: '',
|
||||
e_harga: '',
|
||||
formEditArray: [],
|
||||
objFormEdit: {
|
||||
nama: '',
|
||||
kode: '',
|
||||
harga: '',
|
||||
alat: {},
|
||||
assay: []
|
||||
},
|
||||
// 1. Inisialisasi End
|
||||
// 2. Fungsi Start
|
||||
formDetail(action) {
|
||||
if (action === 'edit') {
|
||||
const lastId = this.formEditArray.length;
|
||||
this.formEditArray.push({
|
||||
idForm: lastId + 1,
|
||||
openAlat: false,
|
||||
dataAlatForm: this.dataAlat,
|
||||
selectedAlat: {
|
||||
idAlat: -1,
|
||||
namaAlat: 'Alat'
|
||||
},
|
||||
selectedAssay: [],
|
||||
searchAssay: "",
|
||||
filterItemAssay: this.dataAssay,
|
||||
dataAssayForm: this.dataAssay,
|
||||
openAssayAdd: false,
|
||||
})
|
||||
}
|
||||
},
|
||||
filterItemAssay(idx, formItem, action) {
|
||||
if (action === 'edit') {
|
||||
let formId = formItem.idForm
|
||||
// console.log('formItem ',formItem)
|
||||
let targetForm = this.formEditArray.find(e => e.idForm === formId);
|
||||
|
||||
if (targetForm) {
|
||||
targetForm.openAssayAdd = true
|
||||
let searchTerm = targetForm.searchAssay ? targetForm.searchAssay.toLowerCase() : "";
|
||||
targetForm.filterItemAssay = targetForm.dataAssayForm.filter(item =>
|
||||
item.namaAssay.toLowerCase().includes(searchTerm)
|
||||
);
|
||||
|
||||
// targetForm.dataAssayForm = targetForm.filterItemAssay
|
||||
console.log('Filtered Assay:', targetForm.filterItemAssay);
|
||||
} else {
|
||||
console.warn('Tidak match ID Form nya');
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
addItemAssayToForm(item, idForm, action) {
|
||||
if (action === 'edit') {
|
||||
let form = this.formEditArray.find(f => f.idForm === idForm);
|
||||
|
||||
if (form) {
|
||||
let exists = form.selectedAssay.some(a => a.idAssay === item.idAssay);
|
||||
if (!exists) {
|
||||
form.selectedAssay.push(item);
|
||||
} else {
|
||||
console.warn("Item sudah dipilih:", item);
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
removeItemAssayToForm(idForm, index, action) {
|
||||
if (action === 'edit') {
|
||||
let form = this.formEditArray.find(f => f.idForm === idForm);
|
||||
if (!form) return;
|
||||
|
||||
form.selectedAssay.splice(index, 1);
|
||||
}
|
||||
},
|
||||
|
||||
saveE() {
|
||||
this.objFormEdit.alat = this.formEditArray.map(form => form.selectedAlat);
|
||||
this.objFormEdit.assay = this.formEditArray.map(form => form.selectedAssay);
|
||||
|
||||
console.log('Data Edit yang disimpan:', this.objFormEdit);
|
||||
},
|
||||
|
||||
deleteData() {
|
||||
console.log('hapus record ke database')
|
||||
},
|
||||
|
||||
onChangeInstrument(item, idForm, action) {
|
||||
if (action === 'edit') {
|
||||
let form = this.formEditArray.find(f => f.idForm === idForm);
|
||||
if (!form) return;
|
||||
|
||||
form.selectedAlat = {
|
||||
idAlat: item.idAlat,
|
||||
namaAlat: item.namaAlat
|
||||
}
|
||||
|
||||
form.openAlat = false
|
||||
}
|
||||
},
|
||||
onChangeNamaEdit() {
|
||||
this.objFormEdit.nama = this.e_nama;
|
||||
},
|
||||
onChangeKodeEdit() {
|
||||
this.objFormEdit.kode = this.e_kode;
|
||||
},
|
||||
onChangeHargaEdit() {
|
||||
this.objFormEdit.harga = this.e_harga;
|
||||
},
|
||||
closeDialogEdit() {
|
||||
this.formEditArray = []
|
||||
this.e_harga = ''
|
||||
this.e_kode = ''
|
||||
this.e_nama = ''
|
||||
this.objFormEdit = {
|
||||
nama: '',
|
||||
kode: '',
|
||||
harga: '',
|
||||
dataAssay: [],
|
||||
}
|
||||
this.showDialogEdit = false
|
||||
},
|
||||
}))
|
||||
})
|
||||
@@ -0,0 +1,225 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Master Data XPORT</title>
|
||||
<!-- tailwind cdn -->
|
||||
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
|
||||
<!-- alpine cdn -->
|
||||
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.14.8/dist/cdn.min.js"></script>
|
||||
<!-- material Symbols -->
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" />
|
||||
</head>
|
||||
|
||||
<body class="bg-white h-screen flex flex-col">
|
||||
|
||||
<!-- appbar -->
|
||||
<div class="bg-white h-15 flex items-center justify-start px-6">
|
||||
<a href="master_data.html">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-black/87" fill="none" viewBox="0 0 24 24"
|
||||
stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7" />
|
||||
</svg>
|
||||
</a>
|
||||
<h3 class="font-medium text-xl text-black/87 ml-3">Edit</h3>
|
||||
</div>
|
||||
<!-- appbar -->
|
||||
|
||||
<!-- konten utama -->
|
||||
<div class="flex-1 flex flex-col lg:flex-row px-5 pt-6 overflow-auto h-[calc(100vh-60px)]"
|
||||
x-data="masterDataPageMobileEdit">
|
||||
|
||||
<div class="relative w-full">
|
||||
<!-- Kode -->
|
||||
<label for="Kode"
|
||||
class="relative block rounded-md border border-gray-400 focus-within:border-blue-600 focus-within:ring-1 focus-within:ring-blue-600">
|
||||
<input type="text" id="Kode" autocomplete="off" x-model="e_kode" @change="onChangeKodeEdit()"
|
||||
class="peer pl-2 border-none py-3 bg-transparent placeholder-transparent focus:border-transparent focus:ring-0 focus:outline-hidden"
|
||||
placeholder="Kode" />
|
||||
|
||||
<span
|
||||
class="pointer-events-none absolute start-2.5 top-0 -translate-y-1/2 bg-white p-0.5 text-xs text-gray-700 transition-all peer-placeholder-shown:top-1/2 peer-placeholder-shown:text-sm peer-focus:top-0 peer-focus:text-xs">
|
||||
Kode
|
||||
</span>
|
||||
</label>
|
||||
|
||||
<!-- space 20 -->
|
||||
<div class="mb-5"></div>
|
||||
|
||||
<!-- Nama -->
|
||||
<label for="Nama"
|
||||
class="relative block rounded-md border border-gray-400 focus-within:border-blue-600 focus-within:ring-1 focus-within:ring-blue-600">
|
||||
<input type="text" id="Nama" autocomplete="off" x-model="e_nama" @change="onChangeNamaEdit()"
|
||||
class="peer pl-2 border-none py-3 bg-transparent placeholder-transparent focus:border-transparent focus:ring-0 focus:outline-hidden"
|
||||
placeholder="Nama" />
|
||||
|
||||
<span
|
||||
class="pointer-events-none absolute start-2.5 top-0 -translate-y-1/2 bg-white p-0.5 text-xs text-gray-700 transition-all peer-placeholder-shown:top-1/2 peer-placeholder-shown:text-sm peer-focus:top-0 peer-focus:text-xs">
|
||||
Nama
|
||||
</span>
|
||||
</label>
|
||||
|
||||
<!-- space 20 -->
|
||||
<div class="mb-5"></div>
|
||||
|
||||
<!-- Harga -->
|
||||
<label for="Harga"
|
||||
class="relative block rounded-md border border-gray-400 focus-within:border-blue-600 focus-within:ring-1 focus-within:ring-blue-600">
|
||||
<input type="text" id="Harga" autocomplete="off" x-model="e_harga" @change="onChangeHargaEdit()"
|
||||
class="peer pl-2 border-none py-3 bg-transparent placeholder-transparent focus:border-transparent focus:ring-0 focus:outline-hidden"
|
||||
placeholder="Harga" />
|
||||
|
||||
<span
|
||||
class="pointer-events-none absolute start-2.5 top-0 -translate-y-1/2 bg-white p-0.5 text-xs text-gray-700 transition-all peer-placeholder-shown:top-1/2 peer-placeholder-shown:text-sm peer-focus:top-0 peer-focus:text-xs">
|
||||
Harga
|
||||
</span>
|
||||
</label>
|
||||
|
||||
<!-- space 20 -->
|
||||
<div class="mb-5"></div>
|
||||
|
||||
<!-- form alat, assay start -->
|
||||
<div class="pl-2">
|
||||
<div class="flex justify-between">
|
||||
<h2 class="text-black/87 font-medium text-sm mb-4">Alat & Assay</h2>
|
||||
<div class="relative flex h-4 w-4">
|
||||
<button @click="formDetail('edit')">
|
||||
<span class="material-symbols-outlined text-black">add</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mt-3">
|
||||
<template x-for="(form, index) in formEditArray" :key="form.idForm">
|
||||
<div class="mt-3 mb-3">
|
||||
<div class="flex">
|
||||
<!-- alat -->
|
||||
<div class="relative w-full">
|
||||
<fieldset @click.outside="form.openAlat = false"
|
||||
class="relative border border-gray-400 rounded-md focus-within:border-blue-500 focus-within:ring-1 focus-within:ring-blue-500 px-3 pt-2 pb-2">
|
||||
<span
|
||||
x-text="form.selectedAlat.idAlat != -1 ? 'Alat' : form.selectedAlat.namaAlat"
|
||||
class="pointer-events-none absolute start-2.5 top-0 -translate-y-1/2 bg-white p-0.5 text-xs text-gray-700 transition-all peer-placeholder-shown:top-1/2 peer-placeholder-shown:text-sm peer-focus:top-0 peer-focus:text-xs">
|
||||
</span>
|
||||
<button @click="form.openAlat = !form.openAlat" type="button"
|
||||
class="w-full flex items-center justify-between bg-transparent text-gray-900 py-0.5 focus:outline-none">
|
||||
<span x-text="form.selectedAlat.namaAlat" class="text-left"></span>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 transition-transform"
|
||||
:class="{ 'rotate-180': form.openAlat }" fill="none" viewBox="0 0 24 24"
|
||||
stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
||||
d="M19 9l-7 7-7-7" />
|
||||
</svg>
|
||||
</button>
|
||||
</fieldset>
|
||||
<div x-show="form.openAlat"
|
||||
class="absolute bg-white w-full border border-gray-300 rounded-md shadow-lg z-10 max-h-[200px] overflow-y-auto">
|
||||
<ul>
|
||||
<template x-if="form.dataAlatForm.length === 0">
|
||||
<li class="py-2 px-3 text-gray-500 text-center">Data
|
||||
tidak ada</li>
|
||||
</template>
|
||||
<template x-for="item in form.dataAlatForm" :key="item.idAlat">
|
||||
<li :id="item.idAlat"
|
||||
@click="onChangeInstrument(item, form.idForm, 'edit')"
|
||||
class="py-2 px-3 hover:bg-blue-100 cursor-pointer text-gray-700">
|
||||
<button x-text="item.namaAlat"></button>
|
||||
</li>
|
||||
</template>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="w-full">
|
||||
<div>
|
||||
<!-- List Assay yang Dipilih -->
|
||||
<div class="flex flex-wrap gap-2 mb-2 mt-2">
|
||||
<template x-for="(item, idx) in form.selectedAssay" :key="item.idAssay">
|
||||
<div
|
||||
class="flex items-center bg-blue-100 text-blue-700 text-sm px-2 py-1 rounded-md">
|
||||
<span x-text="item.namaAssay"></span>
|
||||
<button @click="removeItemAssayToForm(form.idForm, idx, 'edit')"
|
||||
class="ml-2 focus:outline-none">
|
||||
<svg class="w-4 h-4 text-blue-500 hover:text-blue-700" fill="none"
|
||||
stroke="currentColor" stroke-width="2" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round"
|
||||
d="M6 18L18 6M6 6l12 12"></path>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
|
||||
<!-- Input Search Assay -->
|
||||
<label
|
||||
class="relative block border rounded-md border-gray-400 focus-within:border-blue-600 focus-within:ring-1 focus-within:ring-blue-600">
|
||||
<input type="text" autocomplete="off" x-model="form.searchAssay"
|
||||
@input="filterItemAssay(index, form, 'edit')"
|
||||
@click="form.openAssayAdd = true"
|
||||
class="w-full peer pl-2 border-none py-3 bg-transparent placeholder-transparent focus:border-transparent focus:ring-0 focus:outline-hidden"
|
||||
placeholder="Cari Assay" />
|
||||
<span
|
||||
class="pointer-events-none absolute start-2.5 top-0 -translate-y-1/2 bg-white p-0.5 text-xs text-gray-700 transition-all peer-placeholder-shown:top-1/2 peer-placeholder-shown:text-sm peer-focus:top-0 peer-focus:text-xs">
|
||||
Cari Assay
|
||||
</span>
|
||||
</label>
|
||||
|
||||
<!-- Dropdown List -->
|
||||
<div x-show="form.openAssayAdd" @click.away="form.openAssayAdd = false"
|
||||
class="absolute left-0 mt-2 w-full bg-white border border-gray-300 rounded-lg shadow-lg z-10 max-h-48 overflow-y-auto transition-all duration-200">
|
||||
<template x-if="form.filterItemAssay.length === 0">
|
||||
<div class="p-2 text-gray-500 text-sm text-center">Tidak ada
|
||||
hasil</div>
|
||||
</template>
|
||||
<template x-for="(item, idxAssayForm) in form.filterItemAssay"
|
||||
:key="item.idAssay">
|
||||
<div @click="addItemAssayToForm(item, form.idForm, 'edit')"
|
||||
class="cursor-pointer p-2 hover:bg-blue-100 flex items-center justify-between"
|
||||
:class="form.selectedAssay.some(p => p.idAssay === item.idAssay) ? 'bg-yellow-100 text-yellow-800' : ''">
|
||||
<span x-text="item.namaAssay"></span>
|
||||
<svg x-show="form.selectedAssay.some(p => p.idAssay === item.idAssay)"
|
||||
class="w-4 h-4 text-yellow-500" fill="none" stroke="currentColor"
|
||||
stroke-width="2" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round"
|
||||
d="M5 13l4 4L19 7">
|
||||
</path>
|
||||
</svg>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- border bottom -->
|
||||
<div class="border-b-1 border-dashed border-black mt-3"></div>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
</div>
|
||||
<!-- form alat, assay end -->
|
||||
|
||||
<!-- space bottom -->
|
||||
<div class="mt-40"></div>
|
||||
<!-- button save -->
|
||||
<!-- Tombol Delete -->
|
||||
<div class="fixed bottom-0 left-0 w-full bg-white p-4 shadow-lg flex flex-col gap-2">
|
||||
<button @click="deleteData()" class="text-white font-bold text-sm uppercase px-4 py-2 rounded-md transition duration-200
|
||||
hover:bg-[#fc7979] bg-[#FF5252] w-full">
|
||||
DELETE
|
||||
</button>
|
||||
<button @click="closeDialogEdit()" class="text-white font-bold text-sm uppercase px-4 py-2 rounded-md transition duration-200
|
||||
hover:bg-[#2196F3] bg-[#1976D2] w-full">
|
||||
CANCEL
|
||||
</button>
|
||||
<button @click="saveE()" class="text-white bg-[#4CAF50] font-bold text-sm uppercase px-4 py-2 rounded-md transition duration-200
|
||||
hover:bg-[#388E3C]">
|
||||
SAVE
|
||||
</button>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<!-- konten utama -->
|
||||
|
||||
<script src="js/master_data_mobile_edit.js"></script>
|
||||
</body>
|
||||
Reference in New Issue
Block a user