import _ from 'lodash'; import PropTypes from 'prop-types'; import React from 'react'; import { Table, Tooltip } from 'antd'; const columnConfig = { "Pod Status": { width: 200, wrapDotsAt: 7, // dots take up more than one line in the table; space them out dotExplanation: status => { return status.value === "good" ? "is up and running" : "has not been started"; } }, "Proxy Status": { width: 250, wrapDotsAt: 9, dotExplanation: pod => { let addedStatus = !pod.added ? "Not in mesh" : "Added to mesh"; return (
Pod status: {pod.status}
{addedStatus}
); } } }; const StatusDot = ({status, multilineDots, columnName}) => (
{status.name}
{_.get(columnConfig, [columnName, "dotExplanation"])(status)}
Uptime: {status.uptime} ({status.uptimeSec}s)
)} overlayStyle={{ fontSize: "12px" }}>
 
); StatusDot.propTypes = { columnName: PropTypes.string.isRequired, multilineDots: PropTypes.bool.isRequired, status: PropTypes.shape({ name: PropTypes.string.isRequired, value: PropTypes.string.isRequired, }).isRequired, }; const columns = { resourceName: { title: "Deployment", dataIndex: "name", key: "name" }, pods: { title: "Pods", dataIndex: "numEntities" }, status: name => { return { title: name, dataIndex: "pods", width: columnConfig[name].width, render: statuses => { let multilineDots = _.size(statuses) > columnConfig[name].wrapDotsAt; return _.map(statuses, (status, i) => { return ( ); }); } }; } }; class StatusTable extends React.Component { static propTypes = { data: PropTypes.arrayOf(PropTypes.shape({ name: PropTypes.string.isRequired, pods: PropTypes.arrayOf(PropTypes.object).isRequired, // TODO: What's the real shape here. added: PropTypes.bool, })).isRequired, statusColumnTitle: PropTypes.string.isRequired, } getTableData() { let tableData = _.map(this.props.data, datum => { return _.merge(datum, { numEntities: _.size(datum.pods) }); }); return _.sortBy(tableData, 'name'); } render() { let tableCols = [ columns.resourceName, columns.pods, columns.status(this.props.statusColumnTitle) ]; let tableData = this.getTableData(); return ( r.name} size="middle" /> ); } } export default StatusTable;