aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/table/ValueRenderer.tsx
blob: ac5700e422c9e1373dc80d26cc7f2d47b67c01cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */

import CancelIcon from '@mui/icons-material/Cancel';
import LabelIcon from '@mui/icons-material/Label';
import LabelOutlinedIcon from '@mui/icons-material/LabelOutlined';
import { styled } from '@mui/material/styles';

const Label = styled('div', {
  name: 'ValueRenderer-Label',
  shouldForwardProp: (prop) => prop !== 'value',
})<{
  value: 'TRUE' | 'UNKNOWN' | 'ERROR';
}>(({ theme, value }) => ({
  display: 'flex',
  alignItems: 'center',
  ...(value === 'UNKNOWN'
    ? {
        color: theme.palette.text.secondary,
      }
    : {}),
  ...(value === 'ERROR'
    ? {
        color: theme.palette.error.main,
      }
    : {}),
  '& svg': {
    marginRight: theme.spacing(0.5),
  },
}));

export default function ValueRenderer({
  value,
}: {
  value: string | undefined;
}): React.ReactNode {
  switch (value) {
    case 'TRUE':
      return (
        <Label value={value}>
          <LabelIcon fontSize="small" /> true
        </Label>
      );
    case 'UNKNOWN':
      return (
        <Label value={value}>
          <LabelOutlinedIcon fontSize="small" /> unknown
        </Label>
      );
    case 'ERROR':
      return (
        <Label value={value}>
          <CancelIcon fontSize="small" /> error
        </Label>
      );
    default:
      return value;
  }
}