-
Notifications
You must be signed in to change notification settings - Fork 2
/
oauth.vue
74 lines (64 loc) · 1.84 KB
/
oauth.vue
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<template>
<button v-if="!isOAuthRedirect" @click="open">
Connect a bank account
</button>
</template>
<script lang="ts" setup>
import { computed, onMounted, ref, watch } from 'vue';
import { useFetch } from '@vueuse/core';
import type { PlaidLinkOnEvent, PlaidLinkOnExit, PlaidLinkOnSuccess, PlaidLinkOptions } from '@jcss/vue-plaid-link';
import { usePlaidLink } from '@jcss/vue-plaid-link';
const token = ref<string | null>(null);
const isOAuthRedirect = window.location.href.includes('?oauth_state_id=');
const { data } = useFetch<{ link_token: string }>('/api/create_link_token', { method: 'POST' });
watch(data, (newData) => {
if (!newData) {
return;
}
const { link_token } = newData;
token.value = link_token;
localStorage.setItem('link_token', link_token);
});
const onSuccess: PlaidLinkOnSuccess = (publicToken, metadata) => {
// send public_token to your server
// https://plaid.com/docs/api/tokens/#token-exchange-flow
console.log(publicToken, metadata);
};
const onEvent: PlaidLinkOnEvent = (eventName, metadata) => {
// log onEvent callbacks from Link
// https://plaid.com/docs/link/web/#onevent
console.log(eventName, metadata);
};
const onExit: PlaidLinkOnExit = (error, metadata) => {
// log onExit callbacks from Link, handle errors
// https://plaid.com/docs/link/web/#onexit
console.log(error, metadata);
};
const config = computed(() => {
const config: PlaidLinkOptions = {
token: token.value,
onSuccess,
onEvent,
onExit,
};
if (isOAuthRedirect) {
config.receivedRedirectUri = window.location.href;
}
return config;
});
const {
ready,
open,
// exit,
} = usePlaidLink(config);
watch(ready, (isReady) => {
if (isOAuthRedirect && isReady) {
open();
}
});
onMounted(() => {
if (isOAuthRedirect) {
token.value = window.localStorage.getItem('link_token');
}
});
</script>