| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 | import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { connect } from 'react-redux';
import { closePanel } from '../actions';
/**
 * React Component for holding features in a side panel that slides in and out.
 *
 * @extends Component
 */
class SidePanel extends Component {
    /**
     * {@code SidePanel} component's property types.
     *
     * @static
     */
    static propTypes = {
        dispatch: PropTypes.func
    };
    /**
     * Initializes a new {@code SidePanel} instance.
     *
     * @param {Object} props - The read-only properties with which the new
     * instance is to be initialized.
     */
    constructor(props) {
        super(props);
        this._onCloseClick = this._onCloseClick.bind(this);
    }
    /**
     * Implements React's {@link Component#render()}.
     *
     * @inheritdoc
     * @returns {ReactElement}
     */
    render() {
        return (
            <div id = 'sideToolbarContainer'>
                <div
                    className = 'side-toolbar-close'
                    onClick = { this._onCloseClick }>
                    X
                </div>
            </div>
        );
    }
    /**
     * Callback invoked to hide {@code SidePanel}.
     *
     * @returns {void}
     */
    _onCloseClick() {
        this.props.dispatch(closePanel());
    }
}
export default connect()(SidePanel);
 |