mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
* Add metametrics provider and util. * Add backend api and state for participating in metametrics. * Add frontend action for participating in metametrics. * Add metametrics opt-in screen. * Add metametrics events to first time flow. * Add metametrics events for route changes * Add metametrics events for send and confirm screens * Add metametrics events to dropdowns, transactions, log in and out, settings, sig requests and main screen * Ensures each log in is measured as a new visit by metametrics. * Ensure metametrics is called with an empty string for dimensions params if specified * Adds opt in metametrics modal after unlock for existing users * Adds settings page toggle for opting in and out of MetaMetrics * Switch metametrics dimensions to page level scope * Lint, test and translation fixes for metametrics. * Update design for metametrics opt-in screen * Complete responsive styling of metametrics-opt-in modal * Use new chart image on metrics opt in screens * Incorporate the metametrics opt-in screen into the new onboarding flow * Update e2e tests to accomodate metametrics changes * Mock out metametrics network requests in integration tests * Fix tx-list integration test to support metametrics provider. * Send number of tokens and accounts data with every metametrics event. * Update metametrics event descriptor schema and add new events. * Fix import tos bug and send gas button bug due to metametrics changes. * Various small fixes on the metametrics branch. * Add origin custom variable type to metametrics.util * Fix names of onboarding complete actions (metametrics). * Fix names of Metrics Options actions (metametrics). * Clean up code related to metametrics. * Fix bad merge conflict resolution and improve promise handling in sendMetaMetrics event and confrim tx base * Don't send a second metrics event if user has gone back during first time flow. * Collect metametrics on going back from onboarding create/import. * Add missing custom variable constants for metametrics * Fix metametrics provider * Make height of opt-in modal responsive. * Adjust text content for opt-in modal. * Update metametrics event names and clean up code in opt-in-modal * Put phishing warning step next to last in onboarding flow * Link terms of service on create and import screens of first time flow * Add subtext to options on the onboarding select action screen. * Fix styling of bullet points on end of onboarding screen. * Combine phishing warning and congratulations screens. * Fix placement of users if unlocking after an incomplete onboarding import flow. * Fix capitalization in opt-in screen * Fix last onboarding screen translations * Add link to 'Learn More' on the last screen of onboarding * Code clean up: metametrics branch * Update e2e tests for phishing warning step removal * e2e tests passing on metametrics branch * Different tracking urls for metametrics on development and prod
512 lines
12 KiB
JavaScript
512 lines
12 KiB
JavaScript
const Component = require('react').Component
|
|
const h = require('react-hyperscript')
|
|
const inherits = require('util').inherits
|
|
const connect = require('react-redux').connect
|
|
const FadeModal = require('boron').FadeModal
|
|
const actions = require('../../actions')
|
|
const { resetCustomData: resetCustomGasData } = require('../../ducks/gas.duck')
|
|
const isMobileView = require('../../../lib/is-mobile-view')
|
|
const { getEnvironmentType } = require('../../../../app/scripts/lib/util')
|
|
const { ENVIRONMENT_TYPE_POPUP } = require('../../../../app/scripts/lib/enums')
|
|
|
|
// Modal Components
|
|
const BuyOptions = require('./buy-options-modal')
|
|
const DepositEtherModal = require('./deposit-ether-modal')
|
|
const AccountDetailsModal = require('./account-details-modal')
|
|
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 NotifcationModal = require('./notification-modal')
|
|
const QRScanner = require('./qr-scanner')
|
|
|
|
import ConfirmRemoveAccount from './confirm-remove-account'
|
|
import ConfirmResetAccount from './confirm-reset-account'
|
|
import TransactionConfirmed from './transaction-confirmed'
|
|
import CancelTransaction from './cancel-transaction'
|
|
|
|
import MetaMetricsOptInModal from './metametrics-opt-in-modal'
|
|
import RejectTransactions from './reject-transactions'
|
|
import ClearApprovedOrigins from './clear-approved-origins'
|
|
import ConfirmCustomizeGasModal from '../gas-customization/gas-modal-page-container'
|
|
|
|
const modalContainerBaseStyle = {
|
|
transform: 'translate3d(-50%, 0, 0px)',
|
|
border: '1px solid #CCCFD1',
|
|
borderRadius: '8px',
|
|
backgroundColor: '#FFFFFF',
|
|
boxShadow: '0 2px 22px 0 rgba(0,0,0,0.2)',
|
|
}
|
|
|
|
const modalContainerLaptopStyle = {
|
|
...modalContainerBaseStyle,
|
|
width: '344px',
|
|
top: '15%',
|
|
}
|
|
|
|
const modalContainerMobileStyle = {
|
|
...modalContainerBaseStyle,
|
|
width: '309px',
|
|
top: '12.5%',
|
|
}
|
|
|
|
const accountModalStyle = {
|
|
mobileModalStyle: {
|
|
width: '95%',
|
|
// top: isPopupOrNotification() === 'popup' ? '52vh' : '36.5vh',
|
|
boxShadow: 'rgba(0, 0, 0, 0.15) 0px 2px 2px 2px',
|
|
borderRadius: '4px',
|
|
top: '10%',
|
|
transform: 'none',
|
|
left: '0',
|
|
right: '0',
|
|
margin: '0 auto',
|
|
},
|
|
laptopModalStyle: {
|
|
width: '360px',
|
|
// top: 'calc(33% + 45px)',
|
|
boxShadow: 'rgba(0, 0, 0, 0.15) 0px 2px 2px 2px',
|
|
borderRadius: '4px',
|
|
top: '10%',
|
|
transform: 'none',
|
|
left: '0',
|
|
right: '0',
|
|
margin: '0 auto',
|
|
},
|
|
contentStyle: {
|
|
borderRadius: '4px',
|
|
},
|
|
}
|
|
|
|
const MODALS = {
|
|
BUY: {
|
|
contents: [
|
|
h(BuyOptions, {}, []),
|
|
],
|
|
mobileModalStyle: {
|
|
width: '95%',
|
|
// top: isPopupOrNotification() === 'popup' ? '48vh' : '36.5vh',
|
|
transform: 'none',
|
|
left: '0',
|
|
right: '0',
|
|
margin: '0 auto',
|
|
boxShadow: '0 0 7px 0 rgba(0,0,0,0.08)',
|
|
top: '10%',
|
|
},
|
|
laptopModalStyle: {
|
|
width: '66%',
|
|
maxWidth: '550px',
|
|
top: 'calc(10% + 10px)',
|
|
left: '0',
|
|
right: '0',
|
|
margin: '0 auto',
|
|
boxShadow: '0 0 7px 0 rgba(0,0,0,0.08)',
|
|
transform: 'none',
|
|
},
|
|
},
|
|
|
|
DEPOSIT_ETHER: {
|
|
contents: [
|
|
h(DepositEtherModal, {}, []),
|
|
],
|
|
onHide: (props) => props.hideWarning(),
|
|
mobileModalStyle: {
|
|
width: '100%',
|
|
height: '100%',
|
|
transform: 'none',
|
|
left: '0',
|
|
right: '0',
|
|
margin: '0 auto',
|
|
boxShadow: '0 0 7px 0 rgba(0,0,0,0.08)',
|
|
top: '0',
|
|
display: 'flex',
|
|
},
|
|
laptopModalStyle: {
|
|
width: 'initial',
|
|
maxWidth: '850px',
|
|
top: 'calc(10% + 10px)',
|
|
left: '0',
|
|
right: '0',
|
|
margin: '0 auto',
|
|
boxShadow: '0 0 6px 0 rgba(0,0,0,0.3)',
|
|
borderRadius: '7px',
|
|
transform: 'none',
|
|
height: 'calc(80% - 20px)',
|
|
overflowY: 'hidden',
|
|
},
|
|
contentStyle: {
|
|
borderRadius: '7px',
|
|
height: '100%',
|
|
},
|
|
},
|
|
|
|
EDIT_ACCOUNT_NAME: {
|
|
contents: [
|
|
h(EditAccountNameModal, {}, []),
|
|
],
|
|
mobileModalStyle: {
|
|
width: '95%',
|
|
// top: isPopupOrNotification() === 'popup' ? '48vh' : '36.5vh',
|
|
top: '10%',
|
|
boxShadow: 'rgba(0, 0, 0, 0.15) 0px 2px 2px 2px',
|
|
transform: 'none',
|
|
left: '0',
|
|
right: '0',
|
|
margin: '0 auto',
|
|
},
|
|
laptopModalStyle: {
|
|
width: '375px',
|
|
// top: 'calc(30% + 10px)',
|
|
top: '10%',
|
|
boxShadow: 'rgba(0, 0, 0, 0.15) 0px 2px 2px 2px',
|
|
transform: 'none',
|
|
left: '0',
|
|
right: '0',
|
|
margin: '0 auto',
|
|
},
|
|
},
|
|
|
|
ACCOUNT_DETAILS: {
|
|
contents: [
|
|
h(AccountDetailsModal, {}, []),
|
|
],
|
|
...accountModalStyle,
|
|
},
|
|
|
|
EXPORT_PRIVATE_KEY: {
|
|
contents: [
|
|
h(ExportPrivateKeyModal, {}, []),
|
|
],
|
|
...accountModalStyle,
|
|
},
|
|
|
|
SHAPESHIFT_DEPOSIT_TX: {
|
|
contents: [
|
|
h(ShapeshiftDepositTxModal),
|
|
],
|
|
...accountModalStyle,
|
|
},
|
|
|
|
HIDE_TOKEN_CONFIRMATION: {
|
|
contents: [
|
|
h(HideTokenConfirmationModal, {}, []),
|
|
],
|
|
mobileModalStyle: {
|
|
width: '95%',
|
|
top: getEnvironmentType(window.location.href) === ENVIRONMENT_TYPE_POPUP ? '52vh' : '36.5vh',
|
|
},
|
|
laptopModalStyle: {
|
|
width: '449px',
|
|
top: 'calc(33% + 45px)',
|
|
},
|
|
},
|
|
|
|
CLEAR_APPROVED_ORIGINS: {
|
|
contents: h(ClearApprovedOrigins),
|
|
mobileModalStyle: {
|
|
...modalContainerMobileStyle,
|
|
},
|
|
laptopModalStyle: {
|
|
...modalContainerLaptopStyle,
|
|
},
|
|
contentStyle: {
|
|
borderRadius: '8px',
|
|
},
|
|
},
|
|
|
|
METAMETRICS_OPT_IN_MODAL: {
|
|
contents: h(MetaMetricsOptInModal),
|
|
mobileModalStyle: {
|
|
...modalContainerMobileStyle,
|
|
width: '100%',
|
|
height: '100%',
|
|
top: '0px',
|
|
},
|
|
laptopModalStyle: {
|
|
...modalContainerLaptopStyle,
|
|
top: '10%',
|
|
},
|
|
contentStyle: {
|
|
borderRadius: '8px',
|
|
},
|
|
},
|
|
|
|
OLD_UI_NOTIFICATION_MODAL: {
|
|
contents: [
|
|
h(NotifcationModal, {
|
|
header: 'oldUI',
|
|
message: 'oldUIMessage',
|
|
}),
|
|
],
|
|
mobileModalStyle: {
|
|
width: '95%',
|
|
top: getEnvironmentType(window.location.href) === ENVIRONMENT_TYPE_POPUP ? '52vh' : '36.5vh',
|
|
},
|
|
laptopModalStyle: {
|
|
width: '449px',
|
|
top: 'calc(33% + 45px)',
|
|
},
|
|
},
|
|
|
|
GAS_PRICE_INFO_MODAL: {
|
|
contents: [
|
|
h(NotifcationModal, {
|
|
header: 'gasPriceNoDenom',
|
|
message: 'gasPriceInfoModalContent',
|
|
}),
|
|
],
|
|
mobileModalStyle: {
|
|
width: '95%',
|
|
top: getEnvironmentType(window.location.href) === ENVIRONMENT_TYPE_POPUP ? '52vh' : '36.5vh',
|
|
},
|
|
laptopModalStyle: {
|
|
width: '449px',
|
|
top: 'calc(33% + 45px)',
|
|
},
|
|
},
|
|
|
|
GAS_LIMIT_INFO_MODAL: {
|
|
contents: [
|
|
h(NotifcationModal, {
|
|
header: 'gasLimit',
|
|
message: 'gasLimitInfoModalContent',
|
|
}),
|
|
],
|
|
mobileModalStyle: {
|
|
width: '95%',
|
|
top: getEnvironmentType(window.location.href) === ENVIRONMENT_TYPE_POPUP ? '52vh' : '36.5vh',
|
|
},
|
|
laptopModalStyle: {
|
|
width: '449px',
|
|
top: 'calc(33% + 45px)',
|
|
},
|
|
},
|
|
|
|
CONFIRM_RESET_ACCOUNT: {
|
|
contents: h(ConfirmResetAccount),
|
|
mobileModalStyle: {
|
|
...modalContainerMobileStyle,
|
|
},
|
|
laptopModalStyle: {
|
|
...modalContainerLaptopStyle,
|
|
},
|
|
contentStyle: {
|
|
borderRadius: '8px',
|
|
},
|
|
},
|
|
|
|
CONFIRM_REMOVE_ACCOUNT: {
|
|
contents: h(ConfirmRemoveAccount),
|
|
mobileModalStyle: {
|
|
...modalContainerMobileStyle,
|
|
},
|
|
laptopModalStyle: {
|
|
...modalContainerLaptopStyle,
|
|
},
|
|
contentStyle: {
|
|
borderRadius: '8px',
|
|
},
|
|
},
|
|
|
|
NEW_ACCOUNT: {
|
|
contents: [
|
|
h(NewAccountModal, {}, []),
|
|
],
|
|
mobileModalStyle: {
|
|
width: '95%',
|
|
// top: isPopupOrNotification() === 'popup' ? '52vh' : '36.5vh',
|
|
top: '10%',
|
|
transform: 'none',
|
|
left: '0',
|
|
right: '0',
|
|
margin: '0 auto',
|
|
},
|
|
laptopModalStyle: {
|
|
width: '449px',
|
|
// top: 'calc(33% + 45px)',
|
|
top: '10%',
|
|
transform: 'none',
|
|
left: '0',
|
|
right: '0',
|
|
margin: '0 auto',
|
|
},
|
|
},
|
|
|
|
CUSTOMIZE_GAS: {
|
|
contents: [
|
|
h(ConfirmCustomizeGasModal),
|
|
],
|
|
mobileModalStyle: {
|
|
width: '100vw',
|
|
height: '100vh',
|
|
top: '0',
|
|
transform: 'none',
|
|
left: '0',
|
|
right: '0',
|
|
margin: '0 auto',
|
|
},
|
|
laptopModalStyle: {
|
|
width: 'auto',
|
|
height: '0px',
|
|
top: '80px',
|
|
left: '0px',
|
|
transform: 'none',
|
|
margin: '0 auto',
|
|
position: 'relative',
|
|
},
|
|
contentStyle: {
|
|
borderRadius: '8px',
|
|
},
|
|
customOnHideOpts: {
|
|
action: resetCustomGasData,
|
|
args: [],
|
|
},
|
|
},
|
|
|
|
TRANSACTION_CONFIRMED: {
|
|
disableBackdropClick: true,
|
|
contents: h(TransactionConfirmed),
|
|
mobileModalStyle: {
|
|
...modalContainerMobileStyle,
|
|
},
|
|
laptopModalStyle: {
|
|
...modalContainerLaptopStyle,
|
|
},
|
|
contentStyle: {
|
|
borderRadius: '8px',
|
|
},
|
|
},
|
|
|
|
QR_SCANNER: {
|
|
contents: h(QRScanner),
|
|
mobileModalStyle: {
|
|
...modalContainerMobileStyle,
|
|
},
|
|
laptopModalStyle: {
|
|
...modalContainerLaptopStyle,
|
|
},
|
|
contentStyle: {
|
|
borderRadius: '8px',
|
|
},
|
|
},
|
|
|
|
CANCEL_TRANSACTION: {
|
|
contents: h(CancelTransaction),
|
|
mobileModalStyle: {
|
|
...modalContainerMobileStyle,
|
|
},
|
|
laptopModalStyle: {
|
|
...modalContainerLaptopStyle,
|
|
},
|
|
contentStyle: {
|
|
borderRadius: '8px',
|
|
},
|
|
},
|
|
|
|
REJECT_TRANSACTIONS: {
|
|
contents: h(RejectTransactions),
|
|
mobileModalStyle: {
|
|
...modalContainerMobileStyle,
|
|
},
|
|
laptopModalStyle: {
|
|
...modalContainerLaptopStyle,
|
|
},
|
|
contentStyle: {
|
|
borderRadius: '8px',
|
|
},
|
|
},
|
|
|
|
DEFAULT: {
|
|
contents: [],
|
|
mobileModalStyle: {},
|
|
laptopModalStyle: {},
|
|
},
|
|
}
|
|
|
|
const BACKDROPSTYLE = {
|
|
backgroundColor: 'rgba(0, 0, 0, 0.5)',
|
|
}
|
|
|
|
function mapStateToProps (state) {
|
|
return {
|
|
active: state.appState.modal.open,
|
|
modalState: state.appState.modal.modalState,
|
|
}
|
|
}
|
|
|
|
function mapDispatchToProps (dispatch) {
|
|
return {
|
|
hideModal: (customOnHideOpts) => {
|
|
dispatch(actions.hideModal())
|
|
if (customOnHideOpts && customOnHideOpts.action) {
|
|
dispatch(customOnHideOpts.action(...customOnHideOpts.args))
|
|
}
|
|
},
|
|
hideWarning: () => {
|
|
dispatch(actions.hideWarning())
|
|
},
|
|
|
|
}
|
|
}
|
|
|
|
// Global Modal Component
|
|
inherits(Modal, Component)
|
|
function Modal () {
|
|
Component.call(this)
|
|
}
|
|
|
|
module.exports = connect(mapStateToProps, mapDispatchToProps)(Modal)
|
|
|
|
Modal.prototype.render = function () {
|
|
const modal = MODALS[this.props.modalState.name || 'DEFAULT']
|
|
|
|
const { contents: children, disableBackdropClick = false } = modal
|
|
const modalStyle = modal[isMobileView() ? 'mobileModalStyle' : 'laptopModalStyle']
|
|
const contentStyle = modal.contentStyle || {}
|
|
|
|
return h(FadeModal,
|
|
{
|
|
className: 'modal',
|
|
keyboard: false,
|
|
onHide: () => {
|
|
if (modal.onHide) {
|
|
modal.onHide(this.props)
|
|
}
|
|
this.onHide(modal.customOnHideOpts)
|
|
},
|
|
ref: (ref) => {
|
|
this.modalRef = ref
|
|
},
|
|
modalStyle,
|
|
contentStyle,
|
|
backdropStyle: BACKDROPSTYLE,
|
|
closeOnClick: !disableBackdropClick,
|
|
},
|
|
children,
|
|
)
|
|
}
|
|
|
|
Modal.prototype.componentWillReceiveProps = function (nextProps) {
|
|
if (nextProps.active) {
|
|
this.show()
|
|
} else if (this.props.active) {
|
|
this.hide()
|
|
}
|
|
}
|
|
|
|
Modal.prototype.onHide = function (customOnHideOpts) {
|
|
if (this.props.onHideCallback) {
|
|
this.props.onHideCallback()
|
|
}
|
|
this.props.hideModal(customOnHideOpts)
|
|
}
|
|
|
|
Modal.prototype.hide = function () {
|
|
this.modalRef.hide()
|
|
}
|
|
|
|
Modal.prototype.show = function () {
|
|
this.modalRef.show()
|
|
}
|