@conecli/cone-render 0.8.34 → 0.8.35
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/common/const.ts +1 -1
- package/dist/common/index.h5.ts +1 -1
- package/dist/common/index.jd.ts +1 -1
- package/dist/common/index.ts +1 -1
- package/dist/common/index.weapp.ts +1 -1
- package/dist/components/base/CustomScrollView/index.tsx +1 -1
- package/dist/components/base/ExposureSmart/const.ts +1 -0
- package/dist/components/base/ExposureSmart/index.h5.module.scss +18 -4
- package/dist/components/base/ExposureSmart/index.h5.tsx +1 -1
- package/dist/components/base/ExposureSmart/index.module.scss +20 -9
- package/dist/components/base/ExposureSmart/index.tsx +1 -1
- package/dist/components/base/ExposureSmart/reporter.tsx +1 -1
- package/dist/components/base/InOrOutViewObserver/index.tsx +1 -1
- package/dist/components/base/InViewRender/index.tsx +1 -1
- package/dist/components/base/InViewRender/index.weapp.tsx +1 -1
- package/dist/components/base/ItemViewExposureSmart/index.module.scss +8 -0
- package/dist/components/base/ItemViewExposureSmart/index.tsx +1 -0
- package/dist/components/base/LazyLayoutLoad/index.tsx +1 -1
- package/dist/components/base/LazyLoadImage/index.h5.tsx +1 -1
- package/dist/components/base/NetworkDataError/const.ts +1 -1
- package/dist/components/base/NetworkDataError/index.module.scss +4 -1
- package/dist/components/decorate/DecorateFloorModule/index.tsx +1 -1
- package/dist/interface/common.ts +1 -1
- package/dist/jumpEventReport/base.ts +1 -1
- package/dist/jumpEventReport/createReportFloorData.ts +1 -1
- package/dist/jumpEventReport/index.h5.ts +1 -1
- package/dist/jumpEventReport/index.weapp.ts +1 -1
- package/dist/jumpEventReport/web/report.ts +1 -1
- package/dist/jumpEventReport/web.base.ts +1 -1
- package/dist/jumpEventReport/web.jd.ts +1 -1
- package/dist/jumpEventReport/web.jdb.ts +1 -1
- package/dist/jumpEventReport/web.jdjch.ts +1 -0
- package/dist/libs/taroAppReport.js +2 -2
- package/dist/modules/ContainerFloorList/index.h5.module.scss +10 -1
- package/dist/modules/ContainerFloorList/index.h5.tsx +1 -1
- package/dist/open/api/device.ts +1 -1
- package/dist/open/api/track.ts +1 -1
- package/dist/open/api/util.ts +1 -1
- package/dist/open/components/index.ts +1 -1
- package/dist/service/bMallConst.ts +1 -1
- package/dist/utils/connectNativeJsBridge.ts +1 -1
- package/dist/utils/connectNativeJsBridge.weapp.ts +1 -1
- package/dist/utils/h5Utils.ts +1 -1
- package/dist/utils/index.h5.ts +1 -1
- package/dist/utils/index.ts +1 -1
- package/dist/utils/index.weapp.ts +1 -1
- package/dist/utils/intersectionObserver.ts +1 -1
- package/dist/utils/jm-common.js +1 -1
- package/dist/utils/utils.ts +1 -1
- package/package.json +1 -1
- /package/dist/service/{bMallConst.wxapp.ts → bMallConst.weapp.ts} +0 -0
- /package/dist/service/http/{colorSign.wxapp.ts → colorSign.weapp.ts} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
import global from '../common'
|
|
2
1
|
return mInfo === 'custom' ? etModelInfo : this.getClickEventInfo(floorData,mInfo,etModelInfo,true,true)
|
|
3
2
|
return mInfo === 'custom' ? etModelInfo : this.getExposureInfo(floorData,mInfo,etModelInfo,true,true)
|
|
3
|
+
import global from '../common'
|
|
4
4
|
mdExtInfo = {}
|
|
5
5
|
pageCrowdId: mdExtInfo?.userGroupStr || '',
|
|
6
6
|
updateRecInfo(floorData, _dataDefines) {
|
|
7
7
|
const { algoId = '', userGroupStr = '' } = floorData
|
|
8
8
|
const changeRecInfo =
|
|
9
9
|
this.sectionTabData[this.sectionTabType]?.recInfo || {}
|
|
10
10
|
return Object.assign({}, this.recInfo, changeRecInfo, {
|
|
11
11
|
algoId,
|
|
12
12
|
moduleCrowdId: userGroupStr
|
|
13
13
|
})
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
updateMInfo(mInfo: any = [], floorData) {
|
|
17
17
|
const { floorExtInfo, moduleId } = floorData
|
|
18
18
|
const hasFloorInfo = floorExtInfo && moduleId
|
|
19
19
|
if(Array.isArray(mInfo)){
|
|
20
20
|
return mInfo.map((item: any) => {
|
|
21
21
|
item?.jumpUrl && (item.jumpUrl = encodeURIComponent(item.jumpUrl))
|
|
22
22
|
hasFloorInfo && (item.busid = `${floorExtInfo?.moduleFlag}@${moduleId}`)
|
|
23
23
|
return item
|
|
24
24
|
})
|
|
25
25
|
}else {
|
|
26
26
|
mInfo?.jumpUrl && (mInfo.jumpUrl = encodeURIComponent(mInfo.jumpUrl))
|
|
27
27
|
hasFloorInfo && (mInfo.busid = `${floorExtInfo?.moduleFlag}@${moduleId}`)
|
|
28
28
|
!mInfo.hasOwnProperty('pos') && (mInfo.pos = 0)
|
|
29
29
|
return Object.assign({}, this.mInfo, mInfo)
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
updateEtModelExposureInfo(floorData,_dataDefines,etModleArr,mInfoArr) {
|
|
34
34
|
return {
|
|
35
35
|
lstms: []
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
updateEtModelClickInfo(floorData, _dataDefines, etModleInfo = {}, mInfo) {
|
|
40
40
|
return {
|
|
41
41
|
lstm: [],
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
return mInfo === 'custom' ? etModelInfo : this.getClickEventInfo(floorData,mInfo,etModelInfo,true,true)
|
|
45
45
|
return mInfo === 'custom' ? etModelInfo : this.getExposureInfo(floorData,mInfo,etModelInfo,true,true)
|
|
46
46
|
|
|
47
47
|
getFloorPointIndexClassName(floorData, index = 0, otherTip = '') {
|
|
48
48
|
return isChartH5 ? (floorData && floorData?.uid ? `J_chart_floor_${floorData.uid}_point_${otherTip ? otherTip + '_' : ''}${index}` : '') : ''
|
|
49
49
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import { isApp, getUrlQuery } from '../utils/jm-common'
|
|
1
|
+
import { isApp, getUrlQuery } from '../utils/jm-common'
|
|
2
2
|
import('./web.jdjch')
|
|
3
3
|
.then(({ JdbJumpWebToJdbApp }) => {
|
|
4
4
|
if (JdbJumpWebToJdbApp) {
|
|
5
5
|
JumpEventReport = new JdbJumpWebToJdbApp({})
|
|
6
6
|
resolve(JumpEventReport)
|
|
7
7
|
}
|
|
8
8
|
})
|
|
9
9
|
.catch((err) => {
|
|
10
10
|
reject(err)
|
|
11
11
|
})
|
|
12
12
|
} else {
|