Home | Project | Navigation |
---|---|---|
Login | Me | Collect |
---|---|---|
The project adopts componentization, and the structure is as follows:
- | - | app module |
- | - |
---|---|---|---|---|
User kb_user module |
Home kb_home module |
Project kb_project module |
Navigation kb_navigation module |
Me kb_me module |
- | - | Common kb_common module |
- | - |
BaseViewModel.kt
typealias vmBLOCK = suspend () -> Unit
open class BaseViewModel : ViewModel() {
protected fun launch(block: vmBLOCK) {
viewModelScope.launch {
try {
block.invoke()
} catch (e: Exception) {
onError(e)
}
}
}
private fun onError(e: Exception) {
Log.d("onError", "onError: $e")
}
}
BaseRepository.kt
open class BaseRepository {
suspend fun <T> dealResp(
block: suspend () -> BaseResp<T>,liveData: RespStateData<T>,) {
var result = BaseResp<T>()
result.responseState = BaseResp.ResponseState.REQUEST_START
liveData.value = result
try {
result = block.invoke()
when (result.errorCode) {
Constants.HTTP_SUCCESS -> {
result.responseState = BaseResp.ResponseState.REQUEST_SUCCESS
}
Constants.HTTP_AUTH_INVALID -> {
result.responseState = BaseResp.ResponseState.REQUEST_FAILED
ToastUtil.showMsg("认证过期,请重新登录!")
ARouter.getInstance().build(Constants.PATH_LOGIN).navigation()
}
else -> {
result.responseState = BaseResp.ResponseState.REQUEST_FAILED
ToastUtil.showMsg("code:" + result.errorCode.toString() + " / msg:" + result.errorMsg)
}
}
} catch (e: Exception) {
when (e) {
is UnknownHostException,
is HttpException,
is ConnectException,
-> {
//网络error
ToastUtil.showMsg("网络错误!")
}
else -> {
ToastUtil.showMsg("未知错误!")
}
}
result.responseState = BaseResp.ResponseState.REQUEST_ERROR
} finally {
liveData.value = result
}
}
}
V1.1 - 2022-08-30
bug fix ...
V1.0 - 2022-08-25
first commit
Copyright [2022] [stew]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.