Skip to content
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

Merged
merged 4 commits into from
Nov 15, 2018
Merged

Implement FutureJs.toPromise #25

merged 4 commits into from
Nov 15, 2018

Conversation

seprich
Copy link
Contributor

@seprich seprich commented Nov 8, 2018

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.

@coveralls
Copy link

coveralls commented Nov 8, 2018

Pull Request Test Coverage Report for Build 38

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+1.5%) to 86.131%

Totals Coverage Status
Change from base Build 34: 1.5%
Covered Lines: 107
Relevant Lines: 121

💛 - Coveralls

@gilbert
Copy link
Member

gilbert commented Nov 13, 2018

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) =>
Copy link
Collaborator

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?

Copy link
Contributor Author

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.

Copy link
Member

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.

Copy link
Collaborator

@scull7 scull7 Nov 13, 2018

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))?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. translating non-result future would be quite trivially:
otherFuture -> Future.map(Belt.Result.Ok) -> FutureJs.toPromise()
  1. 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.
Copy link
Collaborator

@scull7 scull7 left a 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.

@gilbert gilbert merged commit 32ae276 into RationalJS:master Nov 15, 2018
@MoOx
Copy link
Contributor

MoOx commented Feb 4, 2019

Any plan to ship this in a release? =)

@gilbert
Copy link
Member

gilbert commented Feb 16, 2019

Done!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants