forked from basetool-io/basetool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathErrorWrapper.tsx
52 lines (48 loc) · 1.54 KB
/
ErrorWrapper.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
45
46
47
48
49
50
51
52
import { FetchBaseQueryError } from "@reduxjs/toolkit/dist/query";
import { IApiResponse } from "@/features/api/ApiResponse";
import { SerializedError } from "@reduxjs/toolkit";
// import { useIntercom } from "react-use-intercom";
import PageWrapper from "./PageWrapper";
import React, { memo, useMemo } from "react";
function ErrorWrapper({
error,
}: {
error: FetchBaseQueryError | SerializedError;
}) {
// const { boot, show } = useIntercom();
const errorData = useMemo(
() => ("data" in error ? (error?.data as IApiResponse) : undefined),
[error]
);
// useEffect(() => {
// try {
// boot();
// } catch (error) {}
// show();
// }, []);
return (
<PageWrapper heading="An error has occured.">
<div className="flex-1 flex flex-col justify-between">
<div className="space-y-4">
<div>
<div className="font-bold text-sm uppercase">Error message:</div>
{errorData?.messages && errorData?.messages?.join(" ")}
{"message" in error && error?.message && error?.message}
</div>
{errorData?.meta?.links && (
<div>
<div className="font-bold text-sm uppercase">Helpful links:</div>
<div>
{errorData?.meta?.links.map((link: string, idx: number) => (
<a href={link} key={idx}>{link}</a>
))}
</div>
</div>
)}
</div>
{/* <div>Link to docs</div> */}
</div>
</PageWrapper>
);
}
export default memo(ErrorWrapper);