IPopupWithProducts
IPopupWithProducts
This interface is inherited from IPopupBase and is intended for campaigns that are capable of displaying one or many products.
For example, a user has triggered a RateReview
campaign that requires a popup with stars to be displayed for evaluation, MagifyService
will call IPopupsProvider.LoadRateReviewPopup to request a popup that is intended to display the desired visual, the method will load the popup in some way (depending on the IPopupsProvider implementation) and return it to MagifyService
(the popup class must be inherited from IPopupMagifyService
will call the IPopupBase.ShowAsync method to display the popup and wait for the user's actions:
- If the user closes the popup, the popup should close and call the IPopupBase.OnHideRequested, by which
MagifyService
will continue and finish displaying the company with the marker "Declined". - If the user clicks on the "Evaluate" button, then the IPopup.OnClicked will be called, by which
MagifyService
will redirect the player to the Store to evaluate the game in it, after the player returnsMagifyService
will finish the company with the marker "Applied".
OnClicked
event Action<ProductDef> OnClicked
Should be called after the player expresses his desire to fulfill the purchase and transfer the product the player has chosen.
CloseAfterObtain
bool CloseAfterObtain { get; } = true;
Determines whether the popup should be closed after abtaining the product.
UpdateProducts
UpdateProducts(IReadOnlyList<ProductDef> products)
Method will be called while preparing the campaign for display by passing the list of available products. The method can also be called in case the campaign is still displayed, but for some reason the list of products has been updated, in this case the popup should update the display using the new product data.