mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-25 07:47:55 +01:00
44 lines
891 B
JavaScript
44 lines
891 B
JavaScript
import '@material/mwc-checkbox';
|
|
|
|
import {collect} from 'collect.js';
|
|
import {
|
|
type Children,
|
|
type Vnode
|
|
} from 'mithril';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Component from '../Component.jsx';
|
|
import TableCell from './TableCell.jsx';
|
|
|
|
export default class TableRow extends Component {
|
|
static propTypes = {
|
|
checkable: PropTypes.bool
|
|
};
|
|
|
|
view(vnode) {
|
|
this.attrs.addClassNames('mdc-data-table__row');
|
|
|
|
return (
|
|
<tr {...this.attrs.all()}>
|
|
{this.checkbox(vnode.children)}
|
|
{vnode.children}
|
|
</tr>
|
|
);
|
|
}
|
|
|
|
checkbox(children: Children[]): Children {
|
|
if (!this.attrs.has('checkable')) {
|
|
return <></>;
|
|
}
|
|
|
|
for (const child: Vnode of children) {
|
|
const attributes = collect(child.attrs)
|
|
if (attributes.get('type') === 'checkbox') {
|
|
break;
|
|
}
|
|
}
|
|
|
|
return <TableCell type="checkbox"/>;
|
|
}
|
|
}
|