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



                                                      
 
                                                                
 
                                          
         
                                        
                                      
    

                       
                                        





                                   

                       
    
 




                                  
                              
          
                                         
                                                              
                                           
                                                      
                       
                                                             
                             
                 
    
 
 
                        
import React from 'react';

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

import Author from 'src/components/Author';
import Date from 'src/components/Date';

import { SetTitleFragment } from './SetTitleFragment.generated';

const useStyles = makeStyles((theme) => ({
  main: {
    color: theme.palette.text.secondary,
    marginLeft: theme.spacing(1) + 40,
  },
  author: {
    fontWeight: 'bold',
    color: theme.palette.text.secondary,
  },
  before: {
    fontWeight: 'bold',
    textDecoration: 'line-through',
  },
  after: {
    fontWeight: 'bold',
  },
}));

type Props = {
  op: SetTitleFragment;
};

function SetTitle({ op }: Props) {
  const classes = useStyles();
  return (
    <Typography className={classes.main}>
      <Author author={op.author} className={classes.author} />
      <span> changed the title from </span>
      <span className={classes.before}>{op.was}</span>
      <span> to </span>
      <span className={classes.after}>{op.title}</span>&nbsp;
      <Date date={op.date} />
    </Typography>
  );
}

export default SetTitle;