124 lines
5.6 KiB
TypeScript
124 lines
5.6 KiB
TypeScript
import { state } from '../../core/state';
|
|
import { openHwModal } from '../../components/Modal/HWModal';
|
|
import { formatInline, createBadge, sortAssets } from '../../core/utils';
|
|
import { ASSET_SCHEMA, UI_TEXT } from '../../core/schema';
|
|
import { createIcons, RefreshCcw } from 'lucide';
|
|
|
|
/**
|
|
* 전산비품 자산 목록 뷰
|
|
* 라인 정렬 보정 및 헤더 통일
|
|
*/
|
|
export function renderEquipmentList(container: HTMLElement) {
|
|
const fullList = sortAssets(state.masterData.equip);
|
|
|
|
const filterBar = document.createElement('div');
|
|
filterBar.className = 'search-bar';
|
|
const corps = Array.from(new Set(fullList.map(a => a[ASSET_SCHEMA.CORP.key]))).filter(Boolean).sort();
|
|
|
|
filterBar.innerHTML = `
|
|
<div class="search-item flex-1">
|
|
<label>통합 검색 (${ASSET_SCHEMA.ASSET_CODE.ui}/${ASSET_SCHEMA.MODEL.ui}/${ASSET_SCHEMA.MANAGER_MAIN.ui})</label>
|
|
<input type="text" id="filter-keyword" placeholder="검색어를 입력하세요..." autocomplete="off">
|
|
</div>
|
|
<div class="search-item">
|
|
<label>${ASSET_SCHEMA.CORP.ui}</label>
|
|
<select id="filter-corp"><option value="">전체 법인</option>${corps.map(c => `<option value="${c}">${c}</option>`).join('')}</select>
|
|
</div>
|
|
<button id="btn-reset-filters" class="btn btn-outline btn-reset">
|
|
<i data-lucide="refresh-ccw"></i> ${UI_TEXT.ACTION.RESET_FILTER}
|
|
</button>
|
|
`;
|
|
container.appendChild(filterBar);
|
|
|
|
const tableWrapper = document.createElement('div');
|
|
tableWrapper.className = 'table-container';
|
|
const table = document.createElement('table');
|
|
table.innerHTML = `
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">No.</th>
|
|
<th class="text-center">${ASSET_SCHEMA.STATUS.ui}</th>
|
|
<th class="text-center">${ASSET_SCHEMA.CORP.ui}</th>
|
|
<th class="text-center">유형</th>
|
|
<th class="text-center">${ASSET_SCHEMA.ASSET_CODE.ui}</th>
|
|
<th>${ASSET_SCHEMA.MODEL.ui}</th>
|
|
<th class="text-center">${ASSET_SCHEMA.STORE_LOC.ui}</th>
|
|
<th class="text-center">담당자(정/부)</th>
|
|
<th class="text-center">${ASSET_SCHEMA.PURCHASE_YM.ui}</th>
|
|
<th class="text-center">${ASSET_SCHEMA.PRICE.ui}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="dynamic-tbody"></tbody>
|
|
`;
|
|
|
|
tableWrapper.appendChild(table);
|
|
container.appendChild(tableWrapper);
|
|
const tbody = table.querySelector('tbody')!;
|
|
|
|
const updateTable = () => {
|
|
const keywordInput = document.getElementById('filter-keyword') as HTMLInputElement;
|
|
const corpSelect = document.getElementById('filter-corp') as HTMLSelectElement;
|
|
|
|
const keyword = keywordInput ? keywordInput.value.toLowerCase().trim() : '';
|
|
const corp = corpSelect ? corpSelect.value : '';
|
|
|
|
const filtered = fullList.filter(asset => {
|
|
const matchKeyword = !keyword ||
|
|
String(asset[ASSET_SCHEMA.ASSET_CODE.key]||'').toLowerCase().includes(keyword) ||
|
|
String(asset[ASSET_SCHEMA.MODEL.key]||'').toLowerCase().includes(keyword) ||
|
|
String(asset[ASSET_SCHEMA.MANAGER_MAIN.key]||'').toLowerCase().includes(keyword);
|
|
const matchCorp = !corp || asset[ASSET_SCHEMA.CORP.key] === corp;
|
|
return matchKeyword && matchCorp;
|
|
});
|
|
|
|
tbody.innerHTML = '';
|
|
if (filtered.length === 0) {
|
|
tbody.innerHTML = `<tr><td colspan="10" class="text-center" style="padding: 3rem; color: var(--text-muted);">${UI_TEXT.MESSAGES.NO_DATA}</td></tr>`;
|
|
return;
|
|
}
|
|
|
|
filtered.forEach((asset, idx) => {
|
|
const tr = document.createElement('tr');
|
|
tr.style.cursor = 'pointer';
|
|
|
|
const statusColors: Record<string, string> = { '대여중': 'primary', '보관중': 'success', '수리중': 'danger', '기타': 'muted' };
|
|
const statusValue = asset[ASSET_SCHEMA.STATUS.key] || '보관중';
|
|
const statusType = statusColors[statusValue] || 'muted';
|
|
const statusBadge = `<span class="badge badge-${statusType}">${statusValue}</span>`;
|
|
|
|
const mainManager = asset[ASSET_SCHEMA.MANAGER_MAIN.key] || '';
|
|
const subManager = asset[ASSET_SCHEMA.MANAGER_SUB.key] || '';
|
|
const managerHtml = [
|
|
mainManager ? `${createBadge('정', 'primary')} ${mainManager}` : '',
|
|
subManager ? `${createBadge('부', 'muted')} ${subManager}` : ''
|
|
].filter(v => v !== '').join(' / ');
|
|
|
|
tr.innerHTML = `
|
|
<td class="text-center">${idx + 1}</td>
|
|
<td class="text-center">${statusBadge}</td>
|
|
<td class="text-center">${asset[ASSET_SCHEMA.CORP.key]}</td>
|
|
<td class="text-center">${asset[ASSET_SCHEMA.TYPE.key]}</td>
|
|
<td class="text-center" style="font-family: monospace;">${asset[ASSET_SCHEMA.ASSET_CODE.key] || '-'}</td>
|
|
<td>${formatInline(asset[ASSET_SCHEMA.MODEL.key] || asset.명칭)}</td>
|
|
<td class="text-center">${asset[ASSET_SCHEMA.STORE_LOC.key] || '-'}</td>
|
|
<td class="text-center">${managerHtml || '-'}</td>
|
|
<td class="text-center">${asset[ASSET_SCHEMA.PURCHASE_YM.key] || ''}</td>
|
|
<td class="text-right">${Number(asset[ASSET_SCHEMA.PRICE.key]||0).toLocaleString()}</td>
|
|
`;
|
|
tr.addEventListener('click', () => openHwModal(asset, 'view'));
|
|
tbody.appendChild(tr);
|
|
});
|
|
createIcons({ icons: { RefreshCcw } });
|
|
};
|
|
|
|
document.getElementById('filter-keyword')?.addEventListener('input', updateTable);
|
|
document.getElementById('filter-corp')?.addEventListener('change', updateTable);
|
|
document.getElementById('btn-reset-filters')?.addEventListener('click', () => {
|
|
(document.getElementById('filter-keyword') as HTMLInputElement).value = '';
|
|
(document.getElementById('filter-corp') as HTMLSelectElement).value = '';
|
|
updateTable();
|
|
});
|
|
|
|
updateTable();
|
|
}
|