integrasi plant section

This commit is contained in:
2025-10-13 10:17:16 +07:00
parent 54290baaac
commit 577d8c8585
3 changed files with 149 additions and 150 deletions

View File

@@ -6,108 +6,29 @@ import { Form, Typography } from 'antd';
import ListPlantSection from './component/ListPlantSection';
import DetailPlantSection from './component/DetailPlantSection';
import { NotifConfirmDialog, NotifAlert } from '../../../components/Global/ToastNotif';
import { NotifConfirmDialog, NotifAlert, NotifOk } from '../../../components/Global/ToastNotif';
import { getAllPlantSection, createPlantSection, updatePlantSection, deletePlantSection } from '../../../api/master-plant-section';
const { Text } = Typography;
// Mock Data
const initialData = [
{
key: '1',
kode_plant: 'PL-001',
nama_plant: 'Seksi Produksi A',
lokasi_plant: 'Gedung 1, Lantai 2',
deskripsi: 'Seksi yang bertanggung jawab untuk lini produksi A.',
},
{
key: '2',
kode_plant: 'PL-002',
nama_plant: 'Seksi Pengepakan',
lokasi_plant: 'Gedung 1, Lantai 1',
deskripsi: 'Area pengepakan dan persiapan pengiriman.',
},
{
key: '3',
kode_plant: 'PL-003',
nama_plant: 'Gudang Bahan Baku',
lokasi_plant: 'Gudang A',
deskripsi: 'Penyimpanan bahan baku utama.',
},
{
key: '4',
kode_plant: 'PL-004',
nama_plant: 'Seksi Kualitas',
lokasi_plant: 'Laboratorium QC',
deskripsi: 'Pemeriksaan dan kontrol kualitas produk.',
},
{
key: '5',
kode_plant: 'PL-005',
nama_plant: 'Seksi Perawatan',
lokasi_plant: 'Workshop',
deskripsi: 'Perawatan dan perbaikan mesin produksi.',
},
{
key: '6',
kode_plant: 'PL-006',
nama_plant: 'Gudang Jadi',
lokasi_plant: 'Gudang B',
deskripsi: 'Penyimpanan produk yang siap dikirim.',
},
];
const IndexPlantSection = memo(function IndexPlantSection() {
const navigate = useNavigate();
const { setBreadcrumbItems } = useBreadcrumb();
const [form] = Form.useForm();
const [data, setData] = useState(initialData);
const [actionMode, setActionMode] = useState('list');
const [editingKey, setEditingKey] = useState('');
const [editingRecord, setEditingRecord] = useState(null);
const [isModalVisible, setIsModalVisible] = useState(false);
const [readOnly, setReadOnly] = useState(false);
// Mock API function
const getAllPlantSection = async (params) => {
const { page = 1, limit = 10, search = '' } = Object.fromEntries(params.entries());
let filteredData = data;
if (search) {
filteredData = data.filter(item =>
item.nama_plant.toLowerCase().includes(search.toLowerCase()) ||
item.kode_plant.toLowerCase().includes(search.toLowerCase()) ||
item.lokasi_plant.toLowerCase().includes(search.toLowerCase())
);
}
const start = (page - 1) * limit;
const end = start + limit;
const paginatedData = filteredData.slice(start, end);
return new Promise(resolve => {
setTimeout(() => {
resolve({
status: 200,
data: {
data: paginatedData,
total: filteredData.length,
paging: {
page: parseInt(page),
limit: parseInt(limit),
total: filteredData.length,
},
},
});
}, 500);
});
};
const [refreshList, setRefreshList] = useState(false);
useEffect(() => {
const token = localStorage.getItem('token');
if (token) {
setBreadcrumbItems([
{ title: <Text strong style={{ fontSize: '14px' }}> Master</Text> },
{ title: <Text strong style={{ fontSize: '14px' }}>Plant Section</Text> }
{ title: <Text strong style={{ fontSize: '14px' }}>Plant Sub Section</Text> }
]);
} else {
navigate('/signin');
@@ -126,51 +47,79 @@ const IndexPlantSection = memo(function IndexPlantSection() {
const handleCancel = () => {
setActionMode('list');
setEditingKey('');
setEditingRecord(null);
form.resetFields();
};
const handleOk = () => {
const handleOk = async () => {
if (readOnly) {
handleCancel();
return;
}
form.validateFields()
.then((values) => {
let newData = [...data];
if (editingKey) {
// Editing existing data
const index = newData.findIndex((item) => editingKey === item.key);
if (index > -1) {
const item = newData[index];
newData.splice(index, 1, { ...item, ...values });
}
try {
const values = await form.validateFields();
if (editingKey && editingRecord) {
// Update existing plant section
const response = await updatePlantSection(editingRecord.sub_section_id, values);
if (response.statusCode === 200) {
NotifOk({
icon: 'success',
title: 'Berhasil',
message: response.message || 'Data Sub Section berhasil diupdate.',
});
setRefreshList(!refreshList);
handleCancel();
} else {
// Adding new data
const newKey = (Math.max(...data.map(item => parseInt(item.key))) + 1).toString();
newData = [{ key: newKey, ...values }, ...newData];
NotifAlert({
icon: 'error',
title: 'Gagal',
message: response.message || 'Gagal mengupdate data Sub Section.',
});
}
setData(newData);
NotifAlert({
icon: 'success',
title: 'Berhasil',
message: 'Data Plant Section berhasil disimpan.',
});
handleCancel();
})
.catch((info) => {
console.log('Validate Failed:', info);
} else {
// Create new plant section
const response = await createPlantSection(values);
if (response.statusCode === 200 || response.statusCode === 201) {
NotifOk({
icon: 'success',
title: 'Berhasil',
message: response.message || 'Data Sub Section berhasil ditambahkan.',
});
setRefreshList(!refreshList);
handleCancel();
} else {
NotifAlert({
icon: 'error',
title: 'Gagal',
message: response.message || 'Gagal menambahkan data Sub Section.',
});
}
}
} catch (error) {
console.error('Validate Failed:', error);
NotifAlert({
icon: 'error',
title: 'Validasi Gagal',
message: 'Mohon lengkapi semua field yang wajib diisi.',
});
}
};
const handleEdit = (record) => {
form.setFieldsValue(record);
setEditingKey(record.key);
setEditingKey(record.sub_section_id || record.key);
setEditingRecord(record);
setActionMode('edit');
};
const handlePreview = (record) => {
form.setFieldsValue(record);
setEditingKey(record.key);
setEditingKey(record.sub_section_id || record.key);
setEditingRecord(record);
setActionMode('preview');
};
@@ -178,15 +127,33 @@ const IndexPlantSection = memo(function IndexPlantSection() {
NotifConfirmDialog({
icon: 'question',
title: 'Konfirmasi',
message: `Apakah anda yakin ingin menghapus plant section "${record.nama_plant}"?`,
onConfirm: () => {
const newData = data.filter((item) => item.key !== record.key);
setData(newData);
NotifAlert({
icon: 'success',
title: 'Berhasil',
message: `Plant section "${record.nama_plant}" berhasil dihapus.`,
});
message: `Apakah anda yakin ingin menghapus sub section "${record.sub_section_name}"?`,
onConfirm: async () => {
try {
const response = await deletePlantSection(record.sub_section_id);
if (response.statusCode === 200) {
NotifOk({
icon: 'success',
title: 'Berhasil',
message: response.message || `Sub section "${record.sub_section_name}" berhasil dihapus.`,
});
setRefreshList(!refreshList);
} else {
NotifAlert({
icon: 'error',
title: 'Gagal',
message: response.message || 'Gagal menghapus data Sub Section.',
});
}
} catch (error) {
console.error('Delete error:', error);
NotifAlert({
icon: 'error',
title: 'Gagal',
message: 'Terjadi kesalahan saat menghapus data.',
});
}
},
});
};
@@ -199,6 +166,7 @@ const IndexPlantSection = memo(function IndexPlantSection() {
handleDelete={handleDelete}
handlePreview={handlePreview}
getAllPlantSection={getAllPlantSection}
refreshList={refreshList}
/>
<DetailPlantSection
visible={isModalVisible}