aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/pages/bug/LabelChange.tsx
blob: 712c33fabdb2280baca87170027e0c054ff2edb2 (plain) (tree)
1
2
3
4
5
6
7
8
9
                          
 




                                                      
 
                                                                      
 
                                          
         
                              
                                      


                       
    




                                     
    
 




                                     
                                
                              

                                  
                                                              

                                                    
                                                                     



                                                                   
                                                                     





                                                       

                             
    
 
 
                           
import React from 'react';

import { makeStyles } from '@material-ui/core/styles';

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: {
    ...theme.typography.body2,
    marginLeft: theme.spacing(1) + 40,
  },
  author: {
    fontWeight: 'bold',
  },
  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 (
    <div 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} />
    </div>
  );
}

export default LabelChange;