antd-management-fast-framework 2.1.6 → 2.1.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/es/components/ApplicationWrapper/index.d.ts +1 -3
- package/es/components/TopProgressBar/index.d.ts +7 -0
- package/es/components/index.d.ts +1 -0
- package/es/framework/Common/InternalFlow/index.d.ts +23 -10
- package/es/index.css +1 -1
- package/es/index.js +2 -2
- package/es/modelBuilders/progressControl.d.ts +34 -0
- package/es/modelBuilders/remoteLoadingControl.d.ts +34 -0
- package/es/modelBuilders/schedulingControl.d.ts +0 -15
- package/es/utils/applicationListDataCacheAssist.d.ts +0 -6
- package/es/utils/index.d.ts +2 -0
- package/es/utils/interfaceSettingAssist.d.ts +86 -11
- package/es/utils/interfaceSettingCacheAssist.d.ts +0 -3
- package/es/utils/interfaceSettingLocalAssist.d.ts +13 -0
- package/es/utils/progressControlAssist.d.ts +10 -0
- package/es/utils/remoteLoadingControlAssist.d.ts +10 -0
- package/es/utils/schedulingControlAssist.d.ts +0 -8
- package/package.json +11 -12
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export function buildModel(): {
|
|
2
|
+
namespace: string;
|
|
3
|
+
state: {
|
|
4
|
+
progressing: boolean;
|
|
5
|
+
data: {
|
|
6
|
+
code: number;
|
|
7
|
+
message: string;
|
|
8
|
+
dataSuccess: boolean;
|
|
9
|
+
data: {};
|
|
10
|
+
list: never[];
|
|
11
|
+
extra: {};
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
effects: {
|
|
15
|
+
startProgressing({ alias }: {
|
|
16
|
+
alias: any;
|
|
17
|
+
}, { put }: {
|
|
18
|
+
put: any;
|
|
19
|
+
}): Generator<any, {
|
|
20
|
+
progressing: boolean;
|
|
21
|
+
}, unknown>;
|
|
22
|
+
stopProgressing({ alias }: {
|
|
23
|
+
alias: any;
|
|
24
|
+
}, { put }: {
|
|
25
|
+
put: any;
|
|
26
|
+
}): Generator<any, {
|
|
27
|
+
progressing: boolean;
|
|
28
|
+
}, unknown>;
|
|
29
|
+
};
|
|
30
|
+
reducers: {
|
|
31
|
+
reducerRemoteData(state: any, action: any): any;
|
|
32
|
+
reducerNormalData(state: any, action: any): any;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export function buildModel(): {
|
|
2
|
+
namespace: string;
|
|
3
|
+
state: {
|
|
4
|
+
remoteLoading: boolean;
|
|
5
|
+
data: {
|
|
6
|
+
code: number;
|
|
7
|
+
message: string;
|
|
8
|
+
dataSuccess: boolean;
|
|
9
|
+
data: {};
|
|
10
|
+
list: never[];
|
|
11
|
+
extra: {};
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
effects: {
|
|
15
|
+
startRemoteLoading({ alias }: {
|
|
16
|
+
alias: any;
|
|
17
|
+
}, { put }: {
|
|
18
|
+
put: any;
|
|
19
|
+
}): Generator<any, {
|
|
20
|
+
remoteLoading: boolean;
|
|
21
|
+
}, unknown>;
|
|
22
|
+
stopRemoteLoading({ alias }: {
|
|
23
|
+
alias: any;
|
|
24
|
+
}, { put }: {
|
|
25
|
+
put: any;
|
|
26
|
+
}): Generator<any, {
|
|
27
|
+
remoteLoading: boolean;
|
|
28
|
+
}, unknown>;
|
|
29
|
+
};
|
|
30
|
+
reducers: {
|
|
31
|
+
reducerRemoteData(state: any, action: any): any;
|
|
32
|
+
reducerNormalData(state: any, action: any): any;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export function buildModel(): {
|
|
2
2
|
namespace: string;
|
|
3
3
|
state: {
|
|
4
|
-
remoteLoading: boolean;
|
|
5
4
|
data: {
|
|
6
5
|
code: number;
|
|
7
6
|
message: string;
|
|
@@ -26,20 +25,6 @@ export function buildModel(): {
|
|
|
26
25
|
call: any;
|
|
27
26
|
put: any;
|
|
28
27
|
}): Generator<any, {}, unknown>;
|
|
29
|
-
startRemoteLoading({ alias }: {
|
|
30
|
-
alias: any;
|
|
31
|
-
}, { put }: {
|
|
32
|
-
put: any;
|
|
33
|
-
}): Generator<any, {
|
|
34
|
-
remoteLoading: boolean;
|
|
35
|
-
}, unknown>;
|
|
36
|
-
stopRemoteLoading({ alias }: {
|
|
37
|
-
alias: any;
|
|
38
|
-
}, { put }: {
|
|
39
|
-
put: any;
|
|
40
|
-
}): Generator<any, {
|
|
41
|
-
remoteLoading: boolean;
|
|
42
|
-
}, unknown>;
|
|
43
28
|
};
|
|
44
29
|
reducers: {
|
|
45
30
|
reducerRemoteData(state: any, action: any): any;
|
|
@@ -1,24 +1,18 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 获取 applicationListData 缓存
|
|
3
3
|
*
|
|
4
|
-
* @export
|
|
5
4
|
* @param {*} fn
|
|
6
|
-
* @returns
|
|
7
5
|
*/
|
|
8
6
|
export function getApplicationListDataCache(): any;
|
|
9
7
|
/**
|
|
10
8
|
* 设置 applicationListData 缓存
|
|
11
9
|
*
|
|
12
|
-
* @export
|
|
13
10
|
* @param {o} metaData数据
|
|
14
|
-
* @returns
|
|
15
11
|
*/
|
|
16
12
|
export function setApplicationListDataCache(o: any): void;
|
|
17
13
|
/**
|
|
18
14
|
* 移除信息
|
|
19
15
|
*
|
|
20
|
-
* @export
|
|
21
16
|
* @param {*} fn
|
|
22
|
-
* @returns
|
|
23
17
|
*/
|
|
24
18
|
export function removeApplicationListDataCache(): void;
|
package/es/utils/index.d.ts
CHANGED
|
@@ -7,4 +7,6 @@ export * from "./entranceAssist";
|
|
|
7
7
|
export * from "./interfaceSettingAssist";
|
|
8
8
|
export * from "./interfaceSettingCacheAssist";
|
|
9
9
|
export * from "./metaDataAssist";
|
|
10
|
+
export * from "./progressControlAssist";
|
|
11
|
+
export * from "./remoteLoadingControlAssist";
|
|
10
12
|
export * from "./schedulingControlAssist";
|
|
@@ -1,11 +1,86 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* merge layout runtime config
|
|
3
|
+
* @param {Object} options
|
|
4
|
+
* @param {string} options.logo logo
|
|
5
|
+
* @param {string} options.title title
|
|
6
|
+
* @param {water} options.water water
|
|
7
|
+
* @param {Array} options.footerLinks footerLinks
|
|
8
|
+
* @param {Object} options.initialState initialState
|
|
9
|
+
* @param {Function} options.setInitialState initialState setter
|
|
10
|
+
* @param {Object} options.themeToken theme token
|
|
11
|
+
* @param {Array} options.avatarMenuItems avatar menu items in dropdown
|
|
12
|
+
* @param {Array} options.actionItems action items in header
|
|
13
|
+
* @param {null|Object} options.menuFooter menu footer, it only take effect on collapsed
|
|
14
|
+
* @param {null|Object} options.miniMenu header mini card menu
|
|
15
|
+
* @param {Array} options.backgroundImageItems layout background image items
|
|
16
|
+
* @param {boolean} options.keepCollapsed memory collapsed statue and use this status when reopen, default is false
|
|
17
|
+
* @param {boolean} options.groupMenu take menu to group type, default is false
|
|
18
|
+
* @param {boolean} options.collapsedShowTitle show title when collapsed, it will trigger more render
|
|
19
|
+
* @param {Object} options.config other layout config
|
|
20
|
+
*/
|
|
21
|
+
export function mergeLayoutSetting({ logo, title, water, footerLinks, initialState, setInitialState, themeToken, avatarMenuItems, actionItems, menuExtra, menuFooter, miniMenu, backgroundImageItems, keepCollapsed, groupMenu, collapsedShowTitle, config, }: {
|
|
22
|
+
logo: string;
|
|
23
|
+
title: string;
|
|
24
|
+
water: any;
|
|
25
|
+
footerLinks: any[];
|
|
26
|
+
initialState: Object;
|
|
27
|
+
setInitialState: Function;
|
|
28
|
+
themeToken: Object;
|
|
29
|
+
avatarMenuItems: any[];
|
|
30
|
+
actionItems: any[];
|
|
31
|
+
menuFooter: null | Object;
|
|
32
|
+
miniMenu: null | Object;
|
|
33
|
+
backgroundImageItems: any[];
|
|
34
|
+
keepCollapsed: boolean;
|
|
35
|
+
groupMenu: boolean;
|
|
36
|
+
collapsedShowTitle: boolean;
|
|
37
|
+
config: Object;
|
|
38
|
+
}): {
|
|
39
|
+
onCollapse: (collapsed: any) => void;
|
|
40
|
+
childrenRender: (children: any, properties: any) => JSX.Element;
|
|
41
|
+
breakpoint: boolean;
|
|
42
|
+
defaultCollapsed: any;
|
|
43
|
+
constructor: Function;
|
|
44
|
+
toString(): string;
|
|
45
|
+
toLocaleString(): string;
|
|
46
|
+
valueOf(): Object;
|
|
47
|
+
hasOwnProperty(v: PropertyKey): boolean;
|
|
48
|
+
isPrototypeOf(v: Object): boolean;
|
|
49
|
+
propertyIsEnumerable(v: PropertyKey): boolean;
|
|
50
|
+
token?: Object | undefined;
|
|
51
|
+
disableContentMargin: boolean;
|
|
52
|
+
logo: any;
|
|
53
|
+
title: any;
|
|
54
|
+
menu: {
|
|
55
|
+
collapsedShowTitle?: boolean | undefined;
|
|
56
|
+
type?: string | undefined;
|
|
57
|
+
};
|
|
58
|
+
menuProps: {};
|
|
59
|
+
waterMarkProps: {
|
|
60
|
+
content?: undefined;
|
|
61
|
+
} | {
|
|
62
|
+
content: any;
|
|
63
|
+
};
|
|
64
|
+
appList: any;
|
|
65
|
+
bgLayoutImgList: any[];
|
|
66
|
+
avatarProps: {
|
|
67
|
+
size: string;
|
|
68
|
+
render: (properties: any, dom: any) => JSX.Element;
|
|
69
|
+
src: "data:image/png;base64,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";
|
|
70
|
+
title: string;
|
|
71
|
+
};
|
|
72
|
+
contentStyle: {
|
|
73
|
+
padding: string;
|
|
74
|
+
};
|
|
75
|
+
headerTitleRender: (logo: any, title: any, _: any) => JSX.Element;
|
|
76
|
+
itemRender: (route: any) => any;
|
|
77
|
+
postMenuData: (d: any) => any;
|
|
78
|
+
menuExtraRender: ({ collapsed }: {
|
|
79
|
+
collapsed: any;
|
|
80
|
+
}) => any;
|
|
81
|
+
menuFooterRender: (properties: any) => Object | null | undefined;
|
|
82
|
+
footerRender: () => JSX.Element;
|
|
83
|
+
logout: null;
|
|
84
|
+
rightContentRender: boolean;
|
|
85
|
+
actionsRender: (properties: any) => (JSX.Element | null)[];
|
|
86
|
+
};
|
|
@@ -5,14 +5,11 @@ export function getInterfaceSetting(): any;
|
|
|
5
5
|
/**
|
|
6
6
|
* Set interfaceSetting catch
|
|
7
7
|
* @param {String} value
|
|
8
|
-
* @returns
|
|
9
8
|
*/
|
|
10
9
|
export function setInterfaceSetting(value: string): void;
|
|
11
10
|
/**
|
|
12
11
|
* Remove interfaceSetting catch
|
|
13
12
|
*
|
|
14
|
-
* @export
|
|
15
13
|
* @param {*} fn
|
|
16
|
-
* @returns
|
|
17
14
|
*/
|
|
18
15
|
export function removeInterfaceSetting(): void;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Get local interface setting
|
|
3
|
+
*/
|
|
4
|
+
export function getLocalInterfaceSetting(): any;
|
|
5
|
+
/**
|
|
6
|
+
* Set local interface setting
|
|
7
|
+
* @param {String} value
|
|
8
|
+
*/
|
|
9
|
+
export function setLocalInterfaceSetting(value: string): void;
|
|
10
|
+
/**
|
|
11
|
+
* Remove local interface setting
|
|
12
|
+
*/
|
|
13
|
+
export function removeLocalInterfaceSetting(): void;
|
|
@@ -23,12 +23,4 @@ export namespace schedulingControlAssist {
|
|
|
23
23
|
* Set current operator request is processing
|
|
24
24
|
*/
|
|
25
25
|
function setCurrentOperatorRequestProcessing(value: any): void;
|
|
26
|
-
/**
|
|
27
|
-
* start remote loading
|
|
28
|
-
*/
|
|
29
|
-
function startRemoteLoading(): void;
|
|
30
|
-
/**
|
|
31
|
-
* stop remote loading
|
|
32
|
-
*/
|
|
33
|
-
function stopRemoteLoading(): void;
|
|
34
26
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antd-management-fast-framework",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.7",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"homepage": "https://github.com/kityandhero/antd-management-fast-framework#readme",
|
|
6
6
|
"license": "ISC",
|
|
@@ -52,17 +52,17 @@
|
|
|
52
52
|
"@ant-design/icons": "^5.0.1",
|
|
53
53
|
"@ant-design/pro-components": "^2.4.4",
|
|
54
54
|
"@ant-design/pro-layout": "^7.10.3",
|
|
55
|
+
"@tanem/react-nprogress": "^5.0.33",
|
|
55
56
|
"@umijs/max": "^4.0.63",
|
|
56
57
|
"antd": "^5.3.2",
|
|
57
|
-
"antd-management-fast-common": "^2.1.
|
|
58
|
-
"antd-management-fast-component": "^2.1.
|
|
58
|
+
"antd-management-fast-common": "^2.1.8",
|
|
59
|
+
"antd-management-fast-component": "^2.1.7",
|
|
59
60
|
"axios": "^1.3.4",
|
|
60
61
|
"classnames": "^2.3.2",
|
|
61
62
|
"dayjs": "^1.11.7",
|
|
62
|
-
"easy-soft-dva": "^3.6.
|
|
63
|
-
"easy-soft-utility": "^2.4.
|
|
63
|
+
"easy-soft-dva": "^3.6.144",
|
|
64
|
+
"easy-soft-utility": "^2.4.115",
|
|
64
65
|
"html-react-parser": "^3.0.15",
|
|
65
|
-
"nprogress": "^0.2.0",
|
|
66
66
|
"rc-animate": "^3.1.1",
|
|
67
67
|
"rc-queue-anim": "^2.0.0",
|
|
68
68
|
"react": "^18.2.0",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"@babel/preset-env": "^7.20.2",
|
|
83
83
|
"@babel/preset-react": "^7.18.6",
|
|
84
84
|
"@babel/runtime": "^7.21.0",
|
|
85
|
-
"@commitlint/cli": "^17.5.
|
|
85
|
+
"@commitlint/cli": "^17.5.1",
|
|
86
86
|
"@commitlint/config-conventional": "^17.4.4",
|
|
87
87
|
"@commitlint/config-lerna-scopes": "^17.4.2",
|
|
88
88
|
"@commitlint/cz-commitlint": "^17.5.0",
|
|
@@ -100,9 +100,8 @@
|
|
|
100
100
|
"@types/jest": "^29.5.0",
|
|
101
101
|
"@types/lodash": "^4.14.192",
|
|
102
102
|
"@types/lodash.isequal": "^4.5.6",
|
|
103
|
-
"@types/node": "^18.15.
|
|
104
|
-
"@types/
|
|
105
|
-
"@types/react": "^18.0.30",
|
|
103
|
+
"@types/node": "^18.15.11",
|
|
104
|
+
"@types/react": "^18.0.31",
|
|
106
105
|
"@types/react-dom": "^18.0.11",
|
|
107
106
|
"@types/shelljs": "^0.8.11",
|
|
108
107
|
"@typescript-eslint/parser": "^5.57.0",
|
|
@@ -113,7 +112,7 @@
|
|
|
113
112
|
"cssnano": "^6.0.0",
|
|
114
113
|
"documentation": "^14.0.1",
|
|
115
114
|
"easy-soft-develop": "^2.0.198",
|
|
116
|
-
"eslint": "^8.
|
|
115
|
+
"eslint": "^8.37.0",
|
|
117
116
|
"eslint-config-airbnb": "^19.0.4",
|
|
118
117
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
119
118
|
"eslint-config-prettier": "^8.8.0",
|
|
@@ -132,7 +131,7 @@
|
|
|
132
131
|
"husky": "^8.0.3",
|
|
133
132
|
"jest": "^29.5.0",
|
|
134
133
|
"lint-staged": "^13.2.0",
|
|
135
|
-
"npm-check-updates": "^16.8.
|
|
134
|
+
"npm-check-updates": "^16.8.2",
|
|
136
135
|
"prettier": "^2.8.7",
|
|
137
136
|
"prettier-plugin-organize-imports": "^3",
|
|
138
137
|
"prettier-plugin-packagejson": "^2",
|