nifty-wallet/ui/app/info.js

159 lines
4.6 KiB
JavaScript
Raw Normal View History

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)
2016-06-21 13:18:32 -07:00
function mapStateToProps (state) {
return {}
}
inherits(InfoScreen, Component)
2016-06-21 13:18:32 -07:00
function InfoScreen () {
Component.call(this)
}
2016-06-21 13:18:32 -07:00
InfoScreen.prototype.render = function () {
const state = this.props
const version = global.platform.getVersion()
2016-06-30 18:23:05 -07:00
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())
2016-06-21 13:18:32 -07:00
},
}),
h('h2.page-subtitle', 'Info'),
]),
// main view
h('.flex-column.flex-justify-center.flex-grow.select-none', [
h('.flex-space-around', {
style: {
padding: '20px',
2016-06-21 13:18:32 -07:00
},
}, [
2016-06-21 13:18:32 -07:00
// current version number
2016-06-21 13:18:32 -07:00
h('.info.info-gray', [
h('div', 'Metamask'),
h('div', {
style: {
2016-06-21 13:18:32 -07:00
marginBottom: '10px',
},
}, `Version: ${version}`),
]),
2016-10-04 21:46:33 -07:00
h('div', {
style: {
marginBottom: '10px',
}},
[
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'),
]),
]),
]
),
2016-06-21 13:18:32 -07:00
h('hr', {
style: {
2016-06-21 13:18:32 -07:00
margin: '20px 0 ',
width: '7em',
2016-06-21 13:18:32 -07:00
},
}),
2016-06-21 13:18:32 -07:00
h('div', {
style: {
2016-06-08 16:08:55 -07:00
paddingLeft: '30px',
}},
2016-06-21 13:18:32 -07:00
[
h('div', [
h('a', {
href: 'https://metamask.io/',
target: '_blank',
onClick (event) { this.navigateTo(event.target.href) },
}, [
h('img.icon-size', {
src: 'images/icon-128.png',
2016-10-04 21:46:33 -07:00
style: {
// IE6-9
filter: 'grayscale(100%)',
// Microsoft Edge and Firefox 35+
WebkitFilter: 'grayscale(100%)',
2016-10-04 21:50:56 -07:00
},
2016-06-21 13:18:32 -07:00
}),
2016-06-22 15:31:02 -07:00
h('div.info', 'Visit our web site'),
2016-06-21 13:18:32 -07:00
]),
]),
h('div.fa.fa-slack', [
h('a.info', {
href: 'http://slack.metamask.io',
target: '_blank',
onClick (event) { this.navigateTo(event.target.href) },
}, 'Join the conversation on Slack'),
]),
h('div.fa.fa-twitter', [
h('a.info', {
href: 'https://twitter.com/metamask_io',
target: '_blank',
onClick (event) { this.navigateTo(event.target.href) },
}, 'Follow us on Twitter'),
]),
h('div.fa.fa-envelope', [
h('a.info', {
target: '_blank',
2016-06-22 15:31:02 -07:00
style: { width: '85vw' },
onClick () { this.navigateTo('mailto:[email protected]?subject=Feedback') },
2016-10-04 21:46:33 -07:00
}, 'Email us!'),
2016-06-21 13:18:32 -07:00
]),
h('div.fa.fa-github', [
h('a.info', {
2016-10-31 09:30:22 -07:00
href: 'https://github.com/MetaMask/metamask-plugin/issues',
2016-06-21 13:18:32 -07:00
target: '_blank',
onClick (event) { this.navigateTo(event.target.href) },
2016-10-04 21:46:33 -07:00
}, 'Start a thread on GitHub'),
2016-06-21 13:18:32 -07:00
]),
]),
]),
]),
])
)
}
2016-06-21 13:18:32 -07:00
InfoScreen.prototype.navigateTo = function (url) {
global.platform.openWindow({ url })
}