Code Monkey home page Code Monkey logo

Comments (6)

alfonsogarciacaro avatar alfonsogarciacaro commented on July 19, 2024 2

Using | [<Erased>] Custom of string * obj should work and may solve the problem (I added that behavior afterwards). I'll check...

from fable-react.

inosik avatar inosik commented on July 19, 2024 1

I have pushed 3.1.3

There's no 3.1.3 on NuGet, but I added the Fable.Helpers.React.fs file as a Paket GitHub dependency and it works fine 👍

from fable-react.

MangelMaxime avatar MangelMaxime commented on July 19, 2024

@inosik This return an SVGAttr because this is the Custom attribute of SVGAttr

Each Attr type have is own Custom case.

IMO we should remove the compiler directive and only provide the static member inline Custom

from fable-react.

inosik avatar inosik commented on July 19, 2024

Shame on me 😄

This is the right code:

#if !FABLE_COMPILER
| Custom of string * obj
#else
/// If you are searching for a way to provide a value not supported by this DSL then use something like: CSSProp.Custom ("align-content", "center")
static member inline Custom (key: string, value: obj) : CSSProp = !!(key, value)
#endif

from fable-react.

inosik avatar inosik commented on July 19, 2024

IMO we should remove the compiler directive and only provide the static member inline Custom

We have to keep the union case for SSR, but it shouldn't be accessible. Unfortunately, you can't make a union case private in F#.

We could do something like this:

// FS0044: This construct is deprecated.
#nowarn "44"
type CSSProp =
    | [<Obsolete("Use the custom-method instead.")>]
      Custom of string * obj

    static member custom (key : string, value : obj) : CSSProp =
#if FABLE_COMPILER
        !!(key, value)
#else
        Custom (key, value)
#endif
#warn "44"

Ideally we would make it a compiler error with [<Obsolete("...", true)>], but then we can't use it inside of the custom-method.

from fable-react.

alfonsogarciacaro avatar alfonsogarciacaro commented on July 19, 2024

I have pushed 3.1.3, can you please try and reopen if it's still failing? Thanks!

from fable-react.

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.