aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages
diff options
context:
space:
mode:
authorbrunobar79 <brunobar79@gmail.com>2018-07-19 10:57:47 +0800
committerbrunobar79 <brunobar79@gmail.com>2018-07-19 10:57:47 +0800
commit49d1bdea8a47139cc814d3c49aa97bf2d542d3d5 (patch)
tree1481fc83f9312f96a2c2315c880d71029d7b78f8 /ui/app/components/pages
parentcbb14f1d5e50c10865838a98452ecfb4b6cb8d6a (diff)
downloadtangerine-wallet-browser-49d1bdea8a47139cc814d3c49aa97bf2d542d3d5.tar.gz
tangerine-wallet-browser-49d1bdea8a47139cc814d3c49aa97bf2d542d3d5.tar.zst
tangerine-wallet-browser-49d1bdea8a47139cc814d3c49aa97bf2d542d3d5.zip
design done
Diffstat (limited to 'ui/app/components/pages')
-rw-r--r--ui/app/components/pages/create-account/connect-hardware/connect-screen.js109
1 files changed, 86 insertions, 23 deletions
diff --git a/ui/app/components/pages/create-account/connect-hardware/connect-screen.js b/ui/app/components/pages/create-account/connect-hardware/connect-screen.js
index d4c479a58..47288c73f 100644
--- a/ui/app/components/pages/create-account/connect-hardware/connect-screen.js
+++ b/ui/app/components/pages/create-account/connect-hardware/connect-screen.js
@@ -27,34 +27,97 @@ class ConnectScreen extends Component {
)
}
+ renderHeader () {
+ return (
+ h('div.hw-connect__header', {}, [
+ h('h3.hw-connect__header__title', {}, this.context.t(`hardwareSupport`)),
+ h('p.hw-connect__header__msg', {}, this.context.t(`hardwareSupportMsg`)),
+ ])
+ )
+ }
+
+ renderTrezorAffiliateLink () {
+ return h('div.hw-connect__get-trezor', {}, [
+ h('p.hw-connect__get-trezor__msg', {}, this.context.t(`dontHaveATrezorWallet`)),
+ h('a.hw-connect__get-trezor__link', {
+ href: 'https://shop.trezor.io/?a=metamask',
+ target: '_blank',
+ }, this.context.t('orderOneHere')),
+ ])
+ }
+
+ renderConnectToTrezorButton () {
+ return h(
+ 'button.btn-primary.btn--large',
+ { onClick: this.props.connectToTrezor.bind(this) },
+ this.props.btnText
+ )
+ }
+
+ renderLearnMore () {
+ return (
+ h('p.hw-connect__learn-more', {}, [
+ this.context.t('learnMore'),
+ h('img.hw-connect__learn-more__arrow', { src: 'images/caret-right.svg'}),
+ ])
+ )
+ }
+
+ renderTutorialSteps () {
+ const steps = [
+ {
+ asset: 'hardware-wallet-step-1',
+ dimensions: {width: '225px', height: '75px'},
+ },
+ {
+ asset: 'hardware-wallet-step-2',
+ dimensions: {width: '300px', height: '100px'},
+ },
+ {
+ asset: 'hardware-wallet-step-3',
+ dimensions: {width: '120px', height: '90px'},
+ },
+ ]
+
+ return h('.hw-tutorial', {},
+ steps.map((step, i) => (
+ h('div.hw-connect', [
+ h('h3.hw-connect__title', {}, this.context.t(`step${i + 1}HardwareWallet`)),
+ h('p.hw-connect__msg', {}, this.context.t(`step${i + 1}HardwareWalletMsg`)),
+ h('img.hw-connect__step-asset', { src: `images/${step.asset}.svg`, ...step.dimensions }),
+ ])
+ ))
+ )
+ }
+
+ renderFooter () {
+ return (
+ h('div.hw-connect__footer', {}, [
+ h('h3.hw-connect__footer__title', {}, this.context.t(`readyToConnect`)),
+ this.renderConnectToTrezorButton(),
+ h('p.hw-connect__footer__msg', {}, [
+ this.context.t(`havingTroubleConnecting`),
+ h('a.hw-connect__footer__link', {
+ href: '#',
+ target: '_blank',
+ }, this.context.t('getHelp')),
+ ]),
+ ])
+ )
+ }
+
renderConnectScreen () {
return (
h('div.new-account-connect-form', {}, [
- h('div.hw-connect', [
- h('h3.hw-connect__title', {}, this.context.t('trezorHardwareWallet')),
- h('p.hw-connect__msg', {}, this.context.t('connectToTrezorHelp')),
- h('p.hw-connect__msg', {}, [
- this.context.t('connectToTrezorTrouble'),
- h('a.hw-connect__link', {
- href: 'https://support.metamask.io/',
- target: '_blank',
- }, ` ${this.context.t('learnMore')}`),
- ]),
- ]),
- h(
- 'button.btn-primary.btn--large',
- { onClick: this.props.connectToTrezor.bind(this) },
- this.props.btnText
- ),
- h('div.hw-connect__get-trezor', {}, [
- h('a', {
- href: 'https://shop.trezor.io/?a=metamask',
- target: '_blank',
- }, this.context.t('getYourTrezor')),
- ]),
+ this.renderHeader(),
+ this.renderTrezorAffiliateLink(),
+ this.renderConnectToTrezorButton(),
+ this.renderLearnMore(),
+ this.renderTutorialSteps(),
+ this.renderFooter(),
])
)
- }
+ }
render () {
if (this.props.browserSupported) {