feat(chat-character): 채팅 톡 탭
- 데이터가 없으면 "대화 중인 톡이 없습니다" 메시지 표시
This commit is contained in:
@@ -50,7 +50,14 @@ class TalkTabFragment : BaseFragment<FragmentTalkTabBinding>(
|
||||
// 대화방 목록 관찰
|
||||
viewModel.talkRooms.observe(viewLifecycleOwner) {
|
||||
if (it.isNotEmpty()) {
|
||||
binding.rvTalk.visibility = View.VISIBLE
|
||||
binding.tvEmpty.visibility = View.GONE
|
||||
adapter.submitList(it)
|
||||
} else {
|
||||
adapter.submitList(emptyList())
|
||||
binding.rvTalk.visibility = View.GONE
|
||||
binding.tvEmpty.visibility = View.VISIBLE
|
||||
binding.tvEmpty.text = "대화 중인 톡이 없습니다"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user