meck-rc-table
Version:
table ui component for react
86 lines (74 loc) • 2.09 kB
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
import TableHeaderRow from './TableHeaderRow';
function getHeaderRows(columns) {
var currentRow = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
var rows = arguments[2];
rows = rows || [];
rows[currentRow] = rows[currentRow] || [];
columns.forEach(function (column) {
if (column.rowSpan && rows.length < column.rowSpan) {
while (rows.length < column.rowSpan) {
rows.push([]);
}
}
var cell = {
key: column.key,
className: column.className || '',
children: column.title
};
if (column.children) {
getHeaderRows(column.children, currentRow + 1, rows);
}
if ('colSpan' in column) {
cell.colSpan = column.colSpan;
}
if ('rowSpan' in column) {
cell.rowSpan = column.rowSpan;
}
if (cell.colSpan !== 0) {
rows[currentRow].push(cell);
}
});
return rows.filter(function (row) {
return row.length > 0;
});
}
export default function TableHeader(props, _ref) {
var table = _ref.table;
var _table$props = table.props,
prefixCls = _table$props.prefixCls,
showHeader = _table$props.showHeader,
components = _table$props.components;
var expander = props.expander,
columns = props.columns,
fixed = props.fixed;
if (!showHeader) {
return null;
}
var rows = getHeaderRows(columns);
expander.renderExpandIndentCell(rows, fixed);
var HeaderWrapper = components.header && components.header.wrapper || 'thead';
return React.createElement(
HeaderWrapper,
{ className: prefixCls + '-thead' },
rows.map(function (row, index) {
return React.createElement(TableHeaderRow, {
key: index,
fixed: fixed,
columns: columns,
rows: rows,
row: row,
components: components
});
})
);
}
TableHeader.propTypes = {
fixed: PropTypes.string,
columns: PropTypes.array.isRequired,
expander: PropTypes.object.isRequired
};
TableHeader.contextTypes = {
table: PropTypes.any
};