blob: 6b356d14a7df78b704ef3316fe75867861d73cc0 (
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
|
import { Typography } from '@mui/material';
import makeStyles from '@mui/styles/makeStyles';
import Author from 'src/components/Author';
import Date from 'src/components/Date';
import Label from 'src/components/Label';
import { LabelChangeFragment } from './LabelChangeFragment.generated';
const useStyles = makeStyles((theme) => ({
main: {
color: theme.palette.text.secondary,
marginLeft: theme.spacing(1) + 40,
},
author: {
fontWeight: 'bold',
color: theme.palette.text.secondary,
},
label: {
maxWidth: '50ch',
marginLeft: theme.spacing(0.25),
marginRight: theme.spacing(0.25),
},
}));
type Props = {
op: LabelChangeFragment;
};
function LabelChange({ op }: Props) {
const { added, removed } = op;
const classes = useStyles();
return (
<Typography className={classes.main}>
<Author author={op.author} className={classes.author} />
{added.length > 0 && <span> added the </span>}
{added.map((label, index) => (
<Label key={index} label={label} className={classes.label} />
))}
{added.length > 0 && removed.length > 0 && <span> and</span>}
{removed.length > 0 && <span> removed the </span>}
{removed.map((label, index) => (
<Label key={index} label={label} className={classes.label} />
))}
<span>
{' '}
label
{added.length + removed.length > 1 && 's'}{' '}
</span>
<Date date={op.date} />
</Typography>
);
}
export default LabelChange;
|