From e18f992930474f3023e722d37f7ca06bf1e222b6 Mon Sep 17 00:00:00 2001 From: Ztiany Date: Tue, 5 Nov 2019 11:20:40 +0800 Subject: [PATCH] optimize UIKit --- .../java/com/android/base/app/ui/UIKit.kt | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/lib_base/src/main/java/com/android/base/app/ui/UIKit.kt b/lib_base/src/main/java/com/android/base/app/ui/UIKit.kt index 09e787b..ab7c6d0 100644 --- a/lib_base/src/main/java/com/android/base/app/ui/UIKit.kt +++ b/lib_base/src/main/java/com/android/base/app/ui/UIKit.kt @@ -9,7 +9,6 @@ import com.android.base.app.Sword import com.android.base.data.State import com.android.base.data.StateHandler import com.android.base.utils.common.isEmpty -import timber.log.Timber //----------------------------------------------Common->Loading->Dialog ---------------------------------------------- interface UIErrorHandler { @@ -22,6 +21,7 @@ interface UIErrorHandler { fun H.handleLiveState( liveData: LiveData>, + loadingMessage: CharSequence = "", forceLoading: Boolean = true, onError: ((Throwable) -> Unit)? = null, onSuccess: (T?) -> Unit @@ -30,7 +30,6 @@ fun H.handleLiveState( liveData.observe(this, Observer { state -> when { state.isError -> { - Timber.d("handleLiveState -> isError") dismissLoadingDialog(Sword.minimumShowingDialogMills) { if (onError != null) { onError(state.error()) @@ -40,11 +39,9 @@ fun H.handleLiveState( } } state.isLoading -> { - Timber.d("handleLiveState -> isLoading") - showLoadingDialog(!forceLoading) + showLoadingDialog(loadingMessage, !forceLoading) } state.isSuccess -> { - Timber.d("handleLiveState -> isSuccess") dismissLoadingDialog(Sword.minimumShowingDialogMills) { onSuccess(state.get()) } @@ -56,18 +53,20 @@ fun H.handleLiveState( fun H.handleLiveState2( liveData: LiveData>, + loadingMessage: CharSequence = "", forceLoading: Boolean = true, handler: StateHandler.() -> Unit ) where H : UIErrorHandler, H : LoadingView, H : LifecycleOwner { liveData.observe(this, Observer { state -> - handleState(state, forceLoading, handler) + handleState(state, loadingMessage, forceLoading, handler) }) } fun LoadingView.handleState( state: State, + loadingMessage: CharSequence = "", forceLoading: Boolean = true, handler: StateHandler.() -> Unit ) { @@ -77,17 +76,14 @@ fun LoadingView.handleState( when { state.isError -> { - Timber.d("handleState -> isError") dismissLoadingDialog(Sword.minimumShowingDialogMills) { stateHandler.onError?.invoke(state.error()) } } state.isLoading -> { - Timber.d("handleState -> isLoading") - showLoadingDialog(!forceLoading) + showLoadingDialog(loadingMessage, !forceLoading) } state.isSuccess -> { - Timber.d("handleState -> isSuccess") dismissLoadingDialog(Sword.minimumShowingDialogMills) { stateHandler.onSuccess?.invoke(state.get()) if (state.hasData()) { @@ -250,7 +246,13 @@ fun RefreshListLayout.submitListResultWithoutState(list: List?, hasMor } //----------------------------------------------Loading In StateView---------------------------------------------- -fun RefreshStateLayout.handleStateResult(state: State, onEmpty: (() -> Unit)? = null, onResult: ((T) -> Unit)) { +private fun newDefaultChecker(): ((T) -> Boolean)? { + return { t -> + (t is CharSequence && (t.isEmpty() || t.isBlank())) || (t is Collection<*> && t.isEmpty()) || (t is Map<*, *> && t.isEmpty()) + } +} + +fun RefreshStateLayout.handleStateResult(state: State, isEmpty: ((T) -> Boolean)? = newDefaultChecker(), onEmpty: (() -> Unit)? = null, onResult: ((T) -> Unit)) { when { state.isLoading -> { showLoadingLayout() @@ -259,24 +261,24 @@ fun RefreshStateLayout.handleStateResult(state: State, onEmpty: (() -> Un handleResultError(state.error()) } state.isSuccess -> { - handleResult(state.get(), onEmpty, onResult) + handleResult(state.get(), isEmpty, onEmpty, onResult) } } } -fun RefreshStateLayout.handleResult(t: T?, onEmpty: (() -> Unit)? = null, onResult: ((T) -> Unit)) { +fun RefreshStateLayout.handleResult(t: T?, isEmpty: ((T) -> Boolean)? = newDefaultChecker(), onEmpty: (() -> Unit)? = null, onResult: ((T) -> Unit)) { if (isRefreshing) { refreshCompleted() } - if (t == null || (t is CharSequence && (t.isEmpty() || t.isBlank())) || (t is Collection<*> && t.isEmpty()) || (t is Map<*, *> && t.isEmpty())) { + if (t == null || isEmpty?.invoke(t) == true) { if (onEmpty != null) { onEmpty() } else { showEmptyLayout() } } else { - onResult.invoke(t) showContentLayout() + onResult.invoke(t) } } @@ -288,11 +290,9 @@ fun RefreshStateLayout.handleResultError(throwable: Throwable) { if (errorTypeClassifier != null) { when { errorTypeClassifier.isNetworkError(throwable) -> { - Timber.d("isNetworkError showNetErrorLayout") showNetErrorLayout() } errorTypeClassifier.isServerError(throwable) -> { - Timber.d("isServerError showServerErrorLayout") showServerErrorLayout() } else -> showErrorLayout()