Merge all feature branches into main and optimize core architecture
This commit is contained in:
@@ -1,116 +1,75 @@
|
||||
import { state } from '../../core/state';
|
||||
import { openHwModal } from '../../components/Modal/HWModal';
|
||||
import { formatInline, sortAssets } from '../../core/utils';
|
||||
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.법인))).filter(Boolean).sort();
|
||||
export function renderEquipmentList(filterKeyword: string = '') {
|
||||
const container = document.getElementById('view-container');
|
||||
if (!container) return;
|
||||
|
||||
filterBar.innerHTML = `
|
||||
<div class="search-item flex-1">
|
||||
<label>통합 검색 (자산코드/명칭)</label>
|
||||
<input type="text" id="filter-keyword" placeholder="검색어를 입력하세요..." autocomplete="off">
|
||||
const items = state.masterData.equip.filter(i =>
|
||||
i.자산코드?.includes(filterKeyword) ||
|
||||
i.명칭?.includes(filterKeyword) ||
|
||||
i.자산구분?.includes(filterKeyword)
|
||||
);
|
||||
|
||||
container.innerHTML = `
|
||||
<div class="view-header">
|
||||
<div class="header-left">
|
||||
<h2>전산비품 자산 현황</h2>
|
||||
<span class="count-badge">총 ${items.length}개</span>
|
||||
</div>
|
||||
<div class="header-actions">
|
||||
<button id="btn-add-equip" class="btn btn-primary"><i data-lucide="plus"></i> 비품 등록</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="search-item">
|
||||
<label>구매법인</label>
|
||||
<select id="filter-corp"><option value="">전체 법인</option>${corps.map(c => `<option value="${c}">${c}</option>`).join('')}</select>
|
||||
<div class="table-container">
|
||||
<table class="itam-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>구분</th>
|
||||
<th>자산번호</th>
|
||||
<th>비품명</th>
|
||||
<th>모델명/상세</th>
|
||||
<th>위치</th>
|
||||
<th>사용자/관리자</th>
|
||||
<th>상태</th>
|
||||
<th>관리</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
${items.length === 0 ? '<tr><td colspan="8" class="empty-row">데이터가 없습니다.</td></tr>' :
|
||||
items.map(i => `
|
||||
<tr class="asset-row" data-id="${i.id}">
|
||||
<td>${i.자산구분 || '기타'}</td>
|
||||
<td><span class="code-link">${i.자산코드 || '미부여'}</span></td>
|
||||
<td>${i.명칭 || '-'}</td>
|
||||
<td>${i.모델명 || i.HW사양 || '-'}</td>
|
||||
<td>${i.위치 || '-'}</td>
|
||||
<td>${i.사용자 || i.관리자 || '-'}</td>
|
||||
<td><span class="status-badge ${i.상태 === '사용중' ? 'active' : ''}">${i.상태 || '정상'}</span></td>
|
||||
<td><button class="btn btn-sm btn-outline btn-detail" data-id="${i.id}">상세</button></td>
|
||||
</tr>
|
||||
`).join('')}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<button id="btn-reset-filters" class="btn btn-outline btn-reset">
|
||||
<i data-lucide="refresh-ccw"></i> 필터 초기화
|
||||
</button>
|
||||
<button id="btn-add-equip" class="btn btn-primary" style="margin-left: auto;">
|
||||
<i data-lucide="plus"></i> 자산 추가
|
||||
</button>
|
||||
`;
|
||||
container.appendChild(filterBar);
|
||||
|
||||
const tableWrapper = document.createElement('div');
|
||||
tableWrapper.className = 'table-container';
|
||||
const table = document.createElement('table');
|
||||
table.innerHTML = `
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="text-align:center;">No.</th>
|
||||
<th style="text-align:center;">상태</th>
|
||||
<th style="text-align:center;">구매법인</th>
|
||||
<th style="text-align:center;">유형</th>
|
||||
<th style="text-align:center;">자산번호</th>
|
||||
<th style="text-align:center;">모델명</th>
|
||||
<th style="text-align:center;">보관위치</th>
|
||||
<th style="text-align:center;">관리자</th>
|
||||
<th style="text-align:center;">구매연월</th>
|
||||
<th style="text-align:center;">금액</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.자산코드||'').toLowerCase().includes(keyword) || String(asset.모델명||'').toLowerCase().includes(keyword) || String(asset.현사용조직||'').toLowerCase().includes(keyword);
|
||||
const matchCorp = !corp || asset.법인 === corp;
|
||||
return matchKeyword && matchCorp;
|
||||
container.querySelectorAll('.asset-row, .btn-detail').forEach(el => {
|
||||
el.addEventListener('click', (e) => {
|
||||
e.stopPropagation();
|
||||
const id = (el as HTMLElement).getAttribute('data-id');
|
||||
const asset = state.masterData.equip.find(a => a.id === id);
|
||||
if (asset) openHwModal(asset, 'view');
|
||||
});
|
||||
|
||||
tbody.innerHTML = '';
|
||||
if (filtered.length === 0) {
|
||||
tbody.innerHTML = `<tr><td colspan="10" style="text-align:center; padding: 3rem; color: var(--text-muted);">검색 결과가 없습니다.</td></tr>`;
|
||||
return;
|
||||
}
|
||||
|
||||
filtered.forEach((asset, idx) => {
|
||||
const tr = document.createElement('tr');
|
||||
tr.style.cursor = 'pointer';
|
||||
|
||||
const statusColors: Record<string, string> = {
|
||||
'대여중': '#3b82f6',
|
||||
'보관중': '#1E5149',
|
||||
'수리중': '#ef4444',
|
||||
'기타': '#6b7280'
|
||||
};
|
||||
const statusColor = statusColors[asset.현재상태 || '보관중'] || '#6b7280';
|
||||
const statusBadge = `<span style="background:${statusColor}; color:white; padding:2px 6px; border-radius:4px; font-size:0.75rem; font-weight:bold;">${asset.현재상태 || '보관중'}</span>`;
|
||||
|
||||
tr.innerHTML = `
|
||||
<td style="text-align:center;">${idx + 1}</td>
|
||||
<td style="text-align:center;">${statusBadge}</td>
|
||||
<td style="text-align:center;">${asset.법인}</td>
|
||||
<td style="text-align:center;">${asset.type}</td>
|
||||
<td style="font-weight:600; color:var(--primary-color);">${asset.자산코드 || '-'}</td>
|
||||
<td>${formatInline(asset.모델명 || asset.명칭)}</td>
|
||||
<td style="text-align:center;">${asset.보관위치 || '-'}</td>
|
||||
<td style="text-align:center;">${formatInline(asset.담당자_정 || asset.관리자)}</td>
|
||||
<td style="text-align:center;">${asset.구매일 || ''}</td>
|
||||
<td style="text-align:right;">${asset.금액 || '0'}</td>
|
||||
`;
|
||||
tr.addEventListener('click', (e) => {
|
||||
if (!(e.target as HTMLElement).closest('button')) openHwModal(asset, 'view');
|
||||
});
|
||||
tbody.appendChild(tr);
|
||||
});
|
||||
};
|
||||
|
||||
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();
|
||||
document.getElementById('btn-add-equip')?.addEventListener('click', () => {
|
||||
const newItem: any = {
|
||||
id: Math.random().toString(36).substring(2, 9),
|
||||
type: '전산비품',
|
||||
법인: 'HM',
|
||||
상태: '사용중'
|
||||
};
|
||||
openHwModal(newItem, 'add');
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user