-
Notifications
You must be signed in to change notification settings - Fork 465
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
new [@react.component] vs .rei #3519
Comments
do you have a small example, this seems to be a ppx issue. can you try add type annotations to make see if it is indeed the type |
@bobzhang is the following more useful?
H.rei
-make-world =>
|
Looking at this. |
Hey @diligiant it looks like everything works! These types aren't correct.
|
@rickyvetter you are right, I made a mistake (my classic mistake) when I added the types per bob's request. BUT if I remove them (in the .re), the error comes back Is this normal ?
|
I've created a slightly simpler case for this - in an re file you can add the following: module Foo: {
[@react.component]
let make:
(
~htmlAttributes: array(float)=?,
)
=> React.element;
} = {
[@react.component]
let make =
(
~htmlAttributes as _=?,
)
: React.element =>
<div />;
}; Specific ingredients needed: optional argument with a complex type -
In this scenario you can see that the types do indeed match - which leads me to believe it has something to do with the hidden optional types. Investigating further. Sorry for the slow turnaround here! |
@rickyvetter don’t worry ; all that matters if that you find so that others don’t face this. |
@rickyvetter are you sure it's fixed?
[.bin/bsb -> new repository - one can never be too careful] Your simpler case still errs as well as mine (I checked that the changes you committed where there as well.) |
module Foo :
sig
external makeProps : ?bar:string array -> unit -> string = ""[@@bs.obj ]
end =
struct external makeProps : ?bar:'bar -> unit -> string = ""[@@bs.obj ] end @bobzhang I think this is actually an issue with bs.obj. I'm not sure why it took so long to figure out. |
looking into it, thanks for the small example |
Aliasing the module Foo : sig
type t
type bar = string array
external makeProps : ?bar:bar -> unit -> t = "" [@@bs.obj]
end = struct
type t
type bar = string array
external makeProps : ?bar:'bar -> unit -> t = "" [@@bs.obj]
end |
hi all, it should be fixed on master, let me know if it works, sorry for the delay |
@bobzhang I checked previous examples and it's fixed here. Thank you. I was able to uncomment other .rei (ones with default values for ex), so thank you again. |
@bobzhang the problem is "back/still" in 6.0.3 (5.0.5 is fine). You can reproduce with @rickyvetter minimal test case
|
This looks weird, when I fix the bug, I added a regression test: https://github.com/BuckleScript/bucklescript/blob/master/jscomp/test/gpr_3519_test.ml |
@rickyvetter could this be a bug in react-jsx 4.06? |
@diligiant if this is a new bug, would you mind open a new issue? |
@bobzhang thank you. I'll let @rickyvetter "answer" your previous hint and take it from here. |
While updating components to 5.0.4 (used master ##bb21ecb) and v3 syntax. I hit the following error :
@rickyvetter made me check that it's not a ppx issue. files are below.
.re
.rei
The text was updated successfully, but these errors were encountered: