1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/info.js

163 lines
4.4 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 22:18:32 +02:00
function mapStateToProps (state) {
return {}
}
inherits(InfoScreen, Component)
2016-06-21 22:18:32 +02:00
function InfoScreen () {
Component.call(this)
}
2016-06-21 22:18:32 +02:00
InfoScreen.prototype.render = function () {
const state = this.props
const version = global.platform.getVersion()
2016-07-01 03:23:05 +02:00
return (
2017-07-27 22:57:01 +02:00
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())
2016-06-21 22:18:32 +02: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 22:18:32 +02:00
},
}, [
2016-06-21 22:18:32 +02:00
// current version number
2016-06-21 22:18:32 +02:00
h('.info.info-gray', [
h('div', 'Metamask'),
h('div', {
style: {
2016-06-21 22:18:32 +02:00
marginBottom: '10px',
},
}, `Version: ${version}`),
]),
2016-10-05 06:46:33 +02:00
h('div', {
style: {
2017-06-09 01:02:23 +02:00
marginBottom: '5px',
2016-10-05 06:46:33 +02:00
}},
[
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 22:18:32 +02:00
h('hr', {
style: {
2017-06-09 01:02:23 +02:00
margin: '10px 0 ',
width: '7em',
2016-06-21 22:18:32 +02:00
},
}),
2016-06-21 22:18:32 +02:00
h('div', {
style: {
2016-06-09 01:08:55 +02:00
paddingLeft: '30px',
}},
2016-06-21 22:18:32 +02:00
[
2017-07-27 22:58:17 +02:00
h('div.fa.fa-support', [
2017-06-09 01:02:23 +02:00
h('a.info', {
2017-09-01 20:01:53 +02:00
href: 'https://support.metamask.com',
2017-06-09 01:02:23 +02:00
target: '_blank',
2017-07-27 22:58:17 +02:00
}, 'Visit our Support Center'),
2017-06-09 01:02:23 +02:00
]),
2017-07-27 22:57:01 +02:00
2016-06-21 22:18:32 +02:00
h('div', [
h('a', {
href: 'https://metamask.io/',
target: '_blank',
}, [
h('img.icon-size', {
src: 'images/icon-128.png',
2016-10-05 06:46:33 +02:00
style: {
// IE6-9
filter: 'grayscale(100%)',
// Microsoft Edge and Firefox 35+
WebkitFilter: 'grayscale(100%)',
2016-10-05 06:50:56 +02:00
},
2016-06-21 22:18:32 +02:00
}),
2016-06-23 00:31:02 +02:00
h('div.info', 'Visit our web site'),
2016-06-21 22:18:32 +02:00
]),
]),
2017-07-27 22:57:01 +02:00
2016-06-21 22:18:32 +02:00
h('div.fa.fa-slack', [
h('a.info', {
href: 'http://slack.metamask.io',
target: '_blank',
}, 'Join the conversation on Slack'),
]),
2017-07-27 22:57:01 +02:00
h('div', [
h('.fa.fa-twitter', [
h('a.info', {
href: 'https://twitter.com/metamask_io',
target: '_blank',
}, 'Follow us on Twitter'),
2017-07-27 22:58:17 +02:00
]),
2016-06-21 22:18:32 +02:00
]),
h('div.fa.fa-envelope', [
h('a.info', {
target: '_blank',
2016-06-23 00:31:02 +02:00
style: { width: '85vw' },
2017-06-22 00:55:22 +02:00
href: 'mailto:help@metamask.io?subject=Feedback',
2016-10-05 06:46:33 +02:00
}, 'Email us!'),
2016-06-21 22:18:32 +02:00
]),
]),
]),
]),
])
)
}
2016-06-21 22:18:32 +02:00
InfoScreen.prototype.navigateTo = function (url) {
global.platform.openWindow({ url })
}