You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
3.5 KiB
125 lines
3.5 KiB
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import Button from '../../../components/ui/button'
|
|
|
|
export default class InfoTab extends PureComponent {
|
|
state = {
|
|
version: global.platform.getVersion(),
|
|
}
|
|
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
}
|
|
|
|
renderInfoLinks () {
|
|
const { t } = this.context
|
|
|
|
return (
|
|
<div className="settings-page__content-item settings-page__content-item--without-height">
|
|
<div className="info-tab__link-header">
|
|
{ t('links') }
|
|
</div>
|
|
<div className="info-tab__link-item">
|
|
<Button
|
|
type="link"
|
|
href="https://metamask.io/privacy.html"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="info-tab__link-text"
|
|
>
|
|
{ t('privacyMsg') }
|
|
</Button>
|
|
</div>
|
|
<div className="info-tab__link-item">
|
|
<Button
|
|
type="link"
|
|
href="https://metamask.io/terms.html"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="info-tab__link-text"
|
|
>
|
|
{ t('terms') }
|
|
</Button>
|
|
</div>
|
|
<div className="info-tab__link-item">
|
|
<Button
|
|
type="link"
|
|
href="https://metamask.io/attributions.html"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="info-tab__link-text"
|
|
>
|
|
{ t('attributions') }
|
|
</Button>
|
|
</div>
|
|
<hr className="info-tab__separator" />
|
|
<div className="info-tab__link-item">
|
|
<Button
|
|
type="link"
|
|
href="https://support.metamask.io"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="info-tab__link-text"
|
|
>
|
|
{ t('supportCenter') }
|
|
</Button>
|
|
</div>
|
|
<div className="info-tab__link-item">
|
|
<Button
|
|
type="link"
|
|
href="https://metamask.io/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="info-tab__link-text"
|
|
>
|
|
{ t('visitWebSite') }
|
|
</Button>
|
|
</div>
|
|
<div className="info-tab__link-item">
|
|
<Button
|
|
type="link"
|
|
href="https://metamask.zendesk.com/hc/en-us/requests/new"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="info-tab__link-text"
|
|
>
|
|
{ t('contactUs') }
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
render () {
|
|
const { t } = this.context
|
|
|
|
return (
|
|
<div className="settings-page__body">
|
|
<div className="settings-page__content-row">
|
|
<div className="settings-page__content-item settings-page__content-item--without-height">
|
|
<div className="info-tab__logo-wrapper">
|
|
<img
|
|
src="images/info-logo.png"
|
|
className="info-tab__logo"
|
|
/>
|
|
</div>
|
|
<div className="info-tab__item">
|
|
<div className="info-tab__version-header">
|
|
{ t('metamaskVersion') }
|
|
</div>
|
|
<div className="info-tab__version-number">
|
|
{ this.state.version }
|
|
</div>
|
|
</div>
|
|
<div className="info-tab__item">
|
|
<div className="info-tab__about">
|
|
{ t('builtInCalifornia') }
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{ this.renderInfoLinks() }
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|