223 lines
5.1 KiB
JavaScript
223 lines
5.1 KiB
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule NavigationPagerPanResponder
|
|
* @flow
|
|
* @typechecks
|
|
*/
|
|
'use strict';
|
|
|
|
const Animated = require('Animated');
|
|
const NavigationAbstractPanResponder = require('NavigationAbstractPanResponder');
|
|
const NavigationCardStackPanResponder = require('NavigationCardStackPanResponder');
|
|
|
|
const clamp = require('clamp');
|
|
|
|
import type {
|
|
NavigationPanPanHandlers,
|
|
NavigationSceneRendererProps,
|
|
} from 'NavigationTypeDefinition';
|
|
|
|
import type {
|
|
NavigationGestureDirection,
|
|
} from 'NavigationCardStackPanResponder';
|
|
|
|
|
|
|
|
/**
|
|
* Primitive gesture directions.
|
|
*/
|
|
const {
|
|
ANIMATION_DURATION,
|
|
DISTANCE_THRESHOLD,
|
|
POSITION_THRESHOLD,
|
|
RESPOND_THRESHOLD,
|
|
Directions,
|
|
} = NavigationCardStackPanResponder;
|
|
|
|
/**
|
|
* Primitive gesture actions.
|
|
*/
|
|
const Actions = {
|
|
JUMP_BACK: {type: 'jump_back'},
|
|
JUMP_FORWARD: {type: 'jump_forward'},
|
|
};
|
|
|
|
/**
|
|
* Pan responder that handles gesture for a card in the cards list.
|
|
*
|
|
* +-------------+-------------+-------------+
|
|
* | | | |
|
|
* | | | |
|
|
* | | | |
|
|
* | Next | Focused | Previous |
|
|
* | Card | Card | Card |
|
|
* | | | |
|
|
* | | | |
|
|
* | | | |
|
|
* +-------------+-------------+-------------+
|
|
*/
|
|
class NavigationPagerPanResponder extends NavigationAbstractPanResponder {
|
|
|
|
_isResponding: boolean;
|
|
_isVertical: boolean;
|
|
_props: NavigationSceneRendererProps;
|
|
_startValue: number;
|
|
|
|
constructor(
|
|
direction: NavigationGestureDirection,
|
|
props: NavigationSceneRendererProps,
|
|
) {
|
|
super();
|
|
this._isResponding = false;
|
|
this._isVertical = direction === Directions.VERTICAL;
|
|
this._props = props;
|
|
this._startValue = 0;
|
|
}
|
|
|
|
onMoveShouldSetPanResponder(event: any, gesture: any): boolean {
|
|
const props = this._props;
|
|
|
|
if (props.navigationState.index !== props.scene.index) {
|
|
return false;
|
|
}
|
|
|
|
const layout = props.layout;
|
|
const isVertical = this._isVertical;
|
|
const axis = isVertical ? 'dy' : 'dx';
|
|
const index = props.navigationState.index;
|
|
const distance = isVertical ?
|
|
layout.height.__getValue() :
|
|
layout.width.__getValue();
|
|
|
|
return (
|
|
Math.abs(gesture[axis]) > RESPOND_THRESHOLD &&
|
|
distance > 0 &&
|
|
index > 0
|
|
);
|
|
}
|
|
|
|
onPanResponderGrant(): void {
|
|
this._isResponding = false;
|
|
this._props.position.stopAnimation((value: number) => {
|
|
this._isResponding = true;
|
|
this._startValue = value;
|
|
});
|
|
}
|
|
|
|
onPanResponderMove(event: any, gesture: any): void {
|
|
if (!this._isResponding) {
|
|
return;
|
|
}
|
|
|
|
const {
|
|
layout,
|
|
navigationState,
|
|
position,
|
|
scenes,
|
|
} = this._props;
|
|
|
|
const isVertical = this._isVertical;
|
|
const axis = isVertical ? 'dy' : 'dx';
|
|
const index = navigationState.index;
|
|
const distance = isVertical ?
|
|
layout.height.__getValue() :
|
|
layout.width.__getValue();
|
|
|
|
const prevIndex = Math.max(
|
|
0,
|
|
index - 1,
|
|
);
|
|
|
|
const nextIndex = Math.min(
|
|
index + 1,
|
|
scenes.length - 1,
|
|
);
|
|
|
|
const value = clamp(
|
|
prevIndex,
|
|
this._startValue - (gesture[axis] / distance),
|
|
nextIndex,
|
|
);
|
|
|
|
position.setValue(value);
|
|
}
|
|
|
|
onPanResponderRelease(event: any, gesture: any): void {
|
|
if (!this._isResponding) {
|
|
return;
|
|
}
|
|
|
|
this._isResponding = false;
|
|
|
|
const {
|
|
navigationState,
|
|
onNavigate,
|
|
position,
|
|
} = this._props;
|
|
|
|
const isVertical = this._isVertical;
|
|
const axis = isVertical ? 'dy' : 'dx';
|
|
const index = navigationState.index;
|
|
const distance = gesture[axis];
|
|
|
|
position.stopAnimation((value: number) => {
|
|
this._reset();
|
|
if (
|
|
distance > DISTANCE_THRESHOLD ||
|
|
value <= index - POSITION_THRESHOLD
|
|
) {
|
|
onNavigate(Actions.JUMP_BACK);
|
|
return;
|
|
}
|
|
|
|
if (
|
|
distance < -DISTANCE_THRESHOLD ||
|
|
value >= index + POSITION_THRESHOLD
|
|
) {
|
|
onNavigate(Actions.JUMP_FORWARD);
|
|
}
|
|
});
|
|
}
|
|
|
|
onPanResponderTerminate(): void {
|
|
this._isResponding = false;
|
|
this._reset();
|
|
}
|
|
|
|
_reset(): void {
|
|
const props = this._props;
|
|
Animated.timing(
|
|
props.position,
|
|
{
|
|
toValue: props.navigationState.index,
|
|
duration: ANIMATION_DURATION,
|
|
}
|
|
).start();
|
|
}
|
|
}
|
|
|
|
function createPanHandlers(
|
|
direction: NavigationGestureDirection,
|
|
props: NavigationSceneRendererProps,
|
|
): NavigationPanPanHandlers {
|
|
const responder = new NavigationPagerPanResponder(direction, props);
|
|
return responder.panHandlers;
|
|
}
|
|
|
|
function forHorizontal(
|
|
props: NavigationSceneRendererProps,
|
|
): NavigationPanPanHandlers {
|
|
return createPanHandlers(Directions.HORIZONTAL, props);
|
|
}
|
|
|
|
module.exports = {
|
|
Actions,
|
|
forHorizontal,
|
|
};
|