|
@@ -15,7 +15,7 @@ import com.khmer9.wa855main.remote.ModuleData
|
|
|
import com.khmer9.wa855main.remote.SubModuleData
|
|
|
import com.squareup.picasso.Picasso
|
|
|
|
|
|
-class MainModuleViewHolder(itemView: View, private val detailButtonListener: ((String, String, Int) -> Unit)? = null) : BaseListViewHolder(itemView) {
|
|
|
+class MainModuleViewHolder(itemView: View, private val detailButtonListener: ((String, String, Int, Boolean) -> Unit)? = null) : BaseListViewHolder(itemView) {
|
|
|
private val picasso = Picasso.get()
|
|
|
|
|
|
override fun bindView(item: BaseListItem) {
|
|
@@ -45,20 +45,8 @@ class MainModuleViewHolder(itemView: View, private val detailButtonListener: ((S
|
|
|
imgIcon.layoutParams.height = height.toInt()
|
|
|
imgIcon.layoutParams.width = height.toInt()
|
|
|
|
|
|
- when (item.appId) {
|
|
|
- Config.LOTTO_APP_ID -> {
|
|
|
- picasso
|
|
|
- .load(R.drawable.ic_lotto_80)
|
|
|
- .placeholder(R.drawable.ic_lotto_80)
|
|
|
- .into(imgIcon)
|
|
|
- }
|
|
|
- Config.LOTTO_PLUS_APP_ID -> {
|
|
|
- picasso
|
|
|
- .load(R.drawable.ic_lotto_plus)
|
|
|
- .placeholder(R.drawable.animal_seven)
|
|
|
- .into(imgIcon)
|
|
|
- }
|
|
|
- Config.COCK_FIGHT_APP_ID -> {
|
|
|
+ when (item.name.trim().toLowerCase()) {
|
|
|
+ Config.COCK_APP_NAME.trim().toLowerCase() -> {
|
|
|
picasso
|
|
|
.load(R.drawable.ic_logo_cock)
|
|
|
.placeholder(R.drawable.animal_seven)
|
|
@@ -66,38 +54,31 @@ class MainModuleViewHolder(itemView: View, private val detailButtonListener: ((S
|
|
|
|
|
|
backgroundModule.setBackgroundResource(R.drawable.chickenbg)
|
|
|
}
|
|
|
- Config.YUKI_APP_ID -> {
|
|
|
+ Config.MACHINE_APP_NAME.trim().toLowerCase() -> {
|
|
|
picasso
|
|
|
- .load(R.drawable.ic_yuki)
|
|
|
- .placeholder(R.drawable.animal_seven)
|
|
|
- .into(imgIcon)
|
|
|
-
|
|
|
- backgroundModule.setBackgroundResource(R.drawable.yukibg)
|
|
|
- }
|
|
|
- Config.APONG_APP_ID -> {
|
|
|
- picasso
|
|
|
- .load(R.drawable.ic_apong)
|
|
|
- .placeholder(R.drawable.animal_seven)
|
|
|
+ .load(R.drawable.ic_lotto_main)
|
|
|
+ .placeholder(R.drawable.ic_lotto_80)
|
|
|
.into(imgIcon)
|
|
|
|
|
|
- backgroundModule.setBackgroundResource(R.drawable.apongbg)
|
|
|
+ backgroundModule.setBackgroundResource(R.drawable.lottobg)
|
|
|
}
|
|
|
- Config.CARD_APP_ID -> {
|
|
|
+ Config.KD855_APP_NAME.trim().toLowerCase() -> {
|
|
|
picasso
|
|
|
.load(R.drawable.ic_card)
|
|
|
.placeholder(R.drawable.ic_card)
|
|
|
.into(imgIcon)
|
|
|
|
|
|
- backgroundModule.setBackgroundResource(R.drawable.bg_card)
|
|
|
+ backgroundModule.setBackgroundResource(R.drawable.bg22)
|
|
|
}
|
|
|
- Config.SNK_APP_ID -> {
|
|
|
+ Config.SNK_APP_NAME.trim().toLowerCase() -> {
|
|
|
picasso
|
|
|
.load(R.drawable.ic_snk)
|
|
|
- .placeholder(R.drawable.ic_card)
|
|
|
+ .placeholder(R.drawable.ic_snk)
|
|
|
.into(imgIcon)
|
|
|
|
|
|
- backgroundModule.setBackgroundResource(R.drawable.bg_snk)
|
|
|
+ backgroundModule.setBackgroundResource(R.drawable.bg11)
|
|
|
}
|
|
|
+
|
|
|
else -> {
|
|
|
picasso
|
|
|
.load(R.drawable.ic_lotto_main)
|
|
@@ -112,7 +93,7 @@ class MainModuleViewHolder(itemView: View, private val detailButtonListener: ((S
|
|
|
|
|
|
itemModule.setSafeOnClickListener {
|
|
|
it.btnClick().subscribe {
|
|
|
- detailButtonListener?.invoke(item.id, item.appId, item.numberSub)
|
|
|
+ detailButtonListener?.invoke(item.id, item.appId, item.numberSub, item.comingSoon)
|
|
|
}
|
|
|
}
|
|
|
} else if (item is SubModuleData) {
|
|
@@ -136,8 +117,8 @@ class MainModuleViewHolder(itemView: View, private val detailButtonListener: ((S
|
|
|
imgIcon.layoutParams.width = height.toInt()
|
|
|
|
|
|
try {
|
|
|
- when (item.appId) {
|
|
|
- Config.LOTTO_APP_ID -> {
|
|
|
+ when (item.name.trim().toLowerCase()) {
|
|
|
+ Config.LOTTO_APP_NAME.trim().toLowerCase() -> {
|
|
|
picasso
|
|
|
.load(R.drawable.ic_lotto_80)
|
|
|
.placeholder(R.drawable.ic_lotto_80)
|
|
@@ -145,7 +126,7 @@ class MainModuleViewHolder(itemView: View, private val detailButtonListener: ((S
|
|
|
|
|
|
backgroundModule.setBackgroundResource(R.drawable.lottobg)
|
|
|
}
|
|
|
- Config.LOTTO_PLUS_APP_ID -> {
|
|
|
+ Config.LOTTO_PLUS_APP_NAME.trim().toLowerCase() -> {
|
|
|
picasso
|
|
|
.load(R.drawable.ic_lotto_plus)
|
|
|
.placeholder(R.drawable.ic_lotto_plus)
|
|
@@ -153,7 +134,7 @@ class MainModuleViewHolder(itemView: View, private val detailButtonListener: ((S
|
|
|
|
|
|
backgroundModule.setBackgroundResource(R.drawable.lottobg)
|
|
|
}
|
|
|
- Config.YUKI_APP_ID -> {
|
|
|
+ Config.YUKI_APP_NAME.trim().toLowerCase() -> {
|
|
|
picasso
|
|
|
.load(R.drawable.ic_yuki)
|
|
|
.placeholder(R.drawable.ic_yuki)
|
|
@@ -161,7 +142,7 @@ class MainModuleViewHolder(itemView: View, private val detailButtonListener: ((S
|
|
|
|
|
|
backgroundModule.setBackgroundResource(R.drawable.yukibg)
|
|
|
}
|
|
|
- Config.APONG_APP_ID -> {
|
|
|
+ Config.APONG_APP_NAME.trim().toLowerCase() -> {
|
|
|
picasso
|
|
|
.load(R.drawable.ic_apong)
|
|
|
.placeholder(R.drawable.ic_apong)
|
|
@@ -170,13 +151,29 @@ class MainModuleViewHolder(itemView: View, private val detailButtonListener: ((S
|
|
|
backgroundModule.setBackgroundResource(R.drawable.apongbg)
|
|
|
}
|
|
|
|
|
|
- Config.CARD_APP_ID -> {
|
|
|
+ Config.CARD_APP_NAME.trim().toLowerCase() -> {
|
|
|
picasso
|
|
|
.load(R.drawable.ic_card)
|
|
|
.placeholder(R.drawable.ic_card)
|
|
|
.into(imgIcon)
|
|
|
|
|
|
- backgroundModule.setBackgroundResource(R.drawable.bg_card)
|
|
|
+ backgroundModule.setBackgroundResource(R.drawable.bg22)
|
|
|
+ }
|
|
|
+ Config.RAT_APP_NAME.trim().toLowerCase() -> {
|
|
|
+ picasso
|
|
|
+ .load(R.drawable.ic_snk)
|
|
|
+ .placeholder(R.drawable.ic_snk)
|
|
|
+ .into(imgIcon)
|
|
|
+
|
|
|
+ backgroundModule.setBackgroundResource(R.drawable.bg11)
|
|
|
+ }
|
|
|
+ Config.Klaklouk_APP_NAME.trim().toLowerCase() -> {
|
|
|
+ picasso
|
|
|
+ .load(R.drawable.ic_snk)
|
|
|
+ .placeholder(R.drawable.ic_snk)
|
|
|
+ .into(imgIcon)
|
|
|
+
|
|
|
+ backgroundModule.setBackgroundResource(R.drawable.bg11)
|
|
|
}
|
|
|
else -> {
|
|
|
picasso
|
|
@@ -190,7 +187,7 @@ class MainModuleViewHolder(itemView: View, private val detailButtonListener: ((S
|
|
|
|
|
|
itemModule.setSafeOnClickListener {
|
|
|
it.btnClick().subscribe {
|
|
|
- detailButtonListener?.invoke(item.id, item.appId, 0)
|
|
|
+ detailButtonListener?.invoke(item.id, item.appId, 0, false)
|
|
|
}
|
|
|
}
|
|
|
}
|