-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
Adds selectPlatform method for amp-subscriptions #13682
Conversation
@@ -83,7 +83,7 @@ export class EntitlementStore { | |||
} | |||
} | |||
|
|||
if (entitlementsResolved === this.serviceIds_.length) { | |||
if (this.areAllPlatformsResolved_()) { |
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.
That means this promise may never resolve if it wasn't resolved yet. You need to check areAllplatformsResolved_
in the onChange
below as well. That should be covered by a test as well.
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.
Done!
*/ | ||
selectPlatform() { | ||
return this.getAllPlatformsEntitlements_().then(entitlements => { | ||
return this.selectApplicablePlatform_(entitlements); |
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.
Add a TODO
to explain that in the future we may be able to resolve a selected platform faster than waiting for all platforms. E.g. a first "subscriber" platform can be selected right away.
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.
Done
* fix animating circle fixed position * adding selectPlatform method * fixing comments * fixing types
selectPlatform
method in entitlements storeallEntitlementsResolved
promise