| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 | // @flow
import React, { Component, type Node } from 'react';
import { Modal, TouchableWithoutFeedback, View } from 'react-native';
import { bottomSheetStyles as styles } from './styles';
/**
 * The type of {@code BottomSheet}'s React {@code Component} prop types.
 */
type Props = {
    /**
     * The children to be displayed within this component.
     */
    children: Node,
    /**
     * Handler for the cancel event, which happens when the user dismisses
     * the sheet.
     */
    onCancel: ?Function
};
/**
 * A component emulating Android's BottomSheet. For all intents and purposes,
 * this component has been designed to work and behave as a {@code Dialog}.
 */
export default class BottomSheet extends Component<Props> {
    /**
     * Initializes a new {@code BottomSheet} instance.
     *
     * @inheritdoc
     */
    constructor(props: Props) {
        super(props);
        this._onCancel = this._onCancel.bind(this);
    }
    /**
     * Implements React's {@link Component#render()}.
     *
     * @inheritdoc
     * @returns {ReactElement}
     */
    render() {
        return [
            <View
                key = 'overlay'
                style = { styles.overlay } />,
            <Modal
                animationType = { 'slide' }
                key = 'modal'
                onRequestClose = { this._onCancel }
                supportedOrientations = { [
                    'landscape',
                    'portrait'
                ] }
                transparent = { true }
                visible = { true }>
                <View style = { styles.container }>
                    <TouchableWithoutFeedback
                        onPress = { this._onCancel } >
                        <View style = { styles.backdrop } />
                    </TouchableWithoutFeedback>
                    <View style = { styles.sheet }>
                        { this.props.children }
                    </View>
                </View>
            </Modal>
        ];
    }
    _onCancel: () => void;
    /**
     * Cancels the dialog by calling the onCancel prop callback.
     *
     * @private
     * @returns {void}
     */
    _onCancel() {
        const { onCancel } = this.props;
        onCancel && onCancel();
    }
}
 |