92 lines
2.7 KiB
React
92 lines
2.7 KiB
React
|
/*
|
||
|
Copyright 2021 New Vector Ltd
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
*/
|
||
|
|
||
|
import React, { useState, useRef, useCallback } from "react";
|
||
|
import styles from "./GuestAuthPage.module.css";
|
||
|
import { useLocation, useHistory, Link } from "react-router-dom";
|
||
|
import { Header, LeftNav } from "./Header";
|
||
|
import { Button, FieldRow, InputField, ErrorMessage } from "./Input";
|
||
|
import { Center, Content, Info, Modal } from "./Layout";
|
||
|
|
||
|
export function GuestAuthPage({ onLoginAsGuest }) {
|
||
|
const displayNameRef = useRef();
|
||
|
const history = useHistory();
|
||
|
const location = useLocation();
|
||
|
const [error, setError] = useState();
|
||
|
|
||
|
const onSubmitLoginForm = useCallback(
|
||
|
(e) => {
|
||
|
e.preventDefault();
|
||
|
onLoginAsGuest(displayNameRef.current.value).catch(setError);
|
||
|
},
|
||
|
[onLoginAsGuest, location, history]
|
||
|
);
|
||
|
|
||
|
return (
|
||
|
<div className={styles.guestAuthPage}>
|
||
|
<Header>
|
||
|
<LeftNav />
|
||
|
</Header>
|
||
|
<Content>
|
||
|
<Center>
|
||
|
<Modal>
|
||
|
<h2>Login As Guest</h2>
|
||
|
<form onSubmit={onSubmitLoginForm}>
|
||
|
<FieldRow>
|
||
|
<InputField
|
||
|
type="text"
|
||
|
ref={displayNameRef}
|
||
|
placeholder="Display Name"
|
||
|
label="Display Name"
|
||
|
autoCorrect="off"
|
||
|
autoCapitalize="none"
|
||
|
/>
|
||
|
</FieldRow>
|
||
|
{error && (
|
||
|
<FieldRow>
|
||
|
<ErrorMessage>{error.message}</ErrorMessage>
|
||
|
</FieldRow>
|
||
|
)}
|
||
|
<FieldRow rightAlign>
|
||
|
<Button type="submit">Login as guest</Button>
|
||
|
</FieldRow>
|
||
|
</form>
|
||
|
<Info>
|
||
|
<Link
|
||
|
to={{
|
||
|
pathname: "/login",
|
||
|
state: location.state,
|
||
|
}}
|
||
|
>
|
||
|
Sign in
|
||
|
</Link>
|
||
|
{" or "}
|
||
|
<Link
|
||
|
to={{
|
||
|
pathname: "/register",
|
||
|
state: location.state,
|
||
|
}}
|
||
|
>
|
||
|
Create account
|
||
|
</Link>
|
||
|
</Info>
|
||
|
</Modal>
|
||
|
</Center>
|
||
|
</Content>
|
||
|
</div>
|
||
|
);
|
||
|
}
|