blob: 98bea928f3e4b1614a83eee9298da56261b9f61e (
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
|
import React from 'react';
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: {
...theme.typography.body2,
marginLeft: theme.spacing(1) + 40,
},
author: {
fontWeight: 'bold',
},
before: {
fontWeight: 'bold',
textDecoration: 'line-through',
},
after: {
fontWeight: 'bold',
},
}));
type Props = {
op: SetTitleFragment;
};
function SetTitle({ op }: Props) {
const classes = useStyles();
return (
<div 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>
<Date date={op.date} />
</div>
);
}
export default SetTitle;
|