component-shipinlv 0.0.13 → 0.0.17

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.
@@ -163,7 +163,7 @@ declare const Tool: {
163
163
  setTimeOffset(serverTime: number): void;
164
164
  getTime(): number;
165
165
  h5Pay(query: Pay.H5PayQuery): void;
166
- notification(type: "success" | "info" | "warning" | "error", message: string, description?: import("react").ReactNode, options?: NotificationOptions): void;
166
+ notification(type: "error" | "success" | "info" | "warning", message: string, description?: import("react").ReactNode, options?: NotificationOptions): void;
167
167
  notificationSuccess(message: string, description?: import("react").ReactNode, options?: NotificationOptions): void;
168
168
  notificationError(message: string, description?: import("react").ReactNode, options?: NotificationOptions): void;
169
169
  notificationWarning(message: string, description?: import("react").ReactNode, options?: NotificationOptions): void;
package/dist/lib/Tool.js CHANGED
@@ -2,7 +2,6 @@ import _typeof from "@babel/runtime/helpers/esm/typeof";
2
2
  import _regeneratorRuntime from "@babel/runtime/helpers/esm/regeneratorRuntime";
3
3
  import _asyncToGenerator from "@babel/runtime/helpers/esm/asyncToGenerator";
4
4
  import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
5
- var _window8;
6
5
  // @ts-nocheck
7
6
 
8
7
  import { Modal, message, Tooltip } from 'antd';
@@ -65,7 +64,7 @@ var Tool = _objectSpread(_objectSpread({
65
64
  GData: {
66
65
  userInfo: {}
67
66
  },
68
- //window._GData,
67
+ //win dow._GData,
69
68
  data: function data(key, value) {
70
69
  if (typeof value === 'undefined') {
71
70
  this.GData[key] = value;
@@ -1095,15 +1094,20 @@ var Tool = _objectSpread(_objectSpread({
1095
1094
  var data = JSON.stringify(_objectSpread({
1096
1095
  payBackUrl: document.location.href
1097
1096
  }, query));
1098
- (top || window).document.location.href = 'https://pay.shanren.wang/pay/we-h5?data=' + encodeURIComponent(data);
1097
+ document.location.href = 'https://pay.shanren.wang/pay/we-h5?data=' + encodeURIComponent(data);
1099
1098
  }
1100
1099
  });
1101
- if (window && !((_window8 = window) !== null && _window8 !== void 0 && _window8._GData)) {
1102
- window._GData = {};
1103
- }
1104
- if (window) {
1105
- Tool.GData = window._GData;
1106
- window._Tool = Tool;
1107
- }
1100
+
1101
+ //
1102
+ // if( window ){
1103
+ // if ( !window?._GData) {
1104
+ // window._GData = {};
1105
+ // }
1106
+ //
1107
+ // Tool.GData = window._GData;
1108
+ //
1109
+ // window._Tool = Tool;
1110
+ // }
1111
+
1108
1112
  Tool.onWindowError();
1109
1113
  export default Tool;
@@ -1,7 +1,7 @@
1
1
  import * as JsErrorController from "../service/api/JsErrorController";
2
2
  var packageJson = require("../../package.json");
3
3
  var JsError = function JsError() {
4
- if (!window) {
4
+ if (typeof window === 'undefined') {
5
5
  return;
6
6
  }
7
7
  if (window.__onBindWindowError) {
@@ -2,7 +2,7 @@ declare const Platform: {
2
2
  isAndroid: boolean;
3
3
  isIos: boolean;
4
4
  isWechat: boolean;
5
- isWxmp: boolean;
5
+ isWxmp: string | boolean;
6
6
  isDingding: boolean;
7
7
  isH5: boolean;
8
8
  isWeb: boolean;
@@ -1,32 +1,40 @@
1
- var _window;
2
- var ua = (_window = window) === null || _window === void 0 || (_window = _window.navigator) === null || _window === void 0 ? void 0 : _window.userAgent.toLowerCase();
1
+ var ua = function ua() {
2
+ var _window;
3
+ if (typeof window === 'undefined') {
4
+ return '';
5
+ }
6
+ return (_window = window) === null || _window === void 0 || (_window = _window.navigator) === null || _window === void 0 ? void 0 : _window.userAgent.toLowerCase();
7
+ };
3
8
 
4
9
  // android平台
5
10
  var isAndroid = function () {
6
- return /Android|Adr/i.test(ua);
11
+ return /Android|Adr/i.test(ua());
7
12
  }();
8
13
 
9
14
  // ios平台
10
15
  var isIos = function () {
11
- return /iPhone|iPod|iPad/i.test(ua);
16
+ return /iPhone|iPod|iPad/i.test(ua());
12
17
  }();
13
18
 
14
19
  // 微信生态
15
20
  var isWechat = function () {
16
- return /MicroMessenger/i.test(ua);
21
+ return /MicroMessenger/i.test(ua());
17
22
  }();
18
23
 
19
24
  // 微信小程序
20
25
  var isWxmp = function (_window2) {
21
- return /miniProgram/i.test(ua) || ((_window2 = window) === null || _window2 === void 0 ? void 0 : _window2.__wxjs_environment) === 'miniprogram';
26
+ if (typeof window === 'undefined') {
27
+ return '';
28
+ }
29
+ return /miniProgram/i.test(ua()) || ((_window2 = window) === null || _window2 === void 0 ? void 0 : _window2.__wxjs_environment) === 'miniprogram';
22
30
  }();
23
31
 
24
32
  // 钉钉环境
25
33
  var isDingding = function () {
26
- return /DingTalk/i.test(ua);
34
+ return /DingTalk/i.test(ua());
27
35
  }();
28
36
  var isH5 = function () {
29
- return !!ua.match(/AppleWebKit.*Mobile.*/) || isAndroid || isIos; //是否为移动终端
37
+ return !!ua().match(/AppleWebKit.*Mobile.*/) || isAndroid || isIos; //是否为移动终端
30
38
  }();
31
39
 
32
40
  // 钉钉环境
@@ -41,9 +49,9 @@ var Platform = {
41
49
  isDingding: isDingding,
42
50
  isH5: isH5,
43
51
  isWeb: isWeb,
44
- isIPhone: ua.indexOf('iPhone') > -1,
52
+ isIPhone: ua().indexOf('iPhone') > -1,
45
53
  //iPhone
46
- isIPad: ua.indexOf('iPad') > -1 //iPad
54
+ isIPad: ua().indexOf('iPad') > -1 //iPad
47
55
  };
48
56
 
49
57
  export default Platform;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "component-shipinlv",
3
- "version": "0.0.13",
3
+ "version": "0.0.17",
4
4
  "description": "",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",