Skip to content

Instantly share code, notes, and snippets.

@jaredly
Last active January 1, 2021 17:34
Show Gist options
  • Star 23 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jaredly/951177b8f5518bfbd19aa1a5ce093e7b to your computer and use it in GitHub Desktop.
Save jaredly/951177b8f5518bfbd19aa1a5ce093e7b to your computer and use it in GitHub Desktop.
ReasonReact Context API Example
module StringContext =
Context.MakePair({
type t = string;
let defaultValue = "Awesome";
});
let component = ReasonReact.statelessComponent("Tree");
let make = _children => {
...component,
render: _self =>
<StringContext.Provider value="Hello folks">
<div>
<StringContext.Consumer>
...{text => str(text)}
</StringContext.Consumer>
</div>
</StringContext.Provider>,
};
type pair;
[@bs.get] external provider: pair => ReasonReact.reactClass = "Provider";
[@bs.get] external consumer: pair => ReasonReact.reactClass = "Consumer";
[@bs.module "React"] external createContext: 'a => pair = "";
module MakePair = (Config: {
type t;
let defaultValue: t;
}) => {
let _pair = createContext(Config.defaultValue);
module Provider = {
let make = (~value: Config.t, children) =>
ReasonReact.wrapJsForReason(
~reactClass=provider(_pair),
~props={"value": value},
children,
);
};
module Consumer = {
let make = (children: (Config.t) => ReasonReact.reactElement) =>
ReasonReact.wrapJsForReason(
~reactClass=consumer(_pair),
~props=Js.Obj.empty(),
children
)
};
};
@KidkArolis
Copy link

I get this error:

image

@gaelollivier
Copy link

Context.re:7 should probably be [@bs.module "react"], otherwise it seems react is loaded twice. Might be a webpack issue though.

Here's the warning I get:

There are multiple modules with names that only differ in casing.
This can lead to unexpected behavior when compiling on a filesystem with other case-semantic.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment