x25 19.1.1 → 19.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -11,6 +11,7 @@ type ErrorBoundaryState = {
|
|
|
11
11
|
};
|
|
12
12
|
import React from "react";
|
|
13
13
|
import type { ErrorType, InfoType } from "./types";
|
|
14
|
+
export declare const setOnCaptureError: (cb: (error: any) => void) => void;
|
|
14
15
|
declare class ErrorBoundary extends React.Component<ErrorBoundaryProps, ErrorBoundaryState> {
|
|
15
16
|
handleKey: (event: KeyboardEvent) => void;
|
|
16
17
|
refresh: () => void;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { words } from "../index.js";
|
|
3
3
|
import TheError from "./TheError.js";
|
|
4
|
+
let onCaptureError = null;
|
|
5
|
+
export const setOnCaptureError = (cb) => {
|
|
6
|
+
onCaptureError = cb;
|
|
7
|
+
};
|
|
4
8
|
const refreshKeyCode = 82, timeoutDelay = 200;
|
|
5
9
|
class ErrorBoundary extends React.Component {
|
|
6
10
|
componentDidCatch(error, info) {
|
|
@@ -8,6 +12,9 @@ class ErrorBoundary extends React.Component {
|
|
|
8
12
|
error,
|
|
9
13
|
info,
|
|
10
14
|
});
|
|
15
|
+
if (onCaptureError) {
|
|
16
|
+
onCaptureError(error);
|
|
17
|
+
}
|
|
11
18
|
}
|
|
12
19
|
constructor(props) {
|
|
13
20
|
super(props);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ErrorBoundary.js","sourceRoot":"","sources":["../../../src/utility/dev/ErrorBoundary.tsx"],"names":[],"mappings":"AAaA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,KAAK,EAAE,MAAM,IAAI,CAAC;AAC3B,OAAO,QAAQ,MAAM,YAAY,CAAC;AAGlC,MAAM,cAAc,GAAG,EAAE,EACvB,YAAY,GAAG,GAAG,CAAC;AAErB,MAAM,aAAc,SAAQ,KAAK,CAAC,SAAiD;IAIjF,iBAAiB,CAAE,KAAgB,EAAE,IAAc;QACjD,IAAI,CAAC,QAAQ,CAAC;YACZ,KAAK;YACL,IAAI;SACL,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"ErrorBoundary.js","sourceRoot":"","sources":["../../../src/utility/dev/ErrorBoundary.tsx"],"names":[],"mappings":"AAaA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,KAAK,EAAE,MAAM,IAAI,CAAC;AAC3B,OAAO,QAAQ,MAAM,YAAY,CAAC;AAGlC,IAAI,cAAc,GAAkC,IAAI,CAAC;AAEzD,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,EAAwB,EAAE,EAAE;IAC5D,cAAc,GAAG,EAAE,CAAC;AACtB,CAAC,CAAC;AAEF,MAAM,cAAc,GAAG,EAAE,EACvB,YAAY,GAAG,GAAG,CAAC;AAErB,MAAM,aAAc,SAAQ,KAAK,CAAC,SAAiD;IAIjF,iBAAiB,CAAE,KAAgB,EAAE,IAAc;QACjD,IAAI,CAAC,QAAQ,CAAC;YACZ,KAAK;YACL,IAAI;SACL,CAAC,CAAC;QAEH,IAAI,cAAc,EAAE,CAAC;YACnB,cAAc,CAAC,KAAK,CAAC,CAAC;QACxB,CAAC;IACH,CAAC;IAED,YAAa,KAAyB;QACpC,KAAK,CAAC,KAAK,CAAC,CAAC;QACb,IAAI,CAAC,KAAK,GAAG;YACX,MAAM,EAAG,IAAI;YACb,KAAK,EAAI,IAAI;YACb,IAAI,EAAK,IAAI;SACd,CAAC;QAEF,IAAI,CAAC,SAAS,GAAG,CAAC,KAAoB,EAAE,EAAE;YACxC,IAAI,KAAK,CAAC,OAAO,KAAK,cAAc,EAAE,CAAC;gBACrC,IAAI,CAAC,OAAO,EAAE,CAAC;YACjB,CAAC;QACH,CAAC,CAAC;QAEF,IAAI,CAAC,OAAO,GAAG,GAAG,EAAE;YAClB,IAAI,CAAC,QAAQ,CAAC;gBACZ,MAAM,EAAG,KAAK,CAAC,eAAe;gBAC9B,KAAK,EAAI,IAAI;gBACb,IAAI,EAAK,IAAI;aACd,EAAE,GAAG,EAAE;gBACN,UAAU,CAAC,GAAG,EAAE;oBACd,IAAI,CAAC,QAAQ,CAAC;wBACZ,MAAM,EAAG,IAAI;wBACb,KAAK,EAAI,IAAI;wBACb,IAAI,EAAK,IAAI;qBACd,CAAC,CAAC;gBACL,CAAC,EAAE,YAAY,CAAC,CAAC;YACnB,CAAC,CAAC,CAAC;QACL,CAAC,CAAC;IACJ,CAAC;IAED,MAAM;QACJ,MAAM,EACJ,IAAI,EACJ,KAAK,EACL,MAAM,GACP,GAAG,IAAI,CAAC,KAAK,CAAC;QAEf,qBAAqB;QACrB,IAAI,KAAK,EAAE,CAAC;YACV,OAAO,CACL,oBAAC,QAAQ,IACP,KAAK,EAAE,KAAK,EACZ,SAAS,EAAE,IAAI,CAAC,SAAS,EACzB,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,IAAI,CAAC,OAAO,EACrB,MAAM,EAAE,MAAM,GACd,CACH,CAAC;QACJ,CAAC;QAED,uDAAuD;QACvD,OAAO,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC;IAC7B,CAAC;CAEF;AAED,eAAe,aAAa,CAAC"}
|
package/utility/dev/TheError.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
|
|
2
|
+
import { words } from "../index.js";
|
|
3
|
+
const isDev = process.env.NODE_ENV === "development", TheError = (props) => {
|
|
3
4
|
React.useEffect(() => {
|
|
4
5
|
if (props.handleKey) {
|
|
5
6
|
document.addEventListener("keydown", props.handleKey);
|
|
@@ -11,23 +12,43 @@ const TheError = (props) => {
|
|
|
11
12
|
};
|
|
12
13
|
}, []);
|
|
13
14
|
const { error, info, status, refresh } = props;
|
|
14
|
-
|
|
15
|
+
if (status) {
|
|
16
|
+
return (React.createElement("div", { className: "small", tabIndex: 0 },
|
|
17
|
+
React.createElement("div", { className: "m-2" },
|
|
18
|
+
React.createElement("div", { className: "text-fancy" }, words.TryingToRecover))));
|
|
19
|
+
}
|
|
20
|
+
if (!isDev) {
|
|
21
|
+
return (React.createElement("div", { className: "container mt-5" },
|
|
22
|
+
React.createElement("div", { className: "row justify-content-center" },
|
|
23
|
+
React.createElement("div", { className: "col-lg-6" },
|
|
24
|
+
React.createElement("div", { className: "text-center" },
|
|
25
|
+
React.createElement("div", { className: "alert alert-warning" },
|
|
26
|
+
React.createElement("h5", { className: "mb-3" }, words.Sentry.TellUs.title),
|
|
27
|
+
React.createElement("p", null, words.Sentry.Message),
|
|
28
|
+
React.createElement("p", { className: "small text-muted mb-3" },
|
|
29
|
+
words.Sentry.Hint,
|
|
30
|
+
" ",
|
|
31
|
+
React.createElement("kbd", null, "F5")),
|
|
32
|
+
React.createElement("button", { className: "btn btn-primary", onClick: () => window.location.reload(), type: "button" }, words.UpdateButton)))))));
|
|
33
|
+
}
|
|
34
|
+
// Development mode - show full technical details
|
|
15
35
|
return (React.createElement("div", { className: "small", tabIndex: 0 },
|
|
16
|
-
React.createElement("div", { className: " m-2" },
|
|
17
|
-
React.createElement("
|
|
18
|
-
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
React.createElement(
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
React.createElement(
|
|
30
|
-
|
|
36
|
+
React.createElement("div", { className: " m-2" },
|
|
37
|
+
React.createElement("div", null,
|
|
38
|
+
React.createElement("button", { className: "btn btn-block btn-sm btn-primary", onClick: refresh, type: "button" }, "Recover the app"),
|
|
39
|
+
React.createElement("div", { className: "mt-2 mb-2" },
|
|
40
|
+
"Press ",
|
|
41
|
+
React.createElement("kbd", null, "R"),
|
|
42
|
+
" to recover the app, after you've done the changes"),
|
|
43
|
+
React.createElement("hr", null),
|
|
44
|
+
error ? (React.createElement(React.Fragment, null,
|
|
45
|
+
React.createElement("h5", { className: "text-danger" }, error.message),
|
|
46
|
+
React.createElement("b", null, "Stack:"),
|
|
47
|
+
React.createElement("pre", null, error.stack ? (error.stack.split("↵").map((line, index) => (React.createElement("div", { key: index }, line)))) : null))) : null,
|
|
48
|
+
React.createElement("br", null),
|
|
49
|
+
info && info.componentStack ? (React.createElement(React.Fragment, null,
|
|
50
|
+
React.createElement("b", null, "React info:"),
|
|
51
|
+
React.createElement("pre", null, info.componentStack.split("↵").map((line, index) => React.createElement("div", { key: index }, line))))) : null))));
|
|
31
52
|
};
|
|
32
53
|
export default TheError;
|
|
33
54
|
//# sourceMappingURL=TheError.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TheError.js","sourceRoot":"","sources":["../../../src/utility/dev/TheError.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"TheError.js","sourceRoot":"","sources":["../../../src/utility/dev/TheError.tsx"],"names":[],"mappings":"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"}
|