mattermost-mobile/app/components/sidebars/main/drawer_swipper/drawer_swiper.js
Elias Nahum cdd7000361
MM-16398 Fix Team/Channel sidebar dots overlap last item (#2975)
* MM-16398 Fix Team/Channel sidebar dots overlap last item

* Feedback review and Tablet support

* Only center dots by width on iPhone X series devices
2019-07-17 11:30:12 -04:00

91 lines
2.5 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import {changeOpacity} from 'app/utils/theme';
import Swiper from 'app/components/swiper';
export default class DrawerSwiper extends Component {
static propTypes = {
children: PropTypes.node.isRequired,
drawerWidth: PropTypes.number.isRequired,
onPageSelected: PropTypes.func,
showTeams: PropTypes.bool.isRequired,
theme: PropTypes.object.isRequired,
drawerOpened: PropTypes.bool,
};
static defaultProps = {
onPageSelected: () => true,
openDrawerOffset: 0,
};
swiperRef = React.createRef();
shouldComponentUpdate(nextProps) {
const {drawerWidth, showTeams, theme} = this.props;
return nextProps.drawerWidth !== drawerWidth ||
nextProps.showTeams !== showTeams ||
nextProps.theme !== theme ||
nextProps.drawerOpened !== this.props.drawerOpened;
}
runOnLayout = (shouldRun = true) => {
if (this.refs.swiper) {
this.refs.swiper.runOnLayout = shouldRun;
}
};
resetPage = (animated = false) => {
if (this.swiperRef?.current) {
this.swiperRef.current.scrollToIndex(1, animated);
}
};
scrollToStart = () => {
if (this.swiperRef?.current) {
this.swiperRef.current.scrollToStart();
}
};
swiperPageSelected = (index) => {
this.props.onPageSelected(index);
};
showTeamsPage = () => {
if (this.swiperRef?.current) {
this.swiperRef.current.scrollToIndex(0, true);
}
};
render() {
const {
children,
drawerWidth,
showTeams,
theme,
} = this.props;
const initialPage = React.Children.count(children) - 1;
return (
<Swiper
ref={this.swiperRef}
initialPage={initialPage}
onIndexChanged={this.swiperPageSelected}
width={drawerWidth}
style={{backgroundColor: theme.sidebarBg}}
activeDotColor={theme.sidebarText}
dotColor={changeOpacity(theme.sidebarText, 0.5)}
scrollEnabled={showTeams}
showsPagination={showTeams}
keyboardShouldPersistTaps={'always'}
>
{children}
</Swiper>
);
}
}