mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-14 11:15:02 -05:00
96 lines
2.6 KiB
TypeScript
96 lines
2.6 KiB
TypeScript
import axios from "axios";
|
|
import localforage from "localforage";
|
|
import * as stackTrace from "stacktrace-js";
|
|
import styled from "styled-components/macro";
|
|
|
|
import { useEffect, useErrorBoundary, useState } from "preact/hooks";
|
|
|
|
import { GIT_REVISION } from "../revision";
|
|
import { Children } from "../types/Preact";
|
|
|
|
const CrashContainer = styled.div`
|
|
height: 100%;
|
|
padding: 12px;
|
|
|
|
background: black;
|
|
color: white;
|
|
|
|
h3 {
|
|
margin: 0;
|
|
margin-bottom: 12px;
|
|
}
|
|
`;
|
|
|
|
interface Props {
|
|
children: Children;
|
|
section: "client" | "renderer";
|
|
}
|
|
|
|
const ERROR_URL = "https://reporting.revolt.chat";
|
|
|
|
export function reportError(error: Error, section: string) {
|
|
stackTrace.fromError(error).then((stackframes) =>
|
|
axios.post(ERROR_URL, {
|
|
stackframes,
|
|
rawStackTrace: error.stack,
|
|
origin: window.origin,
|
|
commitSHA: GIT_REVISION,
|
|
userAgent: navigator.userAgent,
|
|
section,
|
|
}),
|
|
);
|
|
}
|
|
|
|
export default function ErrorBoundary({ children, section }: Props) {
|
|
const [error, ignoreError] = useErrorBoundary();
|
|
const [confirm, setConfirm] = useState(false);
|
|
|
|
async function reset() {
|
|
if (confirm) {
|
|
await localforage.clear();
|
|
location.reload();
|
|
} else {
|
|
setConfirm(true);
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (error) {
|
|
reportError(error, section);
|
|
}
|
|
}, [error]);
|
|
|
|
if (error) {
|
|
return (
|
|
<CrashContainer>
|
|
{section === "client" ? (
|
|
<>
|
|
<h3>Client Crash Report</h3>
|
|
<button onClick={ignoreError}>
|
|
Ignore error and try to reload app
|
|
</button>
|
|
<button onClick={reset}>
|
|
{confirm ? "Are you sure?" : "Reset all app data"}
|
|
</button>
|
|
<button onClick={() => location.reload()}>
|
|
Refresh page
|
|
</button>
|
|
</>
|
|
) : (
|
|
<>
|
|
<h3>Component Error</h3>
|
|
<button onClick={ignoreError}>
|
|
Ignore error and try render again
|
|
</button>
|
|
</>
|
|
)}
|
|
<pre>
|
|
<code>{error?.stack}</code>
|
|
</pre>
|
|
<div>This error has been automatically reported.</div>
|
|
</CrashContainer>
|
|
);
|
|
}
|
|
|
|
return <>{children}</>;
|
|
}
|