GithubHelp home page GithubHelp logo

Form fields for union types about elm-form HOT 10 CLOSED

etaque avatar etaque commented on July 4, 2024
Form fields for union types

from elm-form.

Comments (10)

etaque avatar etaque commented on July 4, 2024

Gosh, I'm afraid I don't have any satisfying answer for this, sorry... Not possible to do dependant validations at the moment.
We could look at how Json.Decode does that, implementation should be similar.

from elm-form.

nmk avatar nmk commented on July 4, 2024

I did something like this:

type alias CompanyName =
    String


type AccountType
    = Private
    | Business CompanyName


type alias Registration =
    { email : String
    , accountType : AccountType
    }

validateRegistration : Validation () Registration
validateRegistration =
    let
        company =
            "company" := oneOf [ string, emptyString ]
    in
        Validate.succeed Registration
            |: ("email" := email)
            |: (("accountType" := validateAccountType) |: company)


validateAccountType : Validation e (String -> AccountType)
validateAccountType =
    string
        |> map
            (\s ->
                case s of
                    "business" ->
                        \x -> Business x

                    _ ->
                        \_ -> Private
            )

This works but is not ideal, as it allows Business "" as a valid value.

from elm-form.

etaque avatar etaque commented on July 4, 2024

Okey, you could try using andThen like in Json.Decode, because Validation's andThen follows the same logic:
http://package.elm-lang.org/packages/elm-lang/core/4.0.5/Json-Decode#andThen

from elm-form.

nmk avatar nmk commented on July 4, 2024

This is the first thing I tried. However if the validation is like

validateRegistration : Validation () Registration
validateRegistration =
      Validate.succeed Registration
          |: ("email" := email)
          |: ("accountType" := string `andThen` accountType)

accountType : String -> Validation e AccountType
accountType s =
    case s of
        "business" ->
            succeed Business |: ("companyName" := string)

        _ ->
            succeed Private

then andThen shifts the scope of companyName under accountType (the errors include accountType.companyName: InvalidString). Is this intended? In the case of Json.Decode the "scope" is not shifted.

from elm-form.

etaque avatar etaque commented on July 4, 2024

Okey, that's not intended, as fair as I can remember.

from elm-form.

nmk avatar nmk commented on July 4, 2024

I made an example: https://gist.github.com/nmk/e9fd97dd1a62c04fc52545fec5a9b4ef

from elm-form.

etaque avatar etaque commented on July 4, 2024

Thanks for the example. I'm writing tests first as this change will break things.

from elm-form.

etaque avatar etaque commented on July 4, 2024

Oh... could you try adding parenthesis like this:

(("accountType" := string) `andThen` accountType)

otherwise andThen is applying on string, not on the whole field getter!

from elm-form.

nmk avatar nmk commented on July 4, 2024

You are right! That works and solves the problem nicely. It would be nice if we could get this in the documentation. I will try to get a PR in next week.

from elm-form.

nmk avatar nmk commented on July 4, 2024

Just for completeness, here is a link to a working gist: https://gist.github.com/nmk/e9fd97dd1a62c04fc52545fec5a9b4ef

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.