mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
54e152b11b
Changes * Update dependencies. * Remove sending client prop to component on pages. * Use withApollo correctly on components. * Use `client.cache.reset()` instead of `prop.client.resetStore()`. @adamsoffer @timneutkens
63 lines
1.9 KiB
JavaScript
63 lines
1.9 KiB
JavaScript
import { Mutation, withApollo } from 'react-apollo'
|
|
import gql from 'graphql-tag'
|
|
import cookie from 'cookie'
|
|
import redirect from '../lib/redirect'
|
|
|
|
const CREATE_USER = gql`
|
|
mutation Create($name: String!, $email: String!, $password: String!) {
|
|
createUser(name: $name, authProvider: { email: { email: $email, password: $password }}) {
|
|
id
|
|
}
|
|
signinUser(email: { email: $email, password: $password }) {
|
|
token
|
|
}
|
|
}
|
|
`
|
|
|
|
const RegisterBox = ({ client }) => {
|
|
let name, email, password
|
|
|
|
return (
|
|
<Mutation mutation={CREATE_USER} onCompleted={(data) => {
|
|
// Store the token in cookie
|
|
document.cookie = cookie.serialize('token', data.signinUser.token, {
|
|
maxAge: 30 * 24 * 60 * 60 // 30 days
|
|
})
|
|
// Force a reload of all the current queries now that the user is
|
|
// logged in
|
|
client.cache.reset().then(() => {
|
|
redirect({}, '/')
|
|
})
|
|
}} onError={(error) => {
|
|
// If you want to send error to external service?
|
|
console.log(error)
|
|
}}>
|
|
{(create, { data, error }) => (
|
|
<form onSubmit={e => {
|
|
e.preventDefault()
|
|
e.stopPropagation()
|
|
|
|
create({
|
|
variables: {
|
|
name: name.value,
|
|
email: email.value,
|
|
password: password.value
|
|
}
|
|
})
|
|
|
|
name.value = email.value = password.value = ''
|
|
}}>
|
|
{error && <p>Issue occured while registering :(</p>}
|
|
<input name='name' placeholder='Name' ref={node => { name = node }} /><br />
|
|
<input name='email' placeholder='Email' ref={node => { email = node }} /><br />
|
|
<input name='password' placeholder='Password' ref={node => { password = node }} type='password' /><br />
|
|
<button>Register</button>
|
|
</form>
|
|
)}
|
|
|
|
</Mutation>
|
|
)
|
|
}
|
|
|
|
export default withApollo(RegisterBox)
|