Add UI for Spaceport auth
This commit is contained in:
parent
9a105908a3
commit
1cdb236a7e
BIN
webclient/public/wikilogo.png
Normal file
BIN
webclient/public/wikilogo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
|
@ -19,6 +19,7 @@ import { Courses, CourseDetail } from './Courses.js';
|
|||
import { Classes, ClassDetail } from './Classes.js';
|
||||
import { Members, MemberDetail } from './Members.js';
|
||||
import { Charts } from './Charts.js';
|
||||
import { Auth } from './Auth.js';
|
||||
import { PasswordReset, ConfirmReset } from './PasswordReset.js';
|
||||
import { NotFound, PleaseLogin } from './Misc.js';
|
||||
import { Footer } from './Footer.js';
|
||||
|
@ -216,6 +217,10 @@ function App() {
|
|||
<Charts />
|
||||
</Route>
|
||||
|
||||
<Route path='/auth'>
|
||||
<Auth user={user} />
|
||||
</Route>
|
||||
|
||||
{user && user.member.set_details ?
|
||||
<Switch>
|
||||
<Route path='/account'>
|
||||
|
|
132
webclient/src/Auth.js
Normal file
132
webclient/src/Auth.js
Normal file
|
@ -0,0 +1,132 @@
|
|||
import React, { useState, useEffect, useReducer } from 'react';
|
||||
import { BrowserRouter as Router, Switch, Route, Link, useParams, useLocation } from 'react-router-dom';
|
||||
import moment from 'moment-timezone';
|
||||
import './light.css';
|
||||
import { Container, Divider, Dropdown, Form, Grid, Header, Icon, Image, Menu, Message, Popup, Segment, Table } from 'semantic-ui-react';
|
||||
import { statusColor, BasicTable, staticUrl, requester, isAdmin } from './utils.js';
|
||||
|
||||
export function AuthForm(props) {
|
||||
const { user } = props;
|
||||
const username = user ? user.username : '';
|
||||
const [input, setInput] = useState({ username: username });
|
||||
const [error, setError] = useState({});
|
||||
const [success, setSuccess] = useState(false);
|
||||
const [loading, setLoading] = useState(false);
|
||||
|
||||
const handleValues = (e, v) => setInput({ ...input, [v.name]: v.value });
|
||||
const handleChange = (e) => handleValues(e, e.currentTarget);
|
||||
|
||||
const handleSubmit = (e) => {
|
||||
if (input.username.includes('@')) {
|
||||
setError({ username: 'Username, not email.' });
|
||||
} else {
|
||||
if (loading) return;
|
||||
setLoading(true);
|
||||
const data = { ...input, username: input.username.toLowerCase() };
|
||||
requester('/spaceport-auth/login/', 'POST', '', data)
|
||||
.then(res => {
|
||||
setSuccess(true);
|
||||
setError({});
|
||||
})
|
||||
.catch(err => {
|
||||
setLoading(false);
|
||||
console.log(err);
|
||||
setError(err.data);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
success ?
|
||||
props.children
|
||||
:
|
||||
<Form
|
||||
onSubmit={handleSubmit}
|
||||
warning={error.non_field_errors && error.non_field_errors[0] === 'Unable to log in with provided credentials.'}
|
||||
>
|
||||
<Header size='medium'>Log In to Spaceport</Header>
|
||||
|
||||
{user ?
|
||||
<><Form.Input
|
||||
label='Spaceport Username'
|
||||
name='username'
|
||||
value={user.username}
|
||||
onChange={handleChange}
|
||||
error={error.username}
|
||||
/>
|
||||
<Form.Input
|
||||
label='Spaceport Password'
|
||||
name='password'
|
||||
type='password'
|
||||
onChange={handleChange}
|
||||
error={error.password}
|
||||
autoFocus
|
||||
/></>
|
||||
:
|
||||
<><Form.Input
|
||||
label='Spaceport Username'
|
||||
name='username'
|
||||
placeholder='first.last'
|
||||
onChange={handleChange}
|
||||
error={error.username}
|
||||
autoFocus
|
||||
/>
|
||||
<Form.Input
|
||||
label='Spaceport Password'
|
||||
name='password'
|
||||
type='password'
|
||||
onChange={handleChange}
|
||||
error={error.password}
|
||||
/></>
|
||||
}
|
||||
|
||||
<Form.Button loading={loading} error={error.non_field_errors}>
|
||||
Authorize
|
||||
</Form.Button>
|
||||
|
||||
<Message warning>
|
||||
<Message.Header>Forgot your password?</Message.Header>
|
||||
<p><Link to='/password/reset/'>Click here</Link> to reset it.</p>
|
||||
</Message>
|
||||
</Form>
|
||||
);
|
||||
};
|
||||
|
||||
export function AuthWiki(props) {
|
||||
const { user } = props;
|
||||
|
||||
return (
|
||||
<Segment compact padded>
|
||||
<Header size='medium'>
|
||||
<Image src={'/wikilogo.png'} />
|
||||
Protospace Wiki
|
||||
</Header>
|
||||
|
||||
<p>would like to request Spaceport authentication.</p>
|
||||
|
||||
<p>URL: <a href='http://wiki.protospace.ca/Welcome_to_Protospace' target='_blank' rel='noopener noreferrer'>wiki.protospace.ca</a></p>
|
||||
|
||||
<AuthForm user={user}>
|
||||
<Header size='small'>Success!</Header>
|
||||
<p>You can now log into the wiki:</p>
|
||||
<p><a href='http://wiki.protospace.ca/index.php?title=Special:UserLogin&returnto=Welcome+to+Protospace' rel='noopener noreferrer'>Protospace Wiki</a></p>
|
||||
</AuthForm>
|
||||
</Segment>
|
||||
);
|
||||
}
|
||||
|
||||
export function Auth(props) {
|
||||
const { user } = props;
|
||||
|
||||
return (
|
||||
<Container>
|
||||
<Header size='large'>Spaceport Auth</Header>
|
||||
|
||||
<p>Use this page to link different applications to your Spaceport account.</p>
|
||||
|
||||
<Route path='/auth/wiki'>
|
||||
<AuthWiki user={user} />
|
||||
</Route>
|
||||
</Container>
|
||||
);
|
||||
}
|
Loading…
Reference in New Issue
Block a user