docs(creator): 채널 홈 계획을 갱신한다

This commit is contained in:
Yu Sung
2026-07-03 01:35:08 +09:00
parent f19b04dc0e
commit 527b499c30
2 changed files with 19 additions and 10 deletions

View File

@@ -160,6 +160,10 @@ Figma 참조:
- tab-bar가 sticky 상태가 되면 OS status bar 영역도 title bar 배경색과 동일하게 보이도록 한다.
- title bar 좌측에는 back 버튼을 둔다.
- title bar 우측에는 팔로우/알림 상태 버튼과 더보기 버튼을 둔다.
- title bar 중앙에는 크리에이터 닉네임을 표시한다.
- title bar 닉네임은 `backgroundProgress`가 1일 때만 표시한다.
- title bar 닉네임은 한 줄로 표시하고, 영역을 넘으면 말줄임 처리한다.
- title bar 닉네임이 길어도 우측 팔로우/알림/더보기 영역은 항상 먼저 보여야 한다.
- title bar 좌측 back 버튼은 `ic_new_bar_back` asset을 사용한다.
- title bar 우측 더보기 버튼은 `ic_new_more` asset을 사용한다.
- `isFollow == false`이면 `팔로우` capsule 버튼을 표시한다.
@@ -365,6 +369,7 @@ Figma 참조:
- tab-bar가 title bar와 맞닿으면 sticky 상태가 되고 아래 콘텐츠만 스크롤된다.
- sticky 상태에서 OS status bar 영역도 title bar와 동일한 black 배경으로 보인다.
- `isFollow`, `isNotify` 조합에 따라 title bar의 팔로우/알림 상태가 Figma 3개 상태와 일치한다.
- title bar 배경 opacity가 1일 때 크리에이터 닉네임이 한 줄 말줄임으로 표시되고, 긴 닉네임이어도 우측 팔로우/알림/더보기 영역이 우선 노출된다.
- title bar는 `ic_new_bar_back`, `ic_new_follow`, `ic_new_following`, `ic_new_more`, `ic_bar_bell`, `ic_bar_bell_fill` asset만 사용한다.
- 팔로우/팔로우 취소/알림 설정/알림 설정 취소 action은 기존 `UserProfile`과 동일하게 `UserRepository.creatorFollow(creatorId:follow:notify:)`를 호출한다.
- `ic_bar_bell` 터치 시 `creatorFollow(follow: true, notify: true)`, `ic_bar_bell_fill` 터치 시 `creatorFollow(follow: true, notify: false)`가 호출된다.