aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/modal.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-12-05 10:00:11 +0800
committerDan <danjm.com@gmail.com>2017-12-05 11:06:54 +0800
commit9db00fa507c04180f6425cc3b1e3187afa193ab8 (patch)
tree7fd3e4cd85290bd03299f55f9af3335f538e09a8 /ui/app/components/modals/modal.js
parent730d7f84ca8c202674677a6a6a94290e57ad9e3a (diff)
downloadtangerine-wallet-browser-9db00fa507c04180f6425cc3b1e3187afa193ab8.tar
tangerine-wallet-browser-9db00fa507c04180f6425cc3b1e3187afa193ab8.tar.gz
tangerine-wallet-browser-9db00fa507c04180f6425cc3b1e3187afa193ab8.tar.bz2
tangerine-wallet-browser-9db00fa507c04180f6425cc3b1e3187afa193ab8.tar.lz
tangerine-wallet-browser-9db00fa507c04180f6425cc3b1e3187afa193ab8.tar.xz
tangerine-wallet-browser-9db00fa507c04180f6425cc3b1e3187afa193ab8.tar.zst
tangerine-wallet-browser-9db00fa507c04180f6425cc3b1e3187afa193ab8.zip
Show user notifications after switch between UIs
Diffstat (limited to 'ui/app/components/modals/modal.js')
-rw-r--r--ui/app/components/modals/modal.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/ui/app/components/modals/modal.js b/ui/app/components/modals/modal.js
index f2909f3c3..2ff6accaa 100644
--- a/ui/app/components/modals/modal.js
+++ b/ui/app/components/modals/modal.js
@@ -16,6 +16,7 @@ const NewAccountModal = require('./new-account-modal')
const ShapeshiftDepositTxModal = require('./shapeshift-deposit-tx-modal.js')
const HideTokenConfirmationModal = require('./hide-token-confirmation-modal')
const CustomizeGasModal = require('../customize-gas-modal')
+const NotifcationModal = require('./notification-modal')
const accountModalStyle = {
mobileModalStyle: {
@@ -133,6 +134,42 @@ const MODALS = {
},
},
+ BETA_UI_NOTIFICATION_MODAL: {
+ contents: [
+ h(NotifcationModal, {
+ header: 'Welcome to the New UI (Beta)',
+ message: `You are now using the new Metamask UI. Take a look around, try out new features like sending tokens,
+ and let us know if you have any issues.`,
+ }),
+ ],
+ mobileModalStyle: {
+ width: '95%',
+ top: isPopupOrNotification() === 'popup' ? '52vh' : '36.5vh',
+ },
+ laptopModalStyle: {
+ width: '449px',
+ top: 'calc(33% + 45px)',
+ },
+ },
+
+ OLD_UI_NOTIFICATION_MODAL: {
+ contents: [
+ h(NotifcationModal, {
+ header: 'Old UI',
+ message: `You have returned to the old UI. You can switch back to the New UI through the option in the top
+ right dropdown menu.`,
+ }),
+ ],
+ mobileModalStyle: {
+ width: '95%',
+ top: isPopupOrNotification() === 'popup' ? '52vh' : '36.5vh',
+ },
+ laptopModalStyle: {
+ width: '449px',
+ top: 'calc(33% + 45px)',
+ },
+ },
+
NEW_ACCOUNT: {
contents: [
h(NewAccountModal, {}, []),