Git Product home page Git Product logo

Comments (5)

pinghe avatar pinghe commented on August 26, 2024

Understanding Operator Imports
https://www.learnrxjs.io/concepts/operator-imports.html

from vue-rx.

Shyam-Chen avatar Shyam-Chen commented on August 26, 2024
// rxjs v6.0.0
import { of } from 'rxjs';
import { filter, map, reduce } from 'rxjs/operators';

of(2, 'foo', 5, 'bar', 10)
  .pipe(  // pipeable is here
    filter(value => !isNaN(value)),
    map(value => value * 2),
    reduce((acc, value) => acc + value, 0)
  )
  .subscribe(value => console.log(value));
  // 34

from vue-rx.

doliver3 avatar doliver3 commented on August 26, 2024

This doesn't look like full RXJS 6.0 support yet. Could you document how to use vue-rx with RXJS 6 without the rxjs-compat layer?

https://docs.google.com/document/d/12nlLt71VLKb-z3YaSGzUfx6mJbc34nsMXtByPUN35cg/edit

from vue-rx.

paulpdaniels avatar paulpdaniels commented on August 26, 2024

Well it doesn't look like that many operators are actually used. So maybe it would be easier than I thought.

My thought was that instead of using the global Rx instead pass around a _RxLike, then support packages that define an adapter for the particular library (this is off the top of my head, if we agree to this approach I'll do some more due diligence on the exact syntax and required operators):

// For RxJS 6
import {share} from 'rxjs/operators/share'

const adapter = {
  create: observer => new Observable(observer),
  share
};

// For RxJS 5
import {Observable} from 'rxjs/Observable'
import 'rxjs/add/operator/share'

const adapter = {
  create: Observable.create,
  share: source => source.share()
};

// In createObservableMethod
// operator creation is hidden behind the adapter.
const {create, share} = adapter;
return share(create(creator));

We could also add development flags to run a check on the provided object bag to make sure that necessary features are included.

from vue-rx.

regou avatar regou commented on August 26, 2024

#83

from vue-rx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.