@conecli/cone-render 0.8.37 → 0.8.38-beta.0

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.
Files changed (41) hide show
  1. package/dist/api/index.ts +1 -1
  2. package/dist/common/const.ts +1 -1
  3. package/dist/common/index.h5.ts +1 -1
  4. package/dist/common/index.jd.ts +1 -1
  5. package/dist/common/index.ts +1 -1
  6. package/dist/common/index.weapp.ts +1 -1
  7. package/dist/common/jssdk.ts +1 -0
  8. package/dist/common/wxappApi.ts +1 -1
  9. package/dist/components/base/CommonFloorHead/index.tsx +1 -1
  10. package/dist/components/base/CustomScrollView/index.tsx +1 -1
  11. package/dist/components/base/InOrOutViewObserver/index.tsx +1 -1
  12. package/dist/components/floorItem.tsx +1 -1
  13. package/dist/components/isv/Floor/index.tsx +1 -1
  14. package/dist/components/remoteFloorItem.tsx +1 -1
  15. package/dist/interface/common.ts +1 -1
  16. package/dist/interface/component.ts +1 -1
  17. package/dist/interface/jumpEventReport.ts +1 -1
  18. package/dist/interface/service.ts +1 -1
  19. package/dist/jumpEventReport/base.ts +1 -1
  20. package/dist/jumpEventReport/index.h5.ts +1 -1
  21. package/dist/jumpEventReport/jumpUrlConfig/base.ts +1 -1
  22. package/dist/jumpEventReport/web.base.ts +1 -1
  23. package/dist/jumpEventReport/web.jd.ts +1 -1
  24. package/dist/jumpEventReport/web.pc.ts +1 -0
  25. package/dist/open/api/index.ts +1 -1
  26. package/dist/utils/h5Utils.ts +1 -1
  27. package/dist/utils/index.h5.ts +1 -1
  28. package/dist/utils/index.ts +1 -1
  29. package/dist/utils/index.weapp.ts +1 -1
  30. package/dist/utils/utils.ts +1 -1
  31. package/dist/wxapp/api/helper.js +1 -0
  32. package/dist/wxapp/components/launch-app/index.js +1 -0
  33. package/dist/wxapp/components/launch-app/index.json +5 -0
  34. package/dist/wxapp/components/launch-app/index.wxml +0 -0
  35. package/dist/wxapp/components/launch-app/index.wxss +0 -0
  36. package/dist/wxapp/components/subscribe-guider/helper.js +1 -0
  37. package/dist/wxapp/components/subscribe-guider/index.js +1 -0
  38. package/dist/wxapp/components/subscribe-guider/index.json +5 -0
  39. package/dist/wxapp/components/subscribe-guider/index.wxml +0 -0
  40. package/dist/wxapp/components/subscribe-guider/index.wxss +0 -0
  41. package/package.json +1 -1
@@ -1 +1 @@
1
- import Taro from '@tarojs/taro'
2
1
  const getValue = `${obj[key]}`.replace(/undefined/,'').replace(/null/,'')
3
2
  paramStr += `${index === 0 ? '' : '&'}${key}=${encodeURIComponent(getValue)}`
4
3
  if(!imgUrl.includes('360buyimg.com')){
5
4
  imgUrl = '//m.360buyimg.com/cms/' + imgUrl
6
5
  }
7
6
  if(quality != 100) imgUrl += /\.png/.test(imgUrl) ? '.dpg' : `!q${quality}`
8
7
  pin?: string
9
8
  visitkey?: string
10
9
  [key: string]: any
11
10
  }
12
11
  jdpin,
13
12
  pinStatus,
14
13
  visitkey,
15
14
  unionid,
16
15
  skey,
17
16
  __jda,
18
17
  __jdv,
19
18
  __wga,
20
19
  wxapp_type,
21
20
  appType
22
21
  } = cookie
23
22
  const getUserCookieObj = {}
24
23
  jdpin,
25
24
  pinStatus,
26
25
  visitkey,
27
26
  unionid,
28
27
  skey,
29
28
  __jda,
30
29
  __jdv,
31
30
  __wga,
32
31
  wid,
33
32
  wq_skey,
34
33
  wq_uin,
35
34
  wq_auth_token,
36
35
  wxapp_scene,
37
36
  wq_unionid,
38
37
  wxapp_openid,
39
38
  wxapp_version,
40
39
  wxapp_type,
41
40
  appType
42
41
  name = name === 'jdpin' ? 'pin' : name;
43
42
  name === 'pin' && (ret.push(`pt_pin=${encodeURIComponent(value)}`))
44
43
  ret.push(`${name}=${encodeURIComponent(value)}`)
45
44
  getUserCookieObj[name] = value
46
45
  }
47
46
  wqCookie: getUserCookieObj
48
47
  exceptionReportFn
49
48
  const isIsvContainer = (containerId, floorListData, containerListData) => {
50
49
  const objContainer = containerListData.find(item => item.containerId === containerId)
51
50
  (itemUid) => {
52
51
  const objectFloor = floorListData.find(floorItem => itemUid === floorItem.uid)
53
52
  return RemoteLoadFloorList.includes(objectFloor?.floorExtInfo?.moduleFlag)
54
53
  }
55
54
  )?? false
56
55
  isChartH5,
57
56
  isH5AndJdShopViewH5Scroll,
58
57
  isMemberPage,
59
58
  sgmCustomReport
59
+ import Taro from '@tarojs/taro'
60
60
  const getValue = `${obj[key]}`.replace(/undefined/,'').replace(/null/,'')
61
61
  paramStr += `${index === 0 ? '' : '&'}${key}=${encodeURIComponent(getValue)}`
62
62
  if(!imgUrl.includes('360buyimg.com')){
63
63
  imgUrl = '//m.360buyimg.com/cms/' + imgUrl
64
64
  }
65
65
  if(quality != 100) imgUrl += /\.png/.test(imgUrl) ? '.dpg' : `!q${quality}`
66
66
  pin?: string
67
67
  visitkey?: string
68
68
  [key: string]: any
69
69
  }
70
70
  jdpin,
71
71
  pinStatus,
72
72
  visitkey,
73
73
  unionid,
74
74
  skey,
75
75
  __jda,
76
76
  __jdv,
77
77
  __wga,
78
78
  wxapp_type,
79
79
  appType
80
80
  } = cookie
81
81
  const getUserCookieObj = {}
82
82
  jdpin,
83
83
  pinStatus,
84
84
  visitkey,
85
85
  unionid,
86
86
  skey,
87
87
  __jda,
88
88
  __jdv,
89
89
  __wga,
90
90
  wid,
91
91
  wq_skey,
92
92
  wq_uin,
93
93
  wq_auth_token,
94
94
  wxapp_scene,
95
95
  wq_unionid,
96
96
  wxapp_openid,
97
97
  wxapp_version,
98
98
  wxapp_type,
99
99
  appType
100
100
  name = name === 'jdpin' ? 'pin' : name;
101
101
  name === 'pin' && (ret.push(`pt_pin=${encodeURIComponent(value)}`))
102
102
  ret.push(`${name}=${encodeURIComponent(value)}`)
103
103
  getUserCookieObj[name] = value
104
104
  }
105
105
  wqCookie: getUserCookieObj
106
106
  exceptionReportFn
107
107
  if(getFloorData?.floorExtInfo?.floorLoadWay === 2){
108
108
  const getSysFloorToLoadTypeRes = isIsvFloorUseable(getFloorData, exceptionReportFn)
109
109
  !getSysFloorToLoadTypeRes && (getFloorData.floorExtInfo.floorLoadWay = 1)
110
110
  }
111
111
  const isIsvContainer = (containerId, floorListData, containerListData) => {
112
112
  const objContainer = containerListData.find(item => item.containerId === containerId)
113
113
  (itemUid) => {
114
114
  const objectFloor = floorListData.find(floorItem => itemUid === floorItem.uid)
115
115
  return RemoteLoadFloorList.includes(objectFloor?.floorExtInfo?.moduleFlag)
116
116
  }
117
117
  )?? false
118
118
  isChartH5,
119
119
  isH5AndJdShopViewH5Scroll,
120
120
  isMemberPage,
121
121
  isPc,
122
122
  ipLoc_djd,
@@ -0,0 +1 @@
1
+ export const delayShow = () => {
@@ -0,0 +1 @@
1
+ Component({
2
  properties: {},
1
3
  data: {},
2
4
  methods: {}
@@ -0,0 +1,5 @@
1
+ {
2
+ "component": true,
3
+ "usingComponents": {
4
+ }
5
+ }
File without changes
File without changes
@@ -0,0 +1 @@
1
+ export const delayShow = () => {
@@ -0,0 +1 @@
1
+ Component({
2
  properties: {},
1
3
  data: {},
2
4
  methods: {}
@@ -0,0 +1,5 @@
1
+ {
2
+ "component": true,
3
+ "usingComponents": {
4
+ }
5
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conecli/cone-render",
3
- "version": "0.8.37",
3
+ "version": "0.8.38-beta.0",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist/"