aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/tabs/tabs.component.js
blob: d26dcff2f6d56873c9e9dd99726aa00ad36bb190 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import React, { Component } from 'react'
import PropTypes from 'prop-types'

export default class Tabs extends Component {
  static propTypes = {
    defaultActiveTabIndex: PropTypes.number,
    children: PropTypes.node,
  }

  constructor (props) {
    super(props)

    this.state = {
      activeTabIndex: props.defaultActiveTabIndex || 0,
    }
  }

  handleTabClick (tabIndex) {
    const { activeTabIndex } = this.state

    if (tabIndex !== activeTabIndex) {
      this.setState({
        activeTabIndex: tabIndex,
      })
    }
  }

  renderTabs () {
    const numberOfTabs = React.Children.count(this.props.children)

    return React.Children.map(this.props.children, (child, index) => {
      return child && React.cloneElement(child, {
        onClick: index => this.handleTabClick(index),
        tabIndex: index,
        isActive: numberOfTabs > 1 && index === this.state.activeTabIndex,
        key: index,
      })
    })
  }

  renderActiveTabContent () {
    const { children } = this.props
    const { activeTabIndex } = this.state

    return children[activeTabIndex]
      ? children[activeTabIndex].props.children
      : children.props.children
  }

  render () {
    return (
      <div className="tabs">
        <ul className="tabs__list">
          { this.renderTabs() }
        </ul>
        <div className="tabs__content">
          { this.renderActiveTabContent() }
        </div>
      </div>
    )
  }
}