ztxkutils 2.10.63 → 2.10.65
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/fileOperation.js +7 -1
- package/dist/hooks.js +3 -1
- package/dist/index.js +1 -1
- package/dist/print.d.ts +2 -1
- package/dist/print.js +1 -1
- package/dist/{request-0cc024b1.js → request-dc69f021.js} +68 -13
- package/dist/{tools-0ca888cd.js → tools-390e3466.js} +4 -0
- package/dist/tools.js +1 -1
- package/dist/useFileIdToBase64.js +3 -1
- package/dist/workflow.js +1 -1
- package/package.json +1 -1
- package/dist/authority-e6bde99f.js +0 -423
- package/dist/reqUrl-3792afcd.js +0 -82
- package/dist/reqUrl-787dd9e5.js +0 -82
- package/dist/request-ba8abf99.js +0 -2902
- package/dist/request-ef290b9a.js +0 -2838
- package/dist/tools-09a4d620.js +0 -2445
- package/dist/validate-6e735536.js +0 -79
package/dist/fileOperation.js
CHANGED
@@ -1,7 +1,9 @@
|
|
1
1
|
import { g as getToken } from './authority-7a91cb9f.js';
|
2
|
-
import { d as dangerouslySetXss } from './tools-
|
2
|
+
import { d as dangerouslySetXss } from './tools-390e3466.js';
|
3
|
+
import { a as crypto } from './crypto-c481f616.js';
|
3
4
|
import './tslib.es6-35653116.js';
|
4
5
|
import 'dayjs';
|
6
|
+
import 'crypto';
|
5
7
|
|
6
8
|
/**
|
7
9
|
* @author cyx
|
@@ -187,6 +189,8 @@ function createPublicDownloadUrl(apiUrl, fileId) {
|
|
187
189
|
* @param {string} fileName 文件名
|
188
190
|
*/
|
189
191
|
function previewFile(fileUrl, fileId, otherOption) {
|
192
|
+
// 给附件id加密
|
193
|
+
fileId = crypto.encrypt_des(fileId);
|
190
194
|
var token = '';
|
191
195
|
if (typeof otherOption === 'object') {
|
192
196
|
token = getToken() || (otherOption === null || otherOption === void 0 ? void 0 : otherOption.authToken);
|
@@ -225,6 +229,8 @@ function previewFile(fileUrl, fileId, otherOption) {
|
|
225
229
|
* @param {string} fileName 文件名
|
226
230
|
*/
|
227
231
|
function batchPreviewFile(fileUrl, fileId, otherOption) {
|
232
|
+
// 给附件id加密
|
233
|
+
fileId = crypto.encrypt_des(fileId);
|
228
234
|
var token = '';
|
229
235
|
if (typeof otherOption === 'object') {
|
230
236
|
token = getToken() || (otherOption === null || otherOption === void 0 ? void 0 : otherOption.authToken);
|
package/dist/hooks.js
CHANGED
@@ -5,8 +5,10 @@ import { message } from 'ztxkui';
|
|
5
5
|
import axios from 'axios';
|
6
6
|
import './fileOperation.js';
|
7
7
|
import './authority-7a91cb9f.js';
|
8
|
-
import './tools-
|
8
|
+
import './tools-390e3466.js';
|
9
9
|
import 'dayjs';
|
10
|
+
import './crypto-c481f616.js';
|
11
|
+
import 'crypto';
|
10
12
|
|
11
13
|
function useTableLinkage(_a) {
|
12
14
|
var records = _a.records, callbackPromise = _a.callbackPromise, dependencies = _a.dependencies, devDependencies = _a.devDependencies;
|
package/dist/index.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
export { d as authority } from './authority-7a91cb9f.js';
|
2
2
|
export { d as dataModel } from './dataModel-1fbaff40.js';
|
3
|
-
export { t as tools } from './tools-
|
3
|
+
export { t as tools } from './tools-390e3466.js';
|
4
4
|
export { v as validate } from './validate-18e52490.js';
|
5
5
|
export { r as request } from './request-87d93572.js';
|
6
6
|
export { r as reqUrl } from './reqUrl-22b880a4.js';
|
package/dist/print.d.ts
CHANGED
@@ -31,7 +31,7 @@ export declare function htmlToPdf({ pageClassName, dom, pdfName, isShowPage, noW
|
|
31
31
|
imgPositionX?: number;
|
32
32
|
waterText?: string;
|
33
33
|
}): Promise<jsPDF>;
|
34
|
-
export declare function htmlToPdfUseCanvas({ pageClassName, dom, pdfName, isShowPage, isOnlyOne, noWater, pdfOptions, imgPositionX, isDownload, }: {
|
34
|
+
export declare function htmlToPdfUseCanvas({ pageClassName, dom, pdfName, isShowPage, isOnlyOne, noWater, pdfOptions, imgPositionX, isDownload, isAutoPageCount, }: {
|
35
35
|
pageClassName?: string;
|
36
36
|
dom: HTMLElement;
|
37
37
|
pdfName: string;
|
@@ -41,6 +41,7 @@ export declare function htmlToPdfUseCanvas({ pageClassName, dom, pdfName, isShow
|
|
41
41
|
pdfOptions?: any;
|
42
42
|
imgPositionX?: number;
|
43
43
|
isDownload?: boolean;
|
44
|
+
isAutoPageCount?: boolean;
|
44
45
|
}): Promise<{
|
45
46
|
pdfs: any;
|
46
47
|
pdfBase64: any;
|
package/dist/print.js
CHANGED
@@ -232,7 +232,7 @@ function htmlToPdf(_a) {
|
|
232
232
|
}
|
233
233
|
}
|
234
234
|
function htmlToPdfUseCanvas(_a) {
|
235
|
-
var pageClassName = _a.pageClassName, dom = _a.dom, pdfName = _a.pdfName, isShowPage = _a.isShowPage, isOnlyOne = _a.isOnlyOne, noWater = _a.noWater, pdfOptions = _a.pdfOptions, imgPositionX = _a.imgPositionX, isDownload = _a.isDownload;
|
235
|
+
var pageClassName = _a.pageClassName, dom = _a.dom, pdfName = _a.pdfName, isShowPage = _a.isShowPage, isOnlyOne = _a.isOnlyOne, noWater = _a.noWater, pdfOptions = _a.pdfOptions, imgPositionX = _a.imgPositionX, isDownload = _a.isDownload; _a.isAutoPageCount;
|
236
236
|
var allDom = document.querySelectorAll(pageClassName ? pageClassName : '.html2canvas-container-page');
|
237
237
|
var format = (pdfOptions === null || pdfOptions === void 0 ? void 0 : pdfOptions.format) || [632.28, 841.89];
|
238
238
|
var _pdfOptions = __assign({ unit: 'pt', format: format }, (pdfOptions || {}));
|
@@ -2470,7 +2470,7 @@ var AxiosCancel = /** @class */ (function () {
|
|
2470
2470
|
}());
|
2471
2471
|
var axiosCancel = new AxiosCancel();
|
2472
2472
|
|
2473
|
-
var timeoutNum = 60000
|
2473
|
+
var timeoutNum = 60000;
|
2474
2474
|
var isRefreshing = true; // 是否需要刷新
|
2475
2475
|
var subscribers = []; // 缓存需要帮助请求的接口
|
2476
2476
|
var requestTokenEndTime = 0; // token调用结束时间
|
@@ -2480,6 +2480,7 @@ var isNotFound = false; // 404弹框
|
|
2480
2480
|
var isOffSite = false; // 501异地登录
|
2481
2481
|
var isExpiration = false; // 401登录过期
|
2482
2482
|
var catchPromiseObj = []; // 缓存当前宏任务下的缓存
|
2483
|
+
var autonomousCatchingPromiseObj = {}; // 自主缓存。可以自主清空。每个url只对应一个请求
|
2483
2484
|
var __isTimeoutMessage = false; // 是否需要默认展示超时弹框
|
2484
2485
|
var isFirstSet = false; // 首次初始化
|
2485
2486
|
// 'Basic em1kbXM6em1kbXNfc2VjcmV0' 新的auth
|
@@ -2647,10 +2648,14 @@ function setInterceptorsResponse(jumpCallback, otherOptions) {
|
|
2647
2648
|
params: error === null || error === void 0 ? void 0 : error.config.params,
|
2648
2649
|
});
|
2649
2650
|
});
|
2651
|
+
/** 如果接口出错了,清理掉这个错误的接口缓存 */
|
2652
|
+
if (autonomousCatchingPromiseObj[error === null || error === void 0 ? void 0 : error.config.url]) {
|
2653
|
+
autonomousCatchingPromiseObj[error === null || error === void 0 ? void 0 : error.config.url] = undefined;
|
2654
|
+
}
|
2650
2655
|
if (item !== -1) {
|
2651
2656
|
catchPromiseObj.splice(item, 1);
|
2652
2657
|
}
|
2653
|
-
console.log(error
|
2658
|
+
// console.log(error?.config, catchPromiseObj);
|
2654
2659
|
/** 如果接口出错了,那么清理掉这个错误的接口 */
|
2655
2660
|
// 超时异常统一处理,超时的异常没有response值,只能通过toString处理
|
2656
2661
|
if (!errRes && error.toString().indexOf(timeoutNum + "ms") !== -1) {
|
@@ -2766,14 +2771,14 @@ function transformObj(obj) {
|
|
2766
2771
|
return obj;
|
2767
2772
|
}
|
2768
2773
|
function request(myOptions, jumpCallback, otherOptions) {
|
2769
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
2774
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
|
2770
2775
|
var InnerAuthorization = (otherOptions || {}).InnerAuthorization;
|
2771
2776
|
if (!isFirstSet) {
|
2772
2777
|
setInterceptorsRequest();
|
2773
2778
|
setInterceptorsResponse(jumpCallback, otherOptions);
|
2774
2779
|
isFirstSet = true;
|
2775
2780
|
}
|
2776
|
-
var encryptionType = myOptions.encryptionType, isTimeoutMessage = myOptions.isTimeoutMessage, isForceRequest = myOptions.isForceRequest,
|
2781
|
+
var encryptionType = myOptions.encryptionType, isTimeoutMessage = myOptions.isTimeoutMessage, isForceRequest = myOptions.isForceRequest, _m = myOptions.noCatchUrl, noCatchUrl = _m === void 0 ? [] : _m, isCatch = myOptions.isCatch, mustCatch = myOptions.mustCatch, isAutonomousCatch = myOptions.isAutonomousCatch, _o = myOptions.autonomousCount, autonomousCount = _o === void 0 ? 1 : _o, options = __rest(myOptions, ["encryptionType", "isTimeoutMessage", "isForceRequest", "noCatchUrl", "isCatch", "mustCatch", "isAutonomousCatch", "autonomousCount"]);
|
2777
2782
|
timeoutNum =
|
2778
2783
|
typeof myOptions.timeout === 'number' ? myOptions.timeout : timeoutNum;
|
2779
2784
|
__isTimeoutMessage = isTimeoutMessage;
|
@@ -2806,10 +2811,6 @@ function request(myOptions, jumpCallback, otherOptions) {
|
|
2806
2811
|
}
|
2807
2812
|
// 将传入配置与默认配置混合
|
2808
2813
|
var newOptions = __assign(__assign(__assign({}, defaultOptions), options), { headers: __assign(__assign({}, defaultOptions.headers), options.headers) });
|
2809
|
-
// 湘钢国贸项目 除了登录接口外 去掉 Authorization认证头部
|
2810
|
-
if (newOptions.url !== '/api/zmdms-auth/oauth/token') {
|
2811
|
-
delete newOptions.headers.Authorization;
|
2812
|
-
}
|
2813
2814
|
// 特殊请求处理
|
2814
2815
|
if (((_e = newOptions.method) === null || _e === void 0 ? void 0 : _e.toUpperCase()) === 'POST' ||
|
2815
2816
|
((_f = newOptions.method) === null || _f === void 0 ? void 0 : _f.toUpperCase()) === 'PUT' ||
|
@@ -2853,13 +2854,63 @@ function request(myOptions, jumpCallback, otherOptions) {
|
|
2853
2854
|
};
|
2854
2855
|
}
|
2855
2856
|
}
|
2857
|
+
// 自主缓存请求。默认这个缓存只会针对一个url缓存一次请求
|
2858
|
+
if (isAutonomousCatch) {
|
2859
|
+
var item = autonomousCatchingPromiseObj[newOptions.url];
|
2860
|
+
// 如果当前接口没有缓存 缓存住,并且返回接口结果
|
2861
|
+
if (!item || !Array.isArray(item)) {
|
2862
|
+
var result = axios(newOptions);
|
2863
|
+
autonomousCatchingPromiseObj[newOptions.url] = [
|
2864
|
+
{
|
2865
|
+
params: newOptions.params,
|
2866
|
+
promiseObj: result,
|
2867
|
+
method: (_h = newOptions.method) === null || _h === void 0 ? void 0 : _h.toUpperCase(),
|
2868
|
+
},
|
2869
|
+
];
|
2870
|
+
return result;
|
2871
|
+
}
|
2872
|
+
// 如果当前接口有缓存
|
2873
|
+
// 判断当前参数是否命中
|
2874
|
+
var index = item.findIndex(function (itemChild) {
|
2875
|
+
var _a, _b;
|
2876
|
+
return isEqual_1({
|
2877
|
+
method: (_a = itemChild.method) === null || _a === void 0 ? void 0 : _a.toUpperCase(),
|
2878
|
+
params: itemChild.params,
|
2879
|
+
}, {
|
2880
|
+
method: (_b = newOptions.method) === null || _b === void 0 ? void 0 : _b.toUpperCase(),
|
2881
|
+
params: newOptions.params,
|
2882
|
+
});
|
2883
|
+
});
|
2884
|
+
// 如果缓存命中
|
2885
|
+
if (index !== -1) {
|
2886
|
+
// 最近使用优先
|
2887
|
+
var result = item[index];
|
2888
|
+
item.splice(index, 1);
|
2889
|
+
item.push(result);
|
2890
|
+
return result === null || result === void 0 ? void 0 : result.promiseObj;
|
2891
|
+
}
|
2892
|
+
else {
|
2893
|
+
var result = axios(newOptions);
|
2894
|
+
// 当前接口可以缓存几个结果 如果超过最大缓存数量 删除第一位
|
2895
|
+
if (item.length >= autonomousCount) {
|
2896
|
+
item.shift();
|
2897
|
+
}
|
2898
|
+
item.push({
|
2899
|
+
params: newOptions.params,
|
2900
|
+
promiseObj: result,
|
2901
|
+
method: (_j = newOptions.method) === null || _j === void 0 ? void 0 : _j.toUpperCase(),
|
2902
|
+
});
|
2903
|
+
return result;
|
2904
|
+
}
|
2905
|
+
}
|
2856
2906
|
// 缓存本次宏任务下的GET请求,并且不是以/page结尾的列表分页接口
|
2857
2907
|
// 并且不是强制请求,强制请求需要
|
2858
|
-
if ((((
|
2859
|
-
!((
|
2908
|
+
if (((((_k = newOptions.method) === null || _k === void 0 ? void 0 : _k.toUpperCase()) === 'GET' &&
|
2909
|
+
!((_l = newOptions.url) === null || _l === void 0 ? void 0 : _l.endsWith('/page')) &&
|
2860
2910
|
!noCatchUrl.find(function (item) { var _a; return (_a = newOptions.url) === null || _a === void 0 ? void 0 : _a.endsWith(item); }) &&
|
2861
2911
|
isCatch) ||
|
2862
|
-
mustCatch)
|
2912
|
+
mustCatch) &&
|
2913
|
+
!isAutonomousCatch) {
|
2863
2914
|
// 能不能找到,url与参数都一样得数据
|
2864
2915
|
var index = catchPromiseObj.findIndex(function (item) {
|
2865
2916
|
return isEqual_1({
|
@@ -2903,6 +2954,9 @@ function clearNoCompleteRequest() {
|
|
2903
2954
|
}
|
2904
2955
|
function clearCatch() {
|
2905
2956
|
catchPromiseObj = [];
|
2957
|
+
}
|
2958
|
+
function clearAutonomousCatch(url) {
|
2959
|
+
autonomousCatchingPromiseObj[url] = undefined;
|
2906
2960
|
}
|
2907
2961
|
|
2908
2962
|
var request$1 = /*#__PURE__*/Object.freeze({
|
@@ -2911,7 +2965,8 @@ var request$1 = /*#__PURE__*/Object.freeze({
|
|
2911
2965
|
NEW_AUTHORIZATION: NEW_AUTHORIZATION,
|
2912
2966
|
'default': request,
|
2913
2967
|
clearNoCompleteRequest: clearNoCompleteRequest,
|
2914
|
-
clearCatch: clearCatch
|
2968
|
+
clearCatch: clearCatch,
|
2969
|
+
clearAutonomousCatch: clearAutonomousCatch
|
2915
2970
|
});
|
2916
2971
|
|
2917
|
-
export { NEW_AUTHORIZATION as N, OLD_AUTHORIZATION as O, request as a, clearCatch as b, clearNoCompleteRequest as c, request$1 as r };
|
2972
|
+
export { NEW_AUTHORIZATION as N, OLD_AUTHORIZATION as O, request as a, clearCatch as b, clearNoCompleteRequest as c, clearAutonomousCatch as d, request$1 as r };
|
@@ -2223,6 +2223,10 @@ function _exactRound(num, ratio) {
|
|
2223
2223
|
}
|
2224
2224
|
}
|
2225
2225
|
function exactRound(num, ratio) {
|
2226
|
+
var typeNum = typeof num;
|
2227
|
+
if (typeNum !== 'number' && typeNum !== 'string') {
|
2228
|
+
return num;
|
2229
|
+
}
|
2226
2230
|
var value = _exactRound(num, ratio);
|
2227
2231
|
/**特殊处理单价的小数位,有6位的只显示2位0 */
|
2228
2232
|
if (ratio === 6) {
|
package/dist/tools.js
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
import './tslib.es6-35653116.js';
|
2
2
|
import 'dayjs';
|
3
|
-
export { S as SHOWFRAME_KEY, h as clearAssignStr, k as copyContent, d as dangerouslySetXss, c as divide, e as exactRound, g as getUrlSearch, j as isEqualByKey, l as loadFileRename, m as minus, p as plus, s as showFrame, a as timeTransfrom, b as times, f as toThousand, i as transformFileSize } from './tools-
|
3
|
+
export { S as SHOWFRAME_KEY, h as clearAssignStr, k as copyContent, d as dangerouslySetXss, c as divide, e as exactRound, g as getUrlSearch, j as isEqualByKey, l as loadFileRename, m as minus, p as plus, s as showFrame, a as timeTransfrom, b as times, f as toThousand, i as transformFileSize } from './tools-390e3466.js';
|
@@ -1,9 +1,11 @@
|
|
1
1
|
import { useState, useEffect } from 'react';
|
2
2
|
import { createDownloadUrl } from './fileOperation.js';
|
3
3
|
import './authority-7a91cb9f.js';
|
4
|
-
import './tools-
|
4
|
+
import './tools-390e3466.js';
|
5
5
|
import './tslib.es6-35653116.js';
|
6
6
|
import 'dayjs';
|
7
|
+
import './crypto-c481f616.js';
|
8
|
+
import 'crypto';
|
7
9
|
|
8
10
|
/**
|
9
11
|
* 图片附件id转base64字符串
|
package/dist/workflow.js
CHANGED