Files
react/components/table/table-cell.tsx
William f8461d9845 feat(table): add update row action to Table (#378)
* feat: add update to Table's actions. add test and doc

fix(table): fix comments

* feat(table): improve type for table actions

chore: update docs

chore: remove unused types

chore(table): improve docs

Co-authored-by: William Castandet <williamcastandet@williams-air.home>
Co-authored-by: unix <unix.bio@gmail.com>
2020-10-16 10:45:28 +08:00

66 lines
1.7 KiB
TypeScript

import React from 'react'
import { TableColumnItem, useTableContext } from './table-context'
interface Props {
columns: Array<TableColumnItem>
row: any
rowIndex: number
emptyText: string
onCellClick: (cell: any, rowIndex: number, colunmIndex: number) => void
}
export type TableCellData = {
row: number
column: number
rowValue: any
}
export type TableCellActionRemove = () => void
export type TableCellActionUpdate = (data: any) => void
export type TableCellActions = {
update: TableCellActionUpdate
remove: TableCellActionRemove
}
export type TableOperation = (fn: TableCellActions, rowData: any) => any
const TableCell: React.FC<Props> = ({ columns, row, rowIndex, emptyText, onCellClick }) => {
const { removeRow, updateRow } = useTableContext()
const actions: TableCellActions = {
update: data => {
updateRow && updateRow(rowIndex, data)
},
remove: () => {
removeRow && removeRow(rowIndex)
},
}
/* eslint-disable react/jsx-no-useless-fragment */
return (
<>
{columns.map((column, index) => {
const data: TableCellData = {
row: rowIndex,
column: index,
rowValue: row,
}
const rowLabel = row[column.value]
const cellValue = !rowLabel
? emptyText
: typeof rowLabel === 'function'
? rowLabel(actions, data)
: rowLabel
return (
<td
key={`row-td-${index}-${column.value}`}
onClick={() => onCellClick(cellValue, rowIndex, index)}>
<div className="cell">{cellValue}</div>
</td>
)
})}
</>
)
/* eslint-enable */
}
export default React.memo(TableCell)