x25 18.0.1 → 18.2.0
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/Async/index.d.ts +2 -3
- package/Async/index.js +41 -51
- package/Async/index.js.map +1 -1
- package/UI/Things.js +3 -12
- package/UI/Things.js.map +1 -1
- package/actions.d.ts +1 -2
- package/actions.js +13 -6
- package/actions.js.map +1 -1
- package/config.d.ts +1 -1
- package/config.js +1 -1
- package/config.js.map +1 -1
- package/package.json +3 -4
package/Async/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
/// <reference types="@docusaurus/react-loadable" />
|
|
2
1
|
import * as React from "react";
|
|
3
|
-
import
|
|
2
|
+
import type { Loaded } from "./types";
|
|
4
3
|
export declare let ErrorBoundary: ({ children }: any) => any;
|
|
5
4
|
export declare let AppLogo: any;
|
|
6
|
-
export declare const setErrorBoundary: (theError: any) => void, setAppLogo: (theLogo: any) => void, createAsyncRoute: (loader:
|
|
5
|
+
export declare const setErrorBoundary: (theError: any) => void, setAppLogo: (theLogo: any) => void, createAsyncRoute: (loader: () => Promise<Loaded>) => (props: any) => React.JSX.Element;
|
package/Async/index.js
CHANGED
|
@@ -1,61 +1,51 @@
|
|
|
1
1
|
/* eslint-disable new-cap, react/prefer-stateless-function, react/require-optimization */
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import
|
|
3
|
+
import { LoadingMessage } from "../Messages/Loading.js";
|
|
4
|
+
import { UpdateApplicationMessage } from "../Messages/Update.js";
|
|
5
|
+
import { words } from "../utility/index.js";
|
|
6
|
+
import TheError from "../utility/dev/TheError.js";
|
|
4
7
|
import InitModule from "./InitModule.js";
|
|
5
|
-
import
|
|
6
|
-
// type injectPaginatorTypes = {
|
|
7
|
-
// key: string,
|
|
8
|
-
// itemsReducer: any;
|
|
9
|
-
// pagesReducer: any;
|
|
10
|
-
// };
|
|
11
|
-
// import { injectReducer } from "redux-injector";
|
|
12
|
-
// import { injectModals } from "../Modal/util.js";
|
|
13
|
-
const timeout = 15000;
|
|
8
|
+
import SimulatedException from "./SimulatedException.js";
|
|
14
9
|
export let ErrorBoundary = ({ children }) => (children);
|
|
15
10
|
export let AppLogo = null;
|
|
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
|
-
// for (const paginator of paginators) {
|
|
42
|
-
// injectPaginator(paginator);
|
|
43
|
-
// }
|
|
44
|
-
// } else {
|
|
45
|
-
// injectPaginator(paginators);
|
|
46
|
-
// }
|
|
47
|
-
// }
|
|
48
|
-
//
|
|
49
|
-
// return <Component {...props} />;
|
|
50
|
-
// };
|
|
11
|
+
class AsyncErrorBoundary extends React.Component {
|
|
12
|
+
constructor() {
|
|
13
|
+
super(...arguments);
|
|
14
|
+
this.state = { error: null };
|
|
15
|
+
}
|
|
16
|
+
static getDerivedStateFromError(error) {
|
|
17
|
+
return { error };
|
|
18
|
+
}
|
|
19
|
+
render() {
|
|
20
|
+
const { error } = this.state;
|
|
21
|
+
if (error) {
|
|
22
|
+
if (error.name === "ChunkLoadError") {
|
|
23
|
+
return React.createElement(UpdateApplicationMessage, null);
|
|
24
|
+
}
|
|
25
|
+
// eslint-disable-next-line no-undef
|
|
26
|
+
if (process.env.NODE_ENV === "development") {
|
|
27
|
+
return (React.createElement(TheError, { error: error, refresh: () => this.setState({ error: null }) }));
|
|
28
|
+
}
|
|
29
|
+
throw new SimulatedException(error);
|
|
30
|
+
}
|
|
31
|
+
return this.props.children;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
const LoadingFallback = () => (React.createElement("div", { className: "mt-3" },
|
|
35
|
+
React.createElement(LoadingMessage, { message: words.PleaseWait })));
|
|
51
36
|
export const setErrorBoundary = (theError) => {
|
|
52
37
|
ErrorBoundary = theError;
|
|
53
38
|
}, setAppLogo = (theLogo) => {
|
|
54
39
|
AppLogo = theLogo;
|
|
55
|
-
}, createAsyncRoute = (loader) =>
|
|
56
|
-
loader
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
40
|
+
}, createAsyncRoute = (loader) => {
|
|
41
|
+
const LazyComponent = React.lazy(() => loader().then((loaded) => ({
|
|
42
|
+
// eslint-disable-next-line func-name-matching
|
|
43
|
+
default: function AsyncRouteInit(props) {
|
|
44
|
+
return React.createElement(InitModule, { loaded: loaded, props: props });
|
|
45
|
+
},
|
|
46
|
+
}))), AsyncRoute = (props) => (React.createElement(AsyncErrorBoundary, null,
|
|
47
|
+
React.createElement(React.Suspense, { fallback: React.createElement(LoadingFallback, null) },
|
|
48
|
+
React.createElement(LazyComponent, Object.assign({}, props)))));
|
|
49
|
+
return AsyncRoute;
|
|
50
|
+
};
|
|
61
51
|
//# sourceMappingURL=index.js.map
|
package/Async/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Async/index.tsx"],"names":[],"mappings":"AAAA,yFAAyF;AACzF,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Async/index.tsx"],"names":[],"mappings":"AAAA,yFAAyF;AACzF,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,wBAAwB,EAAE,MAAM,oBAAoB,CAAC;AAC9D,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,OAAO,QAAQ,MAAM,yBAAyB,CAAC;AAC/C,OAAO,UAAU,MAAM,cAAc,CAAC;AACtC,OAAO,kBAAkB,MAAM,sBAAsB,CAAC;AAGtD,MAAM,CAAC,IAAI,aAAa,GAAG,CAAC,EAAE,QAAQ,EAAQ,EAAE,EAAE,CAAC,CACjD,QAAQ,CACT,CAAC;AAEF,MAAM,CAAC,IAAI,OAAO,GAAS,IAAI,CAAC;AAMhC,MAAM,kBAAmB,SAAQ,KAAK,CAAC,SAGtC;IAHD;;QAQE,UAAK,GAA4B,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;IAyBnD,CAAC;IA7BC,MAAM,CAAC,wBAAwB,CAAC,KAAY;QAC1C,OAAO,EAAE,KAAK,EAAE,CAAC;IACnB,CAAC;IAID,MAAM;QACJ,MAAM,EAAE,KAAK,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;QAE7B,IAAI,KAAK,EAAE,CAAC;YACV,IAAI,KAAK,CAAC,IAAI,KAAK,gBAAgB,EAAE,CAAC;gBACpC,OAAO,oBAAC,wBAAwB,OAAG,CAAC;YACtC,CAAC;YAED,oCAAoC;YACpC,IAAI,OAAO,CAAC,GAAG,CAAC,QAAQ,KAAK,aAAa,EAAE,CAAC;gBAC3C,OAAO,CACL,oBAAC,QAAQ,IACP,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,GAC7C,CACH,CAAC;YACJ,CAAC;YAED,MAAM,IAAI,kBAAkB,CAAC,KAAK,CAAC,CAAC;QACtC,CAAC;QAED,OAAO,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC;IAC7B,CAAC;CACF;AAED,MAAM,eAAe,GAAG,GAAG,EAAE,CAAC,CAC5B,6BAAK,SAAS,EAAC,MAAM;IACnB,oBAAC,cAAc,IAAC,OAAO,EAAE,KAAK,CAAC,UAAU,GAAI,CACzC,CACP,CAAC;AAEF,MAAM,CAAC,MACL,gBAAgB,GAAG,CAAC,QAAa,EAAE,EAAE;IACnC,aAAa,GAAG,QAAQ,CAAC;AAC3B,CAAC,EACD,UAAU,GAAG,CAAC,OAAY,EAAE,EAAE;IAC5B,OAAO,GAAG,OAAO,CAAC;AACpB,CAAC,EACD,gBAAgB,GAAG,CAAC,MAA8B,EAAE,EAAE;IACpD,MAAM,aAAa,GAAG,KAAK,CAAC,IAAI,CAAC,GAAG,EAAE,CAClC,MAAM,EAAE,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;QACzB,8CAA8C;QAC9C,OAAO,EAAE,SAAS,cAAc,CAAC,KAAW;YAC1C,OAAO,oBAAC,UAAU,IAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,GAAI,CAAC;QACtD,CAAC;KACF,CAAC,CAAC,CACJ,EAED,UAAU,GAAG,CAAC,KAAW,EAAE,EAAE,CAAC,CAC5B,oBAAC,kBAAkB;QACjB,oBAAC,KAAK,CAAC,QAAQ,IAAC,QAAQ,EAAE,oBAAC,eAAe,OAAG;YAC3C,oBAAC,aAAa,oBAAK,KAAK,EAAI,CACb,CACE,CACtB,CAAC;IAEJ,OAAO,UAAU,CAAC;AACpB,CAAC,CAAC"}
|
package/UI/Things.js
CHANGED
|
@@ -1,18 +1,9 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import
|
|
3
|
-
import { connect } from "react-redux";
|
|
2
|
+
import { ToastContainer } from "react-toastify";
|
|
4
3
|
import ModalRoot from "../Modal/Root.js";
|
|
5
|
-
|
|
6
|
-
import { getNotificationState } from "../config.js";
|
|
7
|
-
const mapStateToProps = (state) => ({
|
|
8
|
-
notifications: getNotificationState(state) || [],
|
|
9
|
-
}), mapDispatchToProps = (dispatch) => ({
|
|
10
|
-
handleDismiss: (notification) => {
|
|
11
|
-
dispatch(deleteNotification(notification.key));
|
|
12
|
-
},
|
|
13
|
-
}), NotificationsContainer = connect(mapStateToProps, mapDispatchToProps)(Notifications), Things = () => (React.createElement(React.Fragment, null,
|
|
4
|
+
const Things = () => (React.createElement(React.Fragment, null,
|
|
14
5
|
React.createElement("div", { className: "d-print-none" },
|
|
15
|
-
React.createElement(
|
|
6
|
+
React.createElement(ToastContainer, null)),
|
|
16
7
|
React.createElement(ModalRoot, null)));
|
|
17
8
|
export default Things;
|
|
18
9
|
//# sourceMappingURL=Things.js.map
|
package/UI/Things.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Things.js","sourceRoot":"","sources":["../../src/UI/Things.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,
|
|
1
|
+
{"version":3,"file":"Things.js","sourceRoot":"","sources":["../../src/UI/Things.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAChD,OAAO,SAAS,MAAM,eAAe,CAAC;AAEtC,MACE,MAAM,GAAG,GAAG,EAAE,CAAC,CACb;IACE,6BAAK,SAAS,EAAC,cAAc;QAC3B,oBAAC,cAAc,OAAG,CACd;IACN,oBAAC,SAAS,OAAG,CACZ,CACJ,CAAC;AAEJ,eAAe,MAAM,CAAC"}
|
package/actions.d.ts
CHANGED
|
@@ -3,9 +3,8 @@ import type { Action } from "src/types";
|
|
|
3
3
|
type NotificationOptions = {
|
|
4
4
|
seconds?: number;
|
|
5
5
|
persistent?: boolean;
|
|
6
|
-
position?: "tr" | "tl" | "tc" | "br" | "bl" | "bc";
|
|
7
6
|
};
|
|
8
|
-
export declare const notify: (title: string | JSX.Element, options?: NotificationOptions) =>
|
|
7
|
+
export declare const notify: (title: string | JSX.Element, options?: NotificationOptions) => any, notifyWarning: (title: string | JSX.Element, options?: NotificationOptions) => any, notifyError: (title: string | JSX.Element, options?: NotificationOptions) => any, showCaptcha: (payload: {
|
|
9
8
|
id: string;
|
|
10
9
|
name: string;
|
|
11
10
|
}) => Action, hideCaptcha: (payload: string) => Action;
|
package/actions.js
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
|
-
import
|
|
2
|
-
const autoDismissDelay = 6,
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { toast } from "react-toastify";
|
|
2
|
+
const autoDismissDelay = 6, msPerSecond = 1000, toMs = (sec) => sec * msPerSecond, createNotification = (level) => (title, options) => {
|
|
3
|
+
var _a;
|
|
4
|
+
const autoClose = (options === null || options === void 0 ? void 0 : options.persistent) ? false : toMs((_a = options === null || options === void 0 ? void 0 : options.seconds) !== null && _a !== void 0 ? _a : autoDismissDelay);
|
|
5
|
+
toast(title, {
|
|
6
|
+
type: level,
|
|
7
|
+
position: "bottom-center",
|
|
8
|
+
autoClose,
|
|
9
|
+
});
|
|
10
|
+
// Return a no-op action for Redux dispatch compatibility
|
|
11
|
+
return { type: "NOTIFICATION_SHOWN" };
|
|
12
|
+
};
|
|
13
|
+
export const notify = createNotification("success"), notifyWarning = createNotification("warning"), notifyError = createNotification("error"),
|
|
7
14
|
// captcha
|
|
8
15
|
showCaptcha = (payload) => ({
|
|
9
16
|
type: "SHOW_CAPTCHA",
|
package/actions.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"actions.js","sourceRoot":"","sources":["../src/actions.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"actions.js","sourceRoot":"","sources":["../src/actions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAQvC,MACE,gBAAgB,GAAG,CAAC,EACpB,WAAW,GAAG,IAAI,EAClB,IAAI,GAAG,CAAC,GAAW,EAAE,EAAE,CAAC,GAAG,GAAG,WAAW,EACzC,kBAAkB,GAAG,CAAC,KAAsC,EAAE,EAAE,CAC9D,CAAC,KAA2B,EAAE,OAA6B,EAAE,EAAE;;IAC7D,MAAM,SAAS,GAAG,CAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,UAAU,EAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,OAAO,mCAAI,gBAAgB,CAAC,CAAC;IAE3F,KAAK,CAAC,KAAK,EAAE;QACX,IAAI,EAAO,KAAK;QAChB,QAAQ,EAAG,eAAe;QAC1B,SAAS;KACV,CAAC,CAAC;IAEH,yDAAyD;IACzD,OAAO,EAAE,IAAI,EAAE,oBAAoB,EAAY,CAAC;AAClD,CAAC,CAAC;AAEN,MAAM,CAAC,MACL,MAAM,GAAG,kBAAkB,CAAC,SAAS,CAAC,EACtC,aAAa,GAAG,kBAAkB,CAAC,SAAS,CAAC,EAC7C,WAAW,GAAG,kBAAkB,CAAC,OAAO,CAAC;AAEzC,UAAU;AAEV,WAAW,GAAG,CAAC,OAGd,EAAU,EAAE,CAAC,CAAC;IACb,IAAI,EAAE,cAAc;IACpB,OAAO;CACR,CAAC,EACF,WAAW,GAAG,CAAC,OAAe,EAAU,EAAE,CAAC,CAAC;IAC1C,IAAI,EAAE,cAAc;IACpB,OAAO;CACR,CAAC,CAAC;AAEL,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC"}
|
package/config.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare let config: any;
|
|
2
|
-
export declare const setConfiguration: (current: any) => void, getAccountState: (state: any) => any, getModulesState: (state: any) => any, getModalsState: (state: any) => any
|
|
2
|
+
export declare const setConfiguration: (current: any) => void, getAccountState: (state: any) => any, getModulesState: (state: any) => any, getModalsState: (state: any) => any;
|
package/config.js
CHANGED
|
@@ -7,5 +7,5 @@ const getReducerState = (module) => (state) => {
|
|
|
7
7
|
};
|
|
8
8
|
export const setConfiguration = (current) => {
|
|
9
9
|
config = current;
|
|
10
|
-
}, getAccountState = getReducerState("account"), getModulesState = getReducerState("module"), getModalsState = getReducerState("modal")
|
|
10
|
+
}, getAccountState = getReducerState("account"), getModulesState = getReducerState("module"), getModalsState = getReducerState("modal");
|
|
11
11
|
//# sourceMappingURL=config.js.map
|
package/config.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,IAAI,MAAM,GAAQ,EAAE,CAAC;AAE5B,MAAM,eAAe,GAAG,CAAC,MAAc,EAAE,EAAE,CAAC,CAAC,KAAW,EAAE,EAAE;IAC1D,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;QACrB,OAAO,KAAK,CAAC,MAAM,CAAC,CAAC;IACvB,CAAC;IAED,OAAO,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;AAC3B,CAAC,CAAC;AAEF,MAAM,CAAC,MACL,gBAAgB,GAAG,CAAC,OAAY,EAAE,EAAE;IAClC,MAAM,GAAG,OAAO,CAAC;AACnB,CAAC,EACD,eAAe,GAAG,eAAe,CAAC,SAAS,CAAC,EAC5C,eAAe,GAAG,eAAe,CAAC,QAAQ,CAAC,EAC3C,cAAc,GAAG,eAAe,CAAC,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,IAAI,MAAM,GAAQ,EAAE,CAAC;AAE5B,MAAM,eAAe,GAAG,CAAC,MAAc,EAAE,EAAE,CAAC,CAAC,KAAW,EAAE,EAAE;IAC1D,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;QACrB,OAAO,KAAK,CAAC,MAAM,CAAC,CAAC;IACvB,CAAC;IAED,OAAO,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;AAC3B,CAAC,CAAC;AAEF,MAAM,CAAC,MACL,gBAAgB,GAAG,CAAC,OAAY,EAAE,EAAE;IAClC,MAAM,GAAG,OAAO,CAAC;AACnB,CAAC,EACD,eAAe,GAAG,eAAe,CAAC,SAAS,CAAC,EAC5C,eAAe,GAAG,eAAe,CAAC,QAAQ,CAAC,EAC3C,cAAc,GAAG,eAAe,CAAC,OAAO,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "18.0
|
|
2
|
+
"version": "18.2.0",
|
|
3
3
|
"name": "x25",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "x25",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"intern-test": "vitest",
|
|
39
39
|
"check": "node script/check & npm run depcheck & npm run check:npm-check",
|
|
40
40
|
"check:npm-check": "npm-check -u -i \"{rc-tooltip,react,react-dom}\" --specials=bin,eslint,babel,webpack",
|
|
41
|
-
"depcheck": "depcheck --ignores
|
|
41
|
+
"depcheck": "depcheck --ignores=webpack-cli --ignore-patterns=server,node_modules,tmp,fonts",
|
|
42
42
|
"check:global": "npm-check -gu",
|
|
43
43
|
"clean-dist": "trash \"./**/*.test.*\"",
|
|
44
44
|
"ts:check": "tsc --noEmit",
|
|
@@ -136,7 +136,6 @@
|
|
|
136
136
|
}
|
|
137
137
|
},
|
|
138
138
|
"dependencies": {
|
|
139
|
-
"@docusaurus/react-loadable": "^5.5.2",
|
|
140
139
|
"@reduxjs/toolkit": "^2.11.2",
|
|
141
140
|
"@types/react": "^18.3.28",
|
|
142
141
|
"@types/react-dom": "^18.3.7",
|
|
@@ -150,8 +149,8 @@
|
|
|
150
149
|
"react-final-form": "^7.0.0",
|
|
151
150
|
"react-immutable-form": "^1.1.11",
|
|
152
151
|
"react-immutable-form-with-bootstrap": "^1.0.13",
|
|
153
|
-
"react-notification-system-redux2": "^3.0.4",
|
|
154
152
|
"react-redux": "^9.2.0",
|
|
153
|
+
"react-toastify": "^11.0.5",
|
|
155
154
|
"redux": "^5.0.1",
|
|
156
155
|
"reselect": "^5.1.1",
|
|
157
156
|
"superagent": "^8.1.2",
|