In our Lightning application, we have an ad banner on the landing pages. We have encountered the following scenario: When a user attempts to play a channel from the landing page, they are navigated to the player page. Upon exiting the player, the user is redirected back to the landing page. At this point, the ad banner reloads, taking a few seconds to display the ad banner image again. Could anyone please suggest a solution to this issue?
Hi @seenivam, could you maybe share some code?
Also, are you using Lightning 2 or Lightning 3?
Hi @michiel,
Currently we are using the Lightning 2 framework in our application.
This is the sample component for Ad banner
AdBannerSample: {
x: 1088,
y: this.bindProp(‘adBannerLandscapeSample’, (x) => (x.adBannerLandscapeSample && 1062) || 1000),
mountY: 1,
w: 462,
shader: { type: Lightning.shaders.RoundedRectangle, radius: 8 },
h: this.bindProp(‘adBannerLandscapeSample’, (x) => (x.adBannerLandscapeSample && 258) || 770),
visible: this.bindProp(‘adBannerSrcSample’, (x) => !!x.adBannerSrcSample),
src: this.bindProp(‘adBannerSrcSample’)
}
In active method we are assigning the URL to this component.
Is there any way to Reuse the previous URL?
You might be interested in using something like keepAlive
in the router so you can go back to the page you came from and find it in the same state?