@mpxjs/webpack-plugin 2.10.12 → 2.10.13-beta.2

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.
@@ -117,14 +117,13 @@ const SwiperWrapper = forwardRef((props, ref) => {
117
117
  // 记录元素的偏移量
118
118
  const offset = useSharedValue(getOffset(props.current || 0, initStep));
119
119
  const strAbso = 'absolute' + dir.toUpperCase();
120
+ const strVelocity = 'velocity' + dir.toUpperCase();
120
121
  // 标识手指触摸和抬起, 起点在onBegin
121
122
  const touchfinish = useSharedValue(true);
122
123
  // 记录上一帧的绝对定位坐标
123
124
  const preAbsolutePos = useSharedValue(0);
124
125
  // 记录从onBegin 到 onTouchesUp 时移动的距离
125
126
  const moveTranstion = useSharedValue(0);
126
- // 记录从onBegin 到 onTouchesUp 的时间
127
- const moveTime = useSharedValue(0);
128
127
  const timerId = useRef(0);
129
128
  const intervalTimer = props.interval || 500;
130
129
  const simultaneousHandlers = flatGesture(originSimultaneousHandlers);
@@ -405,7 +404,11 @@ const SwiperWrapper = forwardRef((props, ref) => {
405
404
  }
406
405
  }, [children.length]);
407
406
  useEffect(() => {
408
- updateCurrent(props.current || 0, step.value);
407
+ // 1. 如果用户在touch的过程中, 外部更新了current以外部为准(小程序表现)
408
+ // 2. 手指滑动过程中更新索引,外部会把current再传入进来,导致offset直接更新,增加判断不同才更新
409
+ if (props.current !== currentIndex.value) {
410
+ updateCurrent(props.current || 0, step.value);
411
+ }
409
412
  }, [props.current]);
410
413
  useEffect(() => {
411
414
  autoplayShared.value = autoplay;
@@ -427,7 +430,7 @@ const SwiperWrapper = forwardRef((props, ref) => {
427
430
  function getTargetPosition(eventData) {
428
431
  'worklet';
429
432
  // 移动的距离
430
- const { translation } = eventData;
433
+ const { transdir } = eventData;
431
434
  let resetOffsetPos = 0;
432
435
  let selectedIndex = currentIndex.value;
433
436
  // 是否临界点
@@ -435,9 +438,9 @@ const SwiperWrapper = forwardRef((props, ref) => {
435
438
  // 真实滚动到的偏移量坐标
436
439
  let moveToTargetPos = 0;
437
440
  const tmp = !circularShared.value ? 0 : preMarginShared.value;
438
- const currentOffset = translation < 0 ? offset.value - tmp : offset.value + tmp;
441
+ const currentOffset = transdir < 0 ? offset.value - tmp : offset.value + tmp;
439
442
  const computedIndex = Math.abs(currentOffset) / step.value;
440
- const moveToIndex = translation < 0 ? Math.ceil(computedIndex) : Math.floor(computedIndex);
443
+ const moveToIndex = transdir < 0 ? Math.ceil(computedIndex) : Math.floor(computedIndex);
441
444
  // 实际应该定位的索引值
442
445
  if (!circularShared.value) {
443
446
  selectedIndex = moveToIndex;
@@ -470,14 +473,18 @@ const SwiperWrapper = forwardRef((props, ref) => {
470
473
  }
471
474
  function canMove(eventData) {
472
475
  'worklet';
473
- const { translation } = eventData;
474
- const currentOffset = Math.abs(offset.value);
476
+ // 旧版:如果在快速多次滑动时,只根据当前的offset判断,会出现offset没超出,加上translation后越界的场景(如在倒数第二个元素快速滑动)
477
+ // 新版:会加上translation
478
+ const { translation, transdir } = eventData;
479
+ const gestureMovePos = offset.value + translation;
475
480
  if (!circularShared.value) {
476
- if (translation < 0) {
477
- return currentOffset < step.value * (childrenLength.value - 1);
481
+ // 如果只判断区间,中间非滑动状态(handleResistanceMove)向左滑动,突然改为向右滑动,但是还在非滑动态,本应该可滑动判断为了不可滑动
482
+ const posEnd = -step.value * (childrenLength.value - 1);
483
+ if (transdir < 0) {
484
+ return gestureMovePos > posEnd;
478
485
  }
479
486
  else {
480
- return currentOffset > 0;
487
+ return gestureMovePos < 0;
481
488
  }
482
489
  }
483
490
  else {
@@ -511,25 +518,16 @@ const SwiperWrapper = forwardRef((props, ref) => {
511
518
  });
512
519
  }
513
520
  }
514
- function handleBackInit() {
515
- 'worklet';
516
- // 微信的效果
517
- // 1. 只有一个元素,即使设置了circular,也不会产生循环的效果,2. 可以响应手势,但是会有回弹的效果
518
- offset.value = withTiming(0, {
519
- duration: easeDuration,
520
- easing: easeMap[easeingFunc]
521
- });
522
- }
523
521
  function handleBack(eventData) {
524
522
  'worklet';
525
- const { translation } = eventData;
523
+ const { transdir } = eventData;
526
524
  // 向右滑动的back:trans < 0, 向左滑动的back: trans < 0
527
525
  let currentOffset = Math.abs(offset.value);
528
526
  if (circularShared.value) {
529
- currentOffset += translation < 0 ? preMarginShared.value : -preMarginShared.value;
527
+ currentOffset += transdir < 0 ? preMarginShared.value : -preMarginShared.value;
530
528
  }
531
529
  const curIndex = currentOffset / step.value;
532
- const moveToIndex = (translation < 0 ? Math.floor(curIndex) : Math.ceil(curIndex)) - patchElmNumShared.value;
530
+ const moveToIndex = (transdir < 0 ? Math.floor(curIndex) : Math.ceil(curIndex)) - patchElmNumShared.value;
533
531
  const targetOffset = -(moveToIndex + patchElmNumShared.value) * step.value + (circularShared.value ? preMarginShared.value : 0);
534
532
  offset.value = withTiming(targetOffset, {
535
533
  duration: easeDuration,
@@ -541,65 +539,111 @@ const SwiperWrapper = forwardRef((props, ref) => {
541
539
  }
542
540
  });
543
541
  }
544
- function handleLongPress() {
542
+ // 当前的offset和index多对应的offset进行对比,判断是否超过一半
543
+ function computeHalf(eventData) {
545
544
  'worklet';
545
+ const { transdir } = eventData;
546
546
  const currentOffset = Math.abs(offset.value);
547
547
  let preOffset = (currentIndex.value + patchElmNumShared.value) * step.value;
548
548
  if (circularShared.value) {
549
549
  preOffset -= preMarginShared.value;
550
550
  }
551
- // 正常事件中拿到的transition值(正向滑动<0,倒着滑>0)
551
+ // 正常事件中拿到的translation值(正向滑动<0,倒着滑>0)
552
552
  const diffOffset = preOffset - currentOffset;
553
553
  const half = Math.abs(diffOffset) > step.value / 2;
554
+ const isTriggerUpdateHalf = (transdir < 0 && currentOffset < preOffset) || (transdir > 0 && currentOffset > preOffset);
555
+ return {
556
+ diffOffset,
557
+ half,
558
+ isTriggerUpdateHalf
559
+ };
560
+ }
561
+ function handleLongPress(eventData) {
562
+ 'worklet';
563
+ const { diffOffset, half, isTriggerUpdateHalf } = computeHalf(eventData);
554
564
  if (+diffOffset === 0) {
555
565
  runOnJS(resumeLoop)();
556
566
  }
567
+ else if (isTriggerUpdateHalf) {
568
+ // 如果触发了onUpdate时的索引变更,则直接以update时的index为准
569
+ const targetIndex = !circularShared.value ? currentIndex.value : currentIndex.value + patchElmNumShared.value - 1;
570
+ offset.value = withTiming(-targetIndex * step.value, {
571
+ duration: easeDuration,
572
+ easing: easeMap[easeingFunc]
573
+ }, () => {
574
+ if (touchfinish.value !== false) {
575
+ currentIndex.value = targetIndex;
576
+ runOnJS(resumeLoop)();
577
+ }
578
+ });
579
+ }
557
580
  else if (half) {
558
- handleEnd({ translation: diffOffset });
581
+ handleEnd(eventData);
559
582
  }
560
583
  else {
561
- handleBack({ translation: diffOffset });
584
+ handleBack(eventData);
562
585
  }
563
586
  }
564
587
  function reachBoundary(eventData) {
565
588
  'worklet';
566
- // 移动的距离
589
+ // 1. 基于当前的offset和translation判断是否超过当前边界值
567
590
  const { translation } = eventData;
568
- const elementsLength = step.value * childrenLength.value;
591
+ const boundaryStart = -patchElmNumShared.value * step.value;
592
+ const boundaryEnd = -(childrenLength.value + patchElmNumShared.value) * step.value;
593
+ const moveToOffset = offset.value + translation;
569
594
  let isBoundary = false;
570
595
  let resetOffset = 0;
571
- // Y轴向下滚动, transDistance > 0, 向上滚动 < 0 X轴向左滚动, transDistance > 0
572
- const currentOffset = offset.value;
573
- const moveStep = Math.ceil(translation / elementsLength);
574
- if (translation < 0) {
575
- const posEnd = (childrenLength.value + patchElmNumShared.value + 1) * step.value;
576
- const posReverseEnd = (patchElmNumShared.value - 1) * step.value;
577
- if (currentOffset < -posEnd + step.value) {
578
- isBoundary = true;
579
- resetOffset = Math.abs(moveStep) === 0 ? patchElmNumShared.value * step.value + translation : moveStep * elementsLength;
580
- }
581
- if (currentOffset > -posReverseEnd) {
582
- isBoundary = true;
583
- resetOffset = moveStep * elementsLength;
584
- }
596
+ if (moveToOffset < boundaryEnd) {
597
+ isBoundary = true;
598
+ // 超过边界的距离
599
+ const exceedLength = Math.abs(moveToOffset) - Math.abs(boundaryEnd);
600
+ // 计算对标正常元素所在的offset
601
+ resetOffset = patchElmNumShared.value * step.value + exceedLength;
585
602
  }
586
- else if (translation > 0) {
587
- const posEnd = (patchElmNumShared.value - 1) * step.value;
588
- const posReverseEnd = (patchElmNumShared.value + childrenLength.value) * step.value;
589
- if (currentOffset > -posEnd) {
590
- isBoundary = true;
591
- resetOffset = moveStep * elementsLength + step.value + (moveStep === 1 ? translation : 0);
592
- }
593
- if (currentOffset < -posReverseEnd) {
594
- isBoundary = true;
595
- resetOffset = moveStep * elementsLength + patchElmNumShared.value * step.value;
596
- }
603
+ if (moveToOffset > boundaryStart) {
604
+ isBoundary = true;
605
+ // 超过边界的距离
606
+ const exceedLength = Math.abs(boundaryStart) - Math.abs(moveToOffset);
607
+ // 计算对标正常元素所在的offset
608
+ resetOffset = (patchElmNumShared.value + childrenLength.value - 1) * step.value + (step.value - exceedLength);
597
609
  }
598
610
  return {
599
611
  isBoundary,
600
612
  resetOffset: -resetOffset
601
613
  };
602
614
  }
615
+ // 非循环超出边界,应用阻力; 开始滑动少阻力小,滑动越长阻力越大
616
+ function handleResistanceMove(eventData) {
617
+ 'worklet';
618
+ const { translation, transdir } = eventData;
619
+ const moveToOffset = offset.value + translation;
620
+ const maxOverDrag = Math.floor(step.value / 2);
621
+ const maxOffset = translation < 0 ? -(childrenLength.value - 1) * step.value : 0;
622
+ let resistance = 0.1;
623
+ let overDrag = 0;
624
+ let finalOffset = 0;
625
+ // 向右向下小于0, 向左向上大于0;
626
+ if (transdir < 0) {
627
+ overDrag = Math.abs(moveToOffset - maxOffset);
628
+ }
629
+ else {
630
+ overDrag = Math.abs(moveToOffset);
631
+ }
632
+ // 滑动越多resistance越小
633
+ resistance = 1 - overDrag / maxOverDrag;
634
+ // 确保阻力在合理范围内
635
+ resistance = Math.min(0.5, resistance);
636
+ // 限制在最大拖拽范围内
637
+ if (transdir < 0) {
638
+ const adjustOffset = offset.value + translation * resistance;
639
+ finalOffset = Math.max(adjustOffset, maxOffset - maxOverDrag);
640
+ }
641
+ else {
642
+ const adjustOffset = offset.value + translation * resistance;
643
+ finalOffset = Math.min(adjustOffset, maxOverDrag);
644
+ }
645
+ return finalOffset;
646
+ }
603
647
  const gesturePan = Gesture.Pan()
604
648
  .onBegin((e) => {
605
649
  'worklet';
@@ -610,21 +654,42 @@ const SwiperWrapper = forwardRef((props, ref) => {
610
654
  runOnJS(pauseLoop)();
611
655
  preAbsolutePos.value = e[strAbso];
612
656
  moveTranstion.value = e[strAbso];
613
- moveTime.value = new Date().getTime();
614
657
  })
615
- .onTouchesMove((e) => {
658
+ .onUpdate((e) => {
616
659
  'worklet';
617
660
  if (touchfinish.value)
618
661
  return;
619
- const touchEventData = e.changedTouches[0];
620
- const moveDistance = touchEventData[strAbso] - preAbsolutePos.value;
662
+ const moveDistance = e[strAbso] - preAbsolutePos.value;
621
663
  const eventData = {
622
- translation: moveDistance
664
+ translation: moveDistance,
665
+ transdir: moveDistance !== 0 ? moveDistance : e[strAbso] - moveTranstion.value
623
666
  };
624
- // 处理用户一直拖拽到临界点的场景, 不会执行onEnd
625
- if (!circularShared.value && !canMove(eventData)) {
667
+ // 1. 支持滑动中超出一半更新索引的能力:只更新索引并不会影响onFinalize依据当前offset计算的索引
668
+ const { half } = computeHalf(eventData);
669
+ if (childrenLength.value > 1 && half) {
670
+ const { selectedIndex } = getTargetPosition(eventData);
671
+ currentIndex.value = selectedIndex;
672
+ }
673
+ // 2. 非循环: 处理用户一直拖拽到临界点的场景,如果放到onFinalize无法阻止offset.value更新为越界的值
674
+ if (!circularShared.value) {
675
+ if (canMove(eventData)) {
676
+ offset.value = moveDistance + offset.value;
677
+ }
678
+ else {
679
+ const finalOffset = handleResistanceMove(eventData);
680
+ offset.value = finalOffset;
681
+ }
682
+ preAbsolutePos.value = e[strAbso];
626
683
  return;
627
684
  }
685
+ // 3. 循环更新: 只有一个元素时可滑动,加入阻力
686
+ if (circularShared.value && childrenLength.value === 1) {
687
+ const finalOffset = handleResistanceMove(eventData);
688
+ offset.value = finalOffset;
689
+ preAbsolutePos.value = e[strAbso];
690
+ return;
691
+ }
692
+ // 4. 循环更新:正常
628
693
  const { isBoundary, resetOffset } = reachBoundary(eventData);
629
694
  if (childrenLength.value > 1 && isBoundary && circularShared.value) {
630
695
  offset.value = resetOffset;
@@ -632,28 +697,43 @@ const SwiperWrapper = forwardRef((props, ref) => {
632
697
  else {
633
698
  offset.value = moveDistance + offset.value;
634
699
  }
635
- preAbsolutePos.value = touchEventData[strAbso];
700
+ preAbsolutePos.value = e[strAbso];
636
701
  })
637
- .onTouchesUp((e) => {
702
+ .onFinalize((e) => {
638
703
  'worklet';
639
704
  if (touchfinish.value)
640
705
  return;
641
- const touchEventData = e.changedTouches[0];
642
- const moveDistance = touchEventData[strAbso] - moveTranstion.value;
643
706
  touchfinish.value = true;
707
+ // 触发过onUpdate正常情况下e[strAbso] - preAbsolutePos.value=0; 未触发过onUpdate的情况下e[strAbso] - preAbsolutePos.value 不为0
708
+ const moveDistance = e[strAbso] - preAbsolutePos.value;
644
709
  const eventData = {
645
- translation: moveDistance
710
+ translation: moveDistance,
711
+ transdir: moveDistance !== 0 ? moveDistance : e[strAbso] - moveTranstion.value
646
712
  };
713
+ // 1. 只有一个元素:循环 和 非循环状态,都走回弹效果
647
714
  if (childrenLength.value === 1) {
648
- return handleBackInit();
715
+ offset.value = withTiming(0, {
716
+ duration: easeDuration,
717
+ easing: easeMap[easeingFunc]
718
+ });
719
+ return;
649
720
  }
650
- // 用户手指按下起来, 需要计算正确的位置, 比如在滑动过程中突然按下然后起来,需要计算到正确的位置
721
+ // 2.非循环状态不可移动态:最后一个元素 第一个元素
722
+ // 非循环支持最后元素可滑动能力后,向左快速移动未超过最大可移动范围一半,因为offset为正值,向左滑动handleBack,默认向上取整
723
+ // 但是在offset大于0时,取0。[-100, 0](back取0), [0, 100](back取1), 所以handleLongPress里的处理逻辑需要兼容支持,因此这里直接单独处理,不耦合下方公共的判断逻辑。
651
724
  if (!circularShared.value && !canMove(eventData)) {
725
+ if (eventData.transdir < 0) {
726
+ handleBack(eventData);
727
+ }
728
+ else {
729
+ handleEnd(eventData);
730
+ }
652
731
  return;
653
732
  }
654
- const strVelocity = moveDistance / (new Date().getTime() - moveTime.value) * 1000;
655
- if (Math.abs(strVelocity) < longPressRatio) {
656
- handleLongPress();
733
+ // 3. 非循环状态可移动态、循环状态, 正常逻辑处理
734
+ const velocity = e[strVelocity];
735
+ if (Math.abs(velocity) < longPressRatio) {
736
+ handleLongPress(eventData);
657
737
  }
658
738
  else {
659
739
  handleEnd(eventData);
@@ -1,6 +1,7 @@
1
1
  import { useEffect, useMemo, useRef } from 'react';
2
2
  import { Easing, useSharedValue, withTiming, useAnimatedStyle, withSequence, withDelay, makeMutable, cancelAnimation, runOnJS } from 'react-native-reanimated';
3
3
  import { error, hasOwn, collectDataset } from '@mpxjs/utils';
4
+ import { useRunOnJSCallback } from './utils';
4
5
  // 微信 timingFunction 和 RN Easing 对应关系
5
6
  const EasingKey = {
6
7
  linear: Easing.linear,
@@ -182,13 +183,19 @@ export default function useAnimationHooks(props) {
182
183
  timeStamp: Date.now()
183
184
  });
184
185
  }
186
+ // eslint-disable-next-line react-hooks/rules-of-hooks
187
+ const runOnJSCallbackRef = useRef({
188
+ withTimingCallback
189
+ });
190
+ // eslint-disable-next-line react-hooks/rules-of-hooks
191
+ const runOnJSCallback = useRunOnJSCallback(runOnJSCallbackRef);
185
192
  // 创建单个animation
186
193
  function getAnimation({ key, value }, { delay, duration, easing }, callback) {
187
194
  const animation = typeof callback === 'function'
188
195
  ? withTiming(value, { duration, easing }, (finished, current) => {
189
196
  callback(finished, current);
190
197
  if (transitionend && finished) {
191
- runOnJS(withTimingCallback)(finished, current, duration);
198
+ runOnJS(runOnJSCallback)('withTimingCallback', finished, current, duration);
192
199
  }
193
200
  })
194
201
  : withTiming(value, { duration, easing });
@@ -5,7 +5,6 @@ import { VarContext, ScrollViewContext, RouteContext } from './context';
5
5
  import { ExpressionParser, parseFunc, ReplaceSource } from './parser';
6
6
  import { initialWindowMetrics } from 'react-native-safe-area-context';
7
7
  import FastImage from '@d11/react-native-fast-image';
8
- import { runOnJS } from 'react-native-reanimated';
9
8
  import { Gesture } from 'react-native-gesture-handler';
10
9
  export const TEXT_STYLE_REGEX = /color|font.*|text.*|letterSpacing|lineHeight|includeFontPadding|writingDirection/;
11
10
  export const PERCENT_REGEX = /^\s*-?\d+(\.\d+)?%\s*$/;
@@ -663,13 +662,11 @@ export function useHover({ enableHover, hoverStartTime, hoverStayTime, disabled
663
662
  const gesture = useMemo(() => {
664
663
  return Gesture.Pan()
665
664
  .onTouchesDown(() => {
666
- 'worklet';
667
- runOnJS(setStartTimer)();
665
+ setStartTimer();
668
666
  })
669
667
  .onTouchesUp(() => {
670
- 'worklet';
671
- runOnJS(setStayTimer)();
672
- });
668
+ setStayTimer();
669
+ }).runOnJS(true);
673
670
  }, []);
674
671
  if (gestureRef) {
675
672
  gesture.simultaneousWithExternalGesture(gestureRef);
@@ -679,3 +676,17 @@ export function useHover({ enableHover, hoverStartTime, hoverStayTime, disabled
679
676
  gesture
680
677
  };
681
678
  }
679
+ export function useRunOnJSCallback(callbackMapRef) {
680
+ const invokeCallback = useCallback((key, ...args) => {
681
+ const callback = callbackMapRef.current[key];
682
+ // eslint-disable-next-line node/no-callback-literal
683
+ if (isFunction(callback))
684
+ return callback(...args);
685
+ }, []);
686
+ useEffect(() => {
687
+ return () => {
688
+ callbackMapRef.current = {};
689
+ };
690
+ }, []);
691
+ return invokeCallback;
692
+ }
@@ -1,6 +1,7 @@
1
1
  import { useState, ComponentType, useEffect, useCallback, useRef, ReactNode, createElement } from 'react'
2
2
  import { View, Image, StyleSheet, Text, TouchableOpacity } from 'react-native'
3
3
  import FastImage from '@d11/react-native-fast-image'
4
+ import { AnyFunc } from './types/common'
4
5
 
5
6
  const asyncChunkMap = new Map()
6
7
 
@@ -136,10 +137,19 @@ const AsyncSuspense: React.FC<AsyncSuspenseProps> = ({
136
137
  .catch((e) => {
137
138
  if (cancelled) return
138
139
  if (type === 'component') {
139
- global.onLazyLoadError({
140
- type: 'subpackage',
141
- subpackage: [chunkName],
142
- errMsg: `loadSubpackage: ${e.type}`
140
+ global.__mpxAppCbs.lazyLoad.forEach((cb: AnyFunc) => {
141
+ // eslint-disable-next-line node/no-callback-literal
142
+ cb({
143
+ type: 'subpackage',
144
+ subpackage: [chunkName],
145
+ errMsg: `loadSubpackage: ${e.type}`
146
+ })
147
+ })
148
+ }
149
+ if (type === 'page' && typeof mpxGlobal.__mpx.config?.rnConfig?.lazyLoadPageErrorHandler === 'function') {
150
+ mpxGlobal.__mpx.config.rnConfig.lazyLoadPageErrorHandler({
151
+ subpackage: chunkName,
152
+ errType: e.type
143
153
  })
144
154
  }
145
155
  loadChunkPromise.current = null