2020-09-18 06:40:10 +03:00
|
|
|
import * as React from "react";
|
|
|
|
import * as Constants from "~/common/constants";
|
|
|
|
|
2020-11-04 20:55:48 +03:00
|
|
|
import { css } from "@emotion/core";
|
2020-09-18 06:40:10 +03:00
|
|
|
import { P } from "~/components/system/components/Typography";
|
|
|
|
|
|
|
|
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`
|
2020-09-27 00:15:37 +03:00
|
|
|
border: 1px solid ${Constants.system.lightBorder};
|
2020-09-23 23:52:00 +03:00
|
|
|
box-shadow: 0 0 40px 0 ${Constants.system.shadow};
|
2020-09-18 06:40:10 +03:00
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_TABLE_ROW = css`
|
|
|
|
position: relative;
|
|
|
|
box-sizing: border-box;
|
2020-09-27 00:15:37 +03:00
|
|
|
border-bottom: 1px solid ${Constants.system.lightBorder};
|
2020-09-18 06:40:10 +03:00
|
|
|
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};
|
2020-09-27 00:15:37 +03:00
|
|
|
border-bottom: 1px solid ${Constants.system.lightBorder};
|
2020-09-18 06:40:10 +03:00
|
|
|
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 <P style={{ padding: 24 }}>No data.</P>;
|
|
|
|
}
|
|
|
|
|
|
|
|
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 (
|
|
|
|
<div css={STYLES_CONTAINER} onMouseLeave={this.props.onMouseLeave}>
|
|
|
|
{this.props.noLabel ? null : (
|
|
|
|
<div css={STYLES_TABLE_TOP_ROW} style={this.props.topRowStyle}>
|
|
|
|
{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 (
|
|
|
|
<div
|
|
|
|
key={`table-top-${c.key}-${cIndex}`}
|
|
|
|
style={{
|
|
|
|
width: localWidth,
|
|
|
|
flexShrink,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{c.name || ""}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{data.rows.map((r, i) => {
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
key={`${r.id}-${i}`}
|
|
|
|
css={STYLES_TABLE_ROW}
|
|
|
|
style={this.props.rowStyle}
|
|
|
|
onMouseEnter={() => 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;
|
2020-11-04 20:55:48 +03:00
|
|
|
let flexShrink = field.width && field.width !== "100%" ? "0" : null;
|
2020-09-18 06:40:10 +03:00
|
|
|
if (cIndex === 0 && !field.width) {
|
|
|
|
localWidth = "100%";
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
key={`${each}-${i}-${cIndex}`}
|
|
|
|
style={{
|
|
|
|
width: localWidth,
|
|
|
|
flexShrink,
|
2020-09-20 21:31:08 +03:00
|
|
|
...this.props.contentstyle,
|
2020-09-18 06:40:10 +03:00
|
|
|
}}
|
|
|
|
>
|
|
|
|
{content}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|