-
Notifications
You must be signed in to change notification settings - Fork 6
/
hooks.tsx
44 lines (38 loc) · 1.03 KB
/
hooks.tsx
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
import React, { useCallback, useState } from 'react';
import {
useTellerConnect,
TellerConnectOnSuccess,
TellerConnectOnEvent,
TellerConnectOnExit,
TellerConnectOptions,
} from 'teller-connect-react';
const TellerConnect = () => {
const applicationId = 'your_app_id';
const onSuccess = useCallback<TellerConnectOnSuccess>((authorization) => {
// send public_token to your server
// https://teller.io/docs/api/tokens/#token-exchange-flow
console.log(authorization);
}, []);
const onEvent = useCallback<TellerConnectOnEvent>((name, data) => {
console.log(name, data);
}, []);
const onExit = useCallback<TellerConnectOnExit>(() => {
console.log("TellerConnect was dismissed by user");
}, []);
const config: TellerConnectOptions = {
applicationId,
onSuccess,
onEvent,
onExit,
};
const {
open,
ready,
} = useTellerConnect(config);
return (
<button onClick={() => open()} disabled={!ready}>
Connect a bank account
</button>
);
};
export default TellerConnect;