Skip to content

Commit

Permalink
馃敡 Added tracking to AMM start, added marketplace tabs track (#6241)
Browse files Browse the repository at this point in the history
  • Loading branch information
attemka committed May 7, 2024
1 parent 8a9e71e commit ed70dc7
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const SaleMarketChoiceDrawer = ({ isOpen, onClose, onMarketChoice }: Sale
<FlexBox flow={smMatch ? 'row' : 'column'} alignItems="strech" width="100%" gap={6}>
<OptionCard
title="Public Sale"
titleAccessory={<Pill label="Comming soon" variant="warning" />}
titleAccessory={<Pill label="Coming soon" variant="warning" />}
description="Raise funding by selling a certain number of tokens to the public at a set price over a certain period."
points={SALE_POINTS}
actionButton={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { SuccessActionModalTemplate } from '@/components/_crt/SuccessActionModal
import { DialogModal } from '@/components/_overlays/DialogModal'
import { absoluteRoutes } from '@/config/routes'
import { useClipboard } from '@/hooks/useClipboard'
import { useSegmentAnalytics } from '@/hooks/useSegmentAnalytics'
import { HAPI_TO_JOY_RATE } from '@/joystream-lib/config'
import { hapiBnToTokenNumber } from '@/joystream-lib/utils'
import { useFee, useJoystream } from '@/providers/joystream'
Expand All @@ -38,6 +39,7 @@ export const StartMarketModal = ({ onClose, show, tokenId }: StartMarketModalPro
const { displaySnackbar } = useSnackbar()
const handleTransaction = useTransaction()
const { refetchCreatorTokenData } = useNetworkUtils()
const { trackAMMStarted } = useSegmentAnalytics()
const { data } = useGetFullCreatorTokenQuery({
variables: {
id: tokenId ?? '',
Expand Down Expand Up @@ -80,6 +82,7 @@ export const StartMarketModal = ({ onClose, show, tokenId }: StartMarketModalPro
txFactory: async (updateStatus) =>
(await joystream.extrinsics).startAmm(memberId, channelId, joySlopeNumber, proxyCallback(updateStatus)),
onTxSync: async () => {
trackAMMStarted(tokenId, creatorTokenById?.symbol ?? 'N/A', channelId ?? 'N/A')
setShowSuccessModal(true)
},
onError: () => {
Expand All @@ -97,14 +100,17 @@ export const StartMarketModal = ({ onClose, show, tokenId }: StartMarketModalPro
})
}, [
channelId,
creatorTokenById?.symbol,
displaySnackbar,
handleTransaction,
joySlopeNumber,
joystream,
memberId,
onClose,
proxyCallback,
tokenId,
tokenPrice,
trackAMMStarted,
])

const successDetails = useMemo(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { useSearchParams } from 'react-router-dom'
import { SvgActionCreatorToken, SvgActionPlay } from '@/assets/icons'
import { useMediaMatch } from '@/hooks/useMediaMatch'
import { useMountEffect } from '@/hooks/useMountEffect'
import { useSegmentAnalytics } from '@/hooks/useSegmentAnalytics'
import { StyledPageTabs } from '@/views/viewer/PortfolioView'

import { MarketplaceWrapper } from './MarketplaceView.styles'
Expand All @@ -30,18 +31,24 @@ const getTabIndex = (tabName: TabsNames, allTabs: typeof TABS): number =>
export const MarketplaceView: FC = () => {
const smMatch = useMediaMatch('sm')
const [searchParams, setSearchParams] = useSearchParams()
const { trackPageView } = useSegmentAnalytics()
const currentTabName = searchParams.get('tab') as (typeof TABS)[number]['name'] | null
const currentTab = currentTabName ? getTabIndex(currentTabName, TABS) : 0

useMountEffect(() => {
if (currentTab === -1) setSearchParams({ 'tab': '0' }, { replace: true })
if (currentTab === -1) {
setSearchParams({ 'tab': '0' }, { replace: true })
} else {
trackPageView(`${TABS[currentTab].name} Marketplace`)
}
})

const handleChangeTab = useCallback(
(idx: number) => {
trackPageView(`${TABS[idx].name} Marketplace`)
setSearchParams({ tab: TABS[idx].name })
},
[setSearchParams]
[setSearchParams, trackPageView]
)

return (
Expand Down
2 changes: 1 addition & 1 deletion packages/atlas/src/views/viewer/ViewerLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ const MiscUtils = () => {
: Object.entries(locationToPageName).find(([key]) => location.pathname.includes(key))?.[1]

//pages below will be tracked by the view components in order to include the additional params
if (['Channel', 'Category', 'Video'].some((page) => pageName?.includes(page))) {
if (['Channel', 'Category', 'Video', 'Marketplace'].some((page) => pageName?.includes(page))) {
return
}
const [query, referrerChannel, utmSource, utmCampaign, utmContent, gState, gCode] = [
Expand Down

0 comments on commit ed70dc7

Please sign in to comment.