aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/info.js
blob: f6311b4cb86c43c27c68c52f2b10cc67ccef9b54 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
const inherits = require('util').inherits
const Component = require('react').Component
const h = require('react-hyperscript')
const connect = require('react-redux').connect
const actions = require('./actions')

module.exports = connect(mapStateToProps)(InfoScreen)

function mapStateToProps(state) {
  return {}
}

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

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

  return (
    h('.flex-column.flex-grow', [

      // subtitle and nav
      h('.section-title.flex-row.flex-center', [
        h('i.fa.fa-arrow-left.fa-lg.cursor-pointer', {
          onClick: (event) => {
            state.dispatch(actions.goHome())
          }
        }),
        h('h2.page-subtitle', 'Info'),
      ]),

      // main view
      h('.flex-column.flex-justify-center.flex-grow.select-none', [
        h('.flex-space-around', {
          style: {
            padding: '20px',
          }
        }, [

          h('div', [
            h('a', {
              href: 'https://consensys.slack.com/archives/team-metamask',
              target: '_blank',
              onClick(event) { this.navigateTo(event.target.href) },
            }, 'Join the conversation on Slack'),
          ]),

          h('div', [
            h('a', {
              href: 'https://metamask.io/',
              target: '_blank',
              onClick(event) { this.navigateTo(event.target.href) },
            }, 'Visit our web site'),
          ]),

          h('div', [
            h('a', {
              href: 'https://twitter.com/metamask_io',
              target: '_blank',
              onClick(event) { this.navigateTo(event.target.href) },
            }, 'Follow us on Twitter'),
          ]),

          h('div', [
            h('a', {
              href: 'mailto:hello@metamask.io?subject=Feedback',
              target: '_blank',
            }, 'Email us any questions or comments!'),
          ]),

          h('div', [
            h('a', {
              href: 'https://github.com/metamask/talk/issues',
              target: '_blank',
              onClick(event) { this.navigateTo(event.target.href) },
            }, 'Start a thread on Github'),
          ]),

        ]),
      ]),
    ])
  )
}

InfoScreen.prototype.navigateTo = function(url) {
  chrome.tabs.create({ url });
}