1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 04:40:18 +02:00
metamask-extension/ui/app/contexts/metametrics.js

146 lines
4.1 KiB
JavaScript
Raw Normal View History

2020-11-03 00:41:28 +01:00
import React, {
Component,
createContext,
useEffect,
useCallback,
useState,
} from 'react'
import { useSelector } from 'react-redux'
import PropTypes from 'prop-types'
import { useHistory } from 'react-router-dom'
import { captureException } from '@sentry/browser'
import {
getAccountType,
getNumberOfAccounts,
getNumberOfTokens,
} from '../selectors/selectors'
import { getSendToken } from '../selectors/send'
2020-11-03 00:41:28 +01:00
import { txDataSelector } from '../selectors/confirm-transaction'
import { getEnvironmentType } from '../../../app/scripts/lib/util'
2020-12-02 22:41:30 +01:00
import { trackMetaMetricsEvent } from '../store/actions'
export const MetaMetricsContext = createContext(() => {
captureException(
2020-11-03 00:41:28 +01:00
Error(
`MetaMetrics context function was called from a react node that is not a descendant of a MetaMetrics context provider`,
),
)
})
2020-11-03 00:41:28 +01:00
export function MetaMetricsProvider({ children }) {
const txData = useSelector(txDataSelector) || {}
const environmentType = getEnvironmentType()
const activeCurrency = useSelector(getSendToken)?.symbol
const accountType = useSelector(getAccountType)
const confirmTransactionOrigin = txData.origin
const numberOfTokens = useSelector(getNumberOfTokens)
const numberOfAccounts = useSelector(getNumberOfAccounts)
const history = useHistory()
const [state, setState] = useState(() => ({
2020-11-03 00:41:28 +01:00
currentPath: new URL(window.location.href).pathname,
previousPath: '',
}))
const { currentPath } = state
useEffect(() => {
2020-11-03 00:41:28 +01:00
const unlisten = history.listen(() =>
setState((prevState) => ({
currentPath: new URL(window.location.href).pathname,
previousPath: prevState.currentPath,
})),
)
// remove this listener if the component is no longer mounted
return unlisten
}, [history])
2020-11-03 00:41:28 +01:00
const metricsEvent = useCallback(
(config = {}, overrides = {}) => {
const { eventOpts = {} } = config
2020-12-02 22:41:30 +01:00
const referrer = confirmTransactionOrigin
? { url: confirmTransactionOrigin }
: undefined
const page = {
path: currentPath,
}
return trackMetaMetricsEvent(
{
event: eventOpts.name,
category: eventOpts.category,
properties: {
action: eventOpts.action,
number_of_tokens: numberOfTokens,
number_of_accounts: numberOfAccounts,
active_currency: activeCurrency,
account_type: accountType,
is_new_visit: config.is_new_visit,
// the properties coming from this key will not match our standards for
// snake_case on properties, and they may be redundant and/or not in the
// proper location (origin not as a referrer, for example). This is a temporary
// solution to not lose data, and the entire event system will be reworked in
// forthcoming PRs to deprecate the old Matomo events in favor of the new schema.
...config.customVariables,
},
page,
referrer,
environmentType,
2020-11-03 00:41:28 +01:00
},
2020-12-02 22:41:30 +01:00
{
isOptIn: config.isOptIn,
excludeMetaMetricsId:
eventOpts.excludeMetaMetricsId ??
overrides.excludeMetaMetricsId ??
false,
metaMetricsId: config.metaMetricsId,
matomoEvent: true,
flushImmediately: config.flushImmediately,
},
)
2020-11-03 00:41:28 +01:00
},
2020-12-02 22:41:30 +01:00
[
accountType,
currentPath,
confirmTransactionOrigin,
activeCurrency,
numberOfTokens,
numberOfAccounts,
environmentType,
],
2020-11-03 00:41:28 +01:00
)
return (
<MetaMetricsContext.Provider value={metricsEvent}>
{children}
</MetaMetricsContext.Provider>
)
}
MetaMetricsProvider.propTypes = { children: PropTypes.node }
export class LegacyMetaMetricsProvider extends Component {
static propTypes = {
children: PropTypes.node,
}
static defaultProps = {
children: undefined,
}
static contextType = MetaMetricsContext
static childContextTypes = {
metricsEvent: PropTypes.func,
}
2020-11-03 00:41:28 +01:00
getChildContext() {
return {
metricsEvent: this.context,
}
}
2020-11-03 00:41:28 +01:00
render() {
return this.props.children
}
}