크리에이터 채널 페이지 추가

This commit is contained in:
2023-08-01 15:10:33 +09:00
parent 662ef64696
commit 14b652d38e
65 changed files with 4185 additions and 12 deletions

View File

@@ -540,7 +540,7 @@ class LiveFragment : BaseFragment<FragmentLiveBinding>(FragmentLiveBinding::infl
LivePaymentDialog(
activity = requireActivity(),
layoutInflater = layoutInflater,
title = "${it.price.moneyFormat()}코인으로 예약",
title = "${it.price.moneyFormat()}으로 예약",
desc = "'${it.title}' 라이브에 참여하기 위해 결제합니다.",
confirmButtonTitle = "예약하기",
confirmButtonClick = { processLiveReservation(roomId) },
@@ -627,7 +627,7 @@ class LiveFragment : BaseFragment<FragmentLiveBinding>(FragmentLiveBinding::infl
LivePaymentDialog(
activity = requireActivity(),
layoutInflater = layoutInflater,
title = "${it.price.moneyFormat()}코인으로 입장",
title = "${it.price.moneyFormat()}으로 입장",
desc = "'${it.title}' 라이브에 참여하기 위해 결제합니다.",
confirmButtonTitle = "결제 후 입장",
confirmButtonClick = {

View File

@@ -99,7 +99,7 @@ class LiveReservationAdapter(
binding.tvPrice.text = if (item.price <= 0) {
"무료"
} else {
"${item.price.moneyFormat()}코인"
"${item.price.moneyFormat()}"
}
}

View File

@@ -344,7 +344,7 @@ class LiveRoomActivity : BaseActivity<ActivityLiveRoomBinding>(ActivityLiveRoomB
if (can > 0) {
donation(can, message)
} else {
showToast("1코인 이상 후원하실 수 있습니다.")
showToast("1 이상 후원하실 수 있습니다.")
}
}

View File

@@ -527,7 +527,7 @@ class LiveRoomViewModel(
_toastLiveData.postValue(it.message)
} else {
_toastLiveData.postValue(
"후원에 실패한 코인이 환불되지 않았습니다\n고객센터로 문의해주세요."
"후원에 실패한 이 환불되지 않았습니다\n고객센터로 문의해주세요."
)
}
}
@@ -536,7 +536,7 @@ class LiveRoomViewModel(
_isLoading.value = false
it.message?.let { message -> Logger.e(message) }
_toastLiveData.postValue(
"후원에 실패한 코인이 환불되지 않았습니다\n고객센터로 문의해주세요."
"후원에 실패한 이 환불되지 않았습니다\n고객센터로 문의해주세요."
)
}
)

View File

@@ -259,7 +259,7 @@ data class LiveRoomDonationChat(
)
),
0,
chat.indexOf("코인", 0, true) + 2,
chat.indexOf("", 0, true) + 2,
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE
)