Git Product home page Git Product logo

Comments (3)

ghostdogpr avatar ghostdogpr commented on August 16, 2024 5

Also interested in this kind of feature. When you need transformation both ways, it would be nice to be able to define the field mapping only once.

from chimney.

MateuszKubuszok avatar MateuszKubuszok commented on August 16, 2024 2

If anyone is interested in implementing such thing, it would require:

  • creating some case classes, let's call them
    case class IsoTransformer[L, R](toRight: Transformer[L, R], toLeft: Transformer[R, L])
    case class CodecTransformer[Domain, DTO](encode: Transformer[Domain, DTO], decode: PartialTransformer[DTO, Domain])
  • creating IsoTransformerDefinition[L, R] and CodecTransformerDefinition[Domain, DTO] similar to TransformerDefinition and PartialTransformerDefinition
  • providing macros similar to existing macros on 2 & 3
    • it can be pretty much done with copy-paste-edit
  • providing IsoTransformer*Spec and CodecTransformer*Spec for: ImplicitResolution, JavaBean, Product, Sealed, ValueType etc

All in all, it is not a difficult work, so most new contributors should be able to do it, but it is also not a one liner to implement during afternoon.

from chimney.

yoohaemin avatar yoohaemin commented on August 16, 2024

Maybe you can utilize isomorphisms from other libraries (like monocle.Iso), and define two implicit Transformer instances based on that?

from chimney.

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.