Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add user IDs to send page analytics #26600

Merged
merged 2 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/scripts/controllers/metametrics.js
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,8 @@ export default class MetaMetricsController {
// to be updated to work with the new tracking plan. I think we should use
// a config setting for this instead of trying to match the event name
const isSendFlow = Boolean(payload.event.match(/^send|^confirm/iu));
if (isSendFlow) {
// do not filter if excludeMetaMetricsId is explicitly set to false
if (options?.excludeMetaMetricsId !== false && isSendFlow) {
excludeMetaMetricsId = true;
}
// If we are tracking sensitive data we will always use the anonymousId
Expand Down
23 changes: 13 additions & 10 deletions ui/components/app/assets/nfts/nfts-items/nfts-items.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,17 +167,20 @@ export default function NftsItems({
};

const onSendNft = async (nft) => {
trackEvent({
event: MetaMetricsEventName.sendAssetSelected,
category: MetaMetricsEventCategory.Send,
properties: {
...sendAnalytics,
is_destination_asset_picker_modal: false,
new_asset_symbol: nft.name,
new_asset_address: nft.address,
is_nft: true,
trackEvent(
{
event: MetaMetricsEventName.sendAssetSelected,
category: MetaMetricsEventCategory.Send,
properties: {
...sendAnalytics,
is_destination_asset_picker_modal: false,
new_asset_symbol: nft.name,
new_asset_address: nft.address,
is_nft: true,
},
},
});
{ excludeMetaMetricsId: false },
);
await dispatch(
updateSendAsset({
type: AssetType.NFT,
Expand Down
21 changes: 12 additions & 9 deletions ui/components/app/wallet-overview/coin-buttons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,16 +217,19 @@ const CoinButtons = ({
///: END:ONLY_INCLUDE_IF

const handleSendOnClick = useCallback(async () => {
trackEvent({
event: MetaMetricsEventName.NavSendButtonClicked,
category: MetaMetricsEventCategory.Navigation,
properties: {
token_symbol: 'ETH',
location: 'Home',
text: 'Send',
chain_id: chainId,
trackEvent(
{
event: MetaMetricsEventName.NavSendButtonClicked,
category: MetaMetricsEventCategory.Navigation,
properties: {
token_symbol: 'ETH',
location: 'Home',
text: 'Send',
chain_id: chainId,
},
},
});
{ excludeMetaMetricsId: false },
);
await dispatch(startNewDraftTransaction({ type: AssetType.native }));
history.push(SEND_ROUTE);
}, [chainId]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,17 +122,20 @@ export function AssetPickerModal({
const handleAssetChange = useCallback(
(token: Token) => {
onAssetChange(token);
trackEvent({
event: MetaMetricsEventName.sendAssetSelected,
category: MetaMetricsEventCategory.Send,
properties: {
...sendAnalytics,
is_destination_asset_picker_modal: Boolean(isDest),
new_asset_symbol: token.symbol,
new_asset_address: token.address,
is_nft: false,
trackEvent(
{
event: MetaMetricsEventName.sendAssetSelected,
category: MetaMetricsEventCategory.Send,
properties: {
...sendAnalytics,
is_destination_asset_picker_modal: Boolean(isDest),
new_asset_symbol: token.symbol,
new_asset_address: token.address,
is_nft: false,
},
},
});
{ excludeMetaMetricsId: false },
);
onClose();
},
[onAssetChange],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,14 +161,17 @@ export function AssetPicker({
backgroundColor={BackgroundColor.transparent}
onClick={() => {
setShowAssetPickerModal(true);
trackEvent({
event: MetaMetricsEventName.sendTokenModalOpened,
category: MetaMetricsEventCategory.Send,
properties: {
...sendAnalytics,
is_destination_asset_picker_modal: Boolean(sendingAsset),
trackEvent(
{
event: MetaMetricsEventName.sendTokenModalOpened,
category: MetaMetricsEventCategory.Send,
properties: {
...sendAnalytics,
is_destination_asset_picker_modal: Boolean(sendingAsset),
},
},
});
{ excludeMetaMetricsId: false },
);
}}
endIconName={IconName.ArrowDown}
endIconProps={{
Expand Down
17 changes: 10 additions & 7 deletions ui/components/multichain/pages/send/components/address-book.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,14 +99,17 @@ export const SendPageAddressBook = () => {
`sendFlow - User clicked recipient from ${type}. address: ${address}, nickname ${nickname}`,
),
);
trackEvent({
event: MetaMetricsEventName.sendRecipientSelected,
category: MetaMetricsEventCategory.Send,
properties: {
location: 'address book',
inputType: type,
trackEvent(
{
event: MetaMetricsEventName.sendRecipientSelected,
category: MetaMetricsEventCategory.Send,
properties: {
location: 'address book',
inputType: type,
},
},
});
{ excludeMetaMetricsId: false },
);
dispatch(updateRecipient({ address, nickname }));
dispatch(updateRecipientUserInput(address));
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,17 @@ export function QuoteCard({ scrollRef }: QuoteCardProps) {
}

if (bestQuote) {
trackEvent({
event: MetaMetricsEventName.sendSwapQuoteFetched,
category: MetaMetricsEventCategory.Send,
properties: {
...sendAnalytics,
is_first_fetch: isQuoteJustLoaded,
trackEvent(
{
event: MetaMetricsEventName.sendSwapQuoteFetched,
category: MetaMetricsEventCategory.Send,
properties: {
...sendAnalytics,
is_first_fetch: isQuoteJustLoaded,
},
},
});
{ excludeMetaMetricsId: false },
);
setTimeLeft(REFRESH_INTERVAL);
} else {
setTimeLeft(undefined);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,17 @@ export const SendPageRecipientInput = () => {
addHistoryEntry(`sendFlow - Valid address typed ${address}`),
);
await dispatch(updateRecipientUserInput(address));
trackEvent({
event: MetaMetricsEventName.sendRecipientSelected,
category: MetaMetricsEventCategory.Send,
properties: {
location: 'send page recipient input',
inputType: 'user input',
trackEvent(
{
event: MetaMetricsEventName.sendRecipientSelected,
category: MetaMetricsEventCategory.Send,
properties: {
location: 'send page recipient input',
inputType: 'user input',
},
},
});
{ excludeMetaMetricsId: false },
);
dispatch(updateRecipient({ address, nickname: '' }));
}}
internalSearch={isUsingMyAccountsForRecipientSearch}
Expand Down
17 changes: 10 additions & 7 deletions ui/components/multichain/pages/send/components/recipient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,17 @@ export const SendPageRecipient = () => {
`sendFlow - User clicked recipient from ${type}. address: ${address}, nickname ${nickname}`,
),
);
trackEvent({
event: MetaMetricsEventName.sendRecipientSelected,
category: MetaMetricsEventCategory.Send,
properties: {
location: 'send page recipient screen',
inputType: type,
trackEvent(
{
event: MetaMetricsEventName.sendRecipientSelected,
category: MetaMetricsEventCategory.Send,
properties: {
location: 'send page recipient screen',
inputType: type,
},
},
});
{ excludeMetaMetricsId: false },
);
dispatch(updateRecipient({ address, nickname }));
dispatch(updateRecipientUserInput(address));
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,17 @@ export const SendPageYourAccounts = ({
`sendFlow - User clicked recipient from my accounts. address: ${account.address}, nickname ${account.name}`,
),
);
trackEvent({
event: MetaMetricsEventName.sendRecipientSelected,
category: MetaMetricsEventCategory.Send,
properties: {
location: 'my accounts',
inputType: 'click',
trackEvent(
{
event: MetaMetricsEventName.sendRecipientSelected,
category: MetaMetricsEventCategory.Send,
properties: {
location: 'my accounts',
inputType: 'click',
},
},
});
{ excludeMetaMetricsId: false },
);
dispatch(
updateRecipient({
address: account.address,
Expand Down
30 changes: 18 additions & 12 deletions ui/components/multichain/pages/send/send.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,13 +202,16 @@ export const SendPage = () => {
}
dispatch(resetSendState());

trackEvent({
event: MetaMetricsEventName.sendFlowExited,
category: MetaMetricsEventCategory.Send,
properties: {
...sendAnalytics,
trackEvent(
{
event: MetaMetricsEventName.sendFlowExited,
category: MetaMetricsEventCategory.Send,
properties: {
...sendAnalytics,
},
},
});
{ excludeMetaMetricsId: false },
);

const nextRoute =
sendStage === SEND_STAGES.EDIT ? DEFAULT_ROUTE : mostRecentOverviewPage;
Expand All @@ -217,13 +220,16 @@ export const SendPage = () => {

useEffect(() => {
if (swapQuotesError) {
trackEvent({
event: MetaMetricsEventName.sendSwapQuoteError,
category: MetaMetricsEventCategory.Send,
properties: {
...sendAnalytics,
trackEvent(
{
event: MetaMetricsEventName.sendSwapQuoteError,
category: MetaMetricsEventCategory.Send,
properties: {
...sendAnalytics,
},
},
});
{ excludeMetaMetricsId: false },
);
}
// sendAnalytics should not result in the event refiring
// eslint-disable-next-line react-hooks/exhaustive-deps
Expand Down
21 changes: 12 additions & 9 deletions ui/pages/asset/components/token-buttons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,16 +183,19 @@ const TokenButtons = ({
<IconButton
className="token-overview__button"
onClick={async () => {
trackEvent({
event: MetaMetricsEventName.NavSendButtonClicked,
category: MetaMetricsEventCategory.Navigation,
properties: {
token_symbol: token.symbol,
location: MetaMetricsSwapsEventSource.TokenView,
text: 'Send',
chain_id: chainId,
trackEvent(
{
event: MetaMetricsEventName.NavSendButtonClicked,
category: MetaMetricsEventCategory.Navigation,
properties: {
token_symbol: token.symbol,
location: MetaMetricsSwapsEventSource.TokenView,
text: 'Send',
chain_id: chainId,
},
},
});
{ excludeMetaMetricsId: false },
);
try {
await dispatch(
startNewDraftTransaction({
Expand Down