Code Monkey home page Code Monkey logo

Comments (4)

emmanueltouzery avatar emmanueltouzery commented on August 27, 2024 1

hi, thank you for the feedback! In this case I'm not sure the idea with two generics is actually a progress. One thing is that in that concrete case with the JSX, I think this would work:

const content = results.match({
  None: () => <Loader />,
  Some: movies => <>{movies.map(movie => <MoviesListItem key={movie.id} {...movie} />)}</>
})

the other thing is that I think you can achieve what you want already with the current API. In the end if you want to return an or type with both options, you can just force typescript to use the or type, and it'll work already today, which means this would work:

const content = results.match<JSX.Element|JSX.Element[]>({
  None: () => <Loader />,
  Some: movies => movies.map(movie => <MoviesListItem key={movie.id} {...movie} />)
})

But, granted, in that case you get no inference for free.

Still, for now I think the way prelude does it for now is probably the right way. The way match works follows a general principle in functional programming, it's a catamorphism, and that has proven useful in many contexts and libraries, for instance:

and maybe others for sure. If you check these links, they all use one generic only for the return type, so I think that's the better way. But I'm always interested if you have a concrete example or if the "workarounds" i gave are not good enough! By default though, because the concept of catamorphism is so accepted in functional programming, I probably wouldn't touch match, but we can add another function for some special use-case, and either rename the current match and have the new function named match. But currently I think the current setup found in prelude is OK.

Thank you again for the feedback, and let me know what you think!

from prelude-ts.

teevik avatar teevik commented on August 27, 2024 1

Oh yeah, I'm definitely fine with it staying like that.

I also found out you can use

results.match<React.ReactNode>({
  ...
})

from prelude-ts.

teevik avatar teevik commented on August 27, 2024

I'll make a pull request if that's ok

from prelude-ts.

emmanueltouzery avatar emmanueltouzery commented on August 27, 2024

great to hear you found a good way!

from prelude-ts.

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.