aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/tab-bar.js
blob: 6295e7dd9dca304d5c9810ba2ff6948a538167ed (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
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits

module.exports = TabBar

inherits(TabBar, Component)
function TabBar () {
  Component.call(this)
}

TabBar.prototype.render = function () {
  const props = this.props
  const state = this.state || {}
  const { tabs = [], defaultTab, tabSelected } = props
  const { subview = defaultTab } = state

  return (
    h('.flex-row.space-around.text-transform-uppercase', {
      style: {
        background: '#EBEBEB',
        color: '#AEAEAE',
        paddingTop: '4px',
      },
    }, tabs.map((tab) => {
      const { key, content } = tab
      return h(subview === key ? '.activeForm' : '.inactiveForm.pointer', {
        onClick: () => {
          this.setState({ subview: key })
          tabSelected(key)
        },
      }, content)
    }))
  )
}