mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
119 lines
3.4 KiB
JavaScript
119 lines
3.4 KiB
JavaScript
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>
|
|
)
|
|
}
|
|
}
|