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

Devop/amplitude for new network UI #596

Merged
merged 8 commits into from
Jan 13, 2025
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
22 changes: 19 additions & 3 deletions packages/extension/src/libs/metrics/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
GenericEvents,
NFTEventType,
NetworkChangeEvents,
NetworkType,
SendEventType,
SettingEventType,
SwapEventType,
Expand All @@ -18,9 +19,24 @@ const trackGenericEvents = (event: GenericEvents) => {
metrics.track('generic', { event });
};

const trackNetworkSelected = (
const trackNetwork = (
event: NetworkChangeEvents,
options: { provider: ProviderName; network: NetworkNames },
options: {
provider?: ProviderName;
network?: NetworkNames,
networkTab?: string,
networkType?: NetworkType,
isPinned?: boolean,
sortOption?: string,
customRpcUrl?: string,
customNetworkName?: string,
customNetworkNameLong?: string,
customNetworkCurrency?: string,
customNetworkCurrencyLong?: string,
customChainId?: string,
customBlockExplorerUrlTx?: string
customBlockExplorerUrlAddr?: string
},
) => {
metrics.track('network', { event, ...options });
};
Expand Down Expand Up @@ -87,7 +103,7 @@ const optOutofMetrics = (optOut: boolean) => {
};

export {
trackNetworkSelected,
trackNetwork,
trackSwapEvents,
trackBuyEvents,
trackSendEvents,
Expand Down
14 changes: 14 additions & 0 deletions packages/extension/src/libs/metrics/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,23 @@ export enum GenericEvents {
login_error = 'login_error',
}

export enum NetworkType {
Regular = 'regular',
Custom = 'custom',
Testnet = 'testnet',
}

export enum NetworkChangeEvents {
NetworkChangePopup = 'network_change_popup',
NetworkChangeAPI = 'network_change_api',
NetworkTabsClicked = 'network_tabs_clicked',
NetworkPinnedStatusChanged = 'network_pinned_status_changed',
NetworkActiveChanged = 'network_active_changed',
NetworkSortOptionChanged = 'network_sort_option_changed',
NetworkAddCustomClicked = 'network_add_custom_clicked',
NetworkCustomNetworkAdded = 'network_custom_network_added',
NetworkDeleteCustomNetwork = 'network_delete_custom_network',
NetworkCustomBackButton = 'network_custom_back_button',
}

export enum BuyEventType {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import BTCNetworks from '../networks';
import DomainState from '@/libs/domain-state';
import BitcoinProvider from '..';
import { BitcoinNetworks } from '../types';
import { trackNetworkSelected } from '@/libs/metrics';
import { trackNetwork } from '@/libs/metrics';
import { NetworkChangeEvents } from '@/libs/metrics/types';
const method: MiddlewareFunction = function (
this: BitcoinProvider,
Expand All @@ -29,7 +29,7 @@ const method: MiddlewareFunction = function (
const allNetworks = Object.values(BTCNetworks);
const validNetwork = allNetworks.find(net => net.name === internalName);
if (validNetwork) {
trackNetworkSelected(NetworkChangeEvents.NetworkChangeAPI, {
trackNetwork(NetworkChangeEvents.NetworkChangeAPI, {
provider: validNetwork.provider,
network: validNetwork.name,
});
Expand All @@ -49,8 +49,7 @@ const method: MiddlewareFunction = function (
} else {
return res(
getCustomError(
`btc_switchNetwork: porvided network ${
payload.params![0]
`btc_switchNetwork: porvided network ${payload.params![0]
} not supported`,
),
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { getAllNetworks } from '@/libs/utils/networks';
import CustomNetworksState from '@/libs/custom-networks-state';
import NetworksState from '@/libs/networks-state';
import { EvmNetwork } from '../types/evm-network';
import { trackNetworkSelected } from '@/libs/metrics';
import { trackNetwork } from '@/libs/metrics';
import { NetworkChangeEvents } from '@/libs/metrics/types';

interface AddEthereumChainPayload {
Expand Down Expand Up @@ -128,7 +128,7 @@ const setExistingCustomNetwork = async (
) as EvmNetwork | undefined;
}
if (existingNetwork) {
trackNetworkSelected(NetworkChangeEvents.NetworkChangeAPI, {
trackNetwork(NetworkChangeEvents.NetworkChangeAPI, {
provider: ProviderName.ethereum,
network: existingNetwork.name as NetworkNames,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import DomainState from '@/libs/domain-state';
import { getAllNetworks } from '@/libs/utils/networks';
import { EvmNetwork } from '../types/evm-network';
import NetworksState from '@/libs/networks-state';
import { trackNetworkSelected } from '@/libs/metrics';
import { trackNetwork } from '@/libs/metrics';
import { NetworkChangeEvents } from '@/libs/metrics/types';

const method: MiddlewareFunction = function (
Expand All @@ -33,7 +33,7 @@ const method: MiddlewareFunction = function (
net => (net as EvmNetwork).chainID === payload.params![0].chainId,
) as EvmNetwork | undefined;
if (validNetwork) {
trackNetworkSelected(NetworkChangeEvents.NetworkChangeAPI, {
trackNetwork(NetworkChangeEvents.NetworkChangeAPI, {
provider: validNetwork.provider,
network: validNetwork.name,
});
Expand Down Expand Up @@ -68,8 +68,7 @@ const method: MiddlewareFunction = function (
} else {
return res(
getCustomError(
`wallet_switchEthereumChain: provided network ${
payload.params![0].chainId
`wallet_switchEthereumChain: provided network ${payload.params![0].chainId
} not supported`,
),
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ import { u8aToHex } from '@polkadot/util';
import ActivityState from '@/libs/activity-state';
import Polkadot from '@/providers/polkadot/networks/polkadot';
import { getAllNetworks } from '@/libs/utils/networks';
import { trackNetworkSelected, trackSendEvents } from '@/libs/metrics';
import { trackNetwork, trackSendEvents } from '@/libs/metrics';
import { NetworkChangeEvents, SendEventType } from '@/libs/metrics/types';

const windowPromise = WindowPromiseHandler(2);
Expand Down Expand Up @@ -194,7 +194,7 @@ onBeforeMount(async () => {

if (targetNetwork) {
network.value = targetNetwork;
trackNetworkSelected(NetworkChangeEvents.NetworkChangeAPI, {
trackNetwork(NetworkChangeEvents.NetworkChangeAPI, {
provider: targetNetwork.provider,
network: targetNetwork.name,
});
Expand Down
4 changes: 2 additions & 2 deletions packages/extension/src/ui/action/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ import { EnkryptProviderEventMethods, ProviderName } from '@/types/provider';
import { onClickOutside } from '@vueuse/core';
import RateState from '@/libs/rate-state';
import SwapLookingAnimation from '@action/icons/swap/swap-looking-animation.vue';
import { trackBuyEvents, trackNetworkSelected } from '@/libs/metrics';
import { trackBuyEvents, trackNetwork } from '@/libs/metrics';
import { getLatestEnkryptVersion } from '@action/utils/browser';
import { gt as semverGT } from 'semver';
import { BuyEventType, NetworkChangeEvents } from '@/libs/metrics/types';
Expand Down Expand Up @@ -301,7 +301,7 @@ const updateGradient = (newGradient: string) => {
`radial-gradient(137.35% 97% at 100% 50%, rgba(250, 250, 250, 0.94) 0%, rgba(250, 250, 250, 0.96) 28.91%, rgba(250, 250, 250, 0.98) 100%), linear-gradient(180deg, ${newGradient} 80%, #684CFF 100%)`;
};
const setNetwork = async (network: BaseNetwork) => {
trackNetworkSelected(NetworkChangeEvents.NetworkChangePopup, {
trackNetwork(NetworkChangeEvents.NetworkChangePopup, {
provider: network.provider,
network: network.name,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ import SwapAddedIcon from '@/ui/action/icons/asset/swap-added-icon.vue';
import PinIcon from '@action/icons/actions/pin.vue';
import DragIcon from '@action/icons/common/drag-icon.vue';

import { trackNetwork } from '@/libs/metrics';
import { NetworkChangeEvents, NetworkType } from '@/libs/metrics/types';

const props = defineProps({
network: {
type: Object as PropType<NodeType>,
Expand Down Expand Up @@ -177,6 +180,16 @@ watch(
* ------------------------*/

const setPinned = async () => {
const networkType = props.network.isTestNetwork
? NetworkType.Testnet
: props.network.isCustomNetwork
? NetworkType.Custom
: NetworkType.Regular;
trackNetwork(NetworkChangeEvents.NetworkPinnedStatusChanged, {
network: props.network.name,
networkType: networkType,
isPinned: !props.isPinned,
});
emit('update:pinNetwork', props.network.name, !props.isPinned);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ import {
NetworkSortDirection,
} from '@action/types/network-sort';
import SortDirectionIcon from '@/ui/action/icons/actions/sort/sort-direction-icon.vue';
import { trackNetwork } from '@/libs/metrics';
import { NetworkChangeEvents } from '@/libs/metrics/types';

// Next Release Version:
// import { onClickOutside } from '@vueuse/core';
Expand Down Expand Up @@ -90,6 +92,9 @@ const setActiveSort = (_sort: NetworkSortOption) => {
// Next Release Version: update this function
newSortBy.name = _sort;
}
trackNetwork(NetworkChangeEvents.NetworkSortOptionChanged, {
sortOption: newSortBy.name,
});
emit('update:sort', newSortBy);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@
<script setup lang="ts">
import { PropType } from 'vue';
import { NetworksCategory } from '@action/types/network-category';
import { trackNetwork } from '@/libs/metrics';
import { NetworkChangeEvents } from '@/libs/metrics/types';

defineProps({
activeCategory: {
Expand All @@ -51,6 +53,9 @@ const emit = defineEmits<{
(e: 'update:category', category: NetworksCategory): void;
}>();
const setActiveCategory = (category: NetworksCategory) => {
trackNetwork(NetworkChangeEvents.NetworkTabsClicked, {
networkTab: category,
});
emit('update:category', category);
};
</script>
Expand Down
12 changes: 12 additions & 0 deletions packages/extension/src/ui/action/components/app-menu/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ import {
} from '@action/types/network-sort';
import { useScroll } from '@vueuse/core';
import { newNetworks, newSwaps } from '@/providers/common/libs/new-features';
import { trackNetwork } from '@/libs/metrics';
import { NetworkChangeEvents, NetworkType } from '@/libs/metrics/types';

const networksState = new NetworksState();
const props = defineProps({
Expand Down Expand Up @@ -114,6 +116,16 @@ const setNetwork = async (network: BaseNetwork) => {
net => net !== network.name,
);
}

const networkType = network.isTestNetwork
? NetworkType.Testnet
: network.isCustomNetwork
? NetworkType.Custom
: NetworkType.Regular;
trackNetwork(NetworkChangeEvents.NetworkActiveChanged, {
network: network.name,
networkType,
});
emit('update:network', network);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ import customNetworkIcon from '@/ui/action/icons/common/custom-network-icon.vue'
import { NetworkNames } from '@enkryptcom/types';
import Tooltip from '@/ui/action/components/tooltip/index.vue';

import { trackNetwork } from '@/libs/metrics';
import { NetworkChangeEvents } from '@/libs/metrics/types';

const emit = defineEmits<{
(e: 'networkToggled', name: string, isActive: boolean): void;
(e: 'networkDeleted', chainId: string): void;
Expand Down Expand Up @@ -85,6 +88,9 @@ const setPinned = async () => {
const deleteNetwork = async () => {
const chainId = (props.network as unknown as CustomEvmNetwork).chainID;
if (chainId !== undefined) {
trackNetwork(NetworkChangeEvents.NetworkDeleteCustomNetwork, {
customChainId: chainId,
});
emit('networkDeleted', chainId);
}
};
Expand Down
5 changes: 5 additions & 0 deletions packages/extension/src/ui/action/views/add-network/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ import { ref } from 'vue';
import AddNetworkList from './views/add-network-list.vue';
import AddCustomNetwork from './views/add-custom-network.vue';

import { trackNetwork } from '@/libs/metrics';
import { NetworkChangeEvents } from '@/libs/metrics/types';

const isNetworkList = ref(true);

const emit = defineEmits<{
Expand All @@ -43,9 +46,11 @@ const closePopup = () => {

const toCustomNetwork = () => {
isNetworkList.value = false;
trackNetwork(NetworkChangeEvents.NetworkAddCustomClicked, {});
};

const toNetworkList = () => {
trackNetwork(NetworkChangeEvents.NetworkCustomBackButton, {});
isNetworkList.value = true;
};
</script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ import { toHex } from 'web3-utils';
import CustomNetworksState from '@/libs/custom-networks-state';
import NetworksState from '@/libs/networks-state';

import { trackNetwork } from '@/libs/metrics';
import { NetworkChangeEvents } from '@/libs/metrics/types';

interface NetworkConfigItem {
name: string;
chain: string;
Expand Down Expand Up @@ -263,6 +266,18 @@ const sendAction = async () => {

await customNetworksState.addCustomNetwork(customNetworkOptions);
await networksState.setNetworkStatus(customNetworkOptions.name, true);

trackNetwork(NetworkChangeEvents.NetworkCustomNetworkAdded, {
customRpcUrl: customNetworkOptions.node,
customNetworkName: customNetworkOptions.name,
customNetworkNameLong: customNetworkOptions.name_long,
customChainId: customNetworkOptions.chainID,
customNetworkCurrency: customNetworkOptions.currencyName,
customNetworkCurrencyLong: customNetworkOptions.currencyNameLong,
customBlockExplorerUrlTx: customNetworkOptions.blockExplorerTX,
customBlockExplorerUrlAddr: customNetworkOptions.blockExplorerAddr,
});

emit('update:pinNetwork', customNetworkOptions.name, true);
nameValue.value = '';
symbolValue.value = '';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
:token="item"
:network="network"
@update:tokens="updateAssets"
></network-assets-item>
/>
<div
v-show="network.customTokens && assets.length !== 0"
class="network-assets__add-token"
Expand All @@ -37,7 +37,7 @@
</div>
</custom-scrollbar>

<network-assets-loading v-if="isLoading"></network-assets-loading>
<network-assets-loading v-if="isLoading" />

<deposit
v-if="!!props.accountInfo.selectedAccount"
Expand Down
Loading