rsnext/examples/with-apollo-auth/pages/signin.js
2018-05-18 10:55:12 +02:00

32 lines
798 B
JavaScript

import React from 'react'
import Link from 'next/link'
import redirect from '../lib/redirect'
import checkLoggedIn from '../lib/checkLoggedIn'
import SigninBox from '../components/SigninBox'
export default class Signin extends React.Component {
static async getInitialProps (context) {
const { loggedInUser } = await checkLoggedIn(context.apolloClient)
if (loggedInUser.user) {
// Already signed in? No need to continue.
// Throw them back to the main page
redirect(context, '/')
}
return {}
}
render () {
return (
<div>
{/* SigninBox handles all login logic. */}
<SigninBox client={this.props.client} />
<hr />
New? <Link prefetch href='/create-account'><a>Create account</a></Link>
</div>
)
}
};