Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"author": "Meliorence <[email protected]> (github.com/meliorence)",
"license": "BSD-3-Clause",
"dependencies": {
"deprecated-react-native-prop-types": "^5.0.0",
"prop-types": "^15.6.1",
"react-addons-shallow-compare": "15.6.2"
},
Expand Down
67 changes: 34 additions & 33 deletions src/carousel/Carousel.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import { Animated, Easing, FlatList, I18nManager, Platform, ScrollView, View, ViewPropTypes } from 'react-native';
import { Animated, Easing, FlatList, I18nManager, Platform, ScrollView, View } from 'react-native';
import PropTypes from 'prop-types';
import shallowCompare from 'react-addons-shallow-compare';
import {
Expand All @@ -11,6 +11,7 @@ import {
stackAnimatedStyles,
tinderAnimatedStyles
} from '../utils/animations';
import { ViewPropTypes } from 'deprecated-react-native-prop-types';

const IS_IOS = Platform.OS === 'ios';

Expand Down Expand Up @@ -43,8 +44,8 @@ export default class Carousel extends Component {
autoplayDelay: PropTypes.number,
autoplayInterval: PropTypes.number,
callbackOffsetMargin: PropTypes.number,
containerCustomStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes.style,
contentContainerCustomStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes.style,
containerCustomStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes?.style,
contentContainerCustomStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes?.style,
enableMomentum: PropTypes.bool,
enableSnap: PropTypes.bool,
firstItem: PropTypes.number,
Expand All @@ -61,7 +62,7 @@ export default class Carousel extends Component {
scrollEnabled: PropTypes.bool,
scrollInterpolator: PropTypes.func,
slideInterpolatedStyle: PropTypes.func,
slideStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes.style,
slideStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes?.style,
shouldOptimizeUpdates: PropTypes.bool,
swipeThreshold: PropTypes.number,
useScrollView: PropTypes.oneOfType([PropTypes.bool, PropTypes.func]),
Expand Down Expand Up @@ -263,7 +264,7 @@ export default class Carousel extends Component {
}

if (this.props.onScroll !== prevProps.onScroll) {
this._setScrollHandler(this.props);
this._setScrollHandler(this.props);
}
}

Expand Down Expand Up @@ -291,34 +292,34 @@ export default class Carousel extends Component {
return this._currentContentOffset;
}

_setScrollHandler(props) {
// Native driver for scroll events
const scrollEventConfig = {
listener: this._onScroll,
useNativeDriver: true,
};
this._scrollPos = new Animated.Value(0);
const argMapping = props.vertical
? [{ nativeEvent: { contentOffset: { y: this._scrollPos } } }]
: [{ nativeEvent: { contentOffset: { x: this._scrollPos } } }];
_setScrollHandler (props) {
// Native driver for scroll events
const scrollEventConfig = {
listener: this._onScroll,
useNativeDriver: true
};
this._scrollPos = new Animated.Value(0);
const argMapping = props.vertical ?
[{ nativeEvent: { contentOffset: { y: this._scrollPos } } }] :
[{ nativeEvent: { contentOffset: { x: this._scrollPos } } }];

if (props.onScroll && Array.isArray(props.onScroll._argMapping)) {
if (props.onScroll && Array.isArray(props.onScroll._argMapping)) {
// Because of a react-native issue https://github.com/facebook/react-native/issues/13294
argMapping.pop();
const [ argMap ] = props.onScroll._argMapping;
if (argMap && argMap.nativeEvent && argMap.nativeEvent.contentOffset) {
// Shares the same animated value passed in props
this._scrollPos =
argMapping.pop();
const [ argMap ] = props.onScroll._argMapping;
if (argMap && argMap.nativeEvent && argMap.nativeEvent.contentOffset) {
// Shares the same animated value passed in props
this._scrollPos =
argMap.nativeEvent.contentOffset.x ||
argMap.nativeEvent.contentOffset.y ||
this._scrollPos;
}
argMapping.push(...props.onScroll._argMapping);
}
argMapping.push(...props.onScroll._argMapping);
}
this._onScrollHandler = Animated.event(
argMapping,
scrollEventConfig
);
this._onScrollHandler = Animated.event(
argMapping,
scrollEventConfig
);
}

_needsScrollView () {
Expand Down Expand Up @@ -822,7 +823,7 @@ export default class Carousel extends Component {
this._repositionScroll(nextActiveItem);
}

if (typeof onScroll === "function" && event) {
if (typeof onScroll === 'function' && event) {
onScroll(event);
}
}
Expand All @@ -838,28 +839,28 @@ export default class Carousel extends Component {
}

_onTouchStart () {
const { onTouchStart } = this.props
const { onTouchStart } = this.props;

// `onTouchStart` is fired even when `scrollEnabled` is set to `false`
if (this._getScrollEnabled() !== false && this._autoplaying) {
this.pauseAutoPlay();
}

if (onTouchStart) {
onTouchStart()
onTouchStart();
}
}

_onTouchEnd () {
const { onTouchEnd } = this.props
const { onTouchEnd } = this.props;

if (this._getScrollEnabled() !== false && this._autoplay && !this._autoplaying) {
// This event is buggy on Android, so a fallback is provided in _onScrollEnd()
this.startAutoplay();
}

if (onTouchEnd) {
onTouchEnd()
onTouchEnd();
}
}

Expand Down Expand Up @@ -1354,7 +1355,7 @@ export default class Carousel extends Component {
...this._getComponentStaticProps()
};

const ScrollViewComponent = typeof useScrollView === 'function' ? useScrollView : AnimatedScrollView
const ScrollViewComponent = typeof useScrollView === 'function' ? useScrollView : AnimatedScrollView;

return this._needsScrollView() ? (
<ScrollViewComponent {...props}>
Expand Down
17 changes: 9 additions & 8 deletions src/pagination/Pagination.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import React, { PureComponent } from 'react';
import { I18nManager, Platform, View, ViewPropTypes } from 'react-native';
import { I18nManager, Platform, View } from 'react-native';
import PropTypes from 'prop-types';
import PaginationDot from './PaginationDot';
import styles from './Pagination.style';
import { ViewPropTypes } from 'deprecated-react-native-prop-types';

const IS_IOS = Platform.OS === 'ios';
const IS_RTL = I18nManager.isRTL;
Expand All @@ -14,24 +15,24 @@ export default class Pagination extends PureComponent {
dotsLength: PropTypes.number.isRequired,
activeOpacity: PropTypes.number,
carouselRef: PropTypes.object,
containerStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes.style,
containerStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes?.style,
dotColor: PropTypes.string,
dotContainerStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes.style,
dotContainerStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes?.style,
dotElement: PropTypes.element,
dotStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes.style,
dotStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes?.style,
inactiveDotColor: PropTypes.string,
inactiveDotElement: PropTypes.element,
inactiveDotOpacity: PropTypes.number,
inactiveDotScale: PropTypes.number,
inactiveDotStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes.style,
inactiveDotStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes?.style,
renderDots: PropTypes.func,
tappableDots: PropTypes.bool,
vertical: PropTypes.bool,
accessibilityLabel: PropTypes.string,
animatedDuration: PropTypes.number,
animatedFriction: PropTypes.number,
animatedTension: PropTypes.number,
delayPressInDot: PropTypes.number,
delayPressInDot: PropTypes.number
};

static defaultProps = {
Expand All @@ -42,7 +43,7 @@ export default class Pagination extends PureComponent {
animatedDuration: 250,
animatedFriction: 4,
animatedTension: 50,
delayPressInDot: 0,
delayPressInDot: 0
}

constructor (props) {
Expand Down Expand Up @@ -98,7 +99,7 @@ export default class Pagination extends PureComponent {
animatedDuration,
animatedFriction,
animatedTension,
delayPressInDot,
delayPressInDot
} = this.props;

if (renderDots) {
Expand Down
11 changes: 6 additions & 5 deletions src/pagination/PaginationDot.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import React, { PureComponent } from 'react';
import { View, Animated, Easing, TouchableOpacity, ViewPropTypes } from 'react-native';
import { View, Animated, Easing, TouchableOpacity } from 'react-native';
import PropTypes from 'prop-types';
import styles from './Pagination.style';
import { ViewPropTypes } from 'deprecated-react-native-prop-types';

export default class PaginationDot extends PureComponent {

Expand All @@ -12,11 +13,11 @@ export default class PaginationDot extends PureComponent {
activeOpacity: PropTypes.number,
carouselRef: PropTypes.object,
color: PropTypes.string,
containerStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes.style,
containerStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes?.style,
inactiveColor: PropTypes.string,
inactiveStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes.style,
inactiveStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes?.style,
index: PropTypes.number,
style: ViewPropTypes ? ViewPropTypes.style : View.propTypes.style,
style: ViewPropTypes ? ViewPropTypes.style : View.propTypes?.style,
tappable: PropTypes.bool
};

Expand All @@ -43,7 +44,7 @@ export default class PaginationDot extends PureComponent {

_animate (toValue = 0) {
const { animColor, animOpacity, animTransform } = this.state;
const { animatedDuration, animatedFriction, animatedTension } = this.props
const { animatedDuration, animatedFriction, animatedTension } = this.props;

const commonProperties = {
toValue,
Expand Down
5 changes: 3 additions & 2 deletions src/parallaximage/ParallaxImage.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Parallax effect inspired by https://github.com/oblador/react-native-parallax/

import React, { Component } from 'react';
import { View, ViewPropTypes, Image, Animated, Easing, ActivityIndicator, findNodeHandle } from 'react-native';
import { View, Image, Animated, Easing, ActivityIndicator, findNodeHandle } from 'react-native';
import PropTypes from 'prop-types';
import styles from './ParallaxImage.style';
import { ViewPropTypes } from 'deprecated-react-native-prop-types';

export default class ParallaxImage extends Component {

Expand All @@ -16,7 +17,7 @@ export default class ParallaxImage extends Component {
sliderHeight: PropTypes.number, // passed from <Carousel />
sliderWidth: PropTypes.number, // passed from <Carousel />
vertical: PropTypes.bool, // passed from <Carousel />
containerStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes.style,
containerStyle: ViewPropTypes ? ViewPropTypes.style : View.propTypes?.style,
dimensions: PropTypes.shape({
width: PropTypes.number,
height: PropTypes.number
Expand Down