aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/bug/LabelChange.tsx
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-02-13 00:05:04 +0100
committerGitHub <noreply@github.com>2020-02-13 00:05:04 +0100
commit0066f3d8c278558eeac70d3cd7ca21c360014346 (patch)
treeca40e95496b90837fb0e7a5ff4ac5b966ceba6ec /webui/src/bug/LabelChange.tsx
parent269036bdf25af8fefbca24b7455c4e0b7d1d72b5 (diff)
parentab09c03a1e55d5c2e35f332f0e5f6335c1670427 (diff)
downloadgit-bug-0066f3d8c278558eeac70d3cd7ca21c360014346.tar.gz
Merge pull request #323 from MichaelMure/webui/typescript
Webui/typescript
Diffstat (limited to 'webui/src/bug/LabelChange.tsx')
-rw-r--r--webui/src/bug/LabelChange.tsx49
1 files changed, 49 insertions, 0 deletions
diff --git a/webui/src/bug/LabelChange.tsx b/webui/src/bug/LabelChange.tsx
new file mode 100644
index 00000000..572579bd
--- /dev/null
+++ b/webui/src/bug/LabelChange.tsx
@@ -0,0 +1,49 @@
+import { makeStyles } from '@material-ui/core/styles';
+import React from 'react';
+
+import Author from '../Author';
+import Date from '../Date';
+import Label from '../Label';
+
+import { LabelChangeFragment } from './LabelChangeFragment.generated';
+
+const useStyles = makeStyles(theme => ({
+ main: {
+ ...theme.typography.body1,
+ marginLeft: theme.spacing(1) + 40,
+ },
+ author: {
+ fontWeight: 'bold',
+ },
+}));
+
+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} />
+ ))}
+ {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} />
+ ))}
+ <span>
+ {' '}
+ label
+ {added.length + removed.length > 1 && 's'}{' '}
+ </span>
+ <Date date={op.date} />
+ </div>
+ );
+}
+
+export default LabelChange;