Created
          March 18, 2019 20:59 
        
      - 
      
 - 
        
Save staltz/8680b186b50364ab20db938658ff4277 to your computer and use it in GitHub Desktop.  
    Build your own RxJS
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | function createObservable(subscribe) { | |
| return { | |
| subscribe, | |
| pipe: function(operator) { | |
| return operator(this); | |
| }, | |
| }; | |
| } | |
| const numberObservable = createObservable(function(observer) { | |
| [10, 20, 30, 40].forEach(function(x) { | |
| observer.next(x); | |
| }); | |
| observer.complete(); | |
| }); | |
| const clickObservable = createObservable(function (observer) { | |
| document.addEventListener('click', function(ev) { | |
| observer.next(ev); | |
| }); | |
| }); | |
| const observer = { | |
| next: function(x) { | |
| console.log(x); | |
| }, | |
| error: function(err) { | |
| console.error(err); | |
| }, | |
| complete: function() { | |
| console.log('done'); | |
| }, | |
| }; | |
| function map(f) { | |
| return inputObservable => createObservable( | |
| function(outputObserver) { | |
| inputObservable.subscribe({ | |
| next: x => { | |
| const y = f(x); | |
| outputObserver.next(y); | |
| }, | |
| error: err => { | |
| outputObserver.error(err); | |
| }, | |
| complete: () => { | |
| outputObserver.complete(); | |
| }, | |
| }); | |
| }, | |
| ); | |
| } | |
| function filter(f) { | |
| return inputObservable => createObservable( | |
| function(outputObserver) { | |
| inputObservable.subscribe({ | |
| next: x => { | |
| if (f(x)) { | |
| outputObserver.next(x); | |
| } | |
| }, | |
| error: err => { | |
| outputObserver.error(err); | |
| }, | |
| complete: () => { | |
| outputObserver.complete(); | |
| }, | |
| }); | |
| }, | |
| ); | |
| } | |
| // numberObservable | |
| // .pipe(map(x => x * 10)) | |
| // .pipe(filter(x => x !== 200)) | |
| // .subscribe(observer); | |
| clickObservable | |
| .pipe(map(ev => [ev.clientX, ev.clientY])) | |
| .pipe(filter(([x, y]) => x < 200 && y < 200)) | |
| .subscribe(observer); | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment