152 lines
4.0 KiB
JavaScript
152 lines
4.0 KiB
JavaScript
import React, { type Node, PureComponent } from 'react';
|
|
import { SafeAreaView, ScrollView, View } from 'react-native';
|
|
|
|
import { SlidingView } from '../../../react';
|
|
import { connect } from '../../../redux';
|
|
import { hideSheet } from '../../actions';
|
|
|
|
import { bottomSheetStyles as styles } from './styles';
|
|
|
|
/**
|
|
* The type of {@code BottomSheet}'s React {@code Component} prop types.
|
|
*/
|
|
type Props = {
|
|
|
|
/**
|
|
* Whether to add padding to scroll view.
|
|
*/
|
|
addScrollViewPadding?: boolean,
|
|
|
|
/**
|
|
* The children to be displayed within this component.
|
|
*/
|
|
children: Node,
|
|
|
|
/**
|
|
* Redux Dispatch function.
|
|
*/
|
|
dispatch: Function,
|
|
|
|
/**
|
|
* Handler for the cancel event, which happens when the user dismisses
|
|
* the sheet.
|
|
*/
|
|
onCancel: ?Function,
|
|
|
|
/**
|
|
* Function to render a bottom sheet header element, if necessary.
|
|
*/
|
|
renderHeader: ?Function,
|
|
|
|
/**
|
|
* Function to render a bottom sheet footer element, if necessary.
|
|
*/
|
|
renderFooter: ?Function,
|
|
|
|
/**
|
|
* Whether to show sliding view or not.
|
|
*/
|
|
showSlidingView?: boolean,
|
|
|
|
/**
|
|
* The component's external style.
|
|
*/
|
|
style: Object
|
|
};
|
|
|
|
/**
|
|
* A component emulating Android's BottomSheet.
|
|
*/
|
|
class BottomSheet extends PureComponent<Props> {
|
|
/**
|
|
* Default values for {@code BottomSheet} component's properties.
|
|
*
|
|
* @static
|
|
*/
|
|
static defaultProps = {
|
|
addScrollViewPadding: true,
|
|
showSlidingView: true
|
|
};
|
|
|
|
/**
|
|
* Initializes a new instance.
|
|
*
|
|
* @param {Props} props - The React {@code Component} props to initialize
|
|
* the new instance with.
|
|
*/
|
|
constructor(props: Props) {
|
|
super(props);
|
|
|
|
this._onCancel = this._onCancel.bind(this);
|
|
}
|
|
|
|
/**
|
|
* Handles the cancel event, when the user dismissed the sheet. By default we close it.
|
|
*
|
|
* @returns {void}
|
|
*/
|
|
_onCancel() {
|
|
if (this.props.onCancel) {
|
|
this.props.onCancel();
|
|
} else {
|
|
this.props.dispatch(hideSheet());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Implements React's {@link Component#render()}.
|
|
*
|
|
* @inheritdoc
|
|
* @returns {ReactElement}
|
|
*/
|
|
render() {
|
|
const {
|
|
addScrollViewPadding,
|
|
renderHeader,
|
|
renderFooter,
|
|
showSlidingView,
|
|
style
|
|
} = this.props;
|
|
|
|
return (
|
|
<SlidingView
|
|
accessibilityRole = 'menu'
|
|
accessibilityViewIsModal = { true }
|
|
onHide = { this._onCancel }
|
|
position = 'bottom'
|
|
show = { showSlidingView }>
|
|
<View
|
|
pointerEvents = 'box-none'
|
|
style = { styles.sheetContainer }>
|
|
<View
|
|
pointerEvents = 'box-none'
|
|
style = { styles.sheetAreaCover } />
|
|
{ renderHeader && renderHeader() }
|
|
<SafeAreaView
|
|
style = { [
|
|
styles.sheetItemContainer,
|
|
renderHeader
|
|
? styles.sheetHeader
|
|
: styles.sheet,
|
|
renderFooter && styles.sheetFooter,
|
|
style
|
|
] }>
|
|
<ScrollView
|
|
bounces = { false }
|
|
showsVerticalScrollIndicator = { false }
|
|
style = { [
|
|
renderFooter && styles.sheet,
|
|
addScrollViewPadding && styles.scrollView
|
|
] } >
|
|
{ this.props.children }
|
|
</ScrollView>
|
|
{ renderFooter && renderFooter() }
|
|
</SafeAreaView>
|
|
</View>
|
|
</SlidingView>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default connect()(BottomSheet);
|