-
Notifications
You must be signed in to change notification settings - Fork 16
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
Implement FutureJs.toPromise #25
Conversation
This looks great. Can you do a quick rebase? I think there's a small redundancy in the test file now. |
Even if conversion from (js)Promise to Future is often sufficient on the assumption that all following computation is done within the Future monad, it is still sometimes necessary to convert Future back to Promise. E.g. When writing aws lambdas the ultimate return value must be a promise.
* Move commonly used and utility-like code into TestUtil.re.
@@ -31,3 +31,13 @@ let fromPromise = (promise, errorTransformer) => | |||
|> Js.Promise.resolve | |||
) | |||
); | |||
|
|||
let toPromise = (future) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we always assume that the future is a future of a result?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Considering that FutureJs.fromPromise converts Js.Promise.t('a) => Future.t(Belt.Result.t('a, 'e))
then yes in my opinion the toPromise
should have reverse type signature. Using explicit type signatures would make this clearer but I have followed your convention here to leave all types to be inferred.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@scull7 has a point. How does one translate a non-result future to a promise? It's possible we should have both toPromise
and resultToPromise
– with the current implementation renamed to resultToPromise
, to be clear.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FutureJs.fromPromise
by necessity must convert the Js.Promise.t('a)
to something which denotes the possibility of an error unless we're resigned to allowing an exception to be thrown. The converse does not hold for a Future.t('a)
. While I agree that fromPromise
and toPromise
are sister methods, I don't know that it's obvious and I can see an opportunity for confusion. If I have some Future.t('a)
given to me by some library and I just want to turn it into a Js.Promise.t('a)
I now have to know the relationship with fromPromise
to understand why it must be a Future.t(Result.t('a, 'b))
.
edit: My suggestion for the implementation is below. I apologize if this came off as harsh in any way.
let toPromise = (future) =>
Js.Promise.make((~resolve, ~reject as _) =>
future->Future.get(value => resolve(. value))
);
Perhaps there should be a convenience method for Future.t(Result.t('a, 'b))
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- translating non-result future would be quite trivially:
otherFuture -> Future.map(Belt.Result.Ok) -> FutureJs.toPromise()
- However I understand your desire to support plain future in the first place so yes I can make those changes.
* resultToPromise for converting result futures. * toPromise to convert any other futures.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me.
Any plan to ship this in a release? =) |
Done! |
Even if conversion from (js)Promise to Future is often sufficient
on the assumption that all following computation is done within the
Future monad, it is still sometimes necessary to convert Future
back to Promise. E.g. When writing aws lambdas the ultimate return
value must be a promise.