Git Product home page Git Product logo

Comments (4)

qwfy avatar qwfy commented on June 16, 2024 1

Besides #83, there is another issue about type safety, namely, if you write:

field "someField"
|> string
|> nonEmpty
|> maxLength 7

in a validate function, the code compiles, but the last two checks won't have any effect, they fail silently, you have to group the three checks together and then pass it to field.

from elm-form.

etaque avatar etaque commented on June 16, 2024

Yeah, it should be explained more precisely. #83 would improve this but there is a long way to go, so I'll improve the README.

from elm-form.

etaque avatar etaque commented on June 16, 2024

Okey, I've made it a bit more explicit in the README, and mentioned this issue.

from elm-form.

erlandsona avatar erlandsona commented on June 16, 2024

Has anyone tried fixing this using Lens keys?
We use elm-review-missing-record-field-lens to code generate elm-accessors based lenses and it's been a really nice experience thus far.
I started a Form abstraction from scratch that's a dictionary keyed on the name of the lens which seems to make this sort of thing "type safe" in that Property parent field -> Model parent ensures that a Form can only be constructed and deconstructed with "keys" that operate on parent's.
What I haven't figured out is how to "Tree"-ify it to enable nested data & higher kinded types EG:
currently it works really well over

type alias Something =
    { id : Int
    , name : String
    , address : Address -- Assuming an address can be represented as a string input.
    }

What I haven't figured out yet is...

type alias SomethingWithExtraInfo =
    { id : Int
    , name : String
    , address : Address
    , emails : List Email -- Where each email would be it's own form...
    }

I feel like this is just a serialization problem but I'm starting to get a bunch of getIntProp getStrProp setIntProp setStrProp helpers and that feels sort of anti-lensy and I'm not sure quite how to make it all "fit".

from elm-form.

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.