-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhook.js
58 lines (48 loc) · 1.28 KB
/
hook.js
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
import { useConnect } from '@arcadia-eng/connect-react';
const config = {
connectToken: 'this_is_a_super_secret_token',
// Optional - for "create" mode you can pre-fill out a zip code
newCredentialData: {
zipCode: '11787',
},
};
const CreateCredentials = props => {
onCredentialsSubmitted = ({ utilityCredentialId }) => {
// Optional - save credential id for future use
};
onOpen = () => {
// optional - handle widget open here
};
onClose = ({ status }) => {
// optional - handle widget close here with the given statuses
// Statuses are 'verified', 'rejected', 'timed_out', 'pending', 'no_submit', 'error'
switch (status) {
case 'verified':
// Move on
return;
case 'rejected':
// Handle rejection
// ...etc
return;
}
};
const callbacks = { onCredentialsSubmitted, onOpen, onClose };
const configWithCallbacks = {
...config,
callbacks,
};
const [{ loading, error }, open] = useConnect();
if (error) {
return <div>Failed to load credential widget: {error.message}</div>;
}
return (
<button
type="button"
disabled={loading}
onClick={() => open(configWithCallbacks)}
>
Connect credentials
</button>
);
};
export default CreateCredentials;