@zat-design/sisyphus-react 3.13.16-beta.3 → 3.13.16-beta.4
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.
@@ -21,10 +21,6 @@ function useEnum(codes, value, compose) {
|
|
21
21
|
fieldNames = _ref3$fieldNames === void 0 ? {} : _ref3$fieldNames,
|
22
22
|
_ref3$clear = _ref3.clear,
|
23
23
|
clear = _ref3$clear === void 0 ? true : _ref3$clear;
|
24
|
-
// 存在子应用自管理枚举时,需要根据其指定的cacheKey进行缓存
|
25
|
-
if (cacheKey !== 'zat-design-pro-component-cacheKey') {
|
26
|
-
baseEnumStorage = null;
|
27
|
-
}
|
28
24
|
var catchData = getEnumData(storage, cacheKey, baseEnumStorage);
|
29
25
|
// 默认枚举缓存数据
|
30
26
|
baseEnumStorage = catchData;
|
@@ -10,8 +10,13 @@ var _excluded = ["children"];
|
|
10
10
|
* @returns
|
11
11
|
*/
|
12
12
|
export function getEnumData(storage, cacheKey, baseEnumStorage) {
|
13
|
-
|
14
|
-
|
13
|
+
var _baseEnumStorage = baseEnumStorage;
|
14
|
+
// 存在子应用自管理枚举时,需要根据其指定的cacheKey进行缓存
|
15
|
+
if (cacheKey !== 'zat-design-pro-component-cacheKey') {
|
16
|
+
_baseEnumStorage = null;
|
17
|
+
}
|
18
|
+
if (_baseEnumStorage && window.localStorage.getItem(cacheKey)) {
|
19
|
+
return _baseEnumStorage;
|
15
20
|
}
|
16
21
|
if (storage === 'localStorage') {
|
17
22
|
return JSON.parse(window.localStorage.getItem(cacheKey) || '{}');
|
@@ -27,10 +27,6 @@ function useEnum(codes, value, compose) {
|
|
27
27
|
fieldNames = _ref3$fieldNames === void 0 ? {} : _ref3$fieldNames,
|
28
28
|
_ref3$clear = _ref3.clear,
|
29
29
|
clear = _ref3$clear === void 0 ? true : _ref3$clear;
|
30
|
-
// 存在子应用自管理枚举时,需要根据其指定的cacheKey进行缓存
|
31
|
-
if (cacheKey !== 'zat-design-pro-component-cacheKey') {
|
32
|
-
baseEnumStorage = null;
|
33
|
-
}
|
34
30
|
var catchData = (0, _utils.getEnumData)(storage, cacheKey, baseEnumStorage);
|
35
31
|
// 默认枚举缓存数据
|
36
32
|
baseEnumStorage = catchData;
|
@@ -23,8 +23,13 @@ var _excluded = ["children"];
|
|
23
23
|
* @returns
|
24
24
|
*/
|
25
25
|
function getEnumData(storage, cacheKey, baseEnumStorage) {
|
26
|
-
|
27
|
-
|
26
|
+
var _baseEnumStorage = baseEnumStorage;
|
27
|
+
// 存在子应用自管理枚举时,需要根据其指定的cacheKey进行缓存
|
28
|
+
if (cacheKey !== 'zat-design-pro-component-cacheKey') {
|
29
|
+
_baseEnumStorage = null;
|
30
|
+
}
|
31
|
+
if (_baseEnumStorage && window.localStorage.getItem(cacheKey)) {
|
32
|
+
return _baseEnumStorage;
|
28
33
|
}
|
29
34
|
if (storage === 'localStorage') {
|
30
35
|
return JSON.parse(window.localStorage.getItem(cacheKey) || '{}');
|