aboutsummaryrefslogtreecommitdiff
path: root/src/containers/Home/Home.tsx
blob: 4fd2833b0d35b392464001642189d010d7b91e0c (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
import React from 'react';
import { useHistory } from 'react-router-dom';
import {
  Typography,
  Divider,
  Grid,
  Button,
  Link,
  useMediaQuery
} from '@material-ui/core/';
import { makeStyles, useTheme } from '@material-ui/core/styles';
import GitHubIcon from '@material-ui/icons/GitHub';
import { Rating } from '@material-ui/lab';
import { Feedback } from 'which-types';

import ReviewCard from '../../components/ReviewCard/ReviewCard';
import Image from '../../components/Image/Image';
import ReviewForm from './ReviewForm';
import { useAuth } from '../../hooks/useAuth';
import { useFeedback, usePatchNotes } from '../../hooks/APIClient';

const useStyles = makeStyles(theme => ({
  root: {
    overflow: 'hidden',
    padding: theme.spacing(0, 2)
  },
  logo: {
    width: theme.spacing(20),
    height: theme.spacing(20)
  },
  patchNotes: {
    whiteSpace: 'pre-wrap'
  },
  score: {
    fontWeight: 'bold'
  },
  signup: {
    marginLeft: theme.spacing(2)
  },
  reviews: {
    margin: 'auto',
    [theme.breakpoints.up('md')]: {
      width: '70%'
    }
  }
}));

const Home: React.FC = () => {
  const { data: feedbacks } = useFeedback();
  const { data: release } = usePatchNotes();
  const classes = useStyles();
  const history = useHistory();
  const { isAuthenticated, user } = useAuth();
  const theme = useTheme();
  const isMobile = useMediaQuery(theme.breakpoints.down('sm'));

  const rating = feedbacks?.length ? feedbacks.reduce(
    (acc: number, feedback: Feedback) => acc + feedback.score,
    0
  ) / feedbacks.length : 0;

  const handleLetsGo = () => {
    history.push('/feed');
  };

  const handleSignUp = () => {
    history.push('/registration');
  };

  const EmailLink = <Link href="mailto: eug-vs@keemail.me">eug-vs@keemail.me</Link>;

  const Reviews = (
    <div className={classes.reviews}>
      {feedbacks?.map((feedback: Feedback) => <ReviewCard feedback={feedback} />)}
    </div>
  );

  const FeedbackSection = feedbacks && feedbacks.findIndex(
    (feedback: Feedback) => (feedback.author._id === user?._id && feedback.version === release?.version)
  ) >= 0 ? (
    <p>
      You have already left feedback for this version.
      If you have more to say, please open GitHub issue or contact us directly via email: {EmailLink}.
      Alternatively, you can just wait for another application patch to come out.
    </p>
    ) : (
      <>
        <p>
          Here you can share your thougts about Which with us!
          Note that you can ony leave feedback once per application version (there will be plenty of them later).
        </p>
        {isAuthenticated ? <ReviewForm version={release?.version || 'N/A'} /> : (
          <>
            <p> You must be authorized to leave feedback.</p>
            <Button
              variant="outlined"
              color="primary"
              onClick={handleSignUp}
            >
              sign in
            </Button>
          </>
        )}
      </>
    );

  return (
    <div className={classes.root}>
      <Grid container spacing={4}>
        <Grid item xs={12} md={4}>
          <Grid container direction="column" spacing={1} alignItems="center">
            <Grid item>
              <Image src={`${process.env.PUBLIC_URL}/which-logo-512.png`} alt="logo" className={classes.logo} />
            </Grid>
            <Grid item>
              {rating !== 0 && <Rating value={rating} readOnly size="large" />}
            </Grid>
            <Grid item>
              {rating !== 0 && (
                <Typography variant="h5" className={classes.score}>
                  User score: {rating.toFixed(1)}
                </Typography>
              )}
            </Grid>
          </Grid>
          {isMobile || Reviews}
        </Grid>
        <Grid item xs={12} md={5}>
          <Grid container direction="column" spacing={6}>
            <Grid item>
              <Typography variant="h4"> Which one to choose? </Typography>
              <Divider />
              <Typography>
                <p>
                  Have you ever found yourself stuck between two options, not being able to choose any?
                  This is exactly the problem we are going to solve!
                </p>
                <p>Share your minor everyday uncertainties with the whole world and see what others think!</p>
                <Button variant="contained" color="primary" size="large" onClick={handleLetsGo}>
                  {'let\'s go!'}
                </Button>
                {!isAuthenticated && (
                  <Button
                    variant="outlined"
                    color="primary"
                    size="large"
                    className={classes.signup}
                    onClick={handleSignUp}
                  >
                    sign up
                  </Button>
                )}
              </Typography>
            </Grid>
            {release && (
              <Grid item>
                <Typography variant="h4">{`What's new in ${release?.version}?`}</Typography>
                <Divider />
                <Typography className={classes.patchNotes}>
                  <p>{release?.description}</p>
                </Typography>
                <Button
                  variant="outlined"
                  color="primary"
                  startIcon={<GitHubIcon />}
                  href={release?.url}
                >
                  Learn more
                </Button>
              </Grid>
            )}
            <Grid item>
              <Typography variant="h4"> Leave feedback </Typography>
              <Divider />
              <Typography>
                {FeedbackSection}
              </Typography>
            </Grid>
            {isMobile && (
              <Grid item>
                {Reviews}
              </Grid>
            )}
          </Grid>
        </Grid>
      </Grid>
    </div>
  );
};

export default Home;