| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- import { Flex } from "reflexbox/styled-components";
- import React, { useEffect } from "react";
- import styled from "styled-components";
- import Router from "next/router";
- import decode from "jwt-decode";
- import cookie from "js-cookie";
- import AppWrapper from "../components/AppWrapper";
- import { Button } from "../components/Button";
- import { useStoreActions } from "../store";
- import { TokenPayload } from "../types";
- import { NextPage } from "next";
- import { Col } from "../components/Layout";
- interface Props {
- token?: string;
- }
- const MessageWrapper = styled(Flex).attrs({
- justifyContent: "center",
- alignItems: "center",
- my: 32
- })``;
- const Message = styled.p`
- font-size: 24px;
- font-weight: 300;
- @media only screen and (max-width: 768px) {
- font-size: 18px;
- }
- `;
- const Icon = styled.img`
- width: 32px;
- height: 32px;
- margin-right: 16px;
- @media only screen and (max-width: 768px) {
- width: 26px;
- height: 26px;
- margin-right: 8px;
- }
- `;
- const Verify: NextPage<Props> = ({ token }) => {
- const addAuth = useStoreActions(s => s.auth.add);
- useEffect(() => {
- if (token) {
- cookie.set("token", token, { expires: 7 });
- const payload: TokenPayload = decode(token);
- addAuth(payload);
- }
- }, []);
- const goToHomepage = e => {
- e.preventDefault();
- Router.push("/");
- };
- return (
- <AppWrapper>
- {token ? (
- <Col alignItems="center">
- <MessageWrapper>
- <Icon src="/images/check.svg" />
- <Message>Your account has been verified successfully!</Message>
- </MessageWrapper>
- <Button icon="arrow-left" onClick={goToHomepage}>
- Back to homepage
- </Button>
- </Col>
- ) : (
- <MessageWrapper>
- <Icon src="/images/x.svg" />
- <Message>Invalid verification.</Message>
- </MessageWrapper>
- )}
- </AppWrapper>
- );
- };
- Verify.getInitialProps = async ({ req }) => {
- return { token: req && (req as any).token }; // TODO: types bro
- };
- export default Verify;
|