Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@jvlk/rescript-future) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@jvlk/rescript-future
Installation
npm install @vlk/rescript-futureUpdate rescript.json.
{
"bs-dependencies": [
"@jvlk/rescript-future"
]
}Basic Example
let _ =
Future.fetch("http://httpstat.us/200")
->Future.flatMap(res => {
switch res->Fetch.Response.ok {
| true => Ok(res)
| false =>
Error(`${res->Fetch.Response.status->Int.toString}: ${res->Fetch.Response.statusText}`)
}
})
->Future.map(res => res->Fetch.Response.statusText)
->Future.fold(Console.error, Console.log)More examples can be found in the examples directory.
@react.component
let make = () => {
let request = Future.fetch("http://httpstat.us/200?sleep=1000")
<div>
<button
onClick={_ => {
request->Future.reset // reset the future to make sure the Abort Controller is new
Console.log("clicked!")
let _ = request->Future.fold(Console.error, Console.log)
}}>
{"Start"->React.string}
</button>
<button
onClick={_ => {
let _ = request->Future.cancel // Aborts the fetch request and stops any processing of the response
}}>
{"Cancel"->React.string}
</button>
</div>
}