about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/column_collapsable.js
blob: 44ec63af86568db04fe977b36358b73539636c1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import React from 'react';
import PropTypes from 'prop-types';

class ColumnCollapsable extends React.PureComponent {

  static propTypes = {
    icon: PropTypes.string.isRequired,
    title: PropTypes.string,
    fullHeight: PropTypes.number.isRequired,
    children: PropTypes.node,
    onCollapse: PropTypes.func
  };

  state = {
    collapsed: true
  };

  handleToggleCollapsed = () => {
    const currentState = this.state.collapsed;

    this.setState({ collapsed: !currentState });

    if (!currentState && this.props.onCollapse) {
      this.props.onCollapse();
    }
  }

  render () {
    const { icon, title, fullHeight, children } = this.props;
    const { collapsed } = this.state;

    return (
      <div className={`column-collapsable ${collapsed ? 'collapsed' : ''}`}>
        <div role='button' tabIndex='0' title={`${title}`} className='column-collapsable__button column-icon' onClick={this.handleToggleCollapsed}>
          <i className={`fa fa-${icon}`} />
        </div>

        <div className='column-collapsable__content' style={{ height: `${fullHeight}px` }}>
          {children}
        </div>
      </div>
    );
  }
}

export default ColumnCollapsable;