Giter Club home page Giter Club logo

Comments (6)

nordfjord avatar nordfjord commented on July 16, 2024

Should be possible to implement it as

function dropCurrentValue(s) {
  var dropped = false
  return flyd.combine(function(stream$, self) {
    if (!dropped) {
      dropped = true
      return
    }
    self(stream$.val)
  }, [s])
}

from flyd.

NoelAbrahams avatar NoelAbrahams commented on July 16, 2024

Ah, thanks @nordfjord. You have literally saved me 100 LOC after my attempt to rework this!

I've also tried to convert this to switchMap:

flyd.switchMap = projector => stream => switchLatest(flyd.map(projector, stream));

For usage in pipe, like this:

const stream = flyd.stream<number>();
stream.pipe(
    flyd.switchMap(value => flyd.stream(value * 10)))
    .map(value => {
        console.error(value); // '10'
    });

stream(1);

I'm about 90% sure that's not the way to define switchMap?!

from flyd.

nordfjord avatar nordfjord commented on July 16, 2024

Did you write a small suite of tests to ensure it does what you want it to? 😜

from flyd.

NoelAbrahams avatar NoelAbrahams commented on July 16, 2024

Haha. Test cases are for losers.

But actually you do me an injustice. It's quite well tested. It's currently doing what I want it to do. But I have concerns that it won't conform to how the other modules are defined. I'm using it in pipe as above, but I also notice that some modules allow the stream to be passed in. TBH the modules don't really seem to be very consistent.

from flyd.

nordfjord avatar nordfjord commented on July 16, 2024

FWIW I think that’s a fine implementation of switchMap, simple composition goes a long way.

as for the consistency of modules, yes, agreed

from flyd.

NoelAbrahams avatar NoelAbrahams commented on July 16, 2024

Thanks for the sanity check @nordfjord. Appreciate your help with this.

from flyd.

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.