aboutsummaryrefslogtreecommitdiff
path: root/src/components/ReviewCard/ReviewCard.tsx
blob: 9c3dd20fa972919dfff7f502d9e25962756b73d2 (plain)
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
import React from 'react';
import { makeStyles } from '@material-ui/core/styles';
import {
  Card,
  CardContent,
  Typography,
  Divider
} from '@material-ui/core/';
import { Rating } from '@material-ui/lab'
import { Feedback } from 'which-types';

import UserStrip from '../UserStrip/UserStrip';

interface PropTypes {
  feedback: Feedback;
}

const useStyles = makeStyles(theme => ({
  root: {
    margin: theme.spacing(4, 0, 1, 0)
  }
}));

const ReviewCard: React.FC<PropTypes> = ({ feedback }) => {
  const classes = useStyles();

  return (
    <Card className={classes.root} elevation={2}>
      <UserStrip
        user={feedback.author}
        info={<Rating value={feedback.score} readOnly size="small" />}
      />
      <Divider />
      <CardContent>
        <Typography>
          {feedback.contents}
        </Typography>
      </CardContent>
    </Card>
  );
};

export default ReviewCard;