ztxkutils 2.10.64 → 2.10.66-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.
@@ -1,13 +1,17 @@
1
1
  import { g as getToken } from './authority-7a91cb9f.js';
2
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
8
10
  * @description 文件操作相关
9
11
  */
10
12
  function downloadFile(apiUrl, fileId, fileName, otherOption) {
13
+ // 给附件id加密
14
+ fileId = encodeURIComponent(crypto.encrypt(fileId));
11
15
  var xhr = new XMLHttpRequest();
12
16
  var token = '';
13
17
  var addWaterMark = 'true';
@@ -42,6 +46,8 @@ function downloadFile(apiUrl, fileId, fileName, otherOption) {
42
46
  xhr.send();
43
47
  }
44
48
  function downloadFileCallBack(apiUrl, fileId, fileName, otherOption) {
49
+ // 给附件id加密
50
+ fileId = encodeURIComponent(crypto.encrypt(fileId));
45
51
  var _a = otherOption || {}, authToken = _a.authToken, callbackAfter = _a.callbackAfter, callbackError = _a.callbackError, _b = _a.addWaterMark, addWaterMark = _b === void 0 ? true : _b;
46
52
  var xhr = new XMLHttpRequest();
47
53
  var token = getToken() || authToken;
@@ -77,6 +83,8 @@ function downloadFileCallBack(apiUrl, fileId, fileName, otherOption) {
77
83
  * 批量下载
78
84
  */
79
85
  function batchDownloadFileCallBack(apiUrl, fileIds, fileNames, otherOption) {
86
+ // 给附件id加密
87
+ fileIds = encodeURIComponent(crypto.encrypt(fileIds));
80
88
  var _a = otherOption || {}, authToken = _a.authToken, zipName = _a.zipName, _b = _a.addWaterMark, addWaterMark = _b === void 0 ? true : _b, callbackAfter = _a.callbackAfter, callbackError = _a.callbackError;
81
89
  var xhr = new XMLHttpRequest();
82
90
  var token = getToken() || authToken;
@@ -117,6 +125,8 @@ function batchDownloadFileCallBack(apiUrl, fileIds, fileNames, otherOption) {
117
125
  * @param {string} fileName 文件名
118
126
  */
119
127
  function downloadPublicFile(apiUrl, fileId, fileName, otherOption) {
128
+ // 给附件id加密
129
+ fileId = encodeURIComponent(crypto.encrypt(fileId));
120
130
  var _a = otherOption || {}, callbackAfter = _a.callbackAfter, callbackError = _a.callbackError;
121
131
  var xhr = new XMLHttpRequest();
122
132
  var _apiUrl = apiUrl.endsWith('/')
@@ -153,6 +163,8 @@ function downloadPublicFile(apiUrl, fileId, fileName, otherOption) {
153
163
  * @param {string} fileId 文件id
154
164
  */
155
165
  function createDownloadUrl(apiUrl, fileId, authToken) {
166
+ // 给附件id加密
167
+ fileId = encodeURIComponent(crypto.encrypt(fileId));
156
168
  var token = getToken() || authToken;
157
169
  var _apiUrl = apiUrl.endsWith('/')
158
170
  ? apiUrl.slice(0, apiUrl.length - 1)
@@ -165,6 +177,8 @@ function createDownloadUrl(apiUrl, fileId, authToken) {
165
177
  * @param {string} fileId 文件id
166
178
  */
167
179
  function createDownloadUrlNoBase(fileId, authToken) {
180
+ // 给附件id加密
181
+ fileId = encodeURIComponent(crypto.encrypt(fileId));
168
182
  var token = getToken() || authToken;
169
183
  return "/api/zmdms-resource/oss/endpoint/download-file/" + fileId + "?Zmdms-Auth=bearer " + token;
170
184
  }
@@ -174,6 +188,8 @@ function createDownloadUrlNoBase(fileId, authToken) {
174
188
  * @param {string} fileId 文件id
175
189
  */
176
190
  function createPublicDownloadUrl(apiUrl, fileId) {
191
+ // 给附件id加密
192
+ fileId = encodeURIComponent(crypto.encrypt(fileId));
177
193
  var _apiUrl = apiUrl.endsWith('/')
178
194
  ? apiUrl.slice(0, apiUrl.length - 1)
179
195
  : apiUrl;
@@ -187,6 +203,8 @@ function createPublicDownloadUrl(apiUrl, fileId) {
187
203
  * @param {string} fileName 文件名
188
204
  */
189
205
  function previewFile(fileUrl, fileId, otherOption) {
206
+ // 给附件id加密
207
+ fileId = encodeURIComponent(crypto.encrypt(fileId));
190
208
  var token = '';
191
209
  if (typeof otherOption === 'object') {
192
210
  token = getToken() || (otherOption === null || otherOption === void 0 ? void 0 : otherOption.authToken);
@@ -225,6 +243,8 @@ function previewFile(fileUrl, fileId, otherOption) {
225
243
  * @param {string} fileName 文件名
226
244
  */
227
245
  function batchPreviewFile(fileUrl, fileId, otherOption) {
246
+ // 给附件id加密
247
+ fileId = encodeURIComponent(crypto.encrypt(fileId));
228
248
  var token = '';
229
249
  if (typeof otherOption === 'object') {
230
250
  token = getToken() || (otherOption === null || otherOption === void 0 ? void 0 : otherOption.authToken);
package/dist/hooks.js CHANGED
@@ -7,6 +7,8 @@ import './fileOperation.js';
7
7
  import './authority-7a91cb9f.js';
8
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/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 * 5;
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 === null || error === void 0 ? void 0 : error.config, catchPromiseObj);
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, _k = myOptions.noCatchUrl, noCatchUrl = _k === void 0 ? [] : _k, isCatch = myOptions.isCatch, mustCatch = myOptions.mustCatch, options = __rest(myOptions, ["encryptionType", "isTimeoutMessage", "isForceRequest", "noCatchUrl", "isCatch", "mustCatch"]);
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 ((((_h = newOptions.method) === null || _h === void 0 ? void 0 : _h.toUpperCase()) === 'GET' &&
2859
- !((_j = newOptions.url) === null || _j === void 0 ? void 0 : _j.endsWith('/page')) &&
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 };
package/dist/test.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {};
@@ -4,6 +4,8 @@ import './authority-7a91cb9f.js';
4
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ztxkutils",
3
- "version": "2.10.64",
3
+ "version": "2.10.66-1",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",