Send route name with Statsig events (#3194)

* Add types to Statsig events

* Send route name with events
This commit is contained in:
dan 2024-03-13 03:29:03 +00:00 committed by GitHub
parent 653240bc05
commit f1d55f49fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 36 additions and 7 deletions

View file

@ -78,7 +78,7 @@ import {createNativeStackNavigatorWithAuth} from './view/shell/createNativeStack
import {msg} from '@lingui/macro'
import {i18n, MessageDescriptor} from '@lingui/core'
import HashtagScreen from '#/screens/Hashtag'
import {logEvent} from './lib/statsig/statsig'
import {logEvent, attachRouteToLogEvents} from './lib/statsig/statsig'
const navigationRef = createNavigationContainerRef<AllNavigatorParams>()
@ -543,6 +543,7 @@ function RoutesContainer({children}: React.PropsWithChildren<{}>) {
linking={LINKING}
theme={theme}
onReady={() => {
attachRouteToLogEvents(getCurrentRouteName)
logModuleInitTime()
onReady()
}}>
@ -551,6 +552,10 @@ function RoutesContainer({children}: React.PropsWithChildren<{}>) {
)
}
function getCurrentRouteName() {
return navigationRef.getCurrentRoute()?.name
}
/**
* These helpers can be used from outside of the RoutesContainer
* (eg in the state models).
@ -656,7 +661,9 @@ function logModuleInitTime() {
performance.now() - global.__BUNDLE_START_TIME__,
)
console.log(`Time to first paint: ${initMs} ms`)
logEvent('init', initMs)
logEvent('init', {
initMs,
})
if (__DEV__) {
// This log is noisy, so keep false committed