@etsoo/react 1.4.3 → 1.4.7
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/IServiceUser.d.ts +1 -1
- package/lib/app/ReactApp.d.ts +8 -2
- package/lib/app/ReactApp.js +21 -1
- package/lib/app/ServiceApp.d.ts +4 -4
- package/lib/index.d.ts +0 -1
- package/lib/index.js +0 -1
- package/lib/mu/pages/EditPage.d.ts +2 -10
- package/lib/mu/pages/EditPage.js +1 -1
- package/lib/states/RouterProps.d.ts +19 -2
- package/lib/states/RouterProps.js +14 -1
- package/package.json +8 -8
- package/src/app/IServiceUser.ts +2 -1
- package/src/app/ReactApp.ts +40 -1
- package/src/app/ServiceApp.ts +7 -5
- package/src/index.ts +0 -1
- package/src/mu/pages/EditPage.tsx +2 -10
- package/src/states/RouterProps.ts +27 -2
- 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/app/ServiceApp.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { RefreshTokenRQ } from './RefreshTokenRQ';
|
|
|
11
11
|
* Use the acess token to the service api, get a service access token
|
|
12
12
|
* Use the new acess token and refresh token to login
|
|
13
13
|
*/
|
|
14
|
-
export declare class ServiceApp<U extends IServiceUser = IServiceUser, P extends IServicePageData = IServicePageData, S extends IServiceAppSettings = IServiceAppSettings> extends ReactApp<S,
|
|
14
|
+
export declare class ServiceApp<U extends IServiceUser = IServiceUser, P extends IServicePageData = IServicePageData, S extends IServiceAppSettings = IServiceAppSettings> extends ReactApp<S, ISmartERPUser, P> {
|
|
15
15
|
/**
|
|
16
16
|
* Service API
|
|
17
17
|
*/
|
|
@@ -20,8 +20,8 @@ export declare class ServiceApp<U extends IServiceUser = IServiceUser, P extends
|
|
|
20
20
|
/**
|
|
21
21
|
* Service user
|
|
22
22
|
*/
|
|
23
|
-
get serviceUser():
|
|
24
|
-
protected set serviceUser(value:
|
|
23
|
+
get serviceUser(): U | undefined;
|
|
24
|
+
protected set serviceUser(value: U | undefined);
|
|
25
25
|
/**
|
|
26
26
|
* Service passphrase
|
|
27
27
|
*/
|
|
@@ -67,5 +67,5 @@ export declare class ServiceApp<U extends IServiceUser = IServiceUser, P extends
|
|
|
67
67
|
* @param refreshToken Refresh token
|
|
68
68
|
* @param serviceUser Service user
|
|
69
69
|
*/
|
|
70
|
-
userLoginEx(user: ISmartERPUser, refreshToken: string, serviceUser:
|
|
70
|
+
userLoginEx(user: ISmartERPUser, refreshToken: string, serviceUser: U): void;
|
|
71
71
|
}
|
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';
|
|
@@ -1,15 +1,7 @@
|
|
|
1
|
-
import { DataTypes } from '@etsoo/shared';
|
|
2
|
-
import { RouteComponentProps } from '@reach/router';
|
|
3
1
|
import { FormEventHandler } from 'react';
|
|
4
2
|
import { CommonPageProps } from './CommonPageProps';
|
|
5
3
|
/**
|
|
6
|
-
* Edit page
|
|
7
|
-
*/
|
|
8
|
-
export declare type EditPageRouterProps<T extends DataTypes.IdType = number> = RouteComponentProps<{
|
|
9
|
-
id: T;
|
|
10
|
-
}>;
|
|
11
|
-
/**
|
|
12
|
-
* Edit page props
|
|
4
|
+
* Add / Edit page props
|
|
13
5
|
*/
|
|
14
6
|
export interface EditPageProps extends Omit<CommonPageProps, 'onSubmit'> {
|
|
15
7
|
/**
|
|
@@ -18,7 +10,7 @@ export interface EditPageProps extends Omit<CommonPageProps, 'onSubmit'> {
|
|
|
18
10
|
onSubmit?: FormEventHandler<HTMLFormElement>;
|
|
19
11
|
}
|
|
20
12
|
/**
|
|
21
|
-
* Edit page
|
|
13
|
+
* Add / Edit page
|
|
22
14
|
* @param props Props
|
|
23
15
|
*/
|
|
24
16
|
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) {
|
|
@@ -1,10 +1,27 @@
|
|
|
1
1
|
import { DataTypes } from '@etsoo/shared';
|
|
2
2
|
import { RouteComponentProps } from '@reach/router';
|
|
3
|
+
/**
|
|
4
|
+
* Add / Edit page router props, include 'id' (/:id) or none when adding query parameter
|
|
5
|
+
*/
|
|
6
|
+
export declare type EditPageRouterProps = IdRouterProps & WildcardRouterProps;
|
|
7
|
+
/**
|
|
8
|
+
* Get edit page id
|
|
9
|
+
* @param props Route props
|
|
10
|
+
* @param type Target data type
|
|
11
|
+
* @returns Data
|
|
12
|
+
*/
|
|
13
|
+
export declare function getEditPageId<T extends DataTypes.BasicNames = 'number'>(props: EditPageRouterProps, type: T): DataTypes.BasicConditional<T> | undefined;
|
|
3
14
|
/**
|
|
4
15
|
* Id router props, include 'id' (/:id) query parameter
|
|
5
16
|
*/
|
|
6
|
-
export declare type IdRouterProps
|
|
7
|
-
id:
|
|
17
|
+
export declare type IdRouterProps = RouteComponentProps<{
|
|
18
|
+
id: string;
|
|
19
|
+
}>;
|
|
20
|
+
/**
|
|
21
|
+
* Wildcard router props, (/*) query parameter
|
|
22
|
+
*/
|
|
23
|
+
export declare type WildcardRouterProps = RouteComponentProps<{
|
|
24
|
+
'*': string;
|
|
8
25
|
}>;
|
|
9
26
|
/**
|
|
10
27
|
* Id state router props, include 'id' in location.state
|
|
@@ -1 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
import { DataTypes } from '@etsoo/shared';
|
|
2
|
+
/**
|
|
3
|
+
* Get edit page id
|
|
4
|
+
* @param props Route props
|
|
5
|
+
* @param type Target data type
|
|
6
|
+
* @returns Data
|
|
7
|
+
*/
|
|
8
|
+
export function getEditPageId(props, type) {
|
|
9
|
+
var _a;
|
|
10
|
+
const id = (_a = props.id) !== null && _a !== void 0 ? _a : props['*'];
|
|
11
|
+
if (id == null || id === '')
|
|
12
|
+
return undefined;
|
|
13
|
+
return DataTypes.convertByType(id, type);
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/react",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.7",
|
|
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/IServiceUser.ts
CHANGED
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/app/ServiceApp.ts
CHANGED
|
@@ -24,20 +24,20 @@ export class ServiceApp<
|
|
|
24
24
|
U extends IServiceUser = IServiceUser,
|
|
25
25
|
P extends IServicePageData = IServicePageData,
|
|
26
26
|
S extends IServiceAppSettings = IServiceAppSettings
|
|
27
|
-
> extends ReactApp<S,
|
|
27
|
+
> extends ReactApp<S, ISmartERPUser, P> {
|
|
28
28
|
/**
|
|
29
29
|
* Service API
|
|
30
30
|
*/
|
|
31
31
|
readonly serviceApi: IApi;
|
|
32
32
|
|
|
33
|
-
private _serviceUser?:
|
|
33
|
+
private _serviceUser?: U;
|
|
34
34
|
/**
|
|
35
35
|
* Service user
|
|
36
36
|
*/
|
|
37
37
|
get serviceUser() {
|
|
38
38
|
return this._serviceUser;
|
|
39
39
|
}
|
|
40
|
-
protected set serviceUser(value:
|
|
40
|
+
protected set serviceUser(value: U | undefined) {
|
|
41
41
|
this._serviceUser = value;
|
|
42
42
|
}
|
|
43
43
|
|
|
@@ -140,7 +140,9 @@ export class ServiceApp<
|
|
|
140
140
|
const userData = result.data;
|
|
141
141
|
|
|
142
142
|
// Use core system access token to service api to exchange service access token
|
|
143
|
-
const serviceResult = await this.serviceApi.put<
|
|
143
|
+
const serviceResult = await this.serviceApi.put<
|
|
144
|
+
ServiceLoginResult<U>
|
|
145
|
+
>(
|
|
144
146
|
'Auth/ExchangeToken',
|
|
145
147
|
{
|
|
146
148
|
token: this.encryptEnhanced(
|
|
@@ -322,7 +324,7 @@ export class ServiceApp<
|
|
|
322
324
|
userLoginEx(
|
|
323
325
|
user: ISmartERPUser,
|
|
324
326
|
refreshToken: string,
|
|
325
|
-
serviceUser:
|
|
327
|
+
serviceUser: U
|
|
326
328
|
): void {
|
|
327
329
|
// Service user login
|
|
328
330
|
this.servicePassphrase =
|
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';
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
import { DataTypes } from '@etsoo/shared';
|
|
2
1
|
import { Button, Grid } from '@mui/material';
|
|
3
|
-
import { RouteComponentProps } from '@reach/router';
|
|
4
2
|
import React, { FormEventHandler } from 'react';
|
|
5
3
|
import { Labels } from '../../app/Labels';
|
|
6
4
|
import { MUGlobal } from '../MUGlobal';
|
|
@@ -9,13 +7,7 @@ import { CommonPageProps } from './CommonPageProps';
|
|
|
9
7
|
import SaveIcon from '@mui/icons-material/Save';
|
|
10
8
|
|
|
11
9
|
/**
|
|
12
|
-
* Edit page
|
|
13
|
-
*/
|
|
14
|
-
export type EditPageRouterProps<T extends DataTypes.IdType = number> =
|
|
15
|
-
RouteComponentProps<{ id: T }>;
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* Edit page props
|
|
10
|
+
* Add / Edit page props
|
|
19
11
|
*/
|
|
20
12
|
export interface EditPageProps extends Omit<CommonPageProps, 'onSubmit'> {
|
|
21
13
|
/**
|
|
@@ -25,7 +17,7 @@ export interface EditPageProps extends Omit<CommonPageProps, 'onSubmit'> {
|
|
|
25
17
|
}
|
|
26
18
|
|
|
27
19
|
/**
|
|
28
|
-
* Edit page
|
|
20
|
+
* Add / Edit page
|
|
29
21
|
* @param props Props
|
|
30
22
|
*/
|
|
31
23
|
export function EditPage(props: EditPageProps) {
|
|
@@ -1,11 +1,36 @@
|
|
|
1
1
|
import { DataTypes } from '@etsoo/shared';
|
|
2
2
|
import { RouteComponentProps } from '@reach/router';
|
|
3
|
+
import { Props } from 'react-input-mask';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Add / Edit page router props, include 'id' (/:id) or none when adding query parameter
|
|
7
|
+
*/
|
|
8
|
+
export type EditPageRouterProps = IdRouterProps & WildcardRouterProps;
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Get edit page id
|
|
12
|
+
* @param props Route props
|
|
13
|
+
* @param type Target data type
|
|
14
|
+
* @returns Data
|
|
15
|
+
*/
|
|
16
|
+
export function getEditPageId<T extends DataTypes.BasicNames = 'number'>(
|
|
17
|
+
props: EditPageRouterProps,
|
|
18
|
+
type: T
|
|
19
|
+
): DataTypes.BasicConditional<T> | undefined {
|
|
20
|
+
const id = props.id ?? props['*'];
|
|
21
|
+
if (id == null || id === '') return undefined;
|
|
22
|
+
return DataTypes.convertByType(id, type);
|
|
23
|
+
}
|
|
3
24
|
|
|
4
25
|
/**
|
|
5
26
|
* Id router props, include 'id' (/:id) query parameter
|
|
6
27
|
*/
|
|
7
|
-
export type IdRouterProps
|
|
8
|
-
|
|
28
|
+
export type IdRouterProps = RouteComponentProps<{ id: string }>;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Wildcard router props, (/*) query parameter
|
|
32
|
+
*/
|
|
33
|
+
export type WildcardRouterProps = RouteComponentProps<{ '*': string }>;
|
|
9
34
|
|
|
10
35
|
/**
|
|
11
36
|
* Id state router props, include 'id' in location.state
|
package/lib/mu/pages/AddPage.js
DELETED
package/src/mu/pages/AddPage.tsx
DELETED