首先,說(shuō)放棄 MVP钦铺,肯定是夸大其詞了订雾。MVP 很好,只是個(gè)人不習(xí)慣那么多的回調(diào)矛洞,更喜歡 Flux 這種單向數(shù)據(jù)流模式洼哎。希望大家能多多點(diǎn)贊,多多拍磚沼本!
下面以 com.huyingbao.simpel.main 包中的類作為講解噩峦,主要實(shí)現(xiàn) 主頁(yè)面->列表頁(yè)面->用戶信息頁(yè)面 跳轉(zhuǎn)。
一抽兆、包結(jié)構(gòu)
Views
MainActivty:是模塊內(nèi)唯一 Acitvity识补,對(duì)應(yīng) MainStore,負(fù)責(zé)容納Fragment辫红,控制 Fragment 之間跳轉(zhuǎn)凭涂。
MainFragment:主頁(yè)面祝辣,只有一個(gè) button,點(diǎn)擊跳轉(zhuǎn)到列表頁(yè)面
GitRepoListFragment切油。GitRepoListFragment:列表頁(yè)面蝙斜,展示網(wǎng)絡(luò)接口獲取回來(lái)的列表數(shù)據(jù),點(diǎn)擊其中一條數(shù)據(jù)澎胡,跳轉(zhuǎn)到用戶信息頁(yè)面 GitUserFragment孕荠。
GitUserFragment:用戶信息頁(yè)面,展示根據(jù) userId獲取的用戶信息滤馍。
Store
- MainStore 模塊主 store岛琼,原則上只有一個(gè)。主要用來(lái)接收發(fā)送的 RxAction(Views 通過(guò) ActionCreator 及其封裝的 Dispatcher 發(fā)送)巢株,封裝 RxAction 成 RxStoreChange槐瑞,并發(fā)送(通過(guò)封裝的Dispatcher發(fā)送)。
其他
- GitRepoAdapter:RecyclerVIew適配器阁苞。極其推薦BaseRecyclerViewAdapterHelper困檩。
- GitRepro、GitUser :model類那槽,接口返回Json數(shù)據(jù)解析類悼沿。
二、業(yè)務(wù)流程實(shí)現(xiàn)
-
MainFragment 跳轉(zhuǎn)到 GitRepoListFragment
- MainFragment 中通過(guò) mActionCreator 發(fā)送包含跳轉(zhuǎn)請(qǐng)求的 RxAction骚灸。
/**
* 到用戶信息頁(yè)面
*/
@OnClick(R.id.btn_main_to_list)
public void toGitRepoList() {
mActionCreator.postLocalAction(Actions.TO_GIT_REPO_LIST);
}
- BaseRxActionCreator 中 postLocalAction() 方法實(shí)現(xiàn)糟趾,已經(jīng)封裝好,不需要修改甚牲。
/**
* 發(fā)送LocalAction
*
* @param actionId
* @param data
*/
public void postLocalAction(@NonNull String actionId, @NonNull Object... data) {
postRxAction(newRxAction(actionId, data));
}
- MainStore 在 onRxAction() 方法中接收包含跳轉(zhuǎn)請(qǐng)求 RxAction义郑,通過(guò) switch 語(yǔ)句判斷具體執(zhí)行什么后續(xù)操作,如果是當(dāng)前模塊中需要處理邏輯丈钙,執(zhí)行 postChange() 方法非驮,發(fā)送 RxStoreChange。
@Override
public void onRxAction(RxAction rxAction) {
switch (rxAction.getType()) {
...
case Actions.Actions.TO_GIT_REPO_LIST:
break;
default://此處不能省略雏赦,不是本模塊的邏輯劫笙,直接返回,不發(fā)送RxStoreChange
return;
}
postChange(new RxStoreChange(getClass().getSimpleName(), rxAction));
}
- MainActivity 在onRxStoreChanged() 方法中接收 RxStoreChange星岗,獲取 RxStoreChange 中的 RxAction填大,通過(guò) switch 語(yǔ)句判斷業(yè)務(wù)邏輯,控制跳轉(zhuǎn)到 GitRepoListFragment伍茄。
@Override
public void onRxStoreChanged(@NonNull RxStoreChange rxStoreChange) {
RxAction rxAction = rxStoreChange.getRxAction();
switch (rxAction.getType()) {
case Actions.TO_GIT_REPO_LIST:
toGitRepoList();
break;
...
}
}
/**
* 到列表頁(yè)面
*/
private void toGitRepoList() {
getFragmentTransaction(R.id.fl_content)
.add(R.id.fl_content, GitRepoListFragment.newInstance())
.commit();
}
注意: MainFragment 不需要響應(yīng) RxStoreChange栋盹,只是繼承 BaseFragment,沒(méi)有繼承BaseRxFluxFragment(實(shí)現(xiàn)RxViewDispatch 接口)敷矫。
-
GitRepoListFragment 獲取列表數(shù)據(jù)
GitRepoListFragment 繼承 BaseRxFluxListFragment例获,一個(gè)封裝了 RecyclerView 的 BaseRxFluxFragment,大家可以看看曹仗,但是可能不符合自己項(xiàng)目需要榨汤。
-
GitUserFragment 獲取用戶信息
- GitUserFragment 中調(diào)用 mActionCreator 中的 getGitUser() 方法獲取接口數(shù)據(jù)。
@Override
public void afterCreate(Bundle savedInstanceState) {
initActionBar("用戶信息");//Fragment 控制 Activity的ToolBar 展示
mActionCreator.getGitUser(mContext, getArguments().getInt(ActionsKeys.USER_ID));
}
- ActionCreator 中 getGitUser() 方法實(shí)現(xiàn)怎茫。
@Override
public void getGitUser(Context context, int userId) {
RxAction action = newRxAction(GET_GIT_USER);
postLoadingHttpAction(context,action, mHttpApi.getUser(userId));
}
- MainStore 在 onRxAction() 方法中接收包含接口返回?cái)?shù)據(jù)的 RxAction收壕,通過(guò) switch 語(yǔ)句判斷具體執(zhí)行什么后續(xù)操作,如果是當(dāng)前模塊中需要處理邏輯轨蛤,緩存接口返回?cái)?shù)據(jù)蜜宪,執(zhí)行 postChange() 方法,發(fā)送 RxStoreChange祥山。
@Override
public void onRxAction(RxAction rxAction) {
switch (rxAction.getType()) {
...
case Actions.GET_GIT_USER:
mGitUser = rxAction.get(ActionsKeys.RESPONSE);
break;
...
default://此處不能省略圃验,不是本模塊的邏輯,直接返回缝呕,不發(fā)送RxStoreChange
return;
}
postChange(new RxStoreChange(getClass().getSimpleName(), rxAction));
}
public GitUser getGitUser() {//供view使用
return mGitUser;
}
- GitUserFragment 在onRxStoreChanged() 方法中接收 RxStoreChange澳窑,獲取 RxStoreChange 中的 RxAction,通過(guò) switch 語(yǔ)句判斷業(yè)務(wù)邏輯供常,從 MainStore 獲取數(shù)據(jù)并顯示摊聋。
@Override
public void onRxStoreChanged(@NonNull RxStoreChange rxStoreChange) {
switch (rxStoreChange.getRxAction().getType()) {
case Actions.GET_GIT_USER:
showGitUserInfo(mStore.getGitUser());
break;
}
}
/**
* 顯示用戶信息
*
* @param gitUser
*/
private void showGitUserInfo(GitUser gitUser) {
mTvGitUserLogin.setText(gitUser.getLogin());
mTvGitUserName.setText(gitUser.getName());
mTvGitUserStatistics.setText(gitUser.getName());
}
三、總結(jié)
- MainStore 通過(guò) Dagger2 注入到模塊中需要用的 View 中栈暇。
- ActionCreator 通過(guò) Dagger2 注入到 Base View中麻裁。
- 按流程用就好,僅僅是部分業(yè)務(wù)邏輯需要自定義方法實(shí)現(xiàn)源祈,代碼清晰明確煎源。
全局用法請(qǐng)等待,等不及的直接看源碼...