@umijs/plugins 4.0.0-canary.20220914.1 → 4.0.0-canary.20220928.1
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/dist/access.js +10 -4
- package/dist/dva.js +4 -1
- package/dist/layout.js +1 -0
- package/dist/qiankun/slave.js +6 -10
- package/dist/valtio.d.ts +3 -0
- package/dist/valtio.js +64 -0
- package/libs/qiankun/slave/lifecycles.ts +1 -1
- package/package.json +4 -3
package/dist/access.js
CHANGED
|
@@ -92,8 +92,14 @@ export const Access: React.FC<PropsWithChildren<AccessProps>> = (props) => {
|
|
|
92
92
|
export const useAccessMarkedRoutes = (routes: IRoute[]) => {
|
|
93
93
|
const access = useAccess();
|
|
94
94
|
const markdedRoutes: IRoute[] = React.useMemo(() => {
|
|
95
|
-
const process = (route, parentAccessCode) => {
|
|
96
|
-
|
|
95
|
+
const process = (route, parentAccessCode, parentRoute) => {
|
|
96
|
+
let accessCode = route.access;
|
|
97
|
+
// \u7528\u7236\u7EA7\u7684\u8DEF\u7531\u68C0\u6D4B\u7236\u7EA7\u7684 accessCode
|
|
98
|
+
let detectorRoute = route;
|
|
99
|
+
if (!accessCode && parentAccessCode) {
|
|
100
|
+
accessCode = parentAccessCode;
|
|
101
|
+
detectorRoute = parentRoute;
|
|
102
|
+
}
|
|
97
103
|
|
|
98
104
|
// set default status
|
|
99
105
|
route.unaccessible = ${api.config.access.strictMode ? "true" : "false"};
|
|
@@ -103,7 +109,7 @@ export const useAccessMarkedRoutes = (routes: IRoute[]) => {
|
|
|
103
109
|
const detector = access[accessCode];
|
|
104
110
|
|
|
105
111
|
if (typeof detector === 'function') {
|
|
106
|
-
route.unaccessible = !detector(
|
|
112
|
+
route.unaccessible = !detector(detectorRoute);
|
|
107
113
|
} else if (typeof detector === 'boolean') {
|
|
108
114
|
route.unaccessible = !detector;
|
|
109
115
|
} else if (typeof detector === 'undefined') {
|
|
@@ -114,7 +120,7 @@ export const useAccessMarkedRoutes = (routes: IRoute[]) => {
|
|
|
114
120
|
// check children access code
|
|
115
121
|
if (route.children?.length) {
|
|
116
122
|
const isNoAccessibleChild = !route.children.reduce((hasAccessibleChild, child) => {
|
|
117
|
-
process(child, accessCode);
|
|
123
|
+
process(child, accessCode, route);
|
|
118
124
|
|
|
119
125
|
return hasAccessibleChild || !child.unaccessible;
|
|
120
126
|
}, false);
|
package/dist/dva.js
CHANGED
|
@@ -41,7 +41,8 @@ var dva_default = (api) => {
|
|
|
41
41
|
schema(Joi) {
|
|
42
42
|
return Joi.alternatives().try(Joi.object({
|
|
43
43
|
extraModels: Joi.array().items(Joi.string()),
|
|
44
|
-
immer: Joi.object()
|
|
44
|
+
immer: Joi.object(),
|
|
45
|
+
skipModelValidate: Joi.boolean()
|
|
45
46
|
}), Joi.boolean().invalid(true));
|
|
46
47
|
}
|
|
47
48
|
},
|
|
@@ -192,6 +193,8 @@ export { getDvaApp } from './dva';
|
|
|
192
193
|
function getModelUtil(api) {
|
|
193
194
|
return new import_modelUtils.ModelUtils(api, {
|
|
194
195
|
contentTest(content) {
|
|
196
|
+
if (api == null ? void 0 : api.config.dva.skipModelValidate)
|
|
197
|
+
return true;
|
|
195
198
|
return content.startsWith("// @dva-model");
|
|
196
199
|
},
|
|
197
200
|
astTest({ node, content }) {
|
package/dist/layout.js
CHANGED
|
@@ -181,6 +181,7 @@ const { formatMessage } = useIntl();
|
|
|
181
181
|
});
|
|
182
182
|
|
|
183
183
|
const matchedRoute = useMemo(() => matchRoutes(clientRoutes, location.pathname).pop()?.route, [location.pathname]);
|
|
184
|
+
// \u73B0\u5728\u7684 layout \u53CA wrapper \u5B9E\u73B0\u662F\u901A\u8FC7\u7236\u8DEF\u7531\u7684\u5F62\u5F0F\u5B9E\u73B0\u7684, \u4F1A\u5BFC\u81F4\u8DEF\u7531\u6570\u636E\u591A\u4E86\u5197\u4F59\u5C42\u7EA7, proLayout \u6D88\u8D39\u65F6, \u65E0\u6CD5\u6B63\u786E\u5C55\u793A\u83DC\u5355, \u8FD9\u91CC\u5BF9\u5197\u4F59\u6570\u636E\u8FDB\u884C\u8FC7\u6EE4\u64CD\u4F5C
|
|
184
185
|
const newRoutes = filterRoutes(clientRoutes.filter(route => route.id === 'ant-design-pro-layout'), (route) => {
|
|
185
186
|
return (!!route.isLayout && route.id !== 'ant-design-pro-layout') || !!route.isWrapper;
|
|
186
187
|
})
|
package/dist/qiankun/slave.js
CHANGED
|
@@ -122,7 +122,7 @@ export interface IRuntimeConfig {
|
|
|
122
122
|
});
|
|
123
123
|
});
|
|
124
124
|
api.modifyDefaultConfig((memo) => {
|
|
125
|
-
var _a, _b, _c;
|
|
125
|
+
var _a, _b, _c, _d, _e;
|
|
126
126
|
const initialSlaveOptions = {
|
|
127
127
|
devSourceMap: true,
|
|
128
128
|
...JSON.parse(process.env.INITIAL_QIANKUN_SLAVE_OPTIONS || "{}"),
|
|
@@ -141,17 +141,13 @@ export interface IRuntimeConfig {
|
|
|
141
141
|
if (!shouldNotModifyDefaultBase && historyType !== "hash") {
|
|
142
142
|
modifiedDefaultConfig.base = `/${api.pkg.name}`;
|
|
143
143
|
}
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
if (config.mfsu !== false) {
|
|
149
|
-
config.mfsu = {
|
|
150
|
-
...config.mfsu,
|
|
151
|
-
mfName: ((_a = config.mfsu) == null ? void 0 : _a.mfName) || `mf_${(_b = api.pkg.name) == null ? void 0 : _b.replace(/^@/, "").replace(/\W/g, "_")}`
|
|
144
|
+
if (modifiedDefaultConfig.mfsu !== false) {
|
|
145
|
+
modifiedDefaultConfig.mfsu = {
|
|
146
|
+
...modifiedDefaultConfig.mfsu,
|
|
147
|
+
mfName: ((_d = modifiedDefaultConfig.mfsu) == null ? void 0 : _d.mfName) || `mf_${(_e = api.pkg.name) == null ? void 0 : _e.replace(/^@/, "").replace(/\W/g, "_")}`
|
|
152
148
|
};
|
|
153
149
|
}
|
|
154
|
-
return
|
|
150
|
+
return modifiedDefaultConfig;
|
|
155
151
|
});
|
|
156
152
|
api.addHTMLHeadScripts(() => {
|
|
157
153
|
var _a, _b;
|
package/dist/valtio.d.ts
ADDED
package/dist/valtio.js
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod));
|
|
20
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
21
|
+
|
|
22
|
+
// src/valtio.ts
|
|
23
|
+
var valtio_exports = {};
|
|
24
|
+
__export(valtio_exports, {
|
|
25
|
+
default: () => valtio_default
|
|
26
|
+
});
|
|
27
|
+
module.exports = __toCommonJS(valtio_exports);
|
|
28
|
+
var import_path = require("path");
|
|
29
|
+
var import_utils = require("@umijs/utils");
|
|
30
|
+
var valtio_default = (api) => {
|
|
31
|
+
api.describe({
|
|
32
|
+
key: "valtio",
|
|
33
|
+
config: {
|
|
34
|
+
schema(joi) {
|
|
35
|
+
return joi.object();
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
const libPath = (0, import_utils.winPath)((0, import_path.dirname)(require.resolve("@umijs/valtio/package.json")));
|
|
40
|
+
api.onGenerateFiles(() => {
|
|
41
|
+
api.writeTmpFile({
|
|
42
|
+
path: "index.ts",
|
|
43
|
+
content: `
|
|
44
|
+
export {
|
|
45
|
+
proxy, useSnapshot, snapshot, subscribe,
|
|
46
|
+
proxyWithComputed,
|
|
47
|
+
proxyWithHistory,
|
|
48
|
+
proxyWithDevtools,
|
|
49
|
+
proxyMap,
|
|
50
|
+
proxySet,
|
|
51
|
+
} from '${libPath}';
|
|
52
|
+
`
|
|
53
|
+
});
|
|
54
|
+
});
|
|
55
|
+
api.modifyConfig((memo) => {
|
|
56
|
+
memo.alias = {
|
|
57
|
+
...memo.alias,
|
|
58
|
+
"@umijs/valtio": libPath
|
|
59
|
+
};
|
|
60
|
+
return memo;
|
|
61
|
+
});
|
|
62
|
+
};
|
|
63
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
64
|
+
0 && (module.exports = {});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umijs/plugins",
|
|
3
|
-
"version": "4.0.0-canary.
|
|
3
|
+
"version": "4.0.0-canary.20220928.1",
|
|
4
4
|
"description": "@umijs/plugins",
|
|
5
5
|
"homepage": "https://github.com/umijs/umi/tree/master/packages/plugins#readme",
|
|
6
6
|
"bugs": "https://github.com/umijs/umi/issues",
|
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
"@ant-design/antd-theme-variable": "^1.0.0",
|
|
28
28
|
"@ant-design/icons": "^4.7.0",
|
|
29
29
|
"@ant-design/pro-components": "^2.0.1",
|
|
30
|
-
"@umijs/bundler-utils": "4.0.0-canary.
|
|
30
|
+
"@umijs/bundler-utils": "4.0.0-canary.20220928.1",
|
|
31
|
+
"@umijs/valtio": "^1.0.0",
|
|
31
32
|
"antd-dayjs-webpack-plugin": "^1.0.6",
|
|
32
33
|
"axios": "^0.27.2",
|
|
33
34
|
"babel-plugin-import": "^1.13.5",
|
|
@@ -46,7 +47,7 @@
|
|
|
46
47
|
"warning": "^4.0.3"
|
|
47
48
|
},
|
|
48
49
|
"devDependencies": {
|
|
49
|
-
"umi": "4.0.0-canary.
|
|
50
|
+
"umi": "4.0.0-canary.20220928.1"
|
|
50
51
|
},
|
|
51
52
|
"publishConfig": {
|
|
52
53
|
"access": "public"
|