@conecli/cone-render 0.9.1-shop2.25 → 0.9.1-shop2.26

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 +1 @@
1
- import Taro from '@tarojs/taro'
2
1
  isIosDevice,
3
2
  isAndroidDevice,
4
3
  isJdAndHarmonyDevice,
5
4
  isJdAndAndroidDevice,
6
5
  jdAppVersion,
7
6
  jdAppVersionStr,
8
7
  isString,
9
8
  isObject,
10
9
  serialize,
11
10
  dealNativePixelToCssPixel,
12
11
  isPc,
13
12
  BUSINESS_TYPE,
14
13
  JSSDK_APP_WEBVIEW_CODE,
15
14
  SECTION_HOME_TAB_NAME_TYPE,
16
15
  SECTION_HOME_TAB_TYPE,
17
16
  WXAPP_BIZ_KEY,
18
17
  WX_BUSINESS_TYPE,
19
18
  MPAAS_CONFIG_APP_VERSION,
20
19
  MPAAS_CONFIG_APP_LOW_VERSION,
21
20
  WXAPP_BIZ_SHOP_LIGHT_KEY,
22
21
  LoadJsInitLoadEnvType,
23
22
  LoadJsInitLoadType,
24
23
  LoadJsInitTriggerType
25
24
  loginState: false,
26
25
  cookiesStr: '',
27
26
  userInfo: userPinKey,
28
27
  isJingGouMiniViewState: false,
29
28
  isJingxiMiniViewState: false,
30
29
  pageInfo: {
31
30
  wxBusinessType: WX_BUSINESS_TYPE.NO,
32
31
  address: '',
33
32
  addressCommaStr: '',
34
33
  un_area: '',
35
34
  vapptype: '1',
36
35
  pageType: 'home',
37
36
  isExposureState: false,
38
37
  moduleId: '',
39
38
  entrance: '',
40
39
  dataType: BUSINESS_TYPE.ONLINE,
41
40
  floorExposureInfo: {},
42
41
  floorVideInfo: {},
43
42
  productVideInfo: {},
44
43
  tabsLoadAllDataInfo: {
45
44
  [SECTION_HOME_TAB_NAME_TYPE[
46
45
  SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN
47
46
  ]]: false,
48
47
  },
49
48
  updateShopInfosAllState: false,
50
49
  isVipShop: false,
51
50
  isJdShowNativeImmersivePlayer: false,
52
51
  ...shopConfig,
53
52
  pageScrollTop: 0,
54
53
  pageIdxHeightInfo: {
55
54
  list: [],
56
55
  },
57
56
  shopNavBarHeight: 0,
58
57
  },
59
58
  defaultQueryLogInfo: {
60
59
  sourceType: 'JDshop',
61
60
  sourceValue: '',
62
61
  moduleId: 'none',
63
62
  entrance: 'none',
64
63
  },
65
64
  sysInfo: {
66
65
  windowWidth: isPc ? 375 : 0,
67
66
  containerWidth: isPc ? 375 : 0,
68
67
  windowHeight: 0,
69
68
  netWorkType: '4g',
70
69
  jdBottomBarHeight: 0,
71
70
  jdNativeHeaderHeight: 0,
72
71
  },
73
72
  queryInfo: {},
74
73
  shopInfo: {},
75
74
  openAppData: {},
76
75
  public info: CommonInterFace.BaseConfigInfo
77
76
  public config: {
78
77
  [key: string]: any
79
78
  }
80
79
  public lazyContainer: CommonInterFace.lazyContainer
81
80
  public renderedIsvComponents: CommonInterFace.renderedIsvComponents
82
81
  public rootEleNode: HTMLElement | null
83
82
  public checkStatusAndLoginPromise: object | null
84
83
  private jmfeRegisterStatePromise: Promise<any> | null
85
84
  private jmfeRegisterState: boolean
86
85
  public loadJsSdkList: Array<any>
87
86
  public loadJsSdkListCachePromise: any
88
87
  constructor(opt) {
89
88
  this.info = this._getConfig(opt)
90
89
  this.config = {}
91
90
  this.loadJsSdkList = []
92
91
  this.loadJsSdkListCachePromise = {}
93
92
  this.lazyContainer = {
94
93
  [SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN]]: {
95
94
  appLazyContainerList: [],
96
95
  appLazyFinishContainerList: [],
97
96
  },
98
97
  [SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PROMOTION]]: {
99
98
  appLazyContainerList: [],
100
99
  appLazyFinishContainerList: [],
101
100
  },
102
101
  }
103
102
  this.renderedIsvComponents = {}
104
103
  this.rootEleNode = document.querySelector('body')
105
104
  this.checkStatusAndLoginPromise = null
106
105
  this.jmfeRegisterStatePromise = null
107
106
  this.loadOtherSdk()
108
107
  isJdApp && this.jmfeReayPromise()
109
108
  }
110
109
  _getConfig(opt) {
111
110
  return Object.assign({}, DefaultConfig, opt)
112
111
  }
113
112
 
114
113
  jmfeReayPromise(): Promise<any> {
115
114
  if (isJdApp) {
116
115
  if (this.jmfeRegisterState) {
117
116
  return Promise.resolve(true)
118
117
  } else {
119
118
  !this.jmfeRegisterStatePromise &&
120
119
  (this.jmfeRegisterStatePromise = new Promise((resolve, reject) => {
121
120
  ready('jmfe', 3000)
122
121
  .then(() => {
123
122
  window?.jmfe && window.jmfe.registerCode(JSSDK_APP_WEBVIEW_CODE)
124
123
  this.jmfeRegisterState = true
125
124
  resolve(true)
126
125
  console.log('松果app内初始化注册jmfe认证完成')
127
126
  })
128
127
  .catch(() => {
129
128
  reject(false)
130
129
  })
131
130
  }))
132
131
  return this.jmfeRegisterStatePromise
133
132
  }
134
133
  } else {
135
134
  return Promise.reject(false)
136
135
  }
137
136
  }
138
137
 
139
138
  updateBusinessDomainAndApi(domain, api) {
140
139
  }
141
140
 
142
141
  formatNativeScreenPageData(action) {
143
142
  let getChangePageInfo: any = null
144
143
  try {
145
144
  const getNativeScreenPageInfoStr = window.XWebView?._callNative(
146
145
  JSON.stringify({
147
146
  plugin: 'JDHybridScreenPlugin',
148
147
  action,
149
148
  sync: '1',
150
149
  }),
151
150
  )
152
151
  const getChangePageInfoData =
153
152
  typeof getNativeScreenPageInfoStr === 'string'
154
153
  ? JSON.parse(getNativeScreenPageInfoStr)
155
154
  : null
156
155
  if (getChangePageInfoData && typeof getChangePageInfoData === 'object') {
157
156
  const { code, data } = getChangePageInfoData
158
157
  getChangePageInfo = code && code === '0' ? data : null
159
158
  }
160
159
  } catch (e) {
161
160
  console.log('JDHybridScreenPlugin转换异常', e)
162
161
  }
163
162
  return getChangePageInfo
164
163
  }
165
164
 
166
165
  isAndroidFoldScreen() {
167
166
  return this.formatNativeScreenPageData('isFoldScreen') === '1'
168
167
  }
169
168
 
170
169
  getJdAndroidPageChangeScreenInfo() {
171
170
  const getPageScreenInfo = this.formatNativeScreenPageData('getScreenSize')
172
171
  if (
173
172
  getPageScreenInfo &&
174
173
  getPageScreenInfo?.pageWidth &&
175
174
  getPageScreenInfo?.pageHeight
176
175
  ) {
177
176
  const { pageWidth, pageHeight } = dealNativePixelToCssPixel({
178
177
  pageWidth: getPageScreenInfo.pageWidth,
179
178
  pageHeight: getPageScreenInfo.pageHeight,
180
179
  })
181
180
  getPageScreenInfo.pageWidth = pageWidth
182
181
  getPageScreenInfo.pageHeight = pageHeight
183
182
  }
184
183
  return getPageScreenInfo
185
184
  }
186
185
 
187
186
  getSystemInfo(params) {
188
187
  let info: UtilsInterFace.taroGetSystemInfoSyncRes | {} = isPc
189
188
  ? {}
190
189
  : getSystemInfos(params)
191
190
  if (isJdAndAndroidDevice && window.innerWidth <= 0) {
192
191
  const isfoldScreen = this.isAndroidFoldScreen()
193
192
  if (isfoldScreen) {
194
193
  const getJdAndroidPageInfo = this.getJdAndroidPageChangeScreenInfo()
195
194
  getJdAndroidPageInfo && (info = getSystemInfos(getJdAndroidPageInfo))
196
195
  console.info(
197
196
  '安卓松果app折叠屏获取webview宽度为0,那么通过内部方法重置获取',
198
197
  getJdAndroidPageInfo,
199
198
  )
200
199
  }
201
200
  }
202
201
  this.info.sysInfo = {
203
202
  actualNavBarHeight: 0,
204
203
  ...this.info.sysInfo,
205
204
  ...info,
206
205
  safeContentHeight: info?.screenHeight,
207
206
  headerHeight: 0,
208
207
  tabBarHeight: 0,
209
208
  }
210
209
  if (isJdApp) {
211
210
  this.info.sysInfo['hostVersionName'] = jdAppVersionStr
212
211
  this.info.sysInfo['hostAppVersion'] = jdAppVersion
213
212
  this.getAddressCachePromise()
214
213
  this.getElderModePromise()
215
214
  this.getJDAppearanceStatePromise()
216
215
  this.createJdAndroidRquestEventForTouchStart()
217
216
  }
218
217
  this.getWifiVideoAutoPlayAsync()
219
218
  this.getMPaasConfigAsync()
220
219
  this.getNetWorkType()
221
220
  }
222
221
 
223
222
  taskTimeoutPromise(callBack, timeout = 2000) {
224
223
  return new Promise(resolve => {
225
224
  setTimeout(() => {
226
225
  const getCallBackRes = typeof callBack === 'function' && callBack()
227
226
  return resolve(getCallBackRes || false)
228
227
  }, timeout)
229
228
  })
230
229
  }
231
230
 
232
231
  getElderModePromise() {
233
232
  if (this.info.sysInfo.hasOwnProperty('jdAppModeType')) {
234
233
  return Promise.resolve(this.info.sysInfo.jdAppModeType)
235
234
  } else {
236
235
  if (isJdAndAndroidDevice) {
237
236
  this.info.sysInfo.jdAppModeType = '0'
238
237
  return Promise.resolve(this.info.sysInfo.jdAppModeType)
239
238
  } else {
240
239
  return Promise.race([
241
240
  this.taskTimeoutPromise(() => {
242
241
  this.info.sysInfo.jdAppModeType = '0'
243
242
  return this.info.sysInfo.jdAppModeType
244
243
  }),
245
244
  new Promise(resolve => {
246
245
  const getCallBackName = `getJdCurrentModeType${Date.now()}`
247
246
  if (!window[getCallBackName]) {
248
247
  window[getCallBackName] = res => {
249
248
  try {
250
249
  const getResJson =
251
250
  typeof res === 'string' ? JSON.parse(res) : res
252
251
  const { status, data, msg } = getResJson
253
252
  console.log(`获取松果app展示模式成功,返回结果${data}`)
254
253
  if (status === '0') {
255
254
  this.info.sysInfo.jdAppModeType = data
256
255
  resolve(data)
257
256
  } else {
258
257
  resolve('0')
259
258
  }
260
259
  } catch (e) {
261
260
  resolve('0')
262
261
  }
263
262
  window[getCallBackName] = null
264
263
  }
265
264
  }
266
265
  window?.webkit?.messageHandlers?.JDAppUnite?.postMessage({
267
266
  method: 'callSyncRouterModuleWithParams',
268
267
  params: JSON.stringify({
269
268
  routerURL: 'router://JDBModeModule/getCurrentMode',
270
269
  routerParam: {},
271
270
  callBackName: `window.${getCallBackName}`,
272
271
  callBackId: `${getCallBackName}Ios`,
273
272
  }),
274
273
  })
275
274
  }),
276
275
  ])
277
276
  }
278
277
  }
279
278
  }
280
279
  getAPPUseStraightCorner() {
281
280
  const routerURL = 'router://JDBaseUtilsModule/isUI14Enable'
282
281
  const params = {
283
282
  routerURL,
284
283
  routerParam: {},
285
284
  jdRouter: '1',
286
285
  }
287
286
  if (this.info.sysInfo.hasOwnProperty('jdStraightCorner')) {
288
287
  return Promise.resolve(this.info.sysInfo.jdStraightCorner)
289
288
  } else {
290
289
  return this.jmfeReayPromise()
291
290
  .then(() => {
292
291
  if(isJdAndHarmonyDevice || !isJdApp) {
293
292
  console.log('not APP or is Harmony')
294
293
  return Promise.resolve(false)
295
294
  }
296
295
  console.log('jmfe setShareInfo', params)
297
296
  return Promise.race([window.jmfe.callRouter(params), this.taskTimeoutPromise(() => {return false})])
298
297
  .then(({ status, data }) => {
299
298
  console.log('004 ~ file: index.tsx:133 ~ .then ~ data:', data)
300
299
  console.log('004 ~ file: index.tsx:133 ~ .then ~ status:', status)
301
300
  this.info.sysInfo.jdStraightCorner = status === '0' && Number(data) === 1
302
301
  return Promise.resolve( status === '0' && Number(data) === 1)
303
302
  })
304
303
  })
305
304
  .catch(e => {
306
305
  console.log('jmfe error', e)
307
306
  return Promise.resolve(false)
308
307
  })
309
308
  }
310
309
  }
311
310
 
312
311
  getJDAppearanceStatePromise() {
313
312
  if (this.info.sysInfo.hasOwnProperty('jdAppearanceState')) {
314
313
  return Promise.resolve(this.info.sysInfo.jdAppearanceState)
315
314
  } else {
316
315
  return Promise.race([
317
316
  this.taskTimeoutPromise(() => {
318
317
  this.info.sysInfo.jdAppearanceState = '0'
319
318
  return this.info.sysInfo.jdAppearanceState
320
319
  }),
321
320
  new Promise(resolve => {
322
321
  const getCallBackName = `getJdCurrentAppearanceState${Date.now()}`
323
322
  if (!window[getCallBackName]) {
324
323
  window[getCallBackName] = res => {
325
324
  try {
326
325
  console.log('getJDAppearanceStatePromise', res)
327
326
  const getResJson =
328
327
  typeof res === 'string' ? JSON.parse(res) : res
329
328
  const { status, data, msg } = getResJson
330
329
  console.log(`获取松果app是否开启黑暗模式成功,返回结果${data}`)
331
330
  if (status === '0') {
332
331
  this.info.sysInfo.jdAppearanceState = data
333
332
  resolve(data)
334
333
  } else {
335
334
  resolve('0')
336
335
  }
337
336
  } catch (e) {
338
337
  resolve('0')
339
338
  }
340
339
  window[getCallBackName] = null
341
340
  }
342
341
  }
343
342
  if (isAndroidDevice) {
344
343
  const jsonString = JSON.stringify({
345
344
  callBackName: `window.${getCallBackName}`,
346
345
  })
347
346
  console.log('window.JDAppearance', window.JDAppearance)
348
347
  window.JDAppearance && window.JDAppearance.getUiState(jsonString)
349
348
  } else {
350
349
  window?.webkit?.messageHandlers?.JDAppUnite?.postMessage({
351
350
  method: 'callSyncRouterModuleWithParams',
352
351
  params: JSON.stringify({
353
352
  routerURL:
354
353
  'router://JDWebViewBusinessModule/getJDAppearanceState',
355
354
  routerParam: {},
356
355
  callBackName: `window.${getCallBackName}`,
357
356
  callBackId: `${getCallBackName}Ios`,
358
357
  }),
359
358
  })
360
359
  }
361
360
  }),
362
361
  ])
363
362
  }
364
363
  }
365
364
 
366
365
  createJdAndroidRquestEventForTouchStart() {
367
366
  if (isJdAndAndroidDevice && window.JdAndroid) {
368
367
  const rootEleNode = document.querySelector('body')
369
368
  if (rootEleNode) {
370
369
  rootEleNode.addEventListener(
371
370
  'touchstart',
372
371
  this.jdAndroidAddEventListenerTouchStart,
373
372
  false,
374
373
  )
375
374
  }
376
375
  }
377
376
  }
378
377
  jdAndroidAddEventListenerTouchStart(e) {
379
378
  const isH5SwiperCustomEle = e?.target?.closest('.J_h5SwiperCustom')
380
379
  if (!isH5SwiperCustomEle) {
381
380
  const hasCustomEle = e
382
381
  ? e?.target?.closest('.J_customScroll') ||
383
382
  e?.target?.closest('.J_customLayout')
384
383
  : false
385
384
  if (!hasCustomEle) {
386
385
  window.JdAndroid.requestEvent(false)
387
386
  console.log(
388
387
  'createJdAndroidRquestEvent 所有松果安卓APP内的document touch start事件执行检测requestEvent并重置为false',
389
388
  )
390
389
  }
391
390
  }
392
391
  }
393
392
  removeJdAndroidRquestEventForTouchStart() {
394
393
  if (isJdAndAndroidDevice && window.JdAndroid) {
395
394
  const rootEleNode = document.querySelector('body')
396
395
  if (rootEleNode) {
397
396
  rootEleNode.removeEventListener(
398
397
  'touchstart',
399
398
  this.jdAndroidAddEventListenerTouchStart,
400
399
  false,
401
400
  )
402
401
  }
403
402
  }
404
403
  }
405
404
 
406
405
  getNetWorkType() {
407
406
  if (isJdApp) {
408
407
  this.jmfeReayPromise().then(() => {
409
408
  window.jmfe
410
409
  .getNetworkStatus()
411
410
  .then(({ status, data }) => {
412
411
  console.log(
413
412
  '在app内初始化通过jmfe对象获取网络状态完成,当前网络状态====',
414
413
  data,
415
414
  )
416
415
  if (status === '0') {
417
416
  this.info.sysInfo['netWorkType'] = data
418
417
  } else {
419
418
  this._taroGetNetworkType()
420
419
  }
421
420
  })
422
421
  .catch(err => {
423
422
  console.log('在app内初始化通过jmfe对象获取网络状态异常====', err)
424
423
  this._taroGetNetworkType()
425
424
  })
426
425
  })
427
426
  } else {
428
427
  this._taroGetNetworkType()
429
428
  }
430
429
  }
431
430
  _taroGetNetworkType() {
432
431
  Taro.getNetworkType().then(getRes => {
433
432
  if (getRes && getRes.networkType) {
434
433
  this.info.sysInfo['netWorkType'] = getRes.networkType
435
434
  console.log(
436
435
  '在app内通过taro对象获取网络状态完成,当前网络状态',
437
436
  this.info.sysInfo['netWorkType'],
438
437
  )
439
438
  }
440
439
  })
441
440
  }
442
441
  getCacheAddressRouter() {
443
442
  if (!window.jmfe) return
444
443
  if (isAndroidDevice) {
445
444
  return window.jmfe.callRouter({
446
445
  jdRouter: '1',
447
446
  routerURL: 'router://JDAddressModule/getCacheAddress',
448
447
  routerParam: { sceneId: 'basicShoppingProcess' },
449
448
  })
450
449
  } else if (isIosDevice) {
451
450
  return window.jmfe.callRouter({
452
451
  jdRouter: '1',
453
452
  routerURL: 'router://JDBAddressCacheManagerModule/getCacheAddress',
454
453
  routerParam: { sceneId: 'basicShoppingProcess' },
455
454
  })
456
455
  } else if (isJdAndHarmonyDevice) {
457
456
  return new Promise(resolve => {
458
457
  resolve({})
459
458
  })
460
459
  } else {
461
460
  throw Error(
462
461
  'Unknown device type cannot obtain the address information through the route!',
463
462
  )
464
463
  }
465
464
  }
466
465
 
467
466
  getAddressCachePromise() {
468
467
  return new Promise(resolve => {
469
468
  if (
470
469
  this?.info?.sysInfo?.lat &&
471
470
  this?.info?.sysInfo?.lng &&
472
471
  this?.info?.sysInfo?.area
473
472
  ) {
474
473
  resolve({
475
474
  lat: this.info.sysInfo.lat,
476
475
  lng: this.info.sysInfo.lng,
477
476
  area: this?.info?.sysInfo?.area,
478
477
  })
479
478
  } else {
480
479
  this.jmfeReayPromise().then(() => {
481
480
  this.getCacheAddressRouter()
482
481
  .then(({ status, data }) => {
483
482
  console.log("原生端获取经纬度原始数据结果",status,data)
484
483
  if (status === '0' && data) {
485
484
  const {
486
485
  lat,
487
486
  latitude,
488
487
  lng,
489
488
  longitude,
490
489
  provinceId,
491
490
  cityId,
492
491
  countyId,
493
492
  townId,
494
493
  } = data || {}
495
494
  let area = ''
496
495
  this.info.sysInfo['lat'] = `${lat || latitude || ''}`
497
496
  this.info.sysInfo['lng'] = `${lng || longitude || ''}`
498
497
  if (provinceId) {
499
498
  area = `${provinceId}_${cityId || 0}_${countyId ||
500
499
  0}_${townId || 0}`
501
500
  this.info.pageInfo['address'] = area
502
501
  this.info.pageInfo['addressCommaStr'] = area.replace(
503
502
  /_/g,
504
503
  ',',
505
504
  )
506
505
  }
507
506
  resolve({
508
507
  lat: this.info.sysInfo['lat'],
509
508
  lng: this.info.sysInfo['lng'],
510
509
  area: area,
511
510
  })
512
511
  } else {
513
512
  resolve({ lat: '', lng: '', area: '' })
514
513
  }
515
514
  })
516
515
  .catch(e => {
517
516
  console.log(' ~~ file: index.h5.ts:518 ~~ .catch ~~ e:', e)
518
517
  resolve({ lat: '', lng: '', area: '' })
519
518
  console.log('判断jmfe不存在,获取经纬度信息异常')
520
519
  })
521
520
  })
522
521
  }
523
522
  })
524
523
  }
525
524
 
526
525
  async updateMPaasConfigAsync(isBeforePageReady: boolean) {
527
526
  console.log("updateMPaasConfigAsync isBeforePageReady:", isBeforePageReady)
528
527
  if (!isJdApp) {
529
528
  return
530
529
  }
531
530
  const avifSwitch = await getMPaasConfigByBussinessKey(
532
531
  'avifSwitch',
533
532
  isBeforePageReady,
534
533
  )
535
534
  this.info.sysInfo.dynamicConfig['avifSwitch'] = avifSwitch
536
535
  const isFollowAppVideoPlayStatus = await getMPaasConfigByBussinessKey(
537
536
  'isFollowAppVideoPlayStatus',
538
537
  isBeforePageReady,
539
538
  )
540
539
  console.log(
541
540
  'isBeforePageReady:',
542
541
  isBeforePageReady,
543
542
  'isFollowAppVideoPlayStatus:',
544
543
  isFollowAppVideoPlayStatus,
545
544
  )
546
545
  if (
547
546
  isFollowAppVideoPlayStatus === true ||
548
547
  isFollowAppVideoPlayStatus === 'true'
549
548
  ) {
550
549
  this.info.sysInfo.dynamicConfig['isFollowAppVideoPlayStatus'] = true
551
550
  }
552
551
  }
553
552
 
554
553
  async getWifiVideoAutoPlayAsync() {
555
554
  this.info.sysInfo['wifiVideoAutoPlay'] = false
556
555
  if (!isJdApp) {
557
556
  return
558
557
  }
559
558
  const videoPlayStatus = await getWifiVideoAutoPlay().catch(e => {
560
559
  return 0
561
560
  })
562
561
  if (Number(videoPlayStatus) === 1) {
563
562
  this.info.sysInfo['wifiVideoAutoPlay'] = true
564
563
  }
565
564
  }
566
565
 
567
566
  async getMPaasConfigAsync() {
568
567
  this.info.sysInfo.dynamicConfig = {}
569
568
  this.info.sysInfo.dynamicConfig['avifSwitch'] = {}
570
569
  this.info.sysInfo.dynamicConfig['isFollowAppVideoPlayStatus'] = false
571
570
  return this.updateMPaasConfigAsync(true)
572
571
  }
573
572
 
574
573
  getDynamicConfig(key: string){
575
574
  return this.info.sysInfo.dynamicConfig[key]
576
575
  }
577
576
  async updateMPaasConfig() {
578
577
  console.log('updateMPaasConfig')
579
578
  if (
580
579
  isIosDevice &&
581
580
  versionCompare(jdAppVersionStr, MPAAS_CONFIG_APP_VERSION) < 0 &&
582
581
  versionCompare(jdAppVersionStr, MPAAS_CONFIG_APP_LOW_VERSION) >= 0
583
582
  ) {
584
583
  try {
585
584
  await this.updateMPaasConfigAsync(false)
586
585
  } catch (e) {
587
586
  console.log('updateMPaasConfigAsync:', e)
588
587
  }
589
588
  }
590
589
  }
591
590
 
592
591
  toLogin(options) {
593
592
  return this.info.isJingGouMiniViewState || this.info.isJingxiMiniViewState
594
593
  ? this.toWxAppLogin(options)
595
594
  : this.toWebLogin(options)
596
595
  }
597
596
 
598
597
  doLogin(options) {
599
598
  return this.toLogin(options)
600
599
  }
601
600
 
602
601
  doLoginForJdPin(options = {}) {
603
602
  return this.doLogin({
604
603
  loginColor: {
605
604
  biz: WXAPP_BIZ_SHOP_LIGHT_KEY,
606
605
  dpin: 0,
607
606
  },
608
607
  ...options,
609
608
  })
610
609
  }
611
610
 
612
611
  toWebLogin(options) {
613
612
  let params: {
614
613
  returnurl: string
615
614
  } = {
616
615
  returnurl: '',
617
616
  }
618
617
  const loginUrl = isPc
619
618
  ? `//passport.jd.com/new/login.aspx`
620
619
  : `${domain.mobileLogin}/user/login.action`
621
620
  const defaultParams = {
622
621
  appid: '100',
623
622
  returnurl: window.location.href,
624
623
  }
625
624
  if (isString(options)) {
626
625
  params = Object.assign({}, defaultParams, {
627
626
  returnurl: options,
628
627
  })
629
628
  } else if (isObject(options)) {
630
629
  const { loginColor, ...otherOptions } = options
631
630
  params = Object.assign({}, defaultParams, otherOptions)
632
631
  } else {
633
632
  params = defaultParams
634
633
  }
635
634
  params.returnurl = encodeURIComponent(params.returnurl)
636
635
  let getFullUrl = loginUrl + '?' + serialize(params)
637
636
  if (isPc) {
638
637
  getFullUrl = getFullUrl.replace(/returnurl/, 'ReturnUrl')
639
638
  }
640
639
  return Promise.resolve({
641
640
  h5ToUrl: true,
642
641
  url: getFullUrl,
643
642
  }).then(() => {
644
643
  window.location.href = getFullUrl
645
644
  })
646
645
  }
647
646
 
648
647
  toWxAppLogin(options = {}) {
649
648
  console.log('微信京购小程序中h5登录跳转', options)
650
649
  return Promise.resolve(true).then(() => {
651
650
  const { loginColor } = Object.assign(
652
651
  {},
653
652
  {
654
653
  loginColor: {
655
654
  biz: WXAPP_BIZ_KEY,
656
655
  dpin: 1,
657
656
  },
658
657
  },
659
658
  options,
660
659
  )
661
660
  window.location.href = `${domain.wq}/pinbind/pintokenredirect?biz=${
662
661
  loginColor.biz
663
662
  }&url=${encodeURIComponent(window.location.href)}`
664
663
  })
665
664
  }
666
665
 
667
666
  getLoginCookie() {
668
667
  return Promise.resolve({
669
668
  pin: cookie.get('pin') || '',
670
669
  })
671
670
  }
672
671
 
673
672
  clearLoginCookie() {
674
673
  cookie.remove('pin')
675
674
  }
676
675
 
677
676
  checkStatusAndLogin(options = {}) {
678
677
  if (!this.checkStatusAndLoginPromise) {
679
678
  this.checkStatusAndLoginPromise = new Promise(async (resolve, reject) => {
680
679
  try {
681
680
  const getLoginState = await this.doCheckLoginStateAndForApiCheck(
682
681
  options,
683
682
  )
684
683
  if (getLoginState) {
685
684
  resolve(true)
686
685
  } else {
687
686
  this.toLogin(options)
688
687
  reject(false)
689
688
  }
690
689
  } catch (e) {
691
690
  this.toLogin(options)
692
691
  reject(false)
693
692
  }
694
693
  })
695
694
  return this.checkStatusAndLoginPromise
696
695
  } else {
697
696
  return this.checkStatusAndLoginPromise
698
697
  .then(() => {
699
698
  return Promise.resolve(true)
700
699
  })
701
700
  .catch(() => {
702
701
  this.toLogin(options)
703
702
  return Promise.reject(true)
704
703
  })
705
704
  }
706
705
  }
707
706
 
708
707
  checkJdStatusAndLogin(
709
708
  options = {
710
709
  loginColor: {
711
710
  biz: WXAPP_BIZ_SHOP_LIGHT_KEY,
712
711
  dpin: 0,
713
712
  },
714
713
  },
715
714
  ) {
716
715
  return this.checkStatusAndLogin(options)
717
716
  }
718
717
 
719
718
  doCheckLoginStateAndForApiCheck(options) {
720
719
  if (this.info.loginState) {
721
720
  return Promise.resolve(true)
722
721
  } else {
723
722
  return new Promise((resolve, reject) => {
724
723
  if (
725
724
  this.info.isJingGouMiniViewState ||
726
725
  this.info.isJingxiMiniViewState
727
726
  ) {
728
727
  const getWqAuthToken = cookie.get('wq_auth_token')
729
728
  const getWqSkey = cookie.get('wq_skey')
730
729
  const getWqUin = cookie.get('wq_uin')
731
730
  const isLoginState =
732
731
  options?.loginColor?.dpin === 0
733
732
  ? getWqAuthToken
734
733
  : getWqSkey && getWqUin
735
734
  if (isLoginState) {
736
735
  this.info.loginState = true
737
736
  resolve(true)
738
737
  } else {
739
738
  reject(false)
740
739
  }
741
740
  } else {
742
741
  Taro.request({
743
742
  url: api.isLogin,
744
743
  jsonp: true,
745
744
  timeout: 3000,
746
745
  success: res => {
747
746
  const { statusCode, data } = res
748
747
  if (
749
748
  statusCode === 200 &&
750
749
  data?.islogin &&
751
750
  Number(data.islogin) === 1
752
751
  ) {
753
752
  this.info.loginState = true
754
753
  resolve(true)
755
754
  } else {
756
755
  reject(false)
757
756
  }
758
757
  },
759
758
  fail: err => {
760
759
  console.log('登录检查异常', err)
761
760
  reject(false)
762
761
  },
763
762
  })
764
763
  }
765
764
  })
766
765
  }
767
766
  }
768
767
 
769
768
  checkLoginStatus(options) {
770
769
  return new Promise(async (resolve, reject) => {
771
770
  try {
772
771
  const getLoginState = await this.doCheckLoginStateAndForApiCheck(
773
772
  options,
774
773
  )
775
774
  if (getLoginState) {
776
775
  const { pin } = await this.getLoginCookie()
777
776
  this.info.userInfo = {
778
777
  pin,
779
778
  encodePin: encodeURIComponent(pin),
780
779
  ptkey: '',
781
780
  }
782
781
  resolve(true)
783
782
  } else {
784
783
  reject(false)
785
784
  }
786
785
  } catch (e) {
787
786
  reject(false)
788
787
  }
789
788
  })
790
789
  }
791
790
 
792
791
  updatePageAndLogInfo(updateQuery = {}) {
793
792
  const createUpdateQueryInfo: {
794
793
  query: {
795
794
  shopId?: string | number
796
795
  venderId?: string | number
797
796
  }
798
797
  updateShopInfoState: boolean
799
798
  } = Object.assign(
800
799
  {},
801
800
  {
802
801
  query: {},
803
802
  updateShopInfoState: false,
804
803
  },
805
804
  updateQuery,
806
805
  )
807
806
  console.log(
808
807
  '获取当前下发的店铺查询参数',
809
808
  updateQuery,
810
809
  '获取之前保存的shopInfo店铺查询参数',
811
810
  this.info?.shopInfo,
812
811
  )
813
812
  const { query, updateShopInfoState } = createUpdateQueryInfo
814
813
  const { shopId, venderId, un_area } = query
815
814
  if (updateShopInfoState) {
816
815
  this.info.queryInfo = {
817
816
  ...this.info.queryInfo,
818
817
  ...query,
819
818
  }
820
819
  if (shopId && venderId) {
821
820
  this.info.shopInfo = {
822
821
  shopId: `${shopId}`,
823
822
  venderId: `${venderId}`,
824
823
  }
825
824
  }
826
825
  } else {
827
826
  this.info.queryInfo = {
828
827
  ...query,
829
828
  }
830
829
  if (
831
830
  this.info.shopInfo?.shopId &&
832
831
  this.info.shopInfo?.venderId &&
833
832
  (this.info.shopInfo.shopId == shopId ||
834
833
  this.info.shopInfo.venderId == venderId)
835
834
  ) {
836
835
  this.info.queryInfo.shopId = this.info.shopInfo.shopId
837
836
  this.info.queryInfo.venderId = this.info.shopInfo.venderId
838
837
  console.log(
839
838
  '当前存储的店铺shopId和venderId与下发的店铺信息shopId或者venderId为同一个,补充shopId或者venderId查询参数',
840
839
  this.info.queryInfo,
841
840
  )
842
841
  }
843
842
  }
844
843
  this.info.queryInfo['shopId'] &&
845
844
  (this.info.queryInfo['shopId'] = `${this.info.queryInfo['shopId']}`)
846
845
  this.info.queryInfo['venderId'] &&
847
846
  (this.info.queryInfo['venderId'] = `${this.info.queryInfo['venderId']}`)
848
847
  console.log(
849
848
  'h5==获取店铺下发查询参数\n',
850
849
  query,
851
850
  '\n获取店铺最后查询参数\n',
852
851
  this.info.queryInfo,
853
852
  '\n是否为更新店铺状态\n',
854
853
  updateShopInfoState,
855
854
  )
856
855
  const changeArea =
857
856
  un_area && un_area.length > 0 ? un_area : ipLoc_djd ? ipLoc_djd : ''
858
857
  if (changeArea) {
859
858
  this.info.pageInfo.address = changeArea
860
859
  this.info.pageInfo.un_area = changeArea
861
860
  this.info.pageInfo.addressCommaStr = changeArea.replace(/_/g, ',')
862
861
  }
863
862
  }
864
863
 
865
864
  dealLoadSdkList(){
866
865
  const globalLoadJsList = window?.shopGlobalSwitch?.asyncLoadJsList ?? [];
867
866
  const businessLoadJsList = window?.PAGE_DATA?.businessData?.asyncLoadJsList ?? []
868
867
  const concatLoadJsList = [].concat(globalLoadJsList,businessLoadJsList)
869
868
  let mergeLoadJsList = globalLoadJsList
870
869
  try {
871
870
  mergeLoadJsList = concatLoadJsList.reduce((accArr: any[], current: any) => {
872
871
  const getFindIndex = accArr.findIndex(item => item?.fileName === current?.fileName);
873
872
  getFindIndex !== -1 ? (accArr[getFindIndex] = {...accArr[getFindIndex],...current }) : accArr.push(current);
874
873
  return accArr;
875
874
  }, []);
876
875
  }catch (e) {
877
876
  console.log("LoadJsList合并错误", e)
878
877
  }
879
878
  console.log("globalLoadJsList",globalLoadJsList,"businessLoadJsList",businessLoadJsList,"两个加载jsList集合合并完成", mergeLoadJsList)
880
879
  this.loadJsSdkList = mergeLoadJsList
881
880
  return this.loadJsSdkList
882
881
  }
883
882
 
884
883
  renderNextTickLoadSdk(){
885
884
  Taro.nextTick(() => {
886
885
  console.log("页面渲染的下一帧执行的js加载方法,当前nextTick存在state的渲染问题,先延迟1s=======")
887
886
  setTimeout(() => {
888
887
  this.loadOtherSdk(LoadJsInitTriggerType.NRXT_TICK,this.loadJsSdkList)
889
888
  },1000)
890
889
  })
891
890
  }
892
891
 
893
892
  loadOtherSdk(triggerType = LoadJsInitTriggerType.NOW,loadJsList:any[] = [] ) {
894
893
  const getLoadJsList = Array.isArray(loadJsList) && loadJsList.length > 0 ? loadJsList : this.dealLoadSdkList()
895
894
  const getLoadFilterList = getLoadJsList.filter(item => {
896
895
  const getInitLoadEnvType = item?.initLoadEnvType || LoadJsInitLoadEnvType.ALL
897
896
  let getLoastLoadEventState = true
898
897
  if(getInitLoadEnvType === LoadJsInitLoadEnvType.JD_APP){
899
898
  getLoastLoadEventState = isJdApp
900
899
  }
901
900
  else if(getInitLoadEnvType === LoadJsInitLoadEnvType.M){
902
901
  getLoastLoadEventState = !isJdApp
903
902
  }
904
903
  const getInitTriggerType = isJdApp && item?.initJdAppTriggerType ? item?.initTriggerType : item?.initTriggerType || LoadJsInitTriggerType.NOW
905
904
  const getInitLinkTriggerWay = window?.PAGE_DATA[item?.initLinkTriggerWay] || false
906
905
  return getLoastLoadEventState && getInitTriggerType === triggerType && getInitLinkTriggerWay
907
906
  })
908
907
  console.log("获取当前触发方式",triggerType,"获取当前最后加载的js集合",getLoadFilterList,"过滤前的加载集合",getLoadJsList)
909
908
  getLoadFilterList.length > 0 && getLoadFilterList.forEach((item) => {
910
909
  const isLoadState = /sgm/.test(item?.fileName) ? window?.shopGlobalSwitch?.openSgm === "true" : true
911
910
  isLoadState && this.loadItemSdkPromise(item)
912
911
  .then((res) => {
913
912
  console.info('当前js地址' + item?.src, '加载状态', res)
914
913
  const isFileNameNewDraSdkJs = res?.fileName === 'newDraSdkJs'
915
914
  if (isFileNameNewDraSdkJs && window?.dra?.run) {
916
915
  window.dra.run('init', { aid: res?.aid })
917
916
  window.dra.run('start')
918
917
  }
919
918
  })
920
919
  .catch((err) => {
921
920
  console.info('当前js地址加载异常', item?.src)
922
921
  window?.fetchErrorData &&
923
922
  window.fetchErrorData({
924
923
  title: '公共js加载异常',
925
924
  type: "jsLoad",
926
925
  data: err,
927
926
  })
928
927
  })
929
928
  })
930
929
  }
931
930
  loadScriptEle(jsInfo,resolve,reject){
932
931
  const getFileName = jsInfo?.fileName;
933
932
  if(getFileName){
934
933
  const getEleId = `J_loadJs_${getFileName}`
935
934
  const getEle = document.getElementById(getEleId)
936
935
  if (!getEle) {
937
936
  const jsLoadErrorSgmCode = `jsLoadError_${
938
937
  jsInfo?.fileName || 'customJs'
939
938
  }`
940
939
  const _sgmEle = document.createElement('script')
941
940
  _sgmEle.id = getEleId
942
941
  _sgmEle.onload = function () {
943
942
  resolve({
944
943
  ...jsInfo,
945
944
  jsTip: "js加载成功",
946
945
  })
947
946
  }
948
947
  _sgmEle.onerror = function () {
949
948
  reject({
950
949
  ...jsInfo,
951
950
  env: getSgmCustomCode(jsLoadErrorSgmCode),
952
951
  jsReqError: '当前js创建标签触发onerror异常回调,请排查网络络错误或语法错误或运行时错误',
953
952
  })
954
953
  }
955
954
  const dataAttrList = ['timeout','fileName',"env"]
956
955
  const getJsInfoKeyList = Object.keys(jsInfo)
957
956
  getJsInfoKeyList.forEach(key => {
958
957
  if(key === "async"){
959
958
  _sgmEle.async = jsInfo[key]
960
959
  }else if(key === "crossOrigin"){
961
960
  _sgmEle.crossOrigin = jsInfo[key]
962
961
  }else if(key === "src"){
963
962
  _sgmEle.src = `${jsInfo[key]}`
964
963
  }else if(dataAttrList.includes(key) || /init/.test(key)) {
965
964
  _sgmEle.setAttribute(`data-${key}`, jsInfo[key])
966
965
  }else {
967
966
  _sgmEle.setAttribute(key, jsInfo[key])
968
967
  }
969
968
  })
970
969
  document.head.appendChild(_sgmEle)
971
970
  }else {
972
971
  console.log(`当前${jsInfo?.fileName || "js"}已经存在页面中,可以直接调用相关方法`,jsInfo)
973
972
  resolve({
974
973
  ...jsInfo,
975
974
  jsTip: "js本身已存在页面中",
976
975
  })
977
976
  }
978
977
  }else {
979
978
  console.warn("当前js资源信息缺少必要的参数fileName,请关注",jsInfo)
980
979
  }
981
980
  }
982
981
 
983
982
  loadItemSdkPromise(jsInfo = {}){
984
983
  if(jsInfo?.src){
985
984
  const getInitLoadType = isJdApp && jsInfo?.initJdAppLoadType ? jsInfo?.initJdAppLoadType : jsInfo?.initLoadType || LoadJsInitLoadType.ALL
986
985
  if(getInitLoadType !== LoadJsInitLoadType.NONE){
987
986
  const getFileKeyName = jsInfo?.fileName || jsInfo?.src
988
987
  if (!this.loadJsSdkListCachePromise[getFileKeyName]){
989
988
  if(getInitLoadType !== LoadJsInitLoadType.INSERT_ELE){
990
989
  this.loadJsSdkListCachePromise[getFileKeyName] = new Promise((resolve,reject) => {
991
990
  const jsLoadErrorSgmCode = `jsLoadError_${
992
991
  jsInfo?.fileName || 'customJs'
993
992
  }`
994
993
  try {
995
994
  const jsXhrRequest = new XMLHttpRequest();
996
995
  jsXhrRequest.timeout = jsInfo?.timeout ?? 2000
997
996
  const jsUrl = `${jsInfo?.src}`
998
997
  jsXhrRequest.open('GET', jsUrl, true);
999
998
  jsXhrRequest.onreadystatechange = () => {
1000
999
  if (jsXhrRequest.readyState === 4){
1001
1000
  const getReqStatus = jsXhrRequest.status
1002
1001
  if (getReqStatus >= 200 && getReqStatus < 300 || getReqStatus === 304){
1003
1002
  const getInsetHeadState = getInitLoadType === LoadJsInitLoadType.ALL
1004
1003
  if(getInsetHeadState){
1005
1004
  this.loadScriptEle(jsInfo,resolve,reject)
1006
1005
  }else {
1007
1006
  resolve({
1008
1007
  ...jsInfo,
1009
1008
  jsTip: "js请求成功,暂未插入head节点,业务自行单独插入",
1010
1009
  })
1011
1010
  }
1012
1011
  getReqStatus !== 200 && sgmCustomReport({
1013
1012
  type: 3,
1014
1013
  code: "js_load_special_code",
1015
1014
  msg: {
1016
1015
  msg: "当前js加载成功,状态非200,特殊上报观察",
1017
1016
  jsReqState: getReqStatus,
1018
1017
  env: getSgmCustomCode("js_load_special_code"),
1019
1018
  data: jsInfo
1020
1019
  }
1021
1020
  })
1022
1021
  }else {
1023
1022
  const getRes = {
1024
1023
  ...jsInfo,
1025
1024
  env: getSgmCustomCode(jsLoadErrorSgmCode),
1026
1025
  jsReqError: `请求状态异常,状态码为${getReqStatus}`,
1027
1026
  jsReqState: getReqStatus,
1028
1027
  }
1029
1028
  console.log("当前js请求状态异常,具体信息见", getRes)
1030
1029
  reject(getRes)
1031
1030
  }
1032
1031
  }
1033
1032
  };
1034
1033
  jsXhrRequest.onerror = () => {
1035
1034
  const getRes = {
1036
1035
  ...jsInfo,
1037
1036
  env: getSgmCustomCode(jsLoadErrorSgmCode),
1038
1037
  jsReqError: '请求错误',
1039
1038
  }
1040
1039
  console.log("当前js请求错误", getRes)
1041
1040
  jsXhrRequest.abort()
1042
1041
  reject(getRes)
1043
1042
  }
1044
1043
  jsXhrRequest.ontimeout = () => {
1045
1044
  const getRes = {
1046
1045
  ...jsInfo,
1047
1046
  env: getSgmCustomCode(jsLoadErrorSgmCode),
1048
1047
  jsReqError: `请求${jsXhrRequest.timeout}ms超时异常`,
1049
1048
  jsReqState: jsXhrRequest.status,
1050
1049
  }
1051
1050
  console.log("当前js请求超时异常", getRes)
1052
1051
  jsXhrRequest.abort()
1053
1052
  reject(getRes)
1054
1053
  }
1055
1054
  jsXhrRequest.send();
1056
1055
  }catch (e) {
1057
1056
  console.log("执行js请求异常",e)
1058
1057
  reject({
1059
1058
  ...jsInfo,
1060
1059
  env: getSgmCustomCode(jsLoadErrorSgmCode),
1061
1060
  jsReqError: '未知异常',
1062
1061
  error: e,
1063
1062
  })
1064
1063
  }
1065
1064
  })
1066
1065
  }else {
1067
1066
  this.loadJsSdkListCachePromise[getFileKeyName] = new Promise((resolve,reject) => {
1068
1067
  return this.loadScriptEle(jsInfo,resolve,reject)
1069
1068
  })
1070
1069
  }
1071
1070
  }
1072
1071
  return this.loadJsSdkListCachePromise[getFileKeyName]
1073
1072
  }else {
1074
1073
  return Promise.resolve({
1075
1074
  ...jsInfo,
1076
1075
  jsTip: "js加载方式设置为不加载,当前不做处理",
1077
1076
  })
1078
1077
  }
1079
1078
  }else {
1080
1079
  return Promise.reject(jsInfo)
1081
1080
  }
1082
1081
  }
1082
+ import Taro from '@tarojs/taro'
1083
1083
  isIosDevice,
1084
1084
  isAndroidDevice,
1085
1085
  isJdAndHarmonyDevice,
1086
1086
  isJdAndAndroidDevice,
1087
1087
  jdAppVersion,
1088
1088
  jdAppVersionStr,
1089
1089
  isString,
1090
1090
  isObject,
1091
1091
  serialize,
1092
1092
  dealNativePixelToCssPixel,
1093
1093
  isPc,
1094
1094
  BUSINESS_TYPE,
1095
1095
  JSSDK_APP_WEBVIEW_CODE,
1096
1096
  SECTION_HOME_TAB_NAME_TYPE,
1097
1097
  SECTION_HOME_TAB_TYPE,
1098
1098
  WXAPP_BIZ_KEY,
1099
1099
  WX_BUSINESS_TYPE,
1100
1100
  MPAAS_CONFIG_APP_VERSION,
1101
1101
  MPAAS_CONFIG_APP_LOW_VERSION,
1102
1102
  WXAPP_BIZ_SHOP_LIGHT_KEY,
1103
1103
  LoadJsInitLoadEnvType,
1104
1104
  LoadJsInitLoadType,
1105
1105
  LoadJsInitTriggerType
1106
1106
  loginState: false,
1107
1107
  cookiesStr: '',
1108
1108
  userInfo: userPinKey,
1109
1109
  isJingGouMiniViewState: false,
1110
1110
  isJingxiMiniViewState: false,
1111
1111
  pageInfo: {
1112
1112
  wxBusinessType: WX_BUSINESS_TYPE.NO,
1113
1113
  address: '',
1114
1114
  addressCommaStr: '',
1115
1115
  un_area: '',
1116
1116
  vapptype: '1',
1117
1117
  pageType: 'home',
1118
1118
  isExposureState: false,
1119
1119
  moduleId: '',
1120
1120
  entrance: '',
1121
1121
  dataType: BUSINESS_TYPE.ONLINE,
1122
1122
  floorExposureInfo: {},
1123
1123
  floorVideInfo: {},
1124
1124
  productVideInfo: {},
1125
1125
  tabsLoadAllDataInfo: {
1126
1126
  [SECTION_HOME_TAB_NAME_TYPE[
1127
1127
  SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN
1128
1128
  ]]: false,
1129
1129
  },
1130
1130
  updateShopInfosAllState: false,
1131
1131
  isVipShop: false,
1132
1132
  isJdShowNativeImmersivePlayer: false,
1133
1133
  ...shopConfig,
1134
1134
  pageScrollTop: 0,
1135
1135
  pageIdxHeightInfo: {
1136
1136
  list: [],
1137
1137
  },
1138
1138
  shopNavBarHeight: 0,
1139
1139
  },
1140
1140
  defaultQueryLogInfo: {
1141
1141
  sourceType: 'JDshop',
1142
1142
  sourceValue: '',
1143
1143
  moduleId: 'none',
1144
1144
  entrance: 'none',
1145
1145
  },
1146
1146
  sysInfo: {
1147
1147
  windowWidth: isPc ? 375 : 0,
1148
1148
  containerWidth: isPc ? 375 : 0,
1149
1149
  windowHeight: 0,
1150
1150
  netWorkType: '4g',
1151
1151
  jdBottomBarHeight: 0,
1152
1152
  jdNativeHeaderHeight: 0,
1153
1153
  },
1154
1154
  queryInfo: {},
1155
1155
  shopInfo: {},
1156
1156
  openAppData: {},
1157
1157
  public info: CommonInterFace.BaseConfigInfo
1158
1158
  public config: {
1159
1159
  [key: string]: any
1160
1160
  }
1161
1161
  public lazyContainer: CommonInterFace.lazyContainer
1162
1162
  public renderedIsvComponents: CommonInterFace.renderedIsvComponents
1163
1163
  public rootEleNode: HTMLElement | null
1164
1164
  public checkStatusAndLoginPromise: object | null
1165
1165
  private jmfeRegisterStatePromise: Promise<any> | null
1166
1166
  private jmfeRegisterState: boolean
1167
1167
  public loadJsSdkList: Array<any>
1168
1168
  public loadJsSdkListCachePromise: any
1169
1169
  constructor(opt) {
1170
1170
  this.info = this._getConfig(opt)
1171
1171
  this.config = {}
1172
1172
  this.loadJsSdkList = []
1173
1173
  this.loadJsSdkListCachePromise = {}
1174
1174
  this.lazyContainer = {
1175
1175
  [SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN]]: {
1176
1176
  appLazyContainerList: [],
1177
1177
  appLazyFinishContainerList: [],
1178
1178
  },
1179
1179
  [SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PROMOTION]]: {
1180
1180
  appLazyContainerList: [],
1181
1181
  appLazyFinishContainerList: [],
1182
1182
  },
1183
1183
  }
1184
1184
  this.renderedIsvComponents = {}
1185
1185
  this.rootEleNode = document.querySelector('body')
1186
1186
  this.checkStatusAndLoginPromise = null
1187
1187
  this.jmfeRegisterStatePromise = null
1188
1188
  this.loadOtherSdk()
1189
1189
  isJdApp && this.jmfeReayPromise()
1190
1190
  }
1191
1191
  _getConfig(opt) {
1192
1192
  return Object.assign({}, DefaultConfig, opt)
1193
1193
  }
1194
1194
 
1195
1195
  jmfeReayPromise(): Promise<any> {
1196
1196
  if (isJdApp) {
1197
1197
  if (this.jmfeRegisterState) {
1198
1198
  return Promise.resolve(true)
1199
1199
  } else {
1200
1200
  !this.jmfeRegisterStatePromise &&
1201
1201
  (this.jmfeRegisterStatePromise = new Promise((resolve, reject) => {
1202
1202
  ready('jmfe', 3000)
1203
1203
  .then(() => {
1204
1204
  window?.jmfe && window.jmfe.registerCode(JSSDK_APP_WEBVIEW_CODE)
1205
1205
  this.jmfeRegisterState = true
1206
1206
  resolve(true)
1207
1207
  console.log('松果app内初始化注册jmfe认证完成')
1208
1208
  })
1209
1209
  .catch(() => {
1210
1210
  reject(false)
1211
1211
  })
1212
1212
  }))
1213
1213
  return this.jmfeRegisterStatePromise
1214
1214
  }
1215
1215
  } else {
1216
1216
  return Promise.reject(false)
1217
1217
  }
1218
1218
  }
1219
1219
 
1220
1220
  updateBusinessDomainAndApi(domain, api) {
1221
1221
  }
1222
1222
 
1223
1223
  formatNativeScreenPageData(action) {
1224
1224
  let getChangePageInfo: any = null
1225
1225
  try {
1226
1226
  const getNativeScreenPageInfoStr = window.XWebView?._callNative(
1227
1227
  JSON.stringify({
1228
1228
  plugin: 'JDHybridScreenPlugin',
1229
1229
  action,
1230
1230
  sync: '1',
1231
1231
  }),
1232
1232
  )
1233
1233
  const getChangePageInfoData =
1234
1234
  typeof getNativeScreenPageInfoStr === 'string'
1235
1235
  ? JSON.parse(getNativeScreenPageInfoStr)
1236
1236
  : null
1237
1237
  if (getChangePageInfoData && typeof getChangePageInfoData === 'object') {
1238
1238
  const { code, data } = getChangePageInfoData
1239
1239
  getChangePageInfo = code && code === '0' ? data : null
1240
1240
  }
1241
1241
  } catch (e) {
1242
1242
  console.log('JDHybridScreenPlugin转换异常', e)
1243
1243
  }
1244
1244
  return getChangePageInfo
1245
1245
  }
1246
1246
 
1247
1247
  isAndroidFoldScreen() {
1248
1248
  return this.formatNativeScreenPageData('isFoldScreen') === '1'
1249
1249
  }
1250
1250
 
1251
1251
  getJdAndroidPageChangeScreenInfo() {
1252
1252
  const getPageScreenInfo = this.formatNativeScreenPageData('getScreenSize')
1253
1253
  if (
1254
1254
  getPageScreenInfo &&
1255
1255
  getPageScreenInfo?.pageWidth &&
1256
1256
  getPageScreenInfo?.pageHeight
1257
1257
  ) {
1258
1258
  const { pageWidth, pageHeight } = dealNativePixelToCssPixel({
1259
1259
  pageWidth: getPageScreenInfo.pageWidth,
1260
1260
  pageHeight: getPageScreenInfo.pageHeight,
1261
1261
  })
1262
1262
  getPageScreenInfo.pageWidth = pageWidth
1263
1263
  getPageScreenInfo.pageHeight = pageHeight
1264
1264
  }
1265
1265
  return getPageScreenInfo
1266
1266
  }
1267
1267
 
1268
1268
  getSystemInfo(params) {
1269
1269
  let info: UtilsInterFace.taroGetSystemInfoSyncRes | {} = isPc
1270
1270
  ? {}
1271
1271
  : getSystemInfos(params)
1272
1272
  if (isJdAndAndroidDevice && info?.initWindowWidth <= 0) {
1273
1273
  let _isfoldScreen = false
1274
1274
  const getStorageData = getTaroStorageKeyValue("jd_shopx_androidIsFoldScreen")
1275
1275
  console.info("获取当前本地存储是否有jd_shopx_androidIsFoldScreen", getStorageData,"通过缓存值第一次判断是否是折叠屏", getStorageData === 'true')
1276
1276
  if(!getStorageData){
1277
1277
  _isfoldScreen = this.isAndroidFoldScreen()
1278
1278
  setTaroStorage("jd_shopx_androidIsFoldScreen", `${_isfoldScreen}`)
1279
1279
  }else {
1280
1280
  _isfoldScreen = getStorageData === 'true'
1281
1281
  }
1282
1282
  if (_isfoldScreen) {
1283
1283
  const getJdAndroidPageInfo = this.getJdAndroidPageChangeScreenInfo()
1284
1284
  if(getJdAndroidPageInfo){
1285
1285
  info = getSystemInfos(getJdAndroidPageInfo)
1286
1286
  console.warn("当前为松果安卓折叠屏app,获取折叠屏信息",getJdAndroidPageInfo,"获取转换后的系统信息",info)
1287
1287
  sgmCustomReport({
1288
1288
  type: 2,
1289
1289
  code: 'android_jdapp_foldScreen_info',
1290
1290
  msg: {
1291
1291
  title: `松果安卓app为折叠屏,重置获取的系统宽高信息,因为获取宽高度信息初始化内部可能存在横竖屏差异`,
1292
1292
  androidPageInfo: getJdAndroidPageInfo,
1293
1293
  jdAppVersionStr,
1294
1294
  taroSysInfo: info
1295
1295
  }
1296
1296
  })
1297
1297
  }
1298
1298
  }
1299
1299
  }
1300
1300
  this.info.sysInfo = {
1301
1301
  actualNavBarHeight: 0,
1302
1302
  ...this.info.sysInfo,
1303
1303
  ...info,
1304
1304
  safeContentHeight: info?.screenHeight,
1305
1305
  headerHeight: 0,
1306
1306
  tabBarHeight: 0,
1307
1307
  }
1308
1308
  if (isJdApp) {
1309
1309
  this.info.sysInfo['hostVersionName'] = jdAppVersionStr
1310
1310
  this.info.sysInfo['hostAppVersion'] = jdAppVersion
1311
1311
  this.getAddressCachePromise()
1312
1312
  this.getElderModePromise()
1313
1313
  this.getJDAppearanceStatePromise()
1314
1314
  this.createJdAndroidRquestEventForTouchStart()
1315
1315
  }
1316
1316
  this.getWifiVideoAutoPlayAsync()
1317
1317
  this.getMPaasConfigAsync()
1318
1318
  this.getNetWorkType()
1319
1319
  }
1320
1320
 
1321
1321
  taskTimeoutPromise(callBack, timeout = 2000) {
1322
1322
  return new Promise(resolve => {
1323
1323
  setTimeout(() => {
1324
1324
  const getCallBackRes = typeof callBack === 'function' && callBack()
1325
1325
  return resolve(getCallBackRes || false)
1326
1326
  }, timeout)
1327
1327
  })
1328
1328
  }
1329
1329
 
1330
1330
  getElderModePromise() {
1331
1331
  if (this.info.sysInfo.hasOwnProperty('jdAppModeType')) {
1332
1332
  return Promise.resolve(this.info.sysInfo.jdAppModeType)
1333
1333
  } else {
1334
1334
  if (isJdAndAndroidDevice) {
1335
1335
  this.info.sysInfo.jdAppModeType = '0'
1336
1336
  return Promise.resolve(this.info.sysInfo.jdAppModeType)
1337
1337
  } else {
1338
1338
  return Promise.race([
1339
1339
  this.taskTimeoutPromise(() => {
1340
1340
  this.info.sysInfo.jdAppModeType = '0'
1341
1341
  return this.info.sysInfo.jdAppModeType
1342
1342
  }),
1343
1343
  new Promise(resolve => {
1344
1344
  const getCallBackName = `getJdCurrentModeType${Date.now()}`
1345
1345
  if (!window[getCallBackName]) {
1346
1346
  window[getCallBackName] = res => {
1347
1347
  try {
1348
1348
  const getResJson =
1349
1349
  typeof res === 'string' ? JSON.parse(res) : res
1350
1350
  const { status, data, msg } = getResJson
1351
1351
  console.log(`获取松果app展示模式成功,返回结果${data}`)
1352
1352
  if (status === '0') {
1353
1353
  this.info.sysInfo.jdAppModeType = data
1354
1354
  resolve(data)
1355
1355
  } else {
1356
1356
  resolve('0')
1357
1357
  }
1358
1358
  } catch (e) {
1359
1359
  resolve('0')
1360
1360
  }
1361
1361
  window[getCallBackName] = null
1362
1362
  }
1363
1363
  }
1364
1364
  window?.webkit?.messageHandlers?.JDAppUnite?.postMessage({
1365
1365
  method: 'callSyncRouterModuleWithParams',
1366
1366
  params: JSON.stringify({
1367
1367
  routerURL: 'router://JDBModeModule/getCurrentMode',
1368
1368
  routerParam: {},
1369
1369
  callBackName: `window.${getCallBackName}`,
1370
1370
  callBackId: `${getCallBackName}Ios`,
1371
1371
  }),
1372
1372
  })
1373
1373
  }),
1374
1374
  ])
1375
1375
  }
1376
1376
  }
1377
1377
  }
1378
1378
  getAPPUseStraightCorner() {
1379
1379
  const routerURL = 'router://JDBaseUtilsModule/isUI14Enable'
1380
1380
  const params = {
1381
1381
  routerURL,
1382
1382
  routerParam: {},
1383
1383
  jdRouter: '1',
1384
1384
  }
1385
1385
  if (this.info.sysInfo.hasOwnProperty('jdStraightCorner')) {
1386
1386
  return Promise.resolve(this.info.sysInfo.jdStraightCorner)
1387
1387
  } else {
1388
1388
  return this.jmfeReayPromise()
1389
1389
  .then(() => {
1390
1390
  if(isJdAndHarmonyDevice || !isJdApp) {
1391
1391
  console.log('not APP or is Harmony')
1392
1392
  return Promise.resolve(false)
1393
1393
  }
1394
1394
  console.log('jmfe setShareInfo', params)
1395
1395
  return Promise.race([window.jmfe.callRouter(params), this.taskTimeoutPromise(() => {return false})])
1396
1396
  .then(({ status, data }) => {
1397
1397
  console.log('004 ~ file: index.tsx:133 ~ .then ~ data:', data)
1398
1398
  console.log('004 ~ file: index.tsx:133 ~ .then ~ status:', status)
1399
1399
  this.info.sysInfo.jdStraightCorner = status === '0' && Number(data) === 1
1400
1400
  return Promise.resolve( status === '0' && Number(data) === 1)
1401
1401
  })
1402
1402
  })
1403
1403
  .catch(e => {
1404
1404
  console.log('jmfe error', e)
1405
1405
  return Promise.resolve(false)
1406
1406
  })
1407
1407
  }
1408
1408
  }
1409
1409
 
1410
1410
  getJDAppearanceStatePromise() {
1411
1411
  if (this.info.sysInfo.hasOwnProperty('jdAppearanceState')) {
1412
1412
  return Promise.resolve(this.info.sysInfo.jdAppearanceState)
1413
1413
  } else {
1414
1414
  return Promise.race([
1415
1415
  this.taskTimeoutPromise(() => {
1416
1416
  this.info.sysInfo.jdAppearanceState = '0'
1417
1417
  return this.info.sysInfo.jdAppearanceState
1418
1418
  }),
1419
1419
  new Promise(resolve => {
1420
1420
  const getCallBackName = `getJdCurrentAppearanceState${Date.now()}`
1421
1421
  if (!window[getCallBackName]) {
1422
1422
  window[getCallBackName] = res => {
1423
1423
  try {
1424
1424
  console.log('getJDAppearanceStatePromise', res)
1425
1425
  const getResJson =
1426
1426
  typeof res === 'string' ? JSON.parse(res) : res
1427
1427
  const { status, data, msg } = getResJson
1428
1428
  console.log(`获取松果app是否开启黑暗模式成功,返回结果${data}`)
1429
1429
  if (status === '0') {
1430
1430
  this.info.sysInfo.jdAppearanceState = data
1431
1431
  resolve(data)
1432
1432
  } else {
1433
1433
  resolve('0')
1434
1434
  }
1435
1435
  } catch (e) {
1436
1436
  resolve('0')
1437
1437
  }
1438
1438
  window[getCallBackName] = null
1439
1439
  }
1440
1440
  }
1441
1441
  if (isAndroidDevice) {
1442
1442
  const jsonString = JSON.stringify({
1443
1443
  callBackName: `window.${getCallBackName}`,
1444
1444
  })
1445
1445
  console.log('window.JDAppearance', window.JDAppearance)
1446
1446
  window.JDAppearance && window.JDAppearance.getUiState(jsonString)
1447
1447
  } else {
1448
1448
  window?.webkit?.messageHandlers?.JDAppUnite?.postMessage({
1449
1449
  method: 'callSyncRouterModuleWithParams',
1450
1450
  params: JSON.stringify({
1451
1451
  routerURL:
1452
1452
  'router://JDWebViewBusinessModule/getJDAppearanceState',
1453
1453
  routerParam: {},
1454
1454
  callBackName: `window.${getCallBackName}`,
1455
1455
  callBackId: `${getCallBackName}Ios`,
1456
1456
  }),
1457
1457
  })
1458
1458
  }
1459
1459
  }),
1460
1460
  ])
1461
1461
  }
1462
1462
  }
1463
1463
 
1464
1464
  createJdAndroidRquestEventForTouchStart() {
1465
1465
  if (isJdAndAndroidDevice && window.JdAndroid) {
1466
1466
  const rootEleNode = document.querySelector('body')
1467
1467
  if (rootEleNode) {
1468
1468
  rootEleNode.addEventListener(
1469
1469
  'touchstart',
1470
1470
  this.jdAndroidAddEventListenerTouchStart,
1471
1471
  false,
1472
1472
  )
1473
1473
  }
1474
1474
  }
1475
1475
  }
1476
1476
  jdAndroidAddEventListenerTouchStart(e) {
1477
1477
  const isH5SwiperCustomEle = e?.target?.closest('.J_h5SwiperCustom')
1478
1478
  if (!isH5SwiperCustomEle) {
1479
1479
  const hasCustomEle = e
1480
1480
  ? e?.target?.closest('.J_customScroll') ||
1481
1481
  e?.target?.closest('.J_customLayout')
1482
1482
  : false
1483
1483
  if (!hasCustomEle) {
1484
1484
  window.JdAndroid.requestEvent(false)
1485
1485
  console.log(
1486
1486
  'createJdAndroidRquestEvent 所有松果安卓APP内的document touch start事件执行检测requestEvent并重置为false',
1487
1487
  )
1488
1488
  }
1489
1489
  }
1490
1490
  }
1491
1491
  removeJdAndroidRquestEventForTouchStart() {
1492
1492
  if (isJdAndAndroidDevice && window.JdAndroid) {
1493
1493
  const rootEleNode = document.querySelector('body')
1494
1494
  if (rootEleNode) {
1495
1495
  rootEleNode.removeEventListener(
1496
1496
  'touchstart',
1497
1497
  this.jdAndroidAddEventListenerTouchStart,
1498
1498
  false,
1499
1499
  )
1500
1500
  }
1501
1501
  }
1502
1502
  }
1503
1503
 
1504
1504
  getNetWorkType() {
1505
1505
  if (isJdApp) {
1506
1506
  this.jmfeReayPromise().then(() => {
1507
1507
  window.jmfe
1508
1508
  .getNetworkStatus()
1509
1509
  .then(({ status, data }) => {
1510
1510
  console.log(
1511
1511
  '在app内初始化通过jmfe对象获取网络状态完成,当前网络状态====',
1512
1512
  data,
1513
1513
  )
1514
1514
  if (status === '0') {
1515
1515
  this.info.sysInfo['netWorkType'] = data
1516
1516
  } else {
1517
1517
  this._taroGetNetworkType()
1518
1518
  }
1519
1519
  })
1520
1520
  .catch(err => {
1521
1521
  console.log('在app内初始化通过jmfe对象获取网络状态异常====', err)
1522
1522
  this._taroGetNetworkType()
1523
1523
  })
1524
1524
  })
1525
1525
  } else {
1526
1526
  this._taroGetNetworkType()
1527
1527
  }
1528
1528
  }
1529
1529
  _taroGetNetworkType() {
1530
1530
  Taro.getNetworkType().then(getRes => {
1531
1531
  if (getRes && getRes.networkType) {
1532
1532
  this.info.sysInfo['netWorkType'] = getRes.networkType
1533
1533
  console.log(
1534
1534
  '在app内通过taro对象获取网络状态完成,当前网络状态',
1535
1535
  this.info.sysInfo['netWorkType'],
1536
1536
  )
1537
1537
  }
1538
1538
  })
1539
1539
  }
1540
1540
  getCacheAddressRouter() {
1541
1541
  if (!window.jmfe) return
1542
1542
  if (isAndroidDevice) {
1543
1543
  return window.jmfe.callRouter({
1544
1544
  jdRouter: '1',
1545
1545
  routerURL: 'router://JDAddressModule/getCacheAddress',
1546
1546
  routerParam: { sceneId: 'basicShoppingProcess' },
1547
1547
  })
1548
1548
  } else if (isIosDevice) {
1549
1549
  return window.jmfe.callRouter({
1550
1550
  jdRouter: '1',
1551
1551
  routerURL: 'router://JDBAddressCacheManagerModule/getCacheAddress',
1552
1552
  routerParam: { sceneId: 'basicShoppingProcess' },
1553
1553
  })
1554
1554
  } else if (isJdAndHarmonyDevice) {
1555
1555
  return new Promise(resolve => {
1556
1556
  resolve({})
1557
1557
  })
1558
1558
  } else {
1559
1559
  throw Error(
1560
1560
  'Unknown device type cannot obtain the address information through the route!',
1561
1561
  )
1562
1562
  }
1563
1563
  }
1564
1564
 
1565
1565
  getAddressCachePromise() {
1566
1566
  return new Promise(resolve => {
1567
1567
  if (
1568
1568
  this?.info?.sysInfo?.lat &&
1569
1569
  this?.info?.sysInfo?.lng &&
1570
1570
  this?.info?.sysInfo?.area
1571
1571
  ) {
1572
1572
  resolve({
1573
1573
  lat: this.info.sysInfo.lat,
1574
1574
  lng: this.info.sysInfo.lng,
1575
1575
  area: this?.info?.sysInfo?.area,
1576
1576
  })
1577
1577
  } else {
1578
1578
  this.jmfeReayPromise().then(() => {
1579
1579
  this.getCacheAddressRouter()
1580
1580
  .then(({ status, data }) => {
1581
1581
  console.log("原生端获取经纬度原始数据结果",status,data)
1582
1582
  if (status === '0' && data) {
1583
1583
  const {
1584
1584
  lat,
1585
1585
  latitude,
1586
1586
  lng,
1587
1587
  longitude,
1588
1588
  provinceId,
1589
1589
  cityId,
1590
1590
  countyId,
1591
1591
  townId,
1592
1592
  } = data || {}
1593
1593
  let area = ''
1594
1594
  this.info.sysInfo['lat'] = `${lat || latitude || ''}`
1595
1595
  this.info.sysInfo['lng'] = `${lng || longitude || ''}`
1596
1596
  if (provinceId) {
1597
1597
  area = `${provinceId}_${cityId || 0}_${countyId ||
1598
1598
  0}_${townId || 0}`
1599
1599
  this.info.pageInfo['address'] = area
1600
1600
  this.info.pageInfo['addressCommaStr'] = area.replace(
1601
1601
  /_/g,
1602
1602
  ',',
1603
1603
  )
1604
1604
  }
1605
1605
  resolve({
1606
1606
  lat: this.info.sysInfo['lat'],
1607
1607
  lng: this.info.sysInfo['lng'],
1608
1608
  area: area,
1609
1609
  })
1610
1610
  } else {
1611
1611
  resolve({ lat: '', lng: '', area: '' })
1612
1612
  }
1613
1613
  })
1614
1614
  .catch(e => {
1615
1615
  console.log(' ~~ file: index.h5.ts:518 ~~ .catch ~~ e:', e)
1616
1616
  resolve({ lat: '', lng: '', area: '' })
1617
1617
  console.log('判断jmfe不存在,获取经纬度信息异常')
1618
1618
  })
1619
1619
  })
1620
1620
  }
1621
1621
  })
1622
1622
  }
1623
1623
 
1624
1624
  async updateMPaasConfigAsync(isBeforePageReady: boolean) {
1625
1625
  console.log("updateMPaasConfigAsync isBeforePageReady:", isBeforePageReady)
1626
1626
  if (!isJdApp) {
1627
1627
  return
1628
1628
  }
1629
1629
  const avifSwitch = await getMPaasConfigByBussinessKey(
1630
1630
  'avifSwitch',
1631
1631
  isBeforePageReady,
1632
1632
  )
1633
1633
  this.info.sysInfo.dynamicConfig['avifSwitch'] = avifSwitch
1634
1634
  const isFollowAppVideoPlayStatus = await getMPaasConfigByBussinessKey(
1635
1635
  'isFollowAppVideoPlayStatus',
1636
1636
  isBeforePageReady,
1637
1637
  )
1638
1638
  console.log(
1639
1639
  'isBeforePageReady:',
1640
1640
  isBeforePageReady,
1641
1641
  'isFollowAppVideoPlayStatus:',
1642
1642
  isFollowAppVideoPlayStatus,
1643
1643
  )
1644
1644
  if (
1645
1645
  isFollowAppVideoPlayStatus === true ||
1646
1646
  isFollowAppVideoPlayStatus === 'true'
1647
1647
  ) {
1648
1648
  this.info.sysInfo.dynamicConfig['isFollowAppVideoPlayStatus'] = true
1649
1649
  }
1650
1650
  }
1651
1651
 
1652
1652
  async getWifiVideoAutoPlayAsync() {
1653
1653
  this.info.sysInfo['wifiVideoAutoPlay'] = false
1654
1654
  if (!isJdApp) {
1655
1655
  return
1656
1656
  }
1657
1657
  const videoPlayStatus = await getWifiVideoAutoPlay().catch(e => {
1658
1658
  return 0
1659
1659
  })
1660
1660
  if (Number(videoPlayStatus) === 1) {
1661
1661
  this.info.sysInfo['wifiVideoAutoPlay'] = true
1662
1662
  }
1663
1663
  }
1664
1664
 
1665
1665
  async getMPaasConfigAsync() {
1666
1666
  this.info.sysInfo.dynamicConfig = {}
1667
1667
  this.info.sysInfo.dynamicConfig['avifSwitch'] = {}
1668
1668
  this.info.sysInfo.dynamicConfig['isFollowAppVideoPlayStatus'] = false
1669
1669
  return this.updateMPaasConfigAsync(true)
1670
1670
  }
1671
1671
 
1672
1672
  getDynamicConfig(key: string){
1673
1673
  return this.info.sysInfo.dynamicConfig[key]
1674
1674
  }
1675
1675
  async updateMPaasConfig() {
1676
1676
  console.log('updateMPaasConfig')
1677
1677
  if (
1678
1678
  isIosDevice &&
1679
1679
  versionCompare(jdAppVersionStr, MPAAS_CONFIG_APP_VERSION) < 0 &&
1680
1680
  versionCompare(jdAppVersionStr, MPAAS_CONFIG_APP_LOW_VERSION) >= 0
1681
1681
  ) {
1682
1682
  try {
1683
1683
  await this.updateMPaasConfigAsync(false)
1684
1684
  } catch (e) {
1685
1685
  console.log('updateMPaasConfigAsync:', e)
1686
1686
  }
1687
1687
  }
1688
1688
  }
1689
1689
 
1690
1690
  toLogin(options) {
1691
1691
  return this.info.isJingGouMiniViewState || this.info.isJingxiMiniViewState
1692
1692
  ? this.toWxAppLogin(options)
1693
1693
  : this.toWebLogin(options)
1694
1694
  }
1695
1695
 
1696
1696
  doLogin(options) {
1697
1697
  return this.toLogin(options)
1698
1698
  }
1699
1699
 
1700
1700
  doLoginForJdPin(options = {}) {
1701
1701
  return this.doLogin({
1702
1702
  loginColor: {
1703
1703
  biz: WXAPP_BIZ_SHOP_LIGHT_KEY,
1704
1704
  dpin: 0,
1705
1705
  },
1706
1706
  ...options,
1707
1707
  })
1708
1708
  }
1709
1709
 
1710
1710
  toWebLogin(options) {
1711
1711
  let params: {
1712
1712
  returnurl: string
1713
1713
  } = {
1714
1714
  returnurl: '',
1715
1715
  }
1716
1716
  const loginUrl = isPc
1717
1717
  ? `//passport.jd.com/new/login.aspx`
1718
1718
  : `${domain.mobileLogin}/user/login.action`
1719
1719
  const defaultParams = {
1720
1720
  appid: '100',
1721
1721
  returnurl: window.location.href,
1722
1722
  }
1723
1723
  if (isString(options)) {
1724
1724
  params = Object.assign({}, defaultParams, {
1725
1725
  returnurl: options,
1726
1726
  })
1727
1727
  } else if (isObject(options)) {
1728
1728
  const { loginColor, ...otherOptions } = options
1729
1729
  params = Object.assign({}, defaultParams, otherOptions)
1730
1730
  } else {
1731
1731
  params = defaultParams
1732
1732
  }
1733
1733
  params.returnurl = encodeURIComponent(params.returnurl)
1734
1734
  let getFullUrl = loginUrl + '?' + serialize(params)
1735
1735
  if (isPc) {
1736
1736
  getFullUrl = getFullUrl.replace(/returnurl/, 'ReturnUrl')
1737
1737
  }
1738
1738
  return Promise.resolve({
1739
1739
  h5ToUrl: true,
1740
1740
  url: getFullUrl,
1741
1741
  }).then(() => {
1742
1742
  window.location.href = getFullUrl
1743
1743
  })
1744
1744
  }
1745
1745
 
1746
1746
  toWxAppLogin(options = {}) {
1747
1747
  console.log('微信京购小程序中h5登录跳转', options)
1748
1748
  return Promise.resolve(true).then(() => {
1749
1749
  const { loginColor } = Object.assign(
1750
1750
  {},
1751
1751
  {
1752
1752
  loginColor: {
1753
1753
  biz: WXAPP_BIZ_KEY,
1754
1754
  dpin: 1,
1755
1755
  },
1756
1756
  },
1757
1757
  options,
1758
1758
  )
1759
1759
  window.location.href = `${domain.wq}/pinbind/pintokenredirect?biz=${
1760
1760
  loginColor.biz
1761
1761
  }&url=${encodeURIComponent(window.location.href)}`
1762
1762
  })
1763
1763
  }
1764
1764
 
1765
1765
  getLoginCookie() {
1766
1766
  return Promise.resolve({
1767
1767
  pin: cookie.get('pin') || '',
1768
1768
  })
1769
1769
  }
1770
1770
 
1771
1771
  clearLoginCookie() {
1772
1772
  cookie.remove('pin')
1773
1773
  }
1774
1774
 
1775
1775
  checkStatusAndLogin(options = {}) {
1776
1776
  if (!this.checkStatusAndLoginPromise) {
1777
1777
  this.checkStatusAndLoginPromise = new Promise(async (resolve, reject) => {
1778
1778
  try {
1779
1779
  const getLoginState = await this.doCheckLoginStateAndForApiCheck(
1780
1780
  options,
1781
1781
  )
1782
1782
  if (getLoginState) {
1783
1783
  resolve(true)
1784
1784
  } else {
1785
1785
  this.toLogin(options)
1786
1786
  reject(false)
1787
1787
  }
1788
1788
  } catch (e) {
1789
1789
  this.toLogin(options)
1790
1790
  reject(false)
1791
1791
  }
1792
1792
  })
1793
1793
  return this.checkStatusAndLoginPromise
1794
1794
  } else {
1795
1795
  return this.checkStatusAndLoginPromise
1796
1796
  .then(() => {
1797
1797
  return Promise.resolve(true)
1798
1798
  })
1799
1799
  .catch(() => {
1800
1800
  this.toLogin(options)
1801
1801
  return Promise.reject(true)
1802
1802
  })
1803
1803
  }
1804
1804
  }
1805
1805
 
1806
1806
  checkJdStatusAndLogin(
1807
1807
  options = {
1808
1808
  loginColor: {
1809
1809
  biz: WXAPP_BIZ_SHOP_LIGHT_KEY,
1810
1810
  dpin: 0,
1811
1811
  },
1812
1812
  },
1813
1813
  ) {
1814
1814
  return this.checkStatusAndLogin(options)
1815
1815
  }
1816
1816
 
1817
1817
  doCheckLoginStateAndForApiCheck(options) {
1818
1818
  if (this.info.loginState) {
1819
1819
  return Promise.resolve(true)
1820
1820
  } else {
1821
1821
  return new Promise((resolve, reject) => {
1822
1822
  if (
1823
1823
  this.info.isJingGouMiniViewState ||
1824
1824
  this.info.isJingxiMiniViewState
1825
1825
  ) {
1826
1826
  const getWqAuthToken = cookie.get('wq_auth_token')
1827
1827
  const getWqSkey = cookie.get('wq_skey')
1828
1828
  const getWqUin = cookie.get('wq_uin')
1829
1829
  const isLoginState =
1830
1830
  options?.loginColor?.dpin === 0
1831
1831
  ? getWqAuthToken
1832
1832
  : getWqSkey && getWqUin
1833
1833
  if (isLoginState) {
1834
1834
  this.info.loginState = true
1835
1835
  resolve(true)
1836
1836
  } else {
1837
1837
  reject(false)
1838
1838
  }
1839
1839
  } else {
1840
1840
  Taro.request({
1841
1841
  url: api.isLogin,
1842
1842
  jsonp: true,
1843
1843
  timeout: 3000,
1844
1844
  success: res => {
1845
1845
  const { statusCode, data } = res
1846
1846
  if (
1847
1847
  statusCode === 200 &&
1848
1848
  data?.islogin &&
1849
1849
  Number(data.islogin) === 1
1850
1850
  ) {
1851
1851
  this.info.loginState = true
1852
1852
  resolve(true)
1853
1853
  } else {
1854
1854
  reject(false)
1855
1855
  }
1856
1856
  },
1857
1857
  fail: err => {
1858
1858
  console.log('登录检查异常', err)
1859
1859
  reject(false)
1860
1860
  },
1861
1861
  })
1862
1862
  }
1863
1863
  })
1864
1864
  }
1865
1865
  }
1866
1866
 
1867
1867
  checkLoginStatus(options) {
1868
1868
  return new Promise(async (resolve, reject) => {
1869
1869
  try {
1870
1870
  const getLoginState = await this.doCheckLoginStateAndForApiCheck(
1871
1871
  options,
1872
1872
  )
1873
1873
  if (getLoginState) {
1874
1874
  const { pin } = await this.getLoginCookie()
1875
1875
  this.info.userInfo = {
1876
1876
  pin,
1877
1877
  encodePin: encodeURIComponent(pin),
1878
1878
  ptkey: '',
1879
1879
  }
1880
1880
  resolve(true)
1881
1881
  } else {
1882
1882
  reject(false)
1883
1883
  }
1884
1884
  } catch (e) {
1885
1885
  reject(false)
1886
1886
  }
1887
1887
  })
1888
1888
  }
1889
1889
 
1890
1890
  updatePageAndLogInfo(updateQuery = {}) {
1891
1891
  const createUpdateQueryInfo: {
1892
1892
  query: {
1893
1893
  shopId?: string | number
1894
1894
  venderId?: string | number
1895
1895
  }
1896
1896
  updateShopInfoState: boolean
1897
1897
  } = Object.assign(
1898
1898
  {},
1899
1899
  {
1900
1900
  query: {},
1901
1901
  updateShopInfoState: false,
1902
1902
  },
1903
1903
  updateQuery,
1904
1904
  )
1905
1905
  console.log(
1906
1906
  '获取当前下发的店铺查询参数',
1907
1907
  updateQuery,
1908
1908
  '获取之前保存的shopInfo店铺查询参数',
1909
1909
  this.info?.shopInfo,
1910
1910
  )
1911
1911
  const { query, updateShopInfoState } = createUpdateQueryInfo
1912
1912
  const { shopId, venderId, un_area } = query
1913
1913
  if (updateShopInfoState) {
1914
1914
  this.info.queryInfo = {
1915
1915
  ...this.info.queryInfo,
1916
1916
  ...query,
1917
1917
  }
1918
1918
  if (shopId && venderId) {
1919
1919
  this.info.shopInfo = {
1920
1920
  shopId: `${shopId}`,
1921
1921
  venderId: `${venderId}`,
1922
1922
  }
1923
1923
  }
1924
1924
  } else {
1925
1925
  this.info.queryInfo = {
1926
1926
  ...query,
1927
1927
  }
1928
1928
  if (
1929
1929
  this.info.shopInfo?.shopId &&
1930
1930
  this.info.shopInfo?.venderId &&
1931
1931
  (this.info.shopInfo.shopId == shopId ||
1932
1932
  this.info.shopInfo.venderId == venderId)
1933
1933
  ) {
1934
1934
  this.info.queryInfo.shopId = this.info.shopInfo.shopId
1935
1935
  this.info.queryInfo.venderId = this.info.shopInfo.venderId
1936
1936
  console.log(
1937
1937
  '当前存储的店铺shopId和venderId与下发的店铺信息shopId或者venderId为同一个,补充shopId或者venderId查询参数',
1938
1938
  this.info.queryInfo,
1939
1939
  )
1940
1940
  }
1941
1941
  }
1942
1942
  this.info.queryInfo['shopId'] &&
1943
1943
  (this.info.queryInfo['shopId'] = `${this.info.queryInfo['shopId']}`)
1944
1944
  this.info.queryInfo['venderId'] &&
1945
1945
  (this.info.queryInfo['venderId'] = `${this.info.queryInfo['venderId']}`)
1946
1946
  console.log(
1947
1947
  'h5==获取店铺下发查询参数\n',
1948
1948
  query,
1949
1949
  '\n获取店铺最后查询参数\n',
1950
1950
  this.info.queryInfo,
1951
1951
  '\n是否为更新店铺状态\n',
1952
1952
  updateShopInfoState,
1953
1953
  )
1954
1954
  const changeArea =
1955
1955
  un_area && un_area.length > 0 ? un_area : ipLoc_djd ? ipLoc_djd : ''
1956
1956
  if (changeArea) {
1957
1957
  this.info.pageInfo.address = changeArea
1958
1958
  this.info.pageInfo.un_area = changeArea
1959
1959
  this.info.pageInfo.addressCommaStr = changeArea.replace(/_/g, ',')
1960
1960
  }
1961
1961
  }
1962
1962
 
1963
1963
  dealLoadSdkList(){
1964
1964
  const globalLoadJsList = window?.shopGlobalSwitch?.asyncLoadJsList ?? [];
1965
1965
  const businessLoadJsList = window?.PAGE_DATA?.businessData?.asyncLoadJsList ?? []
1966
1966
  const concatLoadJsList = [].concat(globalLoadJsList,businessLoadJsList)
1967
1967
  let mergeLoadJsList = globalLoadJsList
1968
1968
  try {
1969
1969
  mergeLoadJsList = concatLoadJsList.reduce((accArr: any[], current: any) => {
1970
1970
  const getFindIndex = accArr.findIndex(item => item?.fileName === current?.fileName);
1971
1971
  getFindIndex !== -1 ? (accArr[getFindIndex] = {...accArr[getFindIndex],...current }) : accArr.push(current);
1972
1972
  return accArr;
1973
1973
  }, []);
1974
1974
  }catch (e) {
1975
1975
  console.log("LoadJsList合并错误", e)
1976
1976
  }
1977
1977
  console.log("globalLoadJsList",globalLoadJsList,"businessLoadJsList",businessLoadJsList,"两个加载jsList集合合并完成", mergeLoadJsList)
1978
1978
  this.loadJsSdkList = mergeLoadJsList
1979
1979
  return this.loadJsSdkList
1980
1980
  }
1981
1981
 
1982
1982
  renderNextTickLoadSdk(){
1983
1983
  Taro.nextTick(() => {
1984
1984
  console.log("页面渲染的下一帧执行的js加载方法,当前nextTick存在state的渲染问题,先延迟1s=======")
1985
1985
  setTimeout(() => {
1986
1986
  this.loadOtherSdk(LoadJsInitTriggerType.NRXT_TICK,this.loadJsSdkList)
1987
1987
  },1000)
1988
1988
  })
1989
1989
  }
1990
1990
 
1991
1991
  loadOtherSdk(triggerType = LoadJsInitTriggerType.NOW,loadJsList:any[] = [] ) {
1992
1992
  const getLoadJsList = Array.isArray(loadJsList) && loadJsList.length > 0 ? loadJsList : this.dealLoadSdkList()
1993
1993
  const getLoadFilterList = getLoadJsList.filter(item => {
1994
1994
  const getInitLoadEnvType = item?.initLoadEnvType || LoadJsInitLoadEnvType.ALL
1995
1995
  let getLoastLoadEventState = true
1996
1996
  if(getInitLoadEnvType === LoadJsInitLoadEnvType.JD_APP){
1997
1997
  getLoastLoadEventState = isJdApp
1998
1998
  }
1999
1999
  else if(getInitLoadEnvType === LoadJsInitLoadEnvType.M){
2000
2000
  getLoastLoadEventState = !isJdApp
2001
2001
  }
2002
2002
  const getInitTriggerType = isJdApp && item?.initJdAppTriggerType ? item?.initTriggerType : item?.initTriggerType || LoadJsInitTriggerType.NOW
2003
2003
  const getInitLinkTriggerWay = window?.PAGE_DATA[item?.initLinkTriggerWay] || false
2004
2004
  return getLoastLoadEventState && getInitTriggerType === triggerType && getInitLinkTriggerWay
2005
2005
  })
2006
2006
  console.log("获取当前触发方式",triggerType,"获取当前最后加载的js集合",getLoadFilterList,"过滤前的加载集合",getLoadJsList)
2007
2007
  getLoadFilterList.length > 0 && getLoadFilterList.forEach((item) => {
2008
2008
  const isLoadState = /sgm/.test(item?.fileName) ? window?.shopGlobalSwitch?.openSgm === "true" : true
2009
2009
  isLoadState && this.loadItemSdkPromise(item)
2010
2010
  .then((res) => {
2011
2011
  console.info('当前js地址' + item?.src, '加载状态', res)
2012
2012
  const isFileNameNewDraSdkJs = res?.fileName === 'newDraSdkJs'
2013
2013
  if (isFileNameNewDraSdkJs && window?.dra?.run) {
2014
2014
  window.dra.run('init', { aid: res?.aid })
2015
2015
  window.dra.run('start')
2016
2016
  }
2017
2017
  })
2018
2018
  .catch((err) => {
2019
2019
  console.info('当前js地址加载异常', item?.src)
2020
2020
  window?.fetchErrorData &&
2021
2021
  window.fetchErrorData({
2022
2022
  title: '公共js加载异常',
2023
2023
  type: "jsLoad",
2024
2024
  data: err,
2025
2025
  })
2026
2026
  })
2027
2027
  })
2028
2028
  }
2029
2029
  loadScriptEle(jsInfo,resolve,reject){
2030
2030
  const getFileName = jsInfo?.fileName;
2031
2031
  if(getFileName){
2032
2032
  const getEleId = `J_loadJs_${getFileName}`
2033
2033
  const getEle = document.getElementById(getEleId)
2034
2034
  if (!getEle) {
2035
2035
  const jsLoadErrorSgmCode = `jsLoadError_${
2036
2036
  jsInfo?.fileName || 'customJs'
2037
2037
  }`
2038
2038
  const _sgmEle = document.createElement('script')
2039
2039
  _sgmEle.id = getEleId
2040
2040
  _sgmEle.onload = function () {
2041
2041
  resolve({
2042
2042
  ...jsInfo,
2043
2043
  jsTip: "js加载成功",
2044
2044
  })
2045
2045
  }
2046
2046
  _sgmEle.onerror = function () {
2047
2047
  reject({
2048
2048
  ...jsInfo,
2049
2049
  env: getSgmCustomCode(jsLoadErrorSgmCode),
2050
2050
  jsReqError: '当前js创建标签触发onerror异常回调,请排查网络络错误或语法错误或运行时错误',
2051
2051
  })
2052
2052
  }
2053
2053
  const dataAttrList = ['timeout','fileName',"env"]
2054
2054
  const getJsInfoKeyList = Object.keys(jsInfo)
2055
2055
  getJsInfoKeyList.forEach(key => {
2056
2056
  if(key === "async"){
2057
2057
  _sgmEle.async = jsInfo[key]
2058
2058
  }else if(key === "crossOrigin"){
2059
2059
  _sgmEle.crossOrigin = jsInfo[key]
2060
2060
  }else if(key === "src"){
2061
2061
  _sgmEle.src = `${jsInfo[key]}`
2062
2062
  }else if(dataAttrList.includes(key) || /init/.test(key)) {
2063
2063
  _sgmEle.setAttribute(`data-${key}`, jsInfo[key])
2064
2064
  }else {
2065
2065
  _sgmEle.setAttribute(key, jsInfo[key])
2066
2066
  }
2067
2067
  })
2068
2068
  document.head.appendChild(_sgmEle)
2069
2069
  }else {
2070
2070
  console.log(`当前${jsInfo?.fileName || "js"}已经存在页面中,可以直接调用相关方法`,jsInfo)
2071
2071
  resolve({
2072
2072
  ...jsInfo,
2073
2073
  jsTip: "js本身已存在页面中",
2074
2074
  })
2075
2075
  }
2076
2076
  }else {
2077
2077
  console.warn("当前js资源信息缺少必要的参数fileName,请关注",jsInfo)
2078
2078
  }
2079
2079
  }
2080
2080
 
2081
2081
  loadItemSdkPromise(jsInfo = {}){
2082
2082
  if(jsInfo?.src){
2083
2083
  const getInitLoadType = isJdApp && jsInfo?.initJdAppLoadType ? jsInfo?.initJdAppLoadType : jsInfo?.initLoadType || LoadJsInitLoadType.ALL
2084
2084
  if(getInitLoadType !== LoadJsInitLoadType.NONE){
2085
2085
  const getFileKeyName = jsInfo?.fileName || jsInfo?.src
2086
2086
  if (!this.loadJsSdkListCachePromise[getFileKeyName]){
2087
2087
  if(getInitLoadType !== LoadJsInitLoadType.INSERT_ELE){
2088
2088
  this.loadJsSdkListCachePromise[getFileKeyName] = new Promise((resolve,reject) => {
2089
2089
  const jsLoadErrorSgmCode = `jsLoadError_${
2090
2090
  jsInfo?.fileName || 'customJs'
2091
2091
  }`
2092
2092
  try {
2093
2093
  const jsXhrRequest = new XMLHttpRequest();
2094
2094
  jsXhrRequest.timeout = jsInfo?.timeout ?? 2000
2095
2095
  const jsUrl = `${jsInfo?.src}`
2096
2096
  jsXhrRequest.open('GET', jsUrl, true);
2097
2097
  jsXhrRequest.onreadystatechange = () => {
2098
2098
  if (jsXhrRequest.readyState === 4){
2099
2099
  const getReqStatus = jsXhrRequest.status
2100
2100
  if (getReqStatus >= 200 && getReqStatus < 300 || getReqStatus === 304){
2101
2101
  const getInsetHeadState = getInitLoadType === LoadJsInitLoadType.ALL
2102
2102
  if(getInsetHeadState){
2103
2103
  this.loadScriptEle(jsInfo,resolve,reject)
2104
2104
  }else {
2105
2105
  resolve({
2106
2106
  ...jsInfo,
2107
2107
  jsTip: "js请求成功,暂未插入head节点,业务自行单独插入",
2108
2108
  })
2109
2109
  }
2110
2110
  getReqStatus !== 200 && sgmCustomReport({
2111
2111
  type: 3,
2112
2112
  code: "js_load_special_code",
2113
2113
  msg: {
2114
2114
  msg: "当前js加载成功,状态非200,特殊上报观察",
2115
2115
  jsReqState: getReqStatus,
2116
2116
  env: getSgmCustomCode("js_load_special_code"),
2117
2117
  data: jsInfo
2118
2118
  }
2119
2119
  })
2120
2120
  }else {
2121
2121
  const getRes = {
2122
2122
  ...jsInfo,
2123
2123
  env: getSgmCustomCode(jsLoadErrorSgmCode),
2124
2124
  jsReqError: `请求状态异常,状态码为${getReqStatus}`,
2125
2125
  jsReqState: getReqStatus,
2126
2126
  }
2127
2127
  console.log("当前js请求状态异常,具体信息见", getRes)
2128
2128
  reject(getRes)
2129
2129
  }
2130
2130
  }
2131
2131
  };
2132
2132
  jsXhrRequest.onerror = () => {
2133
2133
  const getRes = {
2134
2134
  ...jsInfo,
2135
2135
  env: getSgmCustomCode(jsLoadErrorSgmCode),
2136
2136
  jsReqError: '请求错误',
2137
2137
  }
2138
2138
  console.log("当前js请求错误", getRes)
2139
2139
  jsXhrRequest.abort()
2140
2140
  reject(getRes)
2141
2141
  }
2142
2142
  jsXhrRequest.ontimeout = () => {
2143
2143
  const getRes = {
2144
2144
  ...jsInfo,
2145
2145
  env: getSgmCustomCode(jsLoadErrorSgmCode),
2146
2146
  jsReqError: `请求${jsXhrRequest.timeout}ms超时异常`,
2147
2147
  jsReqState: jsXhrRequest.status,
2148
2148
  }
2149
2149
  console.log("当前js请求超时异常", getRes)
2150
2150
  jsXhrRequest.abort()
2151
2151
  reject(getRes)
2152
2152
  }
2153
2153
  jsXhrRequest.send();
2154
2154
  }catch (e) {
2155
2155
  console.log("执行js请求异常",e)
2156
2156
  reject({
2157
2157
  ...jsInfo,
2158
2158
  env: getSgmCustomCode(jsLoadErrorSgmCode),
2159
2159
  jsReqError: '未知异常',
2160
2160
  error: e,
2161
2161
  })
2162
2162
  }
2163
2163
  })
2164
2164
  }else {
2165
2165
  this.loadJsSdkListCachePromise[getFileKeyName] = new Promise((resolve,reject) => {
2166
2166
  return this.loadScriptEle(jsInfo,resolve,reject)
2167
2167
  })
2168
2168
  }
2169
2169
  }
2170
2170
  return this.loadJsSdkListCachePromise[getFileKeyName]
2171
2171
  }else {
2172
2172
  return Promise.resolve({
2173
2173
  ...jsInfo,
2174
2174
  jsTip: "js加载方式设置为不加载,当前不做处理",
2175
2175
  })
2176
2176
  }
2177
2177
  }else {
2178
2178
  return Promise.reject(jsInfo)
2179
2179
  }
2180
2180
  }