[RxJS] SwitchAll() - switch between two observables display always latest value
2021/9/16 6:06:14
本文主要是介绍[RxJS] SwitchAll() - switch between two observables display always latest value,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Converts a higher-order Observable into a first-order Observable producing values only from the most recent observable sequence
import './style.css'; import { fromEvent, of, merge, empty, concat, defer } from 'rxjs'; import { delay, map, mergeMap, tap, debounceTime, distinctUntilChanged, mapTo, filter, share, switchAll } from 'rxjs/operators'; import { format } from 'date-fns'; // track in progress saves let savesInProgress = 0; // references const input = document.getElementById('note-input'); const saveIndicator = document.querySelector('.save-indicator'); // streams const keyup$ = fromEvent(input, 'keyup'); // fake save request const saveChanges = value => { return of(value).pipe(delay(1500)); }; /** * Trigger a save when the user stops typing for 200ms * After new data has been successfully saved, so a saved * and last updated indicator. */ const inputToSave$ = keyup$.pipe( debounceTime(200), // @ts-ignore map(e => e.target.value), distinctUntilChanged(), share() ); const savesInProgress$ = inputToSave$.pipe( mapTo(of('Saving')), tap(_ => { savesInProgress++; console.log('savesInProgress++', savesInProgress); }) ); const savesCompleted$ = inputToSave$.pipe( mergeMap(saveChanges), tap(_ => { savesInProgress--; console.log('savesInProgress++', savesInProgress); }), // ignore if additional saves are in progress filter(_ => !savesInProgress), mapTo( concat( // display saved for 2s of('Saved!'), empty().pipe(delay(2000)), // then last updated time, defer for proper time defer(() => of(`Last updated: ${format(Date.now(), 'MM/DD/YYYY hh:mm:ss')}`) ) ) ) ); merge(savesInProgress$, savesCompleted$) .pipe( /* If new save comes in when our completion observable is running, we want to switch to it for a status update. */ switchAll() ) .subscribe(status => { saveIndicator.innerHTML = status; });
<iframe height="240" src="https://stackblitz.com/edit/rxjs-3txbvy?file=index.ts" style="width: 100%; height: 500px" width="320"></iframe>
这篇关于[RxJS] SwitchAll() - switch between two observables display always latest value的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15useCallback教程:React Hook入门与实践
- 2024-11-15React中使用useContext开发:初学者指南
- 2024-11-15拖拽排序js案例详解:新手入门教程
- 2024-11-15React中的自定义Hooks案例详解
- 2024-11-14受控组件项目实战:从零开始打造你的第一个React项目
- 2024-11-14React中useEffect开发入门教程
- 2024-11-14React中的useMemo教程:从入门到实践
- 2024-11-14useReducer开发入门教程:轻松掌握React中的useReducer
- 2024-11-14useRef开发入门教程:轻松掌握React中的useRef用法
- 2024-11-14useState开发:React中的状态管理入门教程