@etsoo/react 1.4.4 → 1.4.5
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/lib/app/ReactApp.d.ts +8 -2
- package/lib/app/ReactApp.js +21 -1
- package/lib/index.d.ts +0 -1
- package/lib/index.js +0 -1
- package/lib/mu/pages/EditPage.d.ts +3 -3
- package/lib/mu/pages/EditPage.js +1 -1
- package/package.json +8 -8
- package/src/app/ReactApp.ts +40 -1
- package/src/index.ts +0 -1
- package/src/mu/pages/EditPage.tsx +3 -3
- package/lib/mu/pages/AddPage.d.ts +0 -11
- package/lib/mu/pages/AddPage.js +0 -5
- package/src/mu/pages/AddPage.tsx +0 -12
package/lib/app/ReactApp.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { CoreApp, IAppSettings, ICoreApp, IUser, IUserData } from '@etsoo/appscript';
|
|
2
|
-
import { NotificationRenderProps } from '@etsoo/notificationbase';
|
|
1
|
+
import { CoreApp, IActionResult, IAppSettings, ICoreApp, IUser, IUserData } from '@etsoo/appscript';
|
|
2
|
+
import { NotificationRenderProps, NotificationReturn } from '@etsoo/notificationbase';
|
|
3
3
|
import { DataTypes } from '@etsoo/shared';
|
|
4
4
|
import React from 'react';
|
|
5
5
|
import { NotificationReactCallProps } from '../notifier/Notifier';
|
|
@@ -87,6 +87,12 @@ export declare class ReactApp<S extends IAppSettings, D extends IUser, P extends
|
|
|
87
87
|
* @param name Application name
|
|
88
88
|
*/
|
|
89
89
|
constructor(settings: S, name: string);
|
|
90
|
+
/**
|
|
91
|
+
* Override alert action result
|
|
92
|
+
* @param result Action result
|
|
93
|
+
* @param callback Callback
|
|
94
|
+
*/
|
|
95
|
+
alertResult(result: IActionResult, callback?: NotificationReturn<void>): void;
|
|
90
96
|
/**
|
|
91
97
|
* Change culture
|
|
92
98
|
* @param culture New culture definition
|
package/lib/app/ReactApp.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CoreApp, createClient } from '@etsoo/appscript';
|
|
1
|
+
import { ActionResultError, CoreApp, createClient } from '@etsoo/appscript';
|
|
2
2
|
import { WindowStorage } from '@etsoo/shared';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { NotifierMU } from '../mu/NotifierMU';
|
|
@@ -83,6 +83,26 @@ export class ReactApp extends CoreApp {
|
|
|
83
83
|
ReactApp._notifierProvider = NotifierMU.setup();
|
|
84
84
|
return NotifierMU.instance;
|
|
85
85
|
}
|
|
86
|
+
/**
|
|
87
|
+
* Override alert action result
|
|
88
|
+
* @param result Action result
|
|
89
|
+
* @param callback Callback
|
|
90
|
+
*/
|
|
91
|
+
alertResult(result, callback) {
|
|
92
|
+
this.formatResult(result);
|
|
93
|
+
const message = ActionResultError.format(result);
|
|
94
|
+
if (message.endsWith(')')) {
|
|
95
|
+
const startPos = message.lastIndexOf('(');
|
|
96
|
+
if (startPos > 0) {
|
|
97
|
+
const main = message.substring(0, startPos).trim();
|
|
98
|
+
const tip = message.substring(startPos);
|
|
99
|
+
const titleNode = React.createElement(React.Fragment, null, main, React.createElement('div', { style: { fontSize: '9px' } }, tip));
|
|
100
|
+
this.notifier.alert(titleNode, callback);
|
|
101
|
+
return;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
this.notifier.alert(message, callback);
|
|
105
|
+
}
|
|
86
106
|
/**
|
|
87
107
|
* Change culture
|
|
88
108
|
* @param culture New culture definition
|
package/lib/index.d.ts
CHANGED
|
@@ -14,7 +14,6 @@ export * from './components/GridLoader';
|
|
|
14
14
|
export * from './components/ListItemReact';
|
|
15
15
|
export * from './components/ScrollerGrid';
|
|
16
16
|
export * from './components/ScrollerList';
|
|
17
|
-
export * from './mu/pages/AddPage';
|
|
18
17
|
export * from './mu/pages/CommonPage';
|
|
19
18
|
export * from './mu/pages/CommonPageProps';
|
|
20
19
|
export * from './mu/pages/DataGridPage';
|
package/lib/index.js
CHANGED
|
@@ -17,7 +17,6 @@ export * from './components/ListItemReact';
|
|
|
17
17
|
export * from './components/ScrollerGrid';
|
|
18
18
|
export * from './components/ScrollerList';
|
|
19
19
|
// mu
|
|
20
|
-
export * from './mu/pages/AddPage';
|
|
21
20
|
export * from './mu/pages/CommonPage';
|
|
22
21
|
export * from './mu/pages/CommonPageProps';
|
|
23
22
|
export * from './mu/pages/DataGridPage';
|
|
@@ -3,13 +3,13 @@ import { RouteComponentProps } from '@reach/router';
|
|
|
3
3
|
import { FormEventHandler } from 'react';
|
|
4
4
|
import { CommonPageProps } from './CommonPageProps';
|
|
5
5
|
/**
|
|
6
|
-
* Edit page router props, include 'id' (/:id) query parameter
|
|
6
|
+
* Add / Edit page router props, include 'id' (/:id) query parameter
|
|
7
7
|
*/
|
|
8
8
|
export declare type EditPageRouterProps<T extends DataTypes.IdType = number> = RouteComponentProps<{
|
|
9
9
|
id: T;
|
|
10
10
|
}>;
|
|
11
11
|
/**
|
|
12
|
-
* Edit page props
|
|
12
|
+
* Add / Edit page props
|
|
13
13
|
*/
|
|
14
14
|
export interface EditPageProps extends Omit<CommonPageProps, 'onSubmit'> {
|
|
15
15
|
/**
|
|
@@ -18,7 +18,7 @@ export interface EditPageProps extends Omit<CommonPageProps, 'onSubmit'> {
|
|
|
18
18
|
onSubmit?: FormEventHandler<HTMLFormElement>;
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
|
-
* Edit page
|
|
21
|
+
* Add / Edit page
|
|
22
22
|
* @param props Props
|
|
23
23
|
*/
|
|
24
24
|
export declare function EditPage(props: EditPageProps): JSX.Element;
|
package/lib/mu/pages/EditPage.js
CHANGED
|
@@ -5,7 +5,7 @@ import { MUGlobal } from '../MUGlobal';
|
|
|
5
5
|
import { CommonPage, CommonPageScrollContainer } from './CommonPage';
|
|
6
6
|
import SaveIcon from '@mui/icons-material/Save';
|
|
7
7
|
/**
|
|
8
|
-
* Edit page
|
|
8
|
+
* Add / Edit page
|
|
9
9
|
* @param props Props
|
|
10
10
|
*/
|
|
11
11
|
export function EditPage(props) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/react",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.5",
|
|
4
4
|
"description": "TypeScript ReactJs framework",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"@emotion/react": "^11.7.1",
|
|
51
51
|
"@emotion/style": "^0.8.0",
|
|
52
52
|
"@emotion/styled": "^11.6.0",
|
|
53
|
-
"@etsoo/appscript": "^1.2.
|
|
53
|
+
"@etsoo/appscript": "^1.2.18",
|
|
54
54
|
"@etsoo/notificationbase": "^1.1.0",
|
|
55
|
-
"@etsoo/shared": "^1.0
|
|
55
|
+
"@etsoo/shared": "^1.1.0",
|
|
56
56
|
"@mui/icons-material": "^5.2.5",
|
|
57
|
-
"@mui/material": "^5.2.
|
|
57
|
+
"@mui/material": "^5.2.7",
|
|
58
58
|
"@reach/router": "^1.3.4",
|
|
59
59
|
"@types/pica": "^5.1.3",
|
|
60
60
|
"@types/pulltorefreshjs": "^0.1.5",
|
|
@@ -83,11 +83,11 @@
|
|
|
83
83
|
"@babel/runtime-corejs3": "^7.16.7",
|
|
84
84
|
"@types/jest": "^27.4.0",
|
|
85
85
|
"@types/react-test-renderer": "^17.0.1",
|
|
86
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
87
|
-
"@typescript-eslint/parser": "^5.
|
|
88
|
-
"eslint": "^8.
|
|
86
|
+
"@typescript-eslint/eslint-plugin": "^5.9.0",
|
|
87
|
+
"@typescript-eslint/parser": "^5.9.0",
|
|
88
|
+
"eslint": "^8.6.0",
|
|
89
89
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
90
|
-
"eslint-plugin-import": "^2.25.
|
|
90
|
+
"eslint-plugin-import": "^2.25.4",
|
|
91
91
|
"eslint-plugin-react": "^7.28.0",
|
|
92
92
|
"jest": "^27.4.5",
|
|
93
93
|
"react-test-renderer": "^17.0.2",
|
package/src/app/ReactApp.ts
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
import {
|
|
2
|
+
ActionResultError,
|
|
2
3
|
CoreApp,
|
|
3
4
|
createClient,
|
|
5
|
+
IActionResult,
|
|
4
6
|
IAppSettings,
|
|
5
7
|
ICoreApp,
|
|
6
8
|
IUser,
|
|
7
9
|
IUserData
|
|
8
10
|
} from '@etsoo/appscript';
|
|
9
|
-
import {
|
|
11
|
+
import {
|
|
12
|
+
NotificationRenderProps,
|
|
13
|
+
NotificationReturn
|
|
14
|
+
} from '@etsoo/notificationbase';
|
|
10
15
|
import { DataTypes, WindowStorage } from '@etsoo/shared';
|
|
11
16
|
import React from 'react';
|
|
12
17
|
import { NotifierMU } from '../mu/NotifierMU';
|
|
@@ -197,6 +202,40 @@ export class ReactApp<
|
|
|
197
202
|
globalApp = this;
|
|
198
203
|
}
|
|
199
204
|
|
|
205
|
+
/**
|
|
206
|
+
* Override alert action result
|
|
207
|
+
* @param result Action result
|
|
208
|
+
* @param callback Callback
|
|
209
|
+
*/
|
|
210
|
+
override alertResult(
|
|
211
|
+
result: IActionResult,
|
|
212
|
+
callback?: NotificationReturn<void>
|
|
213
|
+
) {
|
|
214
|
+
this.formatResult(result);
|
|
215
|
+
const message = ActionResultError.format(result);
|
|
216
|
+
if (message.endsWith(')')) {
|
|
217
|
+
const startPos = message.lastIndexOf('(');
|
|
218
|
+
if (startPos > 0) {
|
|
219
|
+
const main = message.substring(0, startPos).trim();
|
|
220
|
+
const tip = message.substring(startPos);
|
|
221
|
+
|
|
222
|
+
const titleNode = React.createElement(
|
|
223
|
+
React.Fragment,
|
|
224
|
+
null,
|
|
225
|
+
main,
|
|
226
|
+
React.createElement(
|
|
227
|
+
'div',
|
|
228
|
+
{ style: { fontSize: '9px' } },
|
|
229
|
+
tip
|
|
230
|
+
)
|
|
231
|
+
);
|
|
232
|
+
this.notifier.alert(titleNode, callback);
|
|
233
|
+
return;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
this.notifier.alert(message, callback);
|
|
237
|
+
}
|
|
238
|
+
|
|
200
239
|
/**
|
|
201
240
|
* Change culture
|
|
202
241
|
* @param culture New culture definition
|
package/src/index.ts
CHANGED
|
@@ -19,7 +19,6 @@ export * from './components/ScrollerGrid';
|
|
|
19
19
|
export * from './components/ScrollerList';
|
|
20
20
|
|
|
21
21
|
// mu
|
|
22
|
-
export * from './mu/pages/AddPage';
|
|
23
22
|
export * from './mu/pages/CommonPage';
|
|
24
23
|
export * from './mu/pages/CommonPageProps';
|
|
25
24
|
export * from './mu/pages/DataGridPage';
|
|
@@ -9,13 +9,13 @@ import { CommonPageProps } from './CommonPageProps';
|
|
|
9
9
|
import SaveIcon from '@mui/icons-material/Save';
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
|
-
* Edit page router props, include 'id' (/:id) query parameter
|
|
12
|
+
* Add / Edit page router props, include 'id' (/:id) query parameter
|
|
13
13
|
*/
|
|
14
14
|
export type EditPageRouterProps<T extends DataTypes.IdType = number> =
|
|
15
15
|
RouteComponentProps<{ id: T }>;
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
|
-
* Edit page props
|
|
18
|
+
* Add / Edit page props
|
|
19
19
|
*/
|
|
20
20
|
export interface EditPageProps extends Omit<CommonPageProps, 'onSubmit'> {
|
|
21
21
|
/**
|
|
@@ -25,7 +25,7 @@ export interface EditPageProps extends Omit<CommonPageProps, 'onSubmit'> {
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
|
-
* Edit page
|
|
28
|
+
* Add / Edit page
|
|
29
29
|
* @param props Props
|
|
30
30
|
*/
|
|
31
31
|
export function EditPage(props: EditPageProps) {
|
package/lib/mu/pages/AddPage.js
DELETED
package/src/mu/pages/AddPage.tsx
DELETED