aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/panel.js
blob: 3efd3c661a40efd53add6ec1889018c7e06097d8 (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
const inherits = require('util').inherits
const Component = require('react').Component
const h = require('react-hyperscript')
const Identicon = require('./identicon')

module.exports = Panel

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

Panel.prototype.render = function () {
  var state = this.props

  var style = {
    flex: '1 0 auto',
  }

  if (state.onClick) style.cursor = 'pointer'

  return (
    h('.identity-panel.flex-row.flex-space-between', {
      style,
      onClick: state.onClick,
    }, [

      // account identicon
      h('.identicon-wrapper.flex-column.select-none', [
        // h(Identicon, {
        //   address: state.identiconKey,
        // }),
        h('span.font-small', state.identiconLabel),
      ]),

      // account address, balance
      h('.identity-data.flex-column.flex-justify-center.flex-grow.select-none', [

        state.attributes.map((attr) => {
          return h('.flex-row.flex-space-between', {
            key: '' + Math.round(Math.random() * 1000000),
          }, [
            h('label.font-small.no-select', attr.key),
            h('span.font-small', attr.value),
          ])
        }),
      ]),

      // outlet for inserting additional stuff
      state.children,
    ])
  )
}