In ReScript with React, how do you make an effect with an async method inside? I can do it, but I need to put a ->ignore at the end of the promise chain to convert the Promise<unit> to a simple unit. Shouldn’t the React bindings for ReScript support an effect with a promise?
Here’s how it looks in my TypeScript that I’m migrating…
I think it’s a good thing that ReScript requires you to be explicit with a value you don’t use. In your scenario it’s a reminder: “You have a long-running operation here, the component might be unmounted before the process completes. Use the clean-up function to stop the animation before unmounting”
If it is OK for your animation library to target an unmounted component, well, you’re explicit about it with ignore.
Whenever you use a promise as a side effect, then you will almost always need to use the ignore function to, well, ignore it. This is universally true in ReScript, not just when using React. It’s tied to how the promise bindings work.
I believe there was discussion once about having a forEach style promise binding that automatically returns unit, (and some userland promise libraries implement that), but IIRC the consensus was that it’s easier to just use ignore instead of adding an extra binding to the stdlib.
There is also an open PR on rescript-promise to have a function Promise.done that will strictly ignore promise values so it’s a bit more typesafe than the general ignore function.