forked from codatio/demo-bill-pay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection-successful.js
50 lines (44 loc) · 1.3 KB
/
connection-successful.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
import React, { useState, useEffect } from "react";
import Box from "@mui/material/Box";
import { boxStyling } from "../styles/ConnectionSuccessful.styling";
import { ConnectionSuccessfulBox } from "../components/ConnectionSuccessfulBox/ConnectionSuccessfulBox";
import { Footer } from "../components/Footer/Footer";
import Head from "next/head";
import axios from "axios";
import useSWR from "swr";
const fetcherWithId = async (url, companyId) =>
await axios
.get(url, {
params: {
id: companyId,
},
})
.then((res) => {
return res.data;
});
export default function ConnectionSuccessful() {
const [companyId, setValue] = useState("");
useEffect(() => {
setValue(window.sessionStorage.getItem("companyId"));
}, [setValue]);
const { data: connectionData, error: errorConnection } = useSWR(
companyId ? ["/api/connections", companyId] : null,
fetcherWithId
);
if (connectionData) {
sessionStorage.setItem("connectionId", connectionData[0].id);
}
return (
<>
<Head>
<title>Connection Successful</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<Box sx={boxStyling}>
<style>{"body { background-color: #f7f8ff; }"}</style>
<ConnectionSuccessfulBox />
</Box>
<Footer />
</>
);
}