aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-09-30 03:03:29 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-10-03 09:09:09 +0800
commitd206f183f5a07787535acd196c506145f00a199e (patch)
tree22bb33f551d488ef92628296b8871cd7557d771c /ui/app/components/modals
parent47ebcbb2ed09a4cd4b062c5fa4cb6d259369149f (diff)
downloadtangerine-wallet-browser-d206f183f5a07787535acd196c506145f00a199e.tar
tangerine-wallet-browser-d206f183f5a07787535acd196c506145f00a199e.tar.gz
tangerine-wallet-browser-d206f183f5a07787535acd196c506145f00a199e.tar.bz2
tangerine-wallet-browser-d206f183f5a07787535acd196c506145f00a199e.tar.lz
tangerine-wallet-browser-d206f183f5a07787535acd196c506145f00a199e.tar.xz
tangerine-wallet-browser-d206f183f5a07787535acd196c506145f00a199e.tar.zst
tangerine-wallet-browser-d206f183f5a07787535acd196c506145f00a199e.zip
Hide token confirmation modal ui
Diffstat (limited to 'ui/app/components/modals')
-rw-r--r--ui/app/components/modals/hide-token-confirmation-modal.js66
-rw-r--r--ui/app/components/modals/modal.js15
2 files changed, 81 insertions, 0 deletions
diff --git a/ui/app/components/modals/hide-token-confirmation-modal.js b/ui/app/components/modals/hide-token-confirmation-modal.js
new file mode 100644
index 000000000..d3f06b483
--- /dev/null
+++ b/ui/app/components/modals/hide-token-confirmation-modal.js
@@ -0,0 +1,66 @@
+const Component = require('react').Component
+const h = require('react-hyperscript')
+const inherits = require('util').inherits
+const connect = require('react-redux').connect
+const actions = require('../../actions')
+const Identicon = require('../identicon')
+
+function mapStateToProps (state) {
+ return {
+ network: state.metamask.network,
+ token: state.appState.modal.modalState.token,
+ }
+}
+
+function mapDispatchToProps (dispatch) {
+ return {}
+}
+
+inherits(HideTokenConfirmationModal, Component)
+function HideTokenConfirmationModal () {
+ Component.call(this)
+
+ this.state = {}
+}
+
+module.exports = connect(mapStateToProps, mapDispatchToProps)(HideTokenConfirmationModal)
+
+HideTokenConfirmationModal.prototype.render = function () {
+ const { token, network } = this.props
+ const { symbol, address } = token
+
+ return h('div.hide-token-confirmation', {}, [
+ h('div.hide-token-confirmation__container', {
+ }, [
+ h('div.hide-token-confirmation__title', {}, [
+ 'Hide Token?',
+ ]),
+
+ h(Identicon, {
+ className: 'hide-token-confirmation__identicon',
+ diameter: 45,
+ address,
+ network,
+ }),
+
+ h('div.hide-token-confirmation__symbol', {}, symbol),
+
+ h('div.hide-token-confirmation__copy', {}, [
+ 'You can add this token back in the future by going go to “Add token” in your accounts options menu.',
+ ]),
+
+ h('div.hide-token-confirmation__buttons', {}, [
+ h('button.btn-clear', {
+ onClick: () => {},
+ }, [
+ 'CANCEL',
+ ]),
+ h('button.btn-clear', {
+ onClick: () => {},
+ }, [
+ 'HIDE',
+ ]),
+ ]),
+ ]),
+ ])
+}
diff --git a/ui/app/components/modals/modal.js b/ui/app/components/modals/modal.js
index 765e46312..7247d840e 100644
--- a/ui/app/components/modals/modal.js
+++ b/ui/app/components/modals/modal.js
@@ -14,6 +14,7 @@ const EditAccountNameModal = require('./edit-account-name-modal')
const ExportPrivateKeyModal = require('./export-private-key-modal')
const NewAccountModal = require('./new-account-modal')
const ShapeshiftDepositTxModal = require('./shapeshift-deposit-tx-modal.js')
+const HideTokenConfirmationModal = require('./hide-token-confirmation-modal')
const accountModalStyle = {
mobileModalStyle: {
@@ -117,6 +118,20 @@ const MODALS = {
...accountModalStyle,
},
+ HIDE_TOKEN_CONFIRMATION: {
+ contents: [
+ h(HideTokenConfirmationModal, {}, []),
+ ],
+ mobileModalStyle: {
+ width: '95%',
+ top: isPopupOrNotification() === 'popup' ? '52vh' : '36.5vh',
+ },
+ laptopModalStyle: {
+ width: '449px',
+ top: 'calc(33% + 45px)',
+ },
+ },
+
NEW_ACCOUNT: {
contents: [
h(NewAccountModal, {}, []),