react-native-screen-transitions 4.0.0-alpha.2 → 4.0.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonjs/adapters/with-screen-transitions/context.js +4 -0
- package/lib/commonjs/adapters/with-screen-transitions/context.js.map +1 -1
- package/lib/commonjs/adapters/with-screen-transitions/stack-layout.js +14 -8
- package/lib/commonjs/adapters/with-screen-transitions/stack-layout.js.map +1 -1
- package/lib/commonjs/animation/snap-to.js +1 -0
- package/lib/commonjs/animation/snap-to.js.map +1 -1
- package/lib/commonjs/components/activity/variants/activity-screen.js +26 -10
- package/lib/commonjs/components/activity/variants/activity-screen.js.map +1 -1
- package/lib/commonjs/components/boundary/components/boundary-target.js +1 -1
- package/lib/commonjs/components/boundary/components/boundary-target.js.map +1 -1
- package/lib/commonjs/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js +29 -14
- package/lib/commonjs/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js.map +1 -1
- package/lib/commonjs/components/boundary/hooks/lifecycles/use-initial-source-measurement.js +3 -1
- package/lib/commonjs/components/boundary/hooks/lifecycles/use-initial-source-measurement.js.map +1 -1
- package/lib/commonjs/components/boundary/hooks/lifecycles/use-refresh-boundary.js +8 -17
- package/lib/commonjs/components/boundary/hooks/lifecycles/use-refresh-boundary.js.map +1 -1
- package/lib/commonjs/components/boundary/hooks/use-boundary-measurement.js +5 -4
- package/lib/commonjs/components/boundary/hooks/use-boundary-measurement.js.map +1 -1
- package/lib/commonjs/components/boundary/hooks/use-measurer.js +6 -13
- package/lib/commonjs/components/boundary/hooks/use-measurer.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js +67 -0
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js +44 -37
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/components/host.js +2 -2
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/components/host.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/helpers/active-pair.js +30 -0
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/helpers/active-pair.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js +75 -0
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js +17 -32
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.js +10 -19
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/utils/naming.js +8 -1
- package/lib/commonjs/components/boundary/portal/utils/naming.js.map +1 -1
- package/lib/commonjs/components/boundary/providers/boundary-root.provider.js +4 -5
- package/lib/commonjs/components/boundary/providers/boundary-root.provider.js.map +1 -1
- package/lib/commonjs/components/boundary/utils/destination-signals.js +1 -3
- package/lib/commonjs/components/boundary/utils/destination-signals.js.map +1 -1
- package/lib/commonjs/components/boundary/utils/measured-bounds.js +19 -31
- package/lib/commonjs/components/boundary/utils/measured-bounds.js.map +1 -1
- package/lib/commonjs/components/boundary/utils/refresh-signals.js +16 -24
- package/lib/commonjs/components/boundary/utils/refresh-signals.js.map +1 -1
- package/lib/commonjs/components/create-transition-aware-component.js +9 -30
- package/lib/commonjs/components/create-transition-aware-component.js.map +1 -1
- package/lib/commonjs/components/screen-container/hooks/use-backdrop-pointer-events.js +5 -9
- package/lib/commonjs/components/screen-container/hooks/use-backdrop-pointer-events.js.map +1 -1
- package/lib/commonjs/components/screen-container/hooks/use-content-layout.js +3 -8
- package/lib/commonjs/components/screen-container/hooks/use-content-layout.js.map +1 -1
- package/lib/commonjs/components/screen-container/layers/backdrop.js +7 -10
- package/lib/commonjs/components/screen-container/layers/backdrop.js.map +1 -1
- package/lib/commonjs/components/screen-container/layers/content.js +10 -16
- package/lib/commonjs/components/screen-container/layers/content.js.map +1 -1
- package/lib/commonjs/components/screen-container/layers/surface-container.js +1 -5
- package/lib/commonjs/components/screen-container/layers/surface-container.js.map +1 -1
- package/lib/commonjs/components/screen-lifecycle/hooks/use-close-transition-intent.js +10 -12
- package/lib/commonjs/components/screen-lifecycle/hooks/use-close-transition-intent.js.map +1 -1
- package/lib/commonjs/components/screen-lifecycle/hooks/use-open-transition-intent.js +2 -3
- package/lib/commonjs/components/screen-lifecycle/hooks/use-open-transition-intent.js.map +1 -1
- package/lib/commonjs/components/screen-lifecycle/hooks/use-transition-start-controller.js +5 -1
- package/lib/commonjs/components/screen-lifecycle/hooks/use-transition-start-controller.js.map +1 -1
- package/lib/commonjs/components/screen-lifecycle/index.js +2 -4
- package/lib/commonjs/components/screen-lifecycle/index.js.map +1 -1
- package/lib/commonjs/components/stack-view.js +69 -35
- package/lib/commonjs/components/stack-view.js.map +1 -1
- package/lib/commonjs/configs/presets.js +10 -10
- package/lib/commonjs/configs/presets.js.map +1 -1
- package/lib/commonjs/constants.js +1 -0
- package/lib/commonjs/constants.js.map +1 -1
- package/lib/commonjs/hooks/navigation/use-navigation-helpers.js +9 -8
- package/lib/commonjs/hooks/navigation/use-navigation-helpers.js.map +1 -1
- package/lib/commonjs/hooks/navigation/use-screen-state.js +1 -3
- package/lib/commonjs/hooks/navigation/use-screen-state.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/animation.provider.js +7 -7
- package/lib/commonjs/providers/screen/animation/animation.provider.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/helpers/accessors/use-build-bounds-accessor.js +1 -3
- package/lib/commonjs/providers/screen/animation/helpers/accessors/use-build-bounds-accessor.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/helpers/accessors/use-build-transition-accessor.js +1 -1
- package/lib/commonjs/providers/screen/animation/helpers/accessors/use-build-transition-accessor.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/helpers/hydrate-transition-state/index.js +4 -10
- package/lib/commonjs/providers/screen/animation/helpers/hydrate-transition-state/index.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/helpers/pipeline.js +5 -7
- package/lib/commonjs/providers/screen/animation/helpers/pipeline.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/index.js +2 -2
- package/lib/commonjs/providers/screen/animation/use-screen-animation.js +1 -1
- package/lib/commonjs/providers/screen/animation/use-screen-animation.js.map +1 -1
- package/lib/commonjs/providers/screen/descriptors/descriptors.provider.js +35 -47
- package/lib/commonjs/providers/screen/descriptors/descriptors.provider.js.map +1 -1
- package/lib/commonjs/providers/screen/descriptors/helpers/derive-descriptor-derivations.js +1 -3
- package/lib/commonjs/providers/screen/descriptors/helpers/derive-descriptor-derivations.js.map +1 -1
- package/lib/commonjs/providers/screen/descriptors/helpers/get-ancestor-keys.js +3 -20
- package/lib/commonjs/providers/screen/descriptors/helpers/get-ancestor-keys.js.map +1 -1
- package/lib/commonjs/providers/screen/descriptors/index.js +0 -12
- package/lib/commonjs/providers/screen/descriptors/index.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/gestures.provider.js +7 -7
- package/lib/commonjs/providers/screen/gestures/gestures.provider.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/hooks/use-screen-gesture-config.js +3 -9
- package/lib/commonjs/providers/screen/gestures/hooks/use-screen-gesture-config.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/hooks/use-screen-gesture.js +1 -1
- package/lib/commonjs/providers/screen/gestures/hooks/use-screen-gesture.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/hooks/use-stable-runtime-config.js +1 -3
- package/lib/commonjs/providers/screen/gestures/hooks/use-stable-runtime-config.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/index.js +2 -2
- package/lib/commonjs/providers/screen/gestures/ownership/shadowing-claims.js +2 -2
- package/lib/commonjs/providers/screen/gestures/ownership/shadowing-claims.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/ownership/use-walk-up-and-register-shadowing-claims.js +8 -11
- package/lib/commonjs/providers/screen/gestures/ownership/use-walk-up-and-register-shadowing-claims.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pan/activation/use-pan-activation.js +2 -4
- package/lib/commonjs/providers/screen/gestures/pan/activation/use-pan-activation.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pan/behavior/pan-lifecycle.js +5 -8
- package/lib/commonjs/providers/screen/gestures/pan/behavior/pan-lifecycle.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pan/behavior/pan-reset.js +10 -0
- package/lib/commonjs/providers/screen/gestures/pan/behavior/pan-reset.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pan/use-build-pan-gesture.js +1 -1
- package/lib/commonjs/providers/screen/gestures/pan/use-build-pan-gesture.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pinch/behavior/pinch-lifecycle.js +8 -6
- package/lib/commonjs/providers/screen/gestures/pinch/behavior/pinch-lifecycle.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pinch/behavior/pinch-reset.js +7 -0
- package/lib/commonjs/providers/screen/gestures/pinch/behavior/pinch-reset.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pinch/use-build-pinch-gesture.js +1 -1
- package/lib/commonjs/providers/screen/gestures/pinch/use-build-pinch-gesture.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/scroll-coordination/scroll-metadata-owner.js +5 -5
- package/lib/commonjs/providers/screen/gestures/scroll-coordination/scroll-metadata-owner.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/scroll-coordination/use-scroll-gesture-coordination.js +2 -2
- package/lib/commonjs/providers/screen/gestures/scroll-coordination/use-scroll-gesture-coordination.js.map +1 -1
- package/lib/commonjs/providers/screen/options/index.js +2 -2
- package/lib/commonjs/providers/screen/options/options.provider.js +4 -8
- package/lib/commonjs/providers/screen/options/options.provider.js.map +1 -1
- package/lib/commonjs/providers/screen/screen-composer.js +2 -0
- package/lib/commonjs/providers/screen/screen-composer.js.map +1 -1
- package/lib/commonjs/providers/screen/styles/constants.js +10 -4
- package/lib/commonjs/providers/screen/styles/constants.js.map +1 -1
- package/lib/commonjs/providers/screen/styles/helpers/resolve-interpolator-style-handoff.js +93 -0
- package/lib/commonjs/providers/screen/styles/helpers/resolve-interpolator-style-handoff.js.map +1 -0
- package/lib/commonjs/providers/screen/styles/helpers/resolve-slot-styles/index.js +48 -5
- package/lib/commonjs/providers/screen/styles/helpers/resolve-slot-styles/index.js.map +1 -1
- package/lib/commonjs/providers/screen/styles/helpers/select-interpolator-frame.js +32 -0
- package/lib/commonjs/providers/screen/styles/helpers/select-interpolator-frame.js.map +1 -0
- package/lib/commonjs/providers/screen/styles/helpers/visibility-gate.js +14 -1
- package/lib/commonjs/providers/screen/styles/helpers/visibility-gate.js.map +1 -1
- package/lib/commonjs/providers/screen/styles/hooks/use-interpolated-style-maps.js +64 -40
- package/lib/commonjs/providers/screen/styles/hooks/use-interpolated-style-maps.js.map +1 -1
- package/lib/commonjs/providers/screen/styles/hooks/use-maybe-block-visibility.js +1 -3
- package/lib/commonjs/providers/screen/styles/hooks/use-maybe-block-visibility.js.map +1 -1
- package/lib/commonjs/providers/screen/styles/index.js +0 -6
- package/lib/commonjs/providers/screen/styles/index.js.map +1 -1
- package/lib/commonjs/providers/screen/styles/slot.provider.js +23 -19
- package/lib/commonjs/providers/screen/styles/slot.provider.js.map +1 -1
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/build-blank-stack-state.js +3 -11
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/build-blank-stack-state.js.map +1 -1
- package/lib/commonjs/providers/stack/blank-stack.provider.js +53 -49
- package/lib/commonjs/providers/stack/blank-stack.provider.js.map +1 -1
- package/lib/commonjs/providers/stack/core.provider.js +24 -45
- package/lib/commonjs/providers/stack/core.provider.js.map +1 -1
- package/lib/commonjs/providers/stack/direct.provider.js +46 -40
- package/lib/commonjs/providers/stack/direct.provider.js.map +1 -1
- package/lib/commonjs/stores/animation.store.js +19 -1
- package/lib/commonjs/stores/animation.store.js.map +1 -1
- package/lib/commonjs/stores/bounds/internals/entries.js +17 -0
- package/lib/commonjs/stores/bounds/internals/entries.js.map +1 -1
- package/lib/commonjs/stores/bounds/internals/links.js +25 -0
- package/lib/commonjs/stores/bounds/internals/links.js.map +1 -1
- package/lib/commonjs/stores/bounds/internals/resolver.js +2 -12
- package/lib/commonjs/stores/bounds/internals/resolver.js.map +1 -1
- package/lib/commonjs/types/stack.types.js.map +1 -1
- package/lib/commonjs/utils/animation/animate-to-progress.js +12 -11
- package/lib/commonjs/utils/animation/animate-to-progress.js.map +1 -1
- package/lib/commonjs/utils/bounds/helpers/create-bounds-accessor-core.js +6 -0
- package/lib/commonjs/utils/bounds/helpers/create-bounds-accessor-core.js.map +1 -1
- package/lib/commonjs/utils/bounds/helpers/create-link-accessor.js +2 -2
- package/lib/commonjs/utils/bounds/helpers/create-link-accessor.js.map +1 -1
- package/lib/commonjs/utils/create-provider.js +61 -75
- package/lib/commonjs/utils/create-provider.js.map +1 -1
- package/lib/module/adapters/with-screen-transitions/context.js +3 -0
- package/lib/module/adapters/with-screen-transitions/context.js.map +1 -1
- package/lib/module/adapters/with-screen-transitions/stack-layout.js +14 -8
- package/lib/module/adapters/with-screen-transitions/stack-layout.js.map +1 -1
- package/lib/module/animation/snap-to.js +1 -0
- package/lib/module/animation/snap-to.js.map +1 -1
- package/lib/module/components/activity/variants/activity-screen.js +26 -10
- package/lib/module/components/activity/variants/activity-screen.js.map +1 -1
- package/lib/module/components/boundary/components/boundary-target.js +2 -2
- package/lib/module/components/boundary/components/boundary-target.js.map +1 -1
- package/lib/module/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js +32 -16
- package/lib/module/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js.map +1 -1
- package/lib/module/components/boundary/hooks/lifecycles/use-initial-source-measurement.js +3 -1
- package/lib/module/components/boundary/hooks/lifecycles/use-initial-source-measurement.js.map +1 -1
- package/lib/module/components/boundary/hooks/lifecycles/use-refresh-boundary.js +8 -17
- package/lib/module/components/boundary/hooks/lifecycles/use-refresh-boundary.js.map +1 -1
- package/lib/module/components/boundary/hooks/use-boundary-measurement.js +5 -4
- package/lib/module/components/boundary/hooks/use-boundary-measurement.js.map +1 -1
- package/lib/module/components/boundary/hooks/use-measurer.js +7 -14
- package/lib/module/components/boundary/hooks/use-measurer.js.map +1 -1
- package/lib/module/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js +60 -0
- package/lib/module/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js.map +1 -0
- package/lib/module/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js +44 -37
- package/lib/module/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js.map +1 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/components/host.js +2 -2
- package/lib/module/components/boundary/portal/components/boundary-portal/components/host.js.map +1 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/helpers/active-pair.js +25 -0
- package/lib/module/components/boundary/portal/components/boundary-portal/helpers/active-pair.js.map +1 -0
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js +70 -0
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js.map +1 -0
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js +17 -32
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js.map +1 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.js +13 -22
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.js.map +1 -1
- package/lib/module/components/boundary/portal/utils/naming.js +6 -0
- package/lib/module/components/boundary/portal/utils/naming.js.map +1 -1
- package/lib/module/components/boundary/providers/boundary-root.provider.js +3 -3
- package/lib/module/components/boundary/providers/boundary-root.provider.js.map +1 -1
- package/lib/module/components/boundary/utils/destination-signals.js +1 -3
- package/lib/module/components/boundary/utils/destination-signals.js.map +1 -1
- package/lib/module/components/boundary/utils/measured-bounds.js +17 -28
- package/lib/module/components/boundary/utils/measured-bounds.js.map +1 -1
- package/lib/module/components/boundary/utils/refresh-signals.js +16 -24
- package/lib/module/components/boundary/utils/refresh-signals.js.map +1 -1
- package/lib/module/components/create-transition-aware-component.js +10 -31
- package/lib/module/components/create-transition-aware-component.js.map +1 -1
- package/lib/module/components/screen-container/hooks/use-backdrop-pointer-events.js +8 -12
- package/lib/module/components/screen-container/hooks/use-backdrop-pointer-events.js.map +1 -1
- package/lib/module/components/screen-container/hooks/use-content-layout.js +4 -9
- package/lib/module/components/screen-container/hooks/use-content-layout.js.map +1 -1
- package/lib/module/components/screen-container/layers/backdrop.js +8 -11
- package/lib/module/components/screen-container/layers/backdrop.js.map +1 -1
- package/lib/module/components/screen-container/layers/content.js +12 -18
- package/lib/module/components/screen-container/layers/content.js.map +1 -1
- package/lib/module/components/screen-container/layers/surface-container.js +2 -6
- package/lib/module/components/screen-container/layers/surface-container.js.map +1 -1
- package/lib/module/components/screen-lifecycle/hooks/use-close-transition-intent.js +13 -15
- package/lib/module/components/screen-lifecycle/hooks/use-close-transition-intent.js.map +1 -1
- package/lib/module/components/screen-lifecycle/hooks/use-open-transition-intent.js +3 -4
- package/lib/module/components/screen-lifecycle/hooks/use-open-transition-intent.js.map +1 -1
- package/lib/module/components/screen-lifecycle/hooks/use-transition-start-controller.js +5 -1
- package/lib/module/components/screen-lifecycle/hooks/use-transition-start-controller.js.map +1 -1
- package/lib/module/components/screen-lifecycle/index.js +3 -5
- package/lib/module/components/screen-lifecycle/index.js.map +1 -1
- package/lib/module/components/stack-view.js +71 -37
- package/lib/module/components/stack-view.js.map +1 -1
- package/lib/module/configs/presets.js +10 -10
- package/lib/module/configs/presets.js.map +1 -1
- package/lib/module/constants.js +1 -0
- package/lib/module/constants.js.map +1 -1
- package/lib/module/hooks/navigation/use-navigation-helpers.js +9 -8
- package/lib/module/hooks/navigation/use-navigation-helpers.js.map +1 -1
- package/lib/module/hooks/navigation/use-screen-state.js +2 -4
- package/lib/module/hooks/navigation/use-screen-state.js.map +1 -1
- package/lib/module/providers/screen/animation/animation.provider.js +6 -5
- package/lib/module/providers/screen/animation/animation.provider.js.map +1 -1
- package/lib/module/providers/screen/animation/helpers/accessors/use-build-bounds-accessor.js +2 -4
- package/lib/module/providers/screen/animation/helpers/accessors/use-build-bounds-accessor.js.map +1 -1
- package/lib/module/providers/screen/animation/helpers/accessors/use-build-transition-accessor.js +2 -2
- package/lib/module/providers/screen/animation/helpers/accessors/use-build-transition-accessor.js.map +1 -1
- package/lib/module/providers/screen/animation/helpers/hydrate-transition-state/index.js +4 -10
- package/lib/module/providers/screen/animation/helpers/hydrate-transition-state/index.js.map +1 -1
- package/lib/module/providers/screen/animation/helpers/pipeline.js +6 -8
- package/lib/module/providers/screen/animation/helpers/pipeline.js.map +1 -1
- package/lib/module/providers/screen/animation/index.js +1 -1
- package/lib/module/providers/screen/animation/index.js.map +1 -1
- package/lib/module/providers/screen/animation/use-screen-animation.js +2 -2
- package/lib/module/providers/screen/animation/use-screen-animation.js.map +1 -1
- package/lib/module/providers/screen/descriptors/descriptors.provider.js +36 -46
- package/lib/module/providers/screen/descriptors/descriptors.provider.js.map +1 -1
- package/lib/module/providers/screen/descriptors/helpers/derive-descriptor-derivations.js +1 -3
- package/lib/module/providers/screen/descriptors/helpers/derive-descriptor-derivations.js.map +1 -1
- package/lib/module/providers/screen/descriptors/helpers/get-ancestor-keys.js +3 -19
- package/lib/module/providers/screen/descriptors/helpers/get-ancestor-keys.js.map +1 -1
- package/lib/module/providers/screen/descriptors/index.js +1 -1
- package/lib/module/providers/screen/descriptors/index.js.map +1 -1
- package/lib/module/providers/screen/gestures/gestures.provider.js +6 -6
- package/lib/module/providers/screen/gestures/gestures.provider.js.map +1 -1
- package/lib/module/providers/screen/gestures/hooks/use-screen-gesture-config.js +5 -11
- package/lib/module/providers/screen/gestures/hooks/use-screen-gesture-config.js.map +1 -1
- package/lib/module/providers/screen/gestures/hooks/use-screen-gesture.js +2 -2
- package/lib/module/providers/screen/gestures/hooks/use-screen-gesture.js.map +1 -1
- package/lib/module/providers/screen/gestures/hooks/use-stable-runtime-config.js +2 -4
- package/lib/module/providers/screen/gestures/hooks/use-stable-runtime-config.js.map +1 -1
- package/lib/module/providers/screen/gestures/index.js +1 -1
- package/lib/module/providers/screen/gestures/index.js.map +1 -1
- package/lib/module/providers/screen/gestures/ownership/shadowing-claims.js +2 -2
- package/lib/module/providers/screen/gestures/ownership/shadowing-claims.js.map +1 -1
- package/lib/module/providers/screen/gestures/ownership/use-walk-up-and-register-shadowing-claims.js +10 -13
- package/lib/module/providers/screen/gestures/ownership/use-walk-up-and-register-shadowing-claims.js.map +1 -1
- package/lib/module/providers/screen/gestures/pan/activation/use-pan-activation.js +3 -5
- package/lib/module/providers/screen/gestures/pan/activation/use-pan-activation.js.map +1 -1
- package/lib/module/providers/screen/gestures/pan/behavior/pan-lifecycle.js +6 -9
- package/lib/module/providers/screen/gestures/pan/behavior/pan-lifecycle.js.map +1 -1
- package/lib/module/providers/screen/gestures/pan/behavior/pan-reset.js +10 -0
- package/lib/module/providers/screen/gestures/pan/behavior/pan-reset.js.map +1 -1
- package/lib/module/providers/screen/gestures/pan/use-build-pan-gesture.js +2 -2
- package/lib/module/providers/screen/gestures/pan/use-build-pan-gesture.js.map +1 -1
- package/lib/module/providers/screen/gestures/pinch/behavior/pinch-lifecycle.js +9 -7
- package/lib/module/providers/screen/gestures/pinch/behavior/pinch-lifecycle.js.map +1 -1
- package/lib/module/providers/screen/gestures/pinch/behavior/pinch-reset.js +7 -0
- package/lib/module/providers/screen/gestures/pinch/behavior/pinch-reset.js.map +1 -1
- package/lib/module/providers/screen/gestures/pinch/use-build-pinch-gesture.js +2 -2
- package/lib/module/providers/screen/gestures/pinch/use-build-pinch-gesture.js.map +1 -1
- package/lib/module/providers/screen/gestures/scroll-coordination/scroll-metadata-owner.js +3 -3
- package/lib/module/providers/screen/gestures/scroll-coordination/scroll-metadata-owner.js.map +1 -1
- package/lib/module/providers/screen/gestures/scroll-coordination/use-scroll-gesture-coordination.js +4 -4
- package/lib/module/providers/screen/gestures/scroll-coordination/use-scroll-gesture-coordination.js.map +1 -1
- package/lib/module/providers/screen/options/index.js +1 -1
- package/lib/module/providers/screen/options/index.js.map +1 -1
- package/lib/module/providers/screen/options/options.provider.js +3 -7
- package/lib/module/providers/screen/options/options.provider.js.map +1 -1
- package/lib/module/providers/screen/screen-composer.js +2 -0
- package/lib/module/providers/screen/screen-composer.js.map +1 -1
- package/lib/module/providers/screen/styles/constants.js +8 -3
- package/lib/module/providers/screen/styles/constants.js.map +1 -1
- package/lib/module/providers/screen/styles/helpers/resolve-interpolator-style-handoff.js +88 -0
- package/lib/module/providers/screen/styles/helpers/resolve-interpolator-style-handoff.js.map +1 -0
- package/lib/module/providers/screen/styles/helpers/resolve-slot-styles/index.js +49 -6
- package/lib/module/providers/screen/styles/helpers/resolve-slot-styles/index.js.map +1 -1
- package/lib/module/providers/screen/styles/helpers/select-interpolator-frame.js +27 -0
- package/lib/module/providers/screen/styles/helpers/select-interpolator-frame.js.map +1 -0
- package/lib/module/providers/screen/styles/helpers/visibility-gate.js +12 -0
- package/lib/module/providers/screen/styles/helpers/visibility-gate.js.map +1 -1
- package/lib/module/providers/screen/styles/hooks/use-interpolated-style-maps.js +67 -43
- package/lib/module/providers/screen/styles/hooks/use-interpolated-style-maps.js.map +1 -1
- package/lib/module/providers/screen/styles/hooks/use-maybe-block-visibility.js +2 -4
- package/lib/module/providers/screen/styles/hooks/use-maybe-block-visibility.js.map +1 -1
- package/lib/module/providers/screen/styles/index.js +1 -1
- package/lib/module/providers/screen/styles/index.js.map +1 -1
- package/lib/module/providers/screen/styles/slot.provider.js +23 -18
- package/lib/module/providers/screen/styles/slot.provider.js.map +1 -1
- package/lib/module/providers/stack/blank-stack-state/helpers/build-blank-stack-state.js +3 -11
- package/lib/module/providers/stack/blank-stack-state/helpers/build-blank-stack-state.js.map +1 -1
- package/lib/module/providers/stack/blank-stack.provider.js +50 -47
- package/lib/module/providers/stack/blank-stack.provider.js.map +1 -1
- package/lib/module/providers/stack/core.provider.js +22 -43
- package/lib/module/providers/stack/core.provider.js.map +1 -1
- package/lib/module/providers/stack/direct.provider.js +44 -41
- package/lib/module/providers/stack/direct.provider.js.map +1 -1
- package/lib/module/stores/animation.store.js +17 -0
- package/lib/module/stores/animation.store.js.map +1 -1
- package/lib/module/stores/bounds/internals/entries.js +17 -1
- package/lib/module/stores/bounds/internals/entries.js.map +1 -1
- package/lib/module/stores/bounds/internals/links.js +25 -2
- package/lib/module/stores/bounds/internals/links.js.map +1 -1
- package/lib/module/stores/bounds/internals/resolver.js +3 -13
- package/lib/module/stores/bounds/internals/resolver.js.map +1 -1
- package/lib/module/types/stack.types.js.map +1 -1
- package/lib/module/utils/animation/animate-to-progress.js +12 -11
- package/lib/module/utils/animation/animate-to-progress.js.map +1 -1
- package/lib/module/utils/bounds/helpers/create-bounds-accessor-core.js +6 -0
- package/lib/module/utils/bounds/helpers/create-bounds-accessor-core.js.map +1 -1
- package/lib/module/utils/bounds/helpers/create-link-accessor.js +3 -3
- package/lib/module/utils/bounds/helpers/create-link-accessor.js.map +1 -1
- package/lib/module/utils/create-provider.js +62 -76
- package/lib/module/utils/create-provider.js.map +1 -1
- package/lib/typescript/adapters/with-screen-transitions/context.d.ts +2 -0
- package/lib/typescript/adapters/with-screen-transitions/context.d.ts.map +1 -1
- package/lib/typescript/adapters/with-screen-transitions/stack-layout.d.ts +1 -1
- package/lib/typescript/adapters/with-screen-transitions/stack-layout.d.ts.map +1 -1
- package/lib/typescript/animation/snap-to.d.ts.map +1 -1
- package/lib/typescript/components/activity/variants/activity-screen.d.ts +3 -2
- package/lib/typescript/components/activity/variants/activity-screen.d.ts.map +1 -1
- package/lib/typescript/components/boundary/hooks/lifecycles/use-initial-destination-measurement.d.ts.map +1 -1
- package/lib/typescript/components/boundary/hooks/lifecycles/use-initial-source-measurement.d.ts.map +1 -1
- package/lib/typescript/components/boundary/hooks/lifecycles/use-refresh-boundary.d.ts.map +1 -1
- package/lib/typescript/components/boundary/hooks/use-boundary-measurement.d.ts.map +1 -1
- package/lib/typescript/components/boundary/hooks/use-measurer.d.ts +1 -1
- package/lib/typescript/components/boundary/hooks/use-measurer.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.d.ts +26 -0
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/components/host.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/helpers/active-pair.d.ts +9 -0
- package/lib/typescript/components/boundary/portal/components/boundary-portal/helpers/active-pair.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.d.ts +17 -0
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.d.ts +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/utils/naming.d.ts +1 -0
- package/lib/typescript/components/boundary/portal/utils/naming.d.ts.map +1 -1
- package/lib/typescript/components/boundary/providers/boundary-root.provider.d.ts +1 -1
- package/lib/typescript/components/boundary/providers/boundary-root.provider.d.ts.map +1 -1
- package/lib/typescript/components/boundary/utils/destination-signals.d.ts +1 -2
- package/lib/typescript/components/boundary/utils/destination-signals.d.ts.map +1 -1
- package/lib/typescript/components/boundary/utils/measured-bounds.d.ts +1 -3
- package/lib/typescript/components/boundary/utils/measured-bounds.d.ts.map +1 -1
- package/lib/typescript/components/boundary/utils/refresh-signals.d.ts +0 -6
- package/lib/typescript/components/boundary/utils/refresh-signals.d.ts.map +1 -1
- package/lib/typescript/components/create-transition-aware-component.d.ts +0 -2
- package/lib/typescript/components/create-transition-aware-component.d.ts.map +1 -1
- package/lib/typescript/components/screen-container/hooks/use-backdrop-pointer-events.d.ts.map +1 -1
- package/lib/typescript/components/screen-container/hooks/use-content-layout.d.ts.map +1 -1
- package/lib/typescript/components/screen-container/layers/backdrop.d.ts.map +1 -1
- package/lib/typescript/components/screen-container/layers/content.d.ts.map +1 -1
- package/lib/typescript/components/screen-lifecycle/hooks/use-close-transition-intent.d.ts.map +1 -1
- package/lib/typescript/components/screen-lifecycle/hooks/use-open-transition-intent.d.ts.map +1 -1
- package/lib/typescript/components/screen-lifecycle/hooks/use-transition-start-controller.d.ts.map +1 -1
- package/lib/typescript/components/screen-lifecycle/index.d.ts.map +1 -1
- package/lib/typescript/components/stack-view.d.ts +5 -1
- package/lib/typescript/components/stack-view.d.ts.map +1 -1
- package/lib/typescript/configs/index.d.ts +6 -6
- package/lib/typescript/configs/presets.d.ts +6 -6
- package/lib/typescript/configs/presets.d.ts.map +1 -1
- package/lib/typescript/constants.d.ts.map +1 -1
- package/lib/typescript/hooks/navigation/use-navigation-helpers.d.ts.map +1 -1
- package/lib/typescript/hooks/navigation/use-screen-state.d.ts.map +1 -1
- package/lib/typescript/index.d.ts +10 -18
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/animation.provider.d.ts +4 -1
- package/lib/typescript/providers/screen/animation/animation.provider.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/helpers/accessors/use-build-bounds-accessor.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/helpers/hydrate-transition-state/index.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/helpers/pipeline.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/index.d.ts +1 -1
- package/lib/typescript/providers/screen/animation/index.d.ts.map +1 -1
- package/lib/typescript/providers/screen/descriptors/descriptors.provider.d.ts +10 -11
- package/lib/typescript/providers/screen/descriptors/descriptors.provider.d.ts.map +1 -1
- package/lib/typescript/providers/screen/descriptors/helpers/derive-descriptor-derivations.d.ts +1 -3
- package/lib/typescript/providers/screen/descriptors/helpers/derive-descriptor-derivations.d.ts.map +1 -1
- package/lib/typescript/providers/screen/descriptors/helpers/get-ancestor-keys.d.ts +0 -8
- package/lib/typescript/providers/screen/descriptors/helpers/get-ancestor-keys.d.ts.map +1 -1
- package/lib/typescript/providers/screen/descriptors/index.d.ts +1 -1
- package/lib/typescript/providers/screen/descriptors/index.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/gestures.provider.d.ts +4 -1
- package/lib/typescript/providers/screen/gestures/gestures.provider.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/hooks/use-screen-gesture-config.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/hooks/use-stable-runtime-config.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/index.d.ts +1 -1
- package/lib/typescript/providers/screen/gestures/index.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/ownership/shadowing-claims.d.ts +2 -3
- package/lib/typescript/providers/screen/gestures/ownership/shadowing-claims.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/ownership/use-walk-up-and-register-shadowing-claims.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pan/activation/use-pan-activation.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pan/behavior/pan-lifecycle.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pan/behavior/pan-reset.d.ts +4 -1
- package/lib/typescript/providers/screen/gestures/pan/behavior/pan-reset.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pinch/behavior/pinch-lifecycle.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pinch/behavior/pinch-reset.d.ts +3 -1
- package/lib/typescript/providers/screen/gestures/pinch/behavior/pinch-reset.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/scroll-coordination/scroll-metadata-owner.d.ts +1 -1
- package/lib/typescript/providers/screen/gestures/scroll-coordination/scroll-metadata-owner.d.ts.map +1 -1
- package/lib/typescript/providers/screen/options/index.d.ts +1 -1
- package/lib/typescript/providers/screen/options/index.d.ts.map +1 -1
- package/lib/typescript/providers/screen/options/options.provider.d.ts +4 -1
- package/lib/typescript/providers/screen/options/options.provider.d.ts.map +1 -1
- package/lib/typescript/providers/screen/screen-composer.d.ts +3 -2
- package/lib/typescript/providers/screen/screen-composer.d.ts.map +1 -1
- package/lib/typescript/providers/screen/styles/constants.d.ts +1 -0
- package/lib/typescript/providers/screen/styles/constants.d.ts.map +1 -1
- package/lib/typescript/providers/screen/styles/helpers/resolve-interpolator-style-handoff.d.ts +12 -0
- package/lib/typescript/providers/screen/styles/helpers/resolve-interpolator-style-handoff.d.ts.map +1 -0
- package/lib/typescript/providers/screen/styles/helpers/resolve-slot-styles/index.d.ts +5 -3
- package/lib/typescript/providers/screen/styles/helpers/resolve-slot-styles/index.d.ts.map +1 -1
- package/lib/typescript/providers/screen/styles/helpers/select-interpolator-frame.d.ts +4 -0
- package/lib/typescript/providers/screen/styles/helpers/select-interpolator-frame.d.ts.map +1 -0
- package/lib/typescript/providers/screen/styles/helpers/visibility-gate.d.ts +10 -0
- package/lib/typescript/providers/screen/styles/helpers/visibility-gate.d.ts.map +1 -1
- package/lib/typescript/providers/screen/styles/hooks/use-interpolated-style-maps.d.ts +10 -5
- package/lib/typescript/providers/screen/styles/hooks/use-interpolated-style-maps.d.ts.map +1 -1
- package/lib/typescript/providers/screen/styles/hooks/use-maybe-block-visibility.d.ts +1 -1
- package/lib/typescript/providers/screen/styles/hooks/use-maybe-block-visibility.d.ts.map +1 -1
- package/lib/typescript/providers/screen/styles/index.d.ts +1 -1
- package/lib/typescript/providers/screen/styles/index.d.ts.map +1 -1
- package/lib/typescript/providers/screen/styles/slot.provider.d.ts +4 -1
- package/lib/typescript/providers/screen/styles/slot.provider.d.ts.map +1 -1
- package/lib/typescript/providers/stack/blank-stack-state/helpers/build-blank-stack-state.d.ts.map +1 -1
- package/lib/typescript/providers/stack/blank-stack.provider.d.ts +12 -6
- package/lib/typescript/providers/stack/blank-stack.provider.d.ts.map +1 -1
- package/lib/typescript/providers/stack/core.provider.d.ts +10 -8
- package/lib/typescript/providers/stack/core.provider.d.ts.map +1 -1
- package/lib/typescript/providers/stack/direct.provider.d.ts +11 -4
- package/lib/typescript/providers/stack/direct.provider.d.ts.map +1 -1
- package/lib/typescript/stores/animation.store.d.ts +1 -0
- package/lib/typescript/stores/animation.store.d.ts.map +1 -1
- package/lib/typescript/stores/bounds/internals/entries.d.ts +2 -1
- package/lib/typescript/stores/bounds/internals/entries.d.ts.map +1 -1
- package/lib/typescript/stores/bounds/internals/links.d.ts +3 -1
- package/lib/typescript/stores/bounds/internals/links.d.ts.map +1 -1
- package/lib/typescript/stores/bounds/internals/resolver.d.ts.map +1 -1
- package/lib/typescript/types/blank-stack.types.d.ts +1 -4
- package/lib/typescript/types/blank-stack.types.d.ts.map +1 -1
- package/lib/typescript/types/gesture.types.d.ts +11 -0
- package/lib/typescript/types/gesture.types.d.ts.map +1 -1
- package/lib/typescript/types/providers/blank-stack-provider.types.d.ts +12 -20
- package/lib/typescript/types/providers/blank-stack-provider.types.d.ts.map +1 -1
- package/lib/typescript/types/providers/direct-stack.types.d.ts +2 -1
- package/lib/typescript/types/providers/direct-stack.types.d.ts.map +1 -1
- package/lib/typescript/types/screen.types.d.ts +0 -30
- package/lib/typescript/types/screen.types.d.ts.map +1 -1
- package/lib/typescript/types/stack.types.d.ts +2 -4
- package/lib/typescript/types/stack.types.d.ts.map +1 -1
- package/lib/typescript/utils/animation/animate-to-progress.d.ts +3 -2
- package/lib/typescript/utils/animation/animate-to-progress.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/helpers/create-bounds-accessor-core.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/helpers/create-link-accessor.d.ts.map +1 -1
- package/lib/typescript/utils/create-provider.d.ts +17 -9
- package/lib/typescript/utils/create-provider.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/adapters/with-screen-transitions/context.tsx +5 -0
- package/src/adapters/with-screen-transitions/stack-layout.tsx +20 -7
- package/src/animation/snap-to.ts +1 -0
- package/src/components/activity/variants/activity-screen.tsx +46 -13
- package/src/components/boundary/components/boundary-target.tsx +2 -2
- package/src/components/boundary/hooks/lifecycles/use-initial-destination-measurement.ts +62 -26
- package/src/components/boundary/hooks/lifecycles/use-initial-source-measurement.ts +6 -1
- package/src/components/boundary/hooks/lifecycles/use-refresh-boundary.ts +15 -33
- package/src/components/boundary/hooks/use-boundary-measurement.ts +5 -4
- package/src/components/boundary/hooks/use-measurer.ts +7 -16
- package/src/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.ts +103 -0
- package/src/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.ts +86 -61
- package/src/components/boundary/portal/components/boundary-portal/components/host.tsx +12 -14
- package/src/components/boundary/portal/components/boundary-portal/helpers/active-pair.ts +36 -0
- package/src/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.ts +114 -0
- package/src/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.ts +9 -46
- package/src/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.ts +13 -20
- package/src/components/boundary/portal/utils/naming.ts +11 -0
- package/src/components/boundary/providers/boundary-root.provider.tsx +8 -11
- package/src/components/boundary/utils/destination-signals.ts +2 -6
- package/src/components/boundary/utils/measured-bounds.ts +29 -32
- package/src/components/boundary/utils/refresh-signals.ts +25 -36
- package/src/components/create-transition-aware-component.tsx +11 -36
- package/src/components/screen-container/hooks/use-backdrop-pointer-events.ts +10 -8
- package/src/components/screen-container/hooks/use-content-layout.ts +10 -10
- package/src/components/screen-container/layers/backdrop.tsx +20 -9
- package/src/components/screen-container/layers/content.tsx +20 -21
- package/src/components/screen-container/layers/surface-container.tsx +4 -4
- package/src/components/screen-lifecycle/hooks/use-close-transition-intent.ts +19 -9
- package/src/components/screen-lifecycle/hooks/use-open-transition-intent.ts +5 -2
- package/src/components/screen-lifecycle/hooks/use-transition-start-controller.ts +6 -0
- package/src/components/screen-lifecycle/index.tsx +3 -2
- package/src/components/stack-view.tsx +117 -56
- package/src/configs/presets.ts +13 -13
- package/src/constants.ts +1 -0
- package/src/hooks/navigation/use-navigation-helpers.ts +9 -8
- package/src/hooks/navigation/use-screen-state.ts +4 -2
- package/src/providers/screen/animation/animation.provider.tsx +170 -173
- package/src/providers/screen/animation/helpers/accessors/use-build-bounds-accessor.tsx +4 -2
- package/src/providers/screen/animation/helpers/accessors/use-build-transition-accessor.ts +2 -2
- package/src/providers/screen/animation/helpers/hydrate-transition-state/index.ts +4 -21
- package/src/providers/screen/animation/helpers/pipeline.ts +6 -10
- package/src/providers/screen/animation/index.tsx +1 -1
- package/src/providers/screen/animation/use-screen-animation.tsx +2 -2
- package/src/providers/screen/descriptors/descriptors.provider.tsx +77 -73
- package/src/providers/screen/descriptors/helpers/derive-descriptor-derivations.ts +0 -4
- package/src/providers/screen/descriptors/helpers/get-ancestor-keys.ts +3 -30
- package/src/providers/screen/descriptors/index.tsx +0 -2
- package/src/providers/screen/gestures/gestures.provider.tsx +72 -63
- package/src/providers/screen/gestures/hooks/use-screen-gesture-config.ts +7 -8
- package/src/providers/screen/gestures/hooks/use-screen-gesture.ts +2 -2
- package/src/providers/screen/gestures/hooks/use-stable-runtime-config.ts +4 -2
- package/src/providers/screen/gestures/index.tsx +1 -1
- package/src/providers/screen/gestures/ownership/shadowing-claims.ts +3 -4
- package/src/providers/screen/gestures/ownership/use-walk-up-and-register-shadowing-claims.ts +16 -8
- package/src/providers/screen/gestures/pan/activation/use-pan-activation.ts +7 -2
- package/src/providers/screen/gestures/pan/behavior/pan-lifecycle.ts +8 -16
- package/src/providers/screen/gestures/pan/behavior/pan-reset.ts +14 -0
- package/src/providers/screen/gestures/pan/use-build-pan-gesture.ts +2 -2
- package/src/providers/screen/gestures/pinch/behavior/pinch-lifecycle.ts +12 -11
- package/src/providers/screen/gestures/pinch/behavior/pinch-reset.ts +10 -0
- package/src/providers/screen/gestures/pinch/use-build-pinch-gesture.ts +2 -2
- package/src/providers/screen/gestures/scroll-coordination/scroll-metadata-owner.tsx +4 -4
- package/src/providers/screen/gestures/scroll-coordination/use-scroll-gesture-coordination.ts +4 -4
- package/src/providers/screen/options/index.ts +1 -1
- package/src/providers/screen/options/options.provider.tsx +24 -28
- package/src/providers/screen/screen-composer.tsx +9 -2
- package/src/providers/screen/styles/constants.ts +8 -6
- package/src/providers/screen/styles/helpers/resolve-interpolator-style-handoff.ts +138 -0
- package/src/providers/screen/styles/helpers/resolve-slot-styles/index.ts +71 -4
- package/src/providers/screen/styles/helpers/select-interpolator-frame.ts +41 -0
- package/src/providers/screen/styles/helpers/visibility-gate.ts +25 -0
- package/src/providers/screen/styles/hooks/use-interpolated-style-maps.tsx +99 -55
- package/src/providers/screen/styles/hooks/use-maybe-block-visibility.tsx +4 -2
- package/src/providers/screen/styles/index.tsx +0 -1
- package/src/providers/screen/styles/slot.provider.tsx +62 -48
- package/src/providers/stack/blank-stack-state/helpers/build-blank-stack-state.ts +4 -17
- package/src/providers/stack/blank-stack.provider.tsx +66 -75
- package/src/providers/stack/core.provider.tsx +53 -79
- package/src/providers/stack/direct.provider.tsx +76 -57
- package/src/stores/animation.store.ts +19 -0
- package/src/stores/bounds/internals/entries.ts +27 -1
- package/src/stores/bounds/internals/links.ts +36 -0
- package/src/stores/bounds/internals/resolver.ts +7 -21
- package/src/types/blank-stack.types.ts +1 -4
- package/src/types/gesture.types.ts +11 -0
- package/src/types/providers/blank-stack-provider.types.ts +8 -22
- package/src/types/providers/direct-stack.types.ts +2 -1
- package/src/types/screen.types.ts +0 -32
- package/src/types/stack.types.ts +2 -4
- package/src/utils/animation/animate-to-progress.ts +18 -18
- package/src/utils/bounds/helpers/create-bounds-accessor-core.ts +7 -0
- package/src/utils/bounds/helpers/create-link-accessor.ts +9 -3
- package/src/utils/create-provider.tsx +105 -136
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/helpers/host-name.js +0 -14
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/helpers/host-name.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/utils/handoff-target.js +0 -33
- package/lib/commonjs/components/boundary/portal/utils/handoff-target.js.map +0 -1
- package/lib/commonjs/hooks/use-stable-callback-value.js +0 -69
- package/lib/commonjs/hooks/use-stable-callback-value.js.map +0 -1
- package/lib/commonjs/providers/register-bounds.provider.js +0 -312
- package/lib/commonjs/providers/register-bounds.provider.js.map +0 -1
- package/lib/commonjs/providers/screen/origin.provider.js +0 -41
- package/lib/commonjs/providers/screen/origin.provider.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/helpers/host-name.js +0 -9
- package/lib/module/components/boundary/portal/components/boundary-portal/helpers/host-name.js.map +0 -1
- package/lib/module/components/boundary/portal/utils/handoff-target.js +0 -28
- package/lib/module/components/boundary/portal/utils/handoff-target.js.map +0 -1
- package/lib/module/hooks/use-stable-callback-value.js +0 -64
- package/lib/module/hooks/use-stable-callback-value.js.map +0 -1
- package/lib/module/providers/register-bounds.provider.js +0 -308
- package/lib/module/providers/register-bounds.provider.js.map +0 -1
- package/lib/module/providers/screen/origin.provider.js +0 -33
- package/lib/module/providers/screen/origin.provider.js.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/helpers/host-name.d.ts +0 -2
- package/lib/typescript/components/boundary/portal/components/boundary-portal/helpers/host-name.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/utils/handoff-target.d.ts +0 -12
- package/lib/typescript/components/boundary/portal/utils/handoff-target.d.ts.map +0 -1
- package/lib/typescript/hooks/use-stable-callback-value.d.ts +0 -13
- package/lib/typescript/hooks/use-stable-callback-value.d.ts.map +0 -1
- package/lib/typescript/providers/register-bounds.provider.d.ts +0 -25
- package/lib/typescript/providers/register-bounds.provider.d.ts.map +0 -1
- package/lib/typescript/providers/screen/origin.provider.d.ts +0 -11
- package/lib/typescript/providers/screen/origin.provider.d.ts.map +0 -1
- package/src/components/boundary/portal/components/boundary-portal/helpers/host-name.ts +0 -10
- package/src/components/boundary/portal/utils/handoff-target.ts +0 -48
- package/src/hooks/use-stable-callback-value.ts +0 -72
- package/src/providers/register-bounds.provider.tsx +0 -401
- package/src/providers/screen/origin.provider.tsx +0 -38
|
@@ -6,6 +6,7 @@ import { Screen } from "react-native-screens";
|
|
|
6
6
|
import { IS_WEB } from "../../../constants";
|
|
7
7
|
import { useStack } from "../../../hooks/navigation/use-stack";
|
|
8
8
|
import { useSharedValueState } from "../../../hooks/reanimated/use-shared-value-state";
|
|
9
|
+
import { useBlankStackStore } from "../../../providers/stack/blank-stack.provider";
|
|
9
10
|
import { AnimationStore } from "../../../stores/animation.store";
|
|
10
11
|
import type { StackSceneActivity } from "../../../types/stack.types";
|
|
11
12
|
import { DEFAULT_INACTIVE_BEHAVIOR, type InactiveBehavior } from "../helpers";
|
|
@@ -26,23 +27,55 @@ const PointerEventsByActivity = {
|
|
|
26
27
|
} satisfies Record<StackSceneActivity, ViewProps["pointerEvents"]>;
|
|
27
28
|
|
|
28
29
|
interface ActivityScreenProps {
|
|
29
|
-
activity
|
|
30
|
+
activity?: StackSceneActivity;
|
|
30
31
|
children: React.ReactNode;
|
|
31
32
|
inactiveBehavior?: InactiveBehavior;
|
|
32
33
|
paintDriverRouteKey?: string;
|
|
33
34
|
hasNestedState?: boolean;
|
|
35
|
+
routeKey?: string;
|
|
34
36
|
}
|
|
35
37
|
|
|
36
38
|
export const ActivityScreen = memo(function ActivityScreen({
|
|
37
39
|
activity,
|
|
38
40
|
children,
|
|
39
|
-
inactiveBehavior
|
|
41
|
+
inactiveBehavior,
|
|
40
42
|
paintDriverRouteKey,
|
|
41
43
|
hasNestedState,
|
|
44
|
+
routeKey,
|
|
42
45
|
}: ActivityScreenProps) {
|
|
46
|
+
const stackActivity = useBlankStackStore((store) =>
|
|
47
|
+
routeKey ? store?.scenesByKey[routeKey]?.activity : undefined,
|
|
48
|
+
);
|
|
49
|
+
const stackInactiveBehavior = useBlankStackStore((store) =>
|
|
50
|
+
routeKey
|
|
51
|
+
? (
|
|
52
|
+
store?.scenesByKey[routeKey]?.descriptor.options as
|
|
53
|
+
| { inactiveBehavior?: InactiveBehavior }
|
|
54
|
+
| undefined
|
|
55
|
+
)?.inactiveBehavior
|
|
56
|
+
: undefined,
|
|
57
|
+
);
|
|
58
|
+
const stackRoute = useBlankStackStore((store) =>
|
|
59
|
+
routeKey ? store?.scenesByKey[routeKey]?.route : undefined,
|
|
60
|
+
);
|
|
61
|
+
const stackPaintDriverRouteKey = useBlankStackStore((store) => {
|
|
62
|
+
if (!routeKey || !store) {
|
|
63
|
+
return undefined;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
const routeIndex = store.routeKeys.indexOf(routeKey);
|
|
67
|
+
return store.routeKeys[routeIndex + 2];
|
|
68
|
+
});
|
|
69
|
+
const resolvedActivity = activity ?? stackActivity ?? "active";
|
|
70
|
+
const resolvedInactiveBehavior =
|
|
71
|
+
inactiveBehavior ?? stackInactiveBehavior ?? DEFAULT_INACTIVE_BEHAVIOR;
|
|
72
|
+
const resolvedPaintDriverRouteKey =
|
|
73
|
+
paintDriverRouteKey ?? stackPaintDriverRouteKey;
|
|
74
|
+
const resolvedHasNestedState =
|
|
75
|
+
hasNestedState ?? (stackRoute ? "state" in stackRoute : false);
|
|
43
76
|
const nativeScreenDisabled = useStack((s) => s.flags.DISABLE_NATIVE_SCREENS);
|
|
44
|
-
const paintDriverAnimations =
|
|
45
|
-
? AnimationStore.getBag(
|
|
77
|
+
const paintDriverAnimations = resolvedPaintDriverRouteKey
|
|
78
|
+
? AnimationStore.getBag(resolvedPaintDriverRouteKey)
|
|
46
79
|
: undefined;
|
|
47
80
|
|
|
48
81
|
/**
|
|
@@ -64,14 +97,14 @@ export const ActivityScreen = memo(function ActivityScreen({
|
|
|
64
97
|
|
|
65
98
|
const isPaintDriverSettledOnJS = useSharedValueState(isPaintDriverSettled);
|
|
66
99
|
|
|
67
|
-
let activityState: ActivityState = ActivityStateByActivity[
|
|
100
|
+
let activityState: ActivityState = ActivityStateByActivity[resolvedActivity];
|
|
68
101
|
let shouldFreeze = false;
|
|
69
|
-
let visible =
|
|
102
|
+
let visible = resolvedActivity !== "inactive";
|
|
70
103
|
|
|
71
104
|
const shouldWaitForPaintDriver = !isPaintDriverSettledOnJS;
|
|
72
105
|
|
|
73
|
-
if (
|
|
74
|
-
if (
|
|
106
|
+
if (resolvedActivity === "inactive") {
|
|
107
|
+
if (resolvedInactiveBehavior === "keep") {
|
|
75
108
|
activityState = 1;
|
|
76
109
|
visible = true;
|
|
77
110
|
} else if (shouldWaitForPaintDriver) {
|
|
@@ -79,7 +112,7 @@ export const ActivityScreen = memo(function ActivityScreen({
|
|
|
79
112
|
// a blank frame during the transition.
|
|
80
113
|
activityState = 1;
|
|
81
114
|
visible = true;
|
|
82
|
-
} else if (
|
|
115
|
+
} else if (resolvedInactiveBehavior === "pause") {
|
|
83
116
|
activityState = 1;
|
|
84
117
|
shouldFreeze = true;
|
|
85
118
|
visible = true;
|
|
@@ -93,12 +126,12 @@ export const ActivityScreen = memo(function ActivityScreen({
|
|
|
93
126
|
}
|
|
94
127
|
|
|
95
128
|
const shouldUnmount =
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
!
|
|
129
|
+
resolvedInactiveBehavior === "unmount" &&
|
|
130
|
+
resolvedActivity === "inactive" &&
|
|
131
|
+
!resolvedHasNestedState &&
|
|
99
132
|
isPaintDriverSettledOnJS;
|
|
100
133
|
|
|
101
|
-
const pointerEvents = PointerEventsByActivity[
|
|
134
|
+
const pointerEvents = PointerEventsByActivity[resolvedActivity];
|
|
102
135
|
|
|
103
136
|
if (shouldUnmount) {
|
|
104
137
|
return null;
|
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
import { BoundaryPortal } from "../portal/components/boundary-portal";
|
|
14
14
|
import {
|
|
15
15
|
TARGET_OUTSIDE_ROOT_WARNING,
|
|
16
|
-
|
|
16
|
+
useBoundaryRootStore,
|
|
17
17
|
} from "../providers/boundary-root.provider";
|
|
18
18
|
|
|
19
19
|
type BoundaryTargetProps = Omit<
|
|
@@ -36,7 +36,7 @@ const BoundaryTargetInner = (props: InternalBoundaryTargetProps) => {
|
|
|
36
36
|
style,
|
|
37
37
|
...rest
|
|
38
38
|
} = props;
|
|
39
|
-
const rootContext =
|
|
39
|
+
const rootContext = useBoundaryRootStore();
|
|
40
40
|
const boundaryId = rootContext?.boundTag.tag;
|
|
41
41
|
const isActiveTarget = active === true && rootContext !== null;
|
|
42
42
|
const portalRuntime = rootContext?.portalRuntime;
|
|
@@ -9,8 +9,14 @@ import {
|
|
|
9
9
|
import { scheduleOnUI } from "react-native-worklets";
|
|
10
10
|
import { useDescriptorsStore } from "../../../../providers/screen/descriptors";
|
|
11
11
|
import { AnimationStore } from "../../../../stores/animation.store";
|
|
12
|
-
import {
|
|
13
|
-
|
|
12
|
+
import {
|
|
13
|
+
createScreenPairKey,
|
|
14
|
+
getSourceScreenKeyFromPairKey,
|
|
15
|
+
} from "../../../../stores/bounds/helpers/link-pairs.helpers";
|
|
16
|
+
import {
|
|
17
|
+
getEntry,
|
|
18
|
+
getMatchingSourceScreenKey,
|
|
19
|
+
} from "../../../../stores/bounds/internals/entries";
|
|
14
20
|
import { getLink } from "../../../../stores/bounds/internals/links";
|
|
15
21
|
import { pairs } from "../../../../stores/bounds/internals/state";
|
|
16
22
|
import type { BoundTag } from "../../../../stores/bounds/types";
|
|
@@ -19,7 +25,9 @@ import { logger } from "../../../../utils/logger";
|
|
|
19
25
|
import type { MeasureBoundary } from "../../types";
|
|
20
26
|
import { getInitialDestinationMeasurementSignal } from "../../utils/destination-signals";
|
|
21
27
|
|
|
22
|
-
|
|
28
|
+
// A missed layout should be retried on the next frame. The previous 100 ms
|
|
29
|
+
// interval made each ordinary Android layout miss visibly delay navigation.
|
|
30
|
+
const HANDSHAKE_RETRY_DELAY_MS = 16;
|
|
23
31
|
/**
|
|
24
32
|
* A destination whose initial handshake never completes must not hold the
|
|
25
33
|
* transition gate forever. After this budget, release the block with a warning
|
|
@@ -48,12 +56,11 @@ export const useInitialDestinationMeasurement = ({
|
|
|
48
56
|
const destinationPairKey = useDescriptorsStore(
|
|
49
57
|
(s) => s.derivations.destinationPairKey,
|
|
50
58
|
);
|
|
51
|
-
const ancestorDestinationPairKey = useDescriptorsStore(
|
|
52
|
-
(s) => s.derivations.ancestorDestinationPairKey,
|
|
53
|
-
);
|
|
54
59
|
const destinationEnabled = enabled && !nextScreenKey;
|
|
55
|
-
const
|
|
56
|
-
|
|
60
|
+
const canReceiveDestination = destinationEnabled && !!destinationPairKey;
|
|
61
|
+
const preferredSourceScreenKey = destinationPairKey
|
|
62
|
+
? getSourceScreenKeyFromPairKey(destinationPairKey)
|
|
63
|
+
: undefined;
|
|
57
64
|
const progress = AnimationStore.getValue(
|
|
58
65
|
currentScreenKey,
|
|
59
66
|
"transitionProgress",
|
|
@@ -82,6 +89,16 @@ export const useInitialDestinationMeasurement = ({
|
|
|
82
89
|
|
|
83
90
|
const claimLifecycleStartBlock = useCallback(() => {
|
|
84
91
|
"worklet";
|
|
92
|
+
if (
|
|
93
|
+
!canReceiveDestination ||
|
|
94
|
+
!getMatchingSourceScreenKey(
|
|
95
|
+
tag,
|
|
96
|
+
currentScreenKey,
|
|
97
|
+
preferredSourceScreenKey,
|
|
98
|
+
)
|
|
99
|
+
) {
|
|
100
|
+
return;
|
|
101
|
+
}
|
|
85
102
|
|
|
86
103
|
// The progress check and block claim must share one UI-thread operation.
|
|
87
104
|
// Otherwise a JS-thread layout effect can observe zero, enqueue the block,
|
|
@@ -92,10 +109,18 @@ export const useInitialDestinationMeasurement = ({
|
|
|
92
109
|
|
|
93
110
|
blockLifecycleStart();
|
|
94
111
|
isBlockingLifecycleStart.set(1);
|
|
95
|
-
}, [
|
|
112
|
+
}, [
|
|
113
|
+
blockLifecycleStart,
|
|
114
|
+
canReceiveDestination,
|
|
115
|
+
currentScreenKey,
|
|
116
|
+
isBlockingLifecycleStart,
|
|
117
|
+
progress,
|
|
118
|
+
preferredSourceScreenKey,
|
|
119
|
+
tag,
|
|
120
|
+
]);
|
|
96
121
|
|
|
97
122
|
useLayoutEffect(() => {
|
|
98
|
-
if (!
|
|
123
|
+
if (!canReceiveDestination) {
|
|
99
124
|
return;
|
|
100
125
|
}
|
|
101
126
|
|
|
@@ -113,34 +138,40 @@ export const useInitialDestinationMeasurement = ({
|
|
|
113
138
|
};
|
|
114
139
|
}, [
|
|
115
140
|
claimLifecycleStartBlock,
|
|
116
|
-
destinationEnabled,
|
|
117
141
|
escapeClipping,
|
|
118
|
-
|
|
142
|
+
canReceiveDestination,
|
|
119
143
|
releaseLifecycleStartBlock,
|
|
120
144
|
]);
|
|
121
145
|
|
|
122
146
|
useAnimatedReaction(
|
|
123
147
|
() => {
|
|
124
148
|
"worklet";
|
|
149
|
+
|
|
150
|
+
if (!canReceiveDestination || isBlockingLifecycleStart.get() <= 0) {
|
|
151
|
+
return null;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
if (progress.get() > 0) {
|
|
155
|
+
return null;
|
|
156
|
+
}
|
|
157
|
+
|
|
125
158
|
const retryTick = retryToken.get();
|
|
126
|
-
const
|
|
127
|
-
|
|
128
|
-
|
|
159
|
+
const sourceScreenKey = getMatchingSourceScreenKey(
|
|
160
|
+
tag,
|
|
161
|
+
currentScreenKey,
|
|
162
|
+
preferredSourceScreenKey,
|
|
163
|
+
);
|
|
164
|
+
const pairKey = sourceScreenKey
|
|
165
|
+
? createScreenPairKey(sourceScreenKey, currentScreenKey)
|
|
129
166
|
: undefined;
|
|
130
167
|
const signal = getInitialDestinationMeasurementSignal({
|
|
131
|
-
enabled:
|
|
132
|
-
|
|
133
|
-
isWaitingForOpenToStart &&
|
|
134
|
-
isBlockingLifecycleStart.get() > 0,
|
|
135
|
-
destinationPairKey,
|
|
136
|
-
ancestorDestinationPairKey,
|
|
168
|
+
enabled: destinationEnabled,
|
|
169
|
+
pairKey,
|
|
137
170
|
linkId: linkKey,
|
|
138
171
|
group,
|
|
139
172
|
destinationPresent: getEntry(tag, currentScreenKey) !== null,
|
|
140
|
-
sourcePresent:
|
|
141
|
-
|
|
142
|
-
getEntry(tag, sourceScreenKey) !== null,
|
|
143
|
-
linkState: initialDestinationPairKey ? pairs.get() : undefined,
|
|
173
|
+
sourcePresent: sourceScreenKey !== null,
|
|
174
|
+
linkState: pairs.get(),
|
|
144
175
|
});
|
|
145
176
|
|
|
146
177
|
return [
|
|
@@ -149,8 +180,13 @@ export const useInitialDestinationMeasurement = ({
|
|
|
149
180
|
retryTick,
|
|
150
181
|
] as const;
|
|
151
182
|
},
|
|
152
|
-
(
|
|
183
|
+
(next, previous) => {
|
|
153
184
|
"worklet";
|
|
185
|
+
if (!next) {
|
|
186
|
+
return;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
const [measurePairKey, action, retryTick] = next;
|
|
154
190
|
if (!measurePairKey || !action) {
|
|
155
191
|
return;
|
|
156
192
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { useAnimatedReaction, useSharedValue } from "react-native-reanimated";
|
|
2
2
|
import { useDescriptorsStore } from "../../../../providers/screen/descriptors";
|
|
3
|
+
import { getPairKeyForSource } from "../../../../stores/bounds/internals/links";
|
|
3
4
|
import { pairs } from "../../../../stores/bounds/internals/state";
|
|
4
5
|
import type { BoundTag } from "../../../../stores/bounds/types";
|
|
5
6
|
import type { MeasureBoundary } from "../../types";
|
|
@@ -11,12 +12,16 @@ export const useInitialSourceMeasurement = (params: {
|
|
|
11
12
|
boundTag: BoundTag;
|
|
12
13
|
}) => {
|
|
13
14
|
const { enabled, measureBoundary, boundTag } = params;
|
|
14
|
-
const
|
|
15
|
+
const currentScreenKey = useDescriptorsStore(
|
|
16
|
+
(s) => s.derivations.currentScreenKey,
|
|
17
|
+
);
|
|
15
18
|
const lastSourceCaptureSignal = useSharedValue<string | null>(null);
|
|
16
19
|
|
|
17
20
|
useAnimatedReaction(
|
|
18
21
|
() => {
|
|
19
22
|
"worklet";
|
|
23
|
+
const sourcePairKey =
|
|
24
|
+
getPairKeyForSource(boundTag.tag, currentScreenKey) ?? undefined;
|
|
20
25
|
return getInitialSourceCaptureSignal({
|
|
21
26
|
enabled,
|
|
22
27
|
sourcePairKey,
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { useAnimatedReaction } from "react-native-reanimated";
|
|
2
2
|
import { useDescriptorsStore } from "../../../../providers/screen/descriptors";
|
|
3
3
|
import { AnimationStore } from "../../../../stores/animation.store";
|
|
4
|
+
import {
|
|
5
|
+
getPairKeyForDestination,
|
|
6
|
+
getPairKeyForSource,
|
|
7
|
+
} from "../../../../stores/bounds/internals/links";
|
|
4
8
|
import { pairs } from "../../../../stores/bounds/internals/state";
|
|
5
9
|
import type { BoundTag } from "../../../../stores/bounds/types";
|
|
6
|
-
import { GestureStore } from "../../../../stores/gesture.store";
|
|
7
10
|
import type { MeasureBoundary } from "../../types";
|
|
8
11
|
import { getRefreshBoundarySignal } from "../../utils/refresh-signals";
|
|
9
12
|
|
|
@@ -23,13 +26,6 @@ export const useRefreshBoundary = ({
|
|
|
23
26
|
(s) => s.derivations.currentScreenKey,
|
|
24
27
|
);
|
|
25
28
|
const nextScreenKey = useDescriptorsStore((s) => s.derivations.nextScreenKey);
|
|
26
|
-
const sourcePairKey = useDescriptorsStore((s) => s.derivations.sourcePairKey);
|
|
27
|
-
const destinationPairKey = useDescriptorsStore(
|
|
28
|
-
(s) => s.derivations.destinationPairKey,
|
|
29
|
-
);
|
|
30
|
-
const ancestorDestinationPairKey = useDescriptorsStore(
|
|
31
|
-
(s) => s.derivations.ancestorDestinationPairKey,
|
|
32
|
-
);
|
|
33
29
|
// Source-side boundaries refresh from the next screen's lifecycle pulse.
|
|
34
30
|
// Destination-side boundaries have no next screen, so they refresh from self.
|
|
35
31
|
const refreshScreenKey = nextScreenKey ?? currentScreenKey;
|
|
@@ -38,43 +34,29 @@ export const useRefreshBoundary = ({
|
|
|
38
34
|
"willAnimate",
|
|
39
35
|
);
|
|
40
36
|
const refreshClosing = AnimationStore.getValue(refreshScreenKey, "closing");
|
|
41
|
-
const refreshEntering = AnimationStore.getValue(refreshScreenKey, "entering");
|
|
42
|
-
const refreshAnimating = AnimationStore.getValue(
|
|
43
|
-
refreshScreenKey,
|
|
44
|
-
"progressAnimating",
|
|
45
|
-
);
|
|
46
|
-
const refreshProgress = AnimationStore.getValue(
|
|
47
|
-
refreshScreenKey,
|
|
48
|
-
"transitionProgress",
|
|
49
|
-
);
|
|
50
|
-
const refreshDragging = GestureStore.getValue(refreshScreenKey, "dragging");
|
|
51
|
-
const refreshDismissing = GestureStore.getValue(
|
|
52
|
-
refreshScreenKey,
|
|
53
|
-
"dismissing",
|
|
54
|
-
);
|
|
55
|
-
const refreshSettling = GestureStore.getValue(refreshScreenKey, "settling");
|
|
56
37
|
|
|
57
38
|
useAnimatedReaction(
|
|
58
39
|
() => {
|
|
59
40
|
"worklet";
|
|
41
|
+
|
|
42
|
+
const shouldRefresh = enabled && !!refreshWillAnimate.get();
|
|
43
|
+
if (!shouldRefresh) {
|
|
44
|
+
return null;
|
|
45
|
+
}
|
|
46
|
+
const sourcePairKey =
|
|
47
|
+
getPairKeyForSource(boundTag.tag, currentScreenKey) ?? undefined;
|
|
48
|
+
const destinationPairKey =
|
|
49
|
+
getPairKeyForDestination(boundTag.tag, currentScreenKey) ?? undefined;
|
|
50
|
+
|
|
60
51
|
return getRefreshBoundarySignal({
|
|
61
52
|
enabled,
|
|
62
53
|
currentScreenKey,
|
|
63
54
|
sourcePairKey,
|
|
64
55
|
destinationPairKey,
|
|
65
|
-
ancestorDestinationPairKey,
|
|
66
|
-
nextScreenKey,
|
|
67
56
|
linkId: linkKey,
|
|
68
57
|
group,
|
|
69
|
-
shouldRefresh
|
|
58
|
+
shouldRefresh,
|
|
70
59
|
closing: !!refreshClosing.get(),
|
|
71
|
-
entering: !!refreshEntering.get(),
|
|
72
|
-
animating: !!refreshAnimating.get(),
|
|
73
|
-
progress: refreshProgress.get(),
|
|
74
|
-
gestureInProgress:
|
|
75
|
-
!!refreshDragging.get() ||
|
|
76
|
-
!!refreshDismissing.get() ||
|
|
77
|
-
!!refreshSettling.get(),
|
|
78
60
|
linkState: pairs.get(),
|
|
79
61
|
});
|
|
80
62
|
},
|
|
@@ -60,10 +60,11 @@ export const useBoundaryMeasurement = ({
|
|
|
60
60
|
escapeClipping,
|
|
61
61
|
});
|
|
62
62
|
|
|
63
|
-
//
|
|
64
|
-
//
|
|
63
|
+
// Presence and source capture must not depend on this screen owning an
|
|
64
|
+
// interpolator: a nested source can participate in a transition owned by a
|
|
65
|
+
// different navigator.
|
|
65
66
|
useBoundaryPresence({
|
|
66
|
-
enabled
|
|
67
|
+
enabled,
|
|
67
68
|
boundTag,
|
|
68
69
|
currentScreenKey,
|
|
69
70
|
boundaryConfig,
|
|
@@ -72,7 +73,7 @@ export const useBoundaryMeasurement = ({
|
|
|
72
73
|
});
|
|
73
74
|
|
|
74
75
|
useInitialSourceMeasurement({
|
|
75
|
-
enabled
|
|
76
|
+
enabled,
|
|
76
77
|
measureBoundary,
|
|
77
78
|
boundTag,
|
|
78
79
|
});
|
|
@@ -1,13 +1,8 @@
|
|
|
1
1
|
import { useCallback } from "react";
|
|
2
2
|
import type { View } from "react-native";
|
|
3
3
|
import { useWindowDimensions } from "react-native";
|
|
4
|
-
import {
|
|
5
|
-
type AnimatedRef,
|
|
6
|
-
measure,
|
|
7
|
-
type StyleProps,
|
|
8
|
-
} from "react-native-reanimated";
|
|
4
|
+
import type { AnimatedRef, StyleProps } from "react-native-reanimated";
|
|
9
5
|
import { applyMeasuredBoundsWrites } from "../../../providers/helpers/measured-bounds-writes";
|
|
10
|
-
import { useOriginContext } from "../../../providers/screen/origin.provider";
|
|
11
6
|
import { useScreenSlots } from "../../../providers/screen/styles";
|
|
12
7
|
import type { BoundTag } from "../../../stores/bounds/types";
|
|
13
8
|
import { ScrollStore } from "../../../stores/scroll.store";
|
|
@@ -16,9 +11,9 @@ import { getVisibilityBlockOffset } from "../../../utils/visibility-block-offset
|
|
|
16
11
|
import type { MeasureBoundary } from "../types";
|
|
17
12
|
import {
|
|
18
13
|
attachScrollSnapshotToMeasuredBounds,
|
|
14
|
+
correctMeasuredBoundsForVisibilityGate,
|
|
19
15
|
isMeasurementInViewport,
|
|
20
16
|
measureWithOverscrollAwareness,
|
|
21
|
-
normalizeMeasuredBoundsWithVisibilityGate,
|
|
22
17
|
} from "../utils/measured-bounds";
|
|
23
18
|
|
|
24
19
|
interface UseMeasurerParams {
|
|
@@ -49,7 +44,6 @@ export const useMeasurer = ({
|
|
|
49
44
|
currentScreenKey,
|
|
50
45
|
"pendingLifecycleStartBlockCount",
|
|
51
46
|
);
|
|
52
|
-
const { originRef } = useOriginContext();
|
|
53
47
|
const { visibilityBlocked } = useScreenSlots();
|
|
54
48
|
|
|
55
49
|
return useCallback(
|
|
@@ -61,14 +55,12 @@ export const useMeasurer = ({
|
|
|
61
55
|
measuredAnimatedRef,
|
|
62
56
|
scrollState.get(),
|
|
63
57
|
);
|
|
64
|
-
const measuredOrigin = measure(originRef);
|
|
65
58
|
|
|
66
|
-
if (!measured
|
|
59
|
+
if (!measured) return;
|
|
67
60
|
|
|
68
|
-
const
|
|
61
|
+
const correctedMeasured = correctMeasuredBoundsForVisibilityGate({
|
|
69
62
|
measured,
|
|
70
|
-
|
|
71
|
-
visibilityBlocked: escapeClipping && visibilityBlocked.get(),
|
|
63
|
+
visibilityBlocked: visibilityBlocked.get(),
|
|
72
64
|
visibilityBlockOffset: getVisibilityBlockOffset(viewportHeight),
|
|
73
65
|
viewportWidth,
|
|
74
66
|
viewportHeight,
|
|
@@ -88,7 +80,7 @@ export const useMeasurer = ({
|
|
|
88
80
|
target.type !== "destination" ||
|
|
89
81
|
!shouldGuardDestinationViewport ||
|
|
90
82
|
isMeasurementInViewport(
|
|
91
|
-
|
|
83
|
+
correctedMeasured,
|
|
92
84
|
viewportWidth,
|
|
93
85
|
viewportHeight,
|
|
94
86
|
);
|
|
@@ -96,7 +88,7 @@ export const useMeasurer = ({
|
|
|
96
88
|
if (!viewportAllowsDestinationWrite) return;
|
|
97
89
|
|
|
98
90
|
const measuredWithScroll = attachScrollSnapshotToMeasuredBounds(
|
|
99
|
-
|
|
91
|
+
correctedMeasured,
|
|
100
92
|
scrollMetadata.get(),
|
|
101
93
|
);
|
|
102
94
|
|
|
@@ -125,7 +117,6 @@ export const useMeasurer = ({
|
|
|
125
117
|
scrollState,
|
|
126
118
|
scrollMetadata,
|
|
127
119
|
pendingLifecycleStartBlockCount,
|
|
128
|
-
originRef,
|
|
129
120
|
visibilityBlocked,
|
|
130
121
|
],
|
|
131
122
|
);
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
type ReceiverRoute = {
|
|
2
|
+
key: string;
|
|
3
|
+
};
|
|
4
|
+
|
|
5
|
+
type ReceiverScene = {
|
|
6
|
+
activity: string;
|
|
7
|
+
route: ReceiverRoute;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
type ResolveActiveHandoffReceiverParams = {
|
|
11
|
+
focusedIndex: number;
|
|
12
|
+
routes: ReceiverRoute[];
|
|
13
|
+
scenes: ReceiverScene[];
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const resolveActiveHandoffReceiver = ({
|
|
17
|
+
focusedIndex,
|
|
18
|
+
routes,
|
|
19
|
+
scenes,
|
|
20
|
+
}: ResolveActiveHandoffReceiverParams): string | null => {
|
|
21
|
+
for (let index = scenes.length - 1; index >= 0; index--) {
|
|
22
|
+
const scene = scenes[index];
|
|
23
|
+
if (scene?.activity === "closing") {
|
|
24
|
+
return scene.route.key;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
return routes[focusedIndex]?.key ?? null;
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export const resolvePreviousHandoffReceiver = ({
|
|
32
|
+
focusedIndex,
|
|
33
|
+
routes,
|
|
34
|
+
scenes,
|
|
35
|
+
}: ResolveActiveHandoffReceiverParams): string | null => {
|
|
36
|
+
for (let index = scenes.length - 1; index >= 0; index--) {
|
|
37
|
+
if (scenes[index]?.activity !== "closing") {
|
|
38
|
+
continue;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
for (let previousIndex = index - 1; previousIndex >= 0; previousIndex--) {
|
|
42
|
+
const previousScene = scenes[previousIndex];
|
|
43
|
+
if (previousScene?.activity !== "closing") {
|
|
44
|
+
return previousScene?.route.key ?? null;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
return routes[focusedIndex]?.key ?? null;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export const resolveHandoffAttachmentCandidate = ({
|
|
53
|
+
activeReceiverClosing,
|
|
54
|
+
activeReceiverScreenKey,
|
|
55
|
+
attachedReceiverScreenKey,
|
|
56
|
+
hasActiveCloseFinished,
|
|
57
|
+
interpolatorReady,
|
|
58
|
+
pairChangedDuringClose = false,
|
|
59
|
+
pairDestinationScreenKey,
|
|
60
|
+
previousReceiverScreenKey,
|
|
61
|
+
}: {
|
|
62
|
+
activeReceiverClosing: boolean;
|
|
63
|
+
activeReceiverScreenKey: string | null;
|
|
64
|
+
attachedReceiverScreenKey: string;
|
|
65
|
+
hasActiveCloseFinished: boolean;
|
|
66
|
+
interpolatorReady: boolean;
|
|
67
|
+
pairChangedDuringClose?: boolean;
|
|
68
|
+
pairDestinationScreenKey: string | null;
|
|
69
|
+
previousReceiverScreenKey: string | null;
|
|
70
|
+
}) => {
|
|
71
|
+
"worklet";
|
|
72
|
+
|
|
73
|
+
if (
|
|
74
|
+
activeReceiverClosing &&
|
|
75
|
+
interpolatorReady &&
|
|
76
|
+
pairDestinationScreenKey &&
|
|
77
|
+
pairChangedDuringClose
|
|
78
|
+
) {
|
|
79
|
+
return pairDestinationScreenKey;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
if (
|
|
83
|
+
hasActiveCloseFinished &&
|
|
84
|
+
attachedReceiverScreenKey === activeReceiverScreenKey
|
|
85
|
+
) {
|
|
86
|
+
return previousReceiverScreenKey;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
if (hasActiveCloseFinished) {
|
|
90
|
+
return attachedReceiverScreenKey;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
if (
|
|
94
|
+
activeReceiverClosing &&
|
|
95
|
+
attachedReceiverScreenKey !== activeReceiverScreenKey &&
|
|
96
|
+
interpolatorReady &&
|
|
97
|
+
pairDestinationScreenKey
|
|
98
|
+
) {
|
|
99
|
+
return pairDestinationScreenKey;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
return activeReceiverScreenKey;
|
|
103
|
+
};
|