[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-12-21Vue3教程:新手入门到实践应用
- 2024-12-21VueRouter4教程:从入门到实践
- 2024-12-20Vue3项目实战:从入门到上手
- 2024-12-20Vue3项目实战:新手入门教程
- 2024-12-20VueRouter4项目实战:新手入门教程
- 2024-12-20如何实现JDBC和jsp的关系?-icode9专业技术文章分享
- 2024-12-20Vue项目中实现TagsView标签栏导航的简单教程
- 2024-12-20Vue3入门教程:从零开始搭建你的第一个Vue3项目
- 2024-12-20从零开始学习vueRouter4:基础教程
- 2024-12-20Vuex4课程:新手入门到上手实战全攻略