Files
aurora-admin/frameworks/ExpandableTable.jsx
T

55 lines
1.6 KiB
React
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import React, { useState } from 'react';
import './ExpandableTable.css';
export default function ExpandableTable({ data = [], columns = [], idKey = 'id' }) {
const [openSet, setOpenSet] = useState({});
const toggle = (id) => setOpenSet((s) => ({ ...s, [id]: !s[id] }));
return (
<table className="aa-exptable">
<thead>
<tr>
<th style={{ width: 40 }} />
{columns.map((c) => (
<th key={c.key}>{c.title}</th>
))}
</tr>
</thead>
<tbody>
{data.map((row) => (
<React.Fragment key={row[idKey]}>
<tr className="aa-row">
<td>
<button
className={'aa-exp-toggle' + (openSet[row[idKey]] ? ' is-open' : '')}
onClick={() => toggle(row[idKey])}
>
▶
</button>
</td>
{columns.map((c) => (
<td key={c.key}>{row[c.key]}</td>
))}
</tr>
{openSet[row[idKey]] && (
<tr className="aa-exp-row">
<td />
<td colSpan={columns.length}>
<div className="aa-exp-panel">
<div>备注:{row.detail.note}</div>
<div className="aa-exp-sub">
{row.detail.items.map((it, i) => (
<div key={i}>· {it}</div>
))}
</div>
</div>
</td>
</tr>
)}
</React.Fragment>
))}
</tbody>
</table>
);
}