triple-frontend icon indicating copy to clipboard operation
triple-frontend copied to clipboard

앱 설치 유도 모달 `deeplink` 관련 이슈

Open pgs787 opened this issue 3 years ago • 0 comments

앱 설치 유도 모달을 사용 시 아래와 같이 TransitionModal를 이용합니다 스크린샷 2021-10-19 오후 3 53 10

// index.tsx
  <TransitionModal deepLink={deepLink} />
// TransitionModal 이용하는 형태
1. const { show } = useTransitionModal()
   show(TransitionType.General)
    
2. useAppCallback(TransitionType.General, ...)

기존에는 deeplink가 보통 하나로 정의되어 사용되고 있었지만 상황에 따라 deeplink가 다르게 사용되는 경우가 있습니다 (인앱의 가이드목록으로 가고 싶은경우, 도시 메인으로 가고 싶은 경우 등)

이와 관련하여 context provider형태로 deepLink를 변경하거나 혹은 다른 방법으로 유연하게 변경할 수 있는 방법이 요구됩니다.

pgs787 avatar Oct 19 '21 07:10 pgs787