blob: be2163909d8b5ea55019e6a72f6505cff4ab2a6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
import React, { Component } from 'react';
import { Mutation } from 'react-apollo';
import gql from 'graphql-tag';
import Form from './styles/Form';
import Error from './ErrorMessage';
const REQUEST_RESET_MUTATION = gql`
mutation REQUEST_RESET_MUTATION($email: String!) {
requestReset(email: $email) {
message
}
}
`;
class RequestReset extends Component {
state = {
email: '',
};
saveToState = e => {
this.setState({ [e.target.name]: e.target.value });
};
render() {
return (
<Mutation mutation={REQUEST_RESET_MUTATION} variables={this.state}>
{(reset, { error, loading, called }) => (
<Form
method="post"
data-test="form"
onSubmit={async e => {
e.preventDefault();
await reset();
this.setState({ email: '' });
}}
>
<fieldset disabled={loading} aria-busy={loading}>
<h2>Request a password reset</h2>
<Error error={error} />
{!error && !loading && called && <p>Success! Check your email for a reset link!</p>}
<label htmlFor="email">
Email
<input
type="email"
name="email"
placeholder="email"
value={this.state.email}
onChange={this.saveToState}
/>
</label>
<button type="submit">Request Reset!</button>
</fieldset>
</Form>
)}
</Mutation>
);
}
}
export default RequestReset;
export { REQUEST_RESET_MUTATION };
|