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

[FEAT/#294] 엠플리튜드 이벤트 심기 #295

Merged
merged 22 commits into from
Oct 22, 2024
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
3e46a48
[FEAT/#294] 엠플리튜드 심기
leeeyubin Oct 21, 2024
8be46d2
[FEAT/#294] onboarding filtering amplitude
leeeyubin Oct 21, 2024
390ab58
[FEAT/#294] signup kakao amplitude
leeeyubin Oct 21, 2024
26fccfb
[FEAT/#294] mypage notice amplitude
leeeyubin Oct 21, 2024
d1477b6
[FEAT/#294] mypage comment amplitude
leeeyubin Oct 21, 2024
9bdf61b
[FEAT/#294] mypage modify amplitude
leeeyubin Oct 21, 2024
4d73b0c
[FEAT/#294] mypage logout and quit amplitude
leeeyubin Oct 21, 2024
9aca783
[FEAT/#294] navigation amplitude
leeeyubin Oct 21, 2024
65a1fff
[FEAT/#294] fix code
leeeyubin Oct 21, 2024
dbad766
[FEAT/#294] version update 1.1.5 -> 1.1.6
leeeyubin Oct 22, 2024
f46da5a
[FEAT/#294] search quest scrap amplitude
leeeyubin Oct 22, 2024
10f0f1f
[FEAT/#294] search quest search amplitude
leeeyubin Oct 22, 2024
82d31ce
[FEAT/#294] dialog color and scrap amplitude
leeeyubin Oct 22, 2024
ec63f97
[FEAT/#294] intern detail url amplitude
leeeyubin Oct 22, 2024
2ef1b9e
[FEAT/#294] dialog cancel amplitude
leeeyubin Oct 22, 2024
e46ad2d
[FEAT/#294] intern detail scrap amplitude
leeeyubin Oct 22, 2024
aff07ef
[FEAT/#294] git pull from develop
leeeyubin Oct 22, 2024
f787314
[FEAT/#294] calendar list amplitude
leeeyubin Oct 22, 2024
918454f
[FEAT/#294] home view amplitude
leeeyubin Oct 22, 2024
bb2010f
[FEAT/#294] home filtering amplitude
leeeyubin Oct 22, 2024
59df1b4
[FEAT/#294] home filtering save amplitude
leeeyubin Oct 22, 2024
941b149
[FEAT/#294] home remind card amplitude
leeeyubin Oct 22, 2024
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
Prev Previous commit
Next Next commit
[FEAT/#294] search quest scrap amplitude
  • Loading branch information
leeeyubin committed Oct 22, 2024
commit f46da5a73c07344c8a8b90bd50a82e9c6dbcfd8a
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ import androidx.lifecycle.compose.LocalLifecycleOwner
import androidx.lifecycle.compose.collectAsStateWithLifecycle
import androidx.lifecycle.flowWithLifecycle
import androidx.navigation.NavHostController
import com.terning.core.analytics.EventType
import com.terning.core.analytics.LocalTracker
import com.terning.core.designsystem.component.bottomsheet.SortingBottomSheet
import com.terning.core.designsystem.component.button.SortingButton
import com.terning.core.designsystem.component.item.InternItemWithShadow
Expand Down Expand Up @@ -168,6 +170,8 @@ fun SearchProcessScreen(
val focusManager = LocalFocusManager.current
val currentSortBy = remember { mutableIntStateOf(state.currentSortBy) }

val amplitudeTracker = LocalTracker.current

LaunchedEffect(Unit) {
focusRequester.requestFocus()
}
Expand Down Expand Up @@ -267,7 +271,10 @@ fun SearchProcessScreen(
intern = internSearchResultData[index],
navigateToIntern = navigateToIntern,
onScrapButtonClicked = {

amplitudeTracker.track(
type = EventType.CLICK,
name = "quest_scrap"
)
with(internSearchResultData[index]) {
onScrapButtonClicked(this)
}
Expand Down
Loading