aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/info.js
blob: 49ff9f24adf6ca68ef77a78703a8ddce3aacda20 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                     
                                  



                               
                        


                      
                                           

                                              
 
          




                                 




                                                      
                                            
            








                                                                   
            
            
                                   
 

                                 

                      

                                     
                                      

             

                    
                                  































                                                                         
                   
                    
                                
                           
              
             
 
                    
                    
                                  
               
             
                                      
                             
                                                              
                                   
                                               
                 
 



                                               

                                      
                                               
                            



                                                       
                      
                     
                                                      

                   
 





                                                            
                   



                                       
                                   
                                                                              
                                
                 
               





           
                                                  
                                     
 
 
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 () {
  const state = this.props
  const version = global.platform.getVersion()

  return (
    h('.flex-column.flex-grow', {
      style: {
        maxWidth: '400px',
      },
    }, [

      // 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',
          },
        }, [
          // current version number

          h('.info.info-gray', [
            h('div', 'Metamask'),
            h('div', {
              style: {
                marginBottom: '10px',
              },
            }, `Version: ${version}`),
          ]),

          h('div', {
            style: {
              marginBottom: '5px',
            }},
            [
              h('div', [
                h('a', {
                  href: 'https://metamask.io/privacy.html',
                  target: '_blank',
                  onClick (event) { this.navigateTo(event.target.href) },
                }, [
                  h('div.info', 'Privacy Policy'),
                ]),
              ]),
              h('div', [
                h('a', {
                  href: 'https://metamask.io/terms.html',
                  target: '_blank',
                  onClick (event) { this.navigateTo(event.target.href) },
                }, [
                  h('div.info', 'Terms of Use'),
                ]),
              ]),
              h('div', [
                h('a', {
                  href: 'https://metamask.io/attributions.html',
                  target: '_blank',
                  onClick (event) { this.navigateTo(event.target.href) },
                }, [
                  h('div.info', 'Attributions'),
                ]),
              ]),
            ]
          ),

          h('hr', {
            style: {
              margin: '10px 0 ',
              width: '7em',
            },
          }),

          h('div', {
            style: {
              paddingLeft: '30px',
            }},
            [
              h('div.fa.fa-support', [
                h('a.info', {
                  href: 'https://metamask.helpscoutdocs.com/',
                  target: '_blank',
                }, 'Visit our Knowledge Base'),
              ]),

              h('div', [
                h('a', {
                  href: 'https://metamask.io/',
                  target: '_blank',
                }, [
                  h('img.icon-size', {
                    src: 'images/icon-128.png',
                    style: {
                      // IE6-9
                      filter: 'grayscale(100%)',
                      // Microsoft Edge and Firefox 35+
                      WebkitFilter: 'grayscale(100%)',
                    },
                  }),
                  h('div.info', 'Visit our web site'),
                ]),
              ]),

              h('div', [
                h('.fa.fa-twitter', [
                  h('a.info', {
                    href: 'https://twitter.com/metamask_io',
                    target: '_blank',
                  }, 'Follow us on Twitter'),
                ]),
              ]),

              h('div.fa.fa-envelope', [
                h('a.info', {
                  target: '_blank',
                  href: 'mailto:support@metamask.io?subject=MetaMask Support',
                }, 'Email us!'),
              ]),
            ]),
        ]),
      ]),
    ])
  )
}

InfoScreen.prototype.navigateTo = function (url) {
  global.platform.openWindow({ url })
}