我需要具有不同的管道/分支链,才能修改一个全局状态。
在分支机构内部时,如何避免冒泡全局状态更改事件?
如何改善这种惯用的RxJS方法
const globalState = {}
const br_one_step1$ = globalStateChange$.map(modGlobState_br_one_step1)
const br_one_step2$ = br_one_step1$.map(modGlobState_br_one_step2)
const br_one_step3$ = br_one_step2$.map(modGlobState_br_one_step3)
br_one_step3$.subscribe()
const br_two_step1$ = globalStateChange$.map(modGlobState_br_two_step1)
const br_two_step2$ = br_two_step1$.map(modGlobState_br_two_step2)
const br_two_step3$ = br_two_step2$.map(modGlobState_br_two_step3)
br_two_step3$.subscribe()```