component-shipinlv 0.0.16 → 0.0.18

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,5 +2,5 @@ import _taggedTemplateLiteral from "@babel/runtime/helpers/esm/taggedTemplateLit
2
2
  var _templateObject;
3
3
  import styled from 'styled-components';
4
4
  export default {
5
- Buy: styled.span(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n :global{\n .ktv-ai-vip-compare{\n .vip-compare-price{\n small{\n color: #888;\n vertical-align: middle;\n }\n }\n .listMore{\n position: absolute;\n right: 10px;\n top: 9px;\n }\n\n .vipCompareListMoreContent{\n width: 500px;\n .ratioAlt{\n padding: 6px 0;\n font-size: 13px;\n color: #777;\n .vip-compare-alt{\n\n }\n }\n }\n\n }\n }\n "])))
5
+ Buy: styled.span(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n :global{\n //.ktv-ai-vip-compare{\n // .vip-compare-price{\n // small{\n // color: #888;\n // vertical-align: middle;\n // }\n // }\n // .listMore{\n // position: absolute;\n // right: 10px;\n // top: 9px;\n // }\n //\n // .vipCompareListMoreContent{\n // width: 500px;\n // .ratioAlt{\n // padding: 6px 0;\n // font-size: 13px;\n // color: #777;\n // .vip-compare-alt{\n //\n // }\n // }\n // }\n //\n //}\n }\n "])))
6
6
  };
@@ -1,13 +1,11 @@
1
1
  import React from 'react';
2
- import type { SizeType } from "antd/es/config-provider/SizeContext";
3
2
  interface Props {
4
3
  env?: Global.Env;
5
4
  vipId: number;
6
5
  productCount: number;
7
6
  productKind: Global.ProductKind;
8
- buttonSmall?: SizeType;
9
- title?: React.ReactNode;
10
7
  disabled?: boolean;
8
+ children: React.ReactNode;
11
9
  }
12
10
  declare const Buy: React.FC<Props>;
13
11
  export default Buy;
package/dist/Buy/index.js CHANGED
@@ -1,7 +1,6 @@
1
1
  import _regeneratorRuntime from "@babel/runtime/helpers/esm/regeneratorRuntime";
2
2
  import _asyncToGenerator from "@babel/runtime/helpers/esm/asyncToGenerator";
3
3
  import React from 'react';
4
- import { Button } from 'antd';
5
4
  import Tool from "../lib/Tool";
6
5
  import styles from "./index.css";
7
6
  import VipQr from "./qr";
@@ -10,35 +9,38 @@ import { jsx as _jsx } from "react/jsx-runtime";
10
9
  var Buy = function Buy(_ref) {
11
10
  var _ref$env = _ref.env,
12
11
  env = _ref$env === void 0 ? 'prod' : _ref$env,
13
- _ref$buttonSmall = _ref.buttonSmall,
14
- buttonSmall = _ref$buttonSmall === void 0 ? 'small' : _ref$buttonSmall,
15
12
  _ref$productKind = _ref.productKind,
16
13
  productKind = _ref$productKind === void 0 ? 'vip' : _ref$productKind,
17
14
  _ref$vipId = _ref.vipId,
18
15
  vipId = _ref$vipId === void 0 ? 0 : _ref$vipId,
19
16
  _ref$productCount = _ref.productCount,
20
17
  productCount = _ref$productCount === void 0 ? 1 : _ref$productCount,
21
- _ref$title = _ref.title,
22
- title = _ref$title === void 0 ? '购买' : _ref$title,
23
18
  _ref$disabled = _ref.disabled,
24
- disabled = _ref$disabled === void 0 ? false : _ref$disabled;
19
+ disabled = _ref$disabled === void 0 ? false : _ref$disabled,
20
+ children = _ref.children;
25
21
  var onBuy = /*#__PURE__*/function () {
26
22
  var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
27
23
  var userInfo;
28
24
  return _regeneratorRuntime().wrap(function _callee$(_context) {
29
25
  while (1) switch (_context.prev = _context.next) {
30
26
  case 0:
27
+ if (!disabled) {
28
+ _context.next = 2;
29
+ break;
30
+ }
31
+ return _context.abrupt("return");
32
+ case 2:
31
33
  // 先要登录;
32
34
  userInfo = Tool.getLocalUserInfo();
33
35
  if (userInfo.isLogin) {
34
- _context.next = 4;
36
+ _context.next = 6;
35
37
  break;
36
38
  }
37
39
  console.log("not login");
38
40
  return _context.abrupt("return", Tool.onLogin());
39
- case 4:
41
+ case 6:
40
42
  onOpenVipQr();
41
- case 5:
43
+ case 7:
42
44
  case "end":
43
45
  return _context.stop();
44
46
  }
@@ -80,15 +82,10 @@ var Buy = function Buy(_ref) {
80
82
  Tool.event.run('vip-buy-click');
81
83
  };
82
84
  return /*#__PURE__*/_jsx(styles.Buy, {
83
- children: /*#__PURE__*/_jsx(Button, {
84
- type: "primary",
85
- size: buttonSmall,
86
- disabled: disabled,
87
- onClick: function onClick() {
88
- return onBuy();
89
- },
90
- children: title
91
- })
85
+ onClick: function onClick(e) {
86
+ return onBuy();
87
+ },
88
+ children: children
92
89
  });
93
90
  };
94
91
  export default Buy;
@@ -256,8 +256,8 @@ var VipCompare = function VipCompare(_ref) {
256
256
  // onlyBuyOne={ productDetail.onlyBuyOne }
257
257
  // isVip={ buyListData[record?.productType|| '']?.isVip }
258
258
  ,
259
- title: "\u8D2D\u4E70",
260
- productKind: "vip"
259
+ productKind: "vip",
260
+ children: "\u8D2D\u4E70"
261
261
  });
262
262
  }
263
263
  });
@@ -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
@@ -1097,13 +1097,17 @@ var Tool = _objectSpread(_objectSpread({
1097
1097
  document.location.href = 'https://pay.shanren.wang/pay/we-h5?data=' + encodeURIComponent(data);
1098
1098
  }
1099
1099
  });
1100
- if (window) {
1101
- var _window8;
1102
- if (!((_window8 = window) !== null && _window8 !== void 0 && _window8._GData)) {
1103
- window._GData = {};
1104
- }
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.16",
3
+ "version": "0.0.18",
4
4
  "description": "",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",