import * as React from "react"; import * as Constants from "~/common/constants"; import * as Strings from "~/common/strings"; import * as SubSystem from "~/components/system/components/fragments/TableComponents"; import { css } from "@emotion/react"; import { P } from "~/components/system/components/Typography"; import * as SVG from "~/common/svg"; const TABLE_COLUMN_WIDTH_DEFAULTS = { 1: "100%", 2: "50%", 3: "33.333%", 4: "25%", 5: "20%", 6: "16.666%", 7: "14.28%", 8: "12.5%", }; const STYLES_CONTAINER = css` border: 1px solid ${Constants.system.lightBorder}; box-shadow: 0 0 40px 0 ${Constants.system.shadow}; `; const STYLES_TABLE_ROW = css` position: relative; box-sizing: border-box; border-bottom: 1px solid ${Constants.system.lightBorder}; display: flex; align-items: center; width: 100%; transition: 200ms ease all; :last-child { border: 0; } `; const STYLES_TABLE_TOP_ROW = css` box-sizing: border-box; font-family: ${Constants.font.semiBold}; border-bottom: 1px solid ${Constants.system.lightBorder}; display: flex; width: 100%; align-items: center; background-color: ${Constants.system.foreground}; `; export class Table extends React.Component { render() { const { data } = this.props; const ac = {}; if (!data || !data.rows || data.rows.length === 0) { return

No data.

; } for (let x = 0; x < data.columns.length; x++) { ac[data.columns[x].key] = { ...data.columns[x], index: x, }; } const width = TABLE_COLUMN_WIDTH_DEFAULTS[data.columns.length]; return (
{this.props.noLabel ? null : (
{data.columns.map((c, cIndex) => { let localWidth = c.width ? c.width : width; let flexShrink = c.width && c.width !== "100%" ? "0" : null; if (cIndex === 0 && !c.width) { localWidth = "100%"; } return (
{c.name || ""}
); })}
)} {data.rows.map((r, i) => { return (
this.props.onMouseEnter(i)} > {Object.keys(ac).map((each, cIndex) => { const field = ac[each]; const content = r[each]; let localWidth = field.width ? field.width : width; let flexShrink = field.width && field.width !== "100%" ? "0" : null; if (cIndex === 0 && !field.width) { localWidth = "100%"; } return (
{content}
); })}
); })}
); } }