Maxime Mangel
Maxime Mangel
> One would think that defensive struct copy would not be applicable to (nullable) reference types, but I'm not sure. Perhaps indeed. But this is a similar issue for the...
Hello @ncave I think this is the main missing feature in order to make Fable 5 stable, do you have an idea how to fix it? In order to release...
After some trial an error, I was able to make ```fs let mutable a = 0 a |> ignore let Ele() = JSX.create "div" [ if a = 1 then...
Note: We will need to generate code like ```js const MyObjSpreadExample = () => { const shouldHaveBackground = true; const props = Object.fromEntries([ ["id", "myId"], shouldHaveBackground && ["style", { background:...
In the example shown above, it seems to be "easy" but what if the condition is not at the top level but in a nested children. ```fs let mutable a...
Sorry I think I was not explicit enough about the problems: ```fs let Ele() = JSX.create "div" [ if a = 1 then "className", "first" "data-my-attr", "hello" ] ``` This...
The more I try to make the JSX conversion work the more I discover edges cases. To avoid having to rewrite the condition handling like shown above, I tried to...
If someone is looking for a pure F# alternative to React @thinkbeforecoding made https://codeberg.org/thinkbeforecoding/Fastoch I didn't have the chance to test it out yet but depending on your usage of...
> @DunetsNM You are correct, this is a different issue than https://github.com/fable-compiler/Fable/issues/3566. Also, we can leave https://github.com/fable-compiler/Fable/issues/3822 closed and keep this one, as they're the same issue. Sorry, I thought...
@rainersigwald This is indeed what I am doing: ```fs this.CurrentRelease