better way to manage pointerEvents for NavigationCard.
Reviewed By: fkgozali Differential Revision: D3250602 fb-gh-sync-id: 6b20d283f8854d0e137800c37595fc014a78e338 fbshipit-source-id: 6b20d283f8854d0e137800c37595fc014a78e338
This commit is contained in:
parent
79c5322233
commit
8ac03077c9
|
@ -38,6 +38,7 @@ const NavigationCardStackStyleInterpolator = require('NavigationCardStackStyleIn
|
||||||
const NavigationContainer = require('NavigationContainer');
|
const NavigationContainer = require('NavigationContainer');
|
||||||
const NavigationPagerPanResponder = require('NavigationPagerPanResponder');
|
const NavigationPagerPanResponder = require('NavigationPagerPanResponder');
|
||||||
const NavigationPagerStyleInterpolator = require('NavigationPagerStyleInterpolator');
|
const NavigationPagerStyleInterpolator = require('NavigationPagerStyleInterpolator');
|
||||||
|
const NavigationPointerEventsContainer = require('NavigationPointerEventsContainer');
|
||||||
const NavigationPropTypes = require('NavigationPropTypes');
|
const NavigationPropTypes = require('NavigationPropTypes');
|
||||||
const React = require('React');
|
const React = require('React');
|
||||||
const ReactComponentWithPureRenderMixin = require('ReactComponentWithPureRenderMixin');
|
const ReactComponentWithPureRenderMixin = require('ReactComponentWithPureRenderMixin');
|
||||||
|
@ -51,26 +52,30 @@ import type {
|
||||||
} from 'NavigationTypeDefinition';
|
} from 'NavigationTypeDefinition';
|
||||||
|
|
||||||
type Props = NavigationSceneRendererProps & {
|
type Props = NavigationSceneRendererProps & {
|
||||||
style: any,
|
onComponentRef: (ref: any) => void,
|
||||||
panHandlers: ?NavigationPanPanHandlers,
|
panHandlers: ?NavigationPanPanHandlers,
|
||||||
|
pointerEvents: string,
|
||||||
renderScene: NavigationSceneRenderer,
|
renderScene: NavigationSceneRenderer,
|
||||||
|
style: any,
|
||||||
};
|
};
|
||||||
|
|
||||||
const {PropTypes} = React;
|
const {PropTypes} = React;
|
||||||
|
|
||||||
const propTypes = {
|
|
||||||
...NavigationPropTypes.SceneRenderer,
|
|
||||||
style: PropTypes.any,
|
|
||||||
panHandlers: NavigationPropTypes.panHandlers,
|
|
||||||
renderScene: PropTypes.func.isRequired,
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Component that renders the scene as card for the <NavigationCardStack />.
|
* Component that renders the scene as card for the <NavigationCardStack />.
|
||||||
*/
|
*/
|
||||||
class NavigationCard extends React.Component<any, Props, any> {
|
class NavigationCard extends React.Component<any, Props, any> {
|
||||||
props: Props;
|
props: Props;
|
||||||
|
|
||||||
|
static propTypes = {
|
||||||
|
...NavigationPropTypes.SceneRenderer,
|
||||||
|
onComponentRef: PropTypes.func.isRequired,
|
||||||
|
panHandlers: NavigationPropTypes.panHandlers,
|
||||||
|
pointerEvents: PropTypes.string.isRequired,
|
||||||
|
renderScene: PropTypes.func.isRequired,
|
||||||
|
style: PropTypes.any,
|
||||||
|
};
|
||||||
|
|
||||||
shouldComponentUpdate(nextProps: Props, nextState: any): boolean {
|
shouldComponentUpdate(nextProps: Props, nextState: any): boolean {
|
||||||
return ReactComponentWithPureRenderMixin.shouldComponentUpdate.call(
|
return ReactComponentWithPureRenderMixin.shouldComponentUpdate.call(
|
||||||
this,
|
this,
|
||||||
|
@ -82,41 +87,25 @@ class NavigationCard extends React.Component<any, Props, any> {
|
||||||
render(): ReactElement {
|
render(): ReactElement {
|
||||||
const {
|
const {
|
||||||
panHandlers,
|
panHandlers,
|
||||||
|
pointerEvents,
|
||||||
renderScene,
|
renderScene,
|
||||||
style,
|
style,
|
||||||
...props, /* NavigationSceneRendererProps */
|
...props, /* NavigationSceneRendererProps */
|
||||||
} = this.props;
|
} = this.props;
|
||||||
|
|
||||||
let viewStyle = null;
|
const viewStyle = style === undefined ?
|
||||||
if (style === undefined) {
|
NavigationCardStackStyleInterpolator.forHorizontal(props) :
|
||||||
// fall back to default style.
|
style;
|
||||||
viewStyle = NavigationCardStackStyleInterpolator.forHorizontal(props);
|
|
||||||
} else {
|
|
||||||
viewStyle = style;
|
|
||||||
}
|
|
||||||
|
|
||||||
const {
|
const viewPanHandlers = panHandlers === undefined ?
|
||||||
navigationState,
|
NavigationCardStackPanResponder.forHorizontal(props) :
|
||||||
scene,
|
panHandlers;
|
||||||
} = props;
|
|
||||||
|
|
||||||
const interactive = navigationState.index === scene.index && !scene.isStale;
|
|
||||||
const pointerEvents = interactive ? 'auto' : 'none';
|
|
||||||
|
|
||||||
let viewPanHandlers = null;
|
|
||||||
if (interactive) {
|
|
||||||
if (panHandlers === undefined) {
|
|
||||||
// fall back to default pan handlers.
|
|
||||||
viewPanHandlers = NavigationCardStackPanResponder.forHorizontal(props);
|
|
||||||
} else {
|
|
||||||
viewPanHandlers = panHandlers;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Animated.View
|
<Animated.View
|
||||||
{...viewPanHandlers}
|
{...viewPanHandlers}
|
||||||
pointerEvents={pointerEvents}
|
pointerEvents={pointerEvents}
|
||||||
|
ref={this.props.onComponentRef}
|
||||||
style={[styles.main, viewStyle]}>
|
style={[styles.main, viewStyle]}>
|
||||||
{renderScene(props)}
|
{renderScene(props)}
|
||||||
</Animated.View>
|
</Animated.View>
|
||||||
|
@ -124,8 +113,6 @@ class NavigationCard extends React.Component<any, Props, any> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
NavigationCard.propTypes = propTypes;
|
|
||||||
|
|
||||||
const styles = StyleSheet.create({
|
const styles = StyleSheet.create({
|
||||||
main: {
|
main: {
|
||||||
backgroundColor: '#E9E9EF',
|
backgroundColor: '#E9E9EF',
|
||||||
|
@ -141,13 +128,13 @@ const styles = StyleSheet.create({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
NavigationCard = NavigationPointerEventsContainer.create(NavigationCard);
|
||||||
const NavigationCardContainer = NavigationContainer.create(NavigationCard);
|
NavigationCard = NavigationContainer.create(NavigationCard);
|
||||||
|
|
||||||
// Export these buil-in interaction modules.
|
// Export these buil-in interaction modules.
|
||||||
NavigationCardContainer.CardStackPanResponder = NavigationCardStackPanResponder;
|
NavigationCard.CardStackPanResponder = NavigationCardStackPanResponder;
|
||||||
NavigationCardContainer.CardStackStyleInterpolator = NavigationCardStackStyleInterpolator;
|
NavigationCard.CardStackStyleInterpolator = NavigationCardStackStyleInterpolator;
|
||||||
NavigationCardContainer.PagerPanResponder = NavigationPagerPanResponder;
|
NavigationCard.PagerPanResponder = NavigationPagerPanResponder;
|
||||||
NavigationCardContainer.PagerStyleInterpolator = NavigationPagerStyleInterpolator;
|
NavigationCard.PagerStyleInterpolator = NavigationPagerStyleInterpolator;
|
||||||
|
|
||||||
module.exports = NavigationCardContainer;
|
module.exports = NavigationCard;
|
||||||
|
|
|
@ -0,0 +1,158 @@
|
||||||
|
/**
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* Facebook, Inc. ("Facebook") owns all right, title and interest, including
|
||||||
|
* all intellectual property and other proprietary rights, in and to the React
|
||||||
|
* Native CustomComponents software (the "Software"). Subject to your
|
||||||
|
* compliance with these terms, you are hereby granted a non-exclusive,
|
||||||
|
* worldwide, royalty-free copyright license to (1) use and copy the Software;
|
||||||
|
* and (2) reproduce and distribute the Software as part of your own software
|
||||||
|
* ("Your Software"). Facebook reserves all rights not expressly granted to
|
||||||
|
* you in this license agreement.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE AND DOCUMENTATION, IF ANY, ARE PROVIDED "AS IS" AND ANY EXPRESS
|
||||||
|
* OR IMPLIED WARRANTIES (INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||||
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE) ARE DISCLAIMED.
|
||||||
|
* IN NO EVENT SHALL FACEBOOK OR ITS AFFILIATES, OFFICERS, DIRECTORS OR
|
||||||
|
* EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||||
|
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||||
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||||
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE SOFTWARE, EVEN IF
|
||||||
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
* @providesModule NavigationPointerEventsContainer
|
||||||
|
* @flow
|
||||||
|
*/
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
const React = require('React');
|
||||||
|
const NavigationAnimatedValueSubscription = require('NavigationAnimatedValueSubscription');
|
||||||
|
|
||||||
|
const invariant = require('fbjs/lib/invariant');
|
||||||
|
|
||||||
|
import type {
|
||||||
|
NavigationSceneRendererProps,
|
||||||
|
} from 'NavigationTypeDefinition';
|
||||||
|
|
||||||
|
type Props = NavigationSceneRendererProps;
|
||||||
|
|
||||||
|
const MIN_POSITION_OFFSET = 0.01;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a higher-order component that automatically computes the
|
||||||
|
* `pointerEvents` property for a component whenever navigation position
|
||||||
|
* changes.
|
||||||
|
*/
|
||||||
|
function create(
|
||||||
|
Component: ReactClass<any>,
|
||||||
|
): ReactClass {
|
||||||
|
|
||||||
|
class Container extends React.Component<any, Props, any> {
|
||||||
|
|
||||||
|
_component: any;
|
||||||
|
_onComponentRef: (view: any) => void;
|
||||||
|
_onPositionChange: (data: {value: number}) => void;
|
||||||
|
_pointerEvents: string;
|
||||||
|
_positionListener: ?NavigationAnimatedValueSubscription;
|
||||||
|
|
||||||
|
props: Props;
|
||||||
|
|
||||||
|
constructor(props: Props, context: any) {
|
||||||
|
super(props, context);
|
||||||
|
this._pointerEvents = this._computePointerEvents();
|
||||||
|
}
|
||||||
|
|
||||||
|
componentWillMount(): void {
|
||||||
|
this._onPositionChange = this._onPositionChange.bind(this);
|
||||||
|
this._onComponentRef = this._onComponentRef.bind(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
componentDidMount(): void {
|
||||||
|
this._bindPosition(this.props);
|
||||||
|
}
|
||||||
|
|
||||||
|
componentWillUnmount(): void {
|
||||||
|
this._positionListener && this._positionListener.remove();
|
||||||
|
}
|
||||||
|
|
||||||
|
componentWillReceiveProps(nextProps: Props): void {
|
||||||
|
this._bindPosition(nextProps);
|
||||||
|
}
|
||||||
|
|
||||||
|
render(): ReactElement {
|
||||||
|
this._pointerEvents = this._computePointerEvents();
|
||||||
|
return (
|
||||||
|
<Component
|
||||||
|
{...this.props}
|
||||||
|
pointerEvents={this._pointerEvents}
|
||||||
|
onComponentRef={this._onComponentRef}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
_onComponentRef(component: any): void {
|
||||||
|
this._component = component;
|
||||||
|
if (component) {
|
||||||
|
invariant(
|
||||||
|
typeof component.setNativeProps === 'function',
|
||||||
|
'component must implement method `setNativeProps`',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_bindPosition(props: NavigationSceneRendererProps): void {
|
||||||
|
this._positionListener && this._positionListener.remove();
|
||||||
|
this._positionListener = new NavigationAnimatedValueSubscription(
|
||||||
|
props.position,
|
||||||
|
this._onPositionChange,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
_onPositionChange(): void {
|
||||||
|
if (this._component) {
|
||||||
|
const pointerEvents = this._computePointerEvents();
|
||||||
|
if (this._pointerEvents !== pointerEvents) {
|
||||||
|
this._pointerEvents = pointerEvents;
|
||||||
|
this._component.setNativeProps({pointerEvents});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_computePointerEvents(): string {
|
||||||
|
const {
|
||||||
|
navigationState,
|
||||||
|
position,
|
||||||
|
scene,
|
||||||
|
} = this.props;
|
||||||
|
|
||||||
|
if (scene.isStale || navigationState.index !== scene.index) {
|
||||||
|
// The scene isn't focused.
|
||||||
|
return scene.index > navigationState.index ?
|
||||||
|
'box-only' :
|
||||||
|
'none';
|
||||||
|
}
|
||||||
|
|
||||||
|
const offset = position.__getAnimatedValue() - navigationState.index;
|
||||||
|
if (Math.abs(offset) > MIN_POSITION_OFFSET) {
|
||||||
|
// The positon is still away from scene's index.
|
||||||
|
// Scene's children should not receive touches until the position
|
||||||
|
// is close enough to scene's index.
|
||||||
|
return 'box-only';
|
||||||
|
}
|
||||||
|
|
||||||
|
return 'auto';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Container;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
create,
|
||||||
|
};
|
Loading…
Reference in New Issue