|
@@ -13,6 +13,7 @@ import java.util.concurrent.TimeUnit
|
|
|
class SettingViewModel(val apiService: ApiService, val prefHelper: PrefHelper) : BaseViewModel() {
|
|
|
private val _state = MutableLiveData<UpdatePwdViewState>(UpdatePwdViewState())
|
|
|
val state: LiveData<UpdatePwdViewState> = _state
|
|
|
+ private fun prev() = _state.value!!
|
|
|
|
|
|
fun updatePassword(oldPassword: String, newPassword: String) {
|
|
|
if (_state.value!!.isProgress) return
|
|
@@ -41,7 +42,30 @@ class SettingViewModel(val apiService: ApiService, val prefHelper: PrefHelper) :
|
|
|
)
|
|
|
}
|
|
|
|
|
|
- private fun prev() = _state.value!!
|
|
|
+ private val _stateLogout = MutableLiveData<LogoutViewState>(LogoutViewState())
|
|
|
+ val stateLogout: LiveData<LogoutViewState> = _stateLogout
|
|
|
+ private fun prevLogout() = _stateLogout.value!!
|
|
|
|
|
|
+ fun logout() {
|
|
|
+ if (_stateLogout.value!!.isProgress) return
|
|
|
+ _stateLogout.value = prevLogout().copy(isProgress = true)
|
|
|
|
|
|
+ disposables.add(
|
|
|
+ apiService.logout()
|
|
|
+ .timeout(60, TimeUnit.SECONDS)
|
|
|
+ .subscribeOn(Schedulers.io())
|
|
|
+ .observeOn(AndroidSchedulers.mainThread())
|
|
|
+ .subscribe({
|
|
|
+ if (it.resultCode == "1") {
|
|
|
+ _stateLogout.value = prevLogout().copy(isProgress = false, isSuccess = true)
|
|
|
+ prefHelper.logout()
|
|
|
+ } else {
|
|
|
+ _stateLogout.value = prevLogout().copy(isProgress = false, error = "[${it.message.description}]")
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ val message: String = "ប្រតិបត្តិការមិនជោគជ័យ\n" + it.getErrorCode()
|
|
|
+ _stateLogout.value = prevLogout().copy(isProgress = false, error = message)
|
|
|
+ })
|
|
|
+ )
|
|
|
+ }
|
|
|
}
|