0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Added update to Explore iframe on nightShift change

no issue

- This change listens to updated values of the night shift toggle and sends a message to the Explore iframe - if mounted - to ensure the themes are in sync
This commit is contained in:
Aileen Booker 2023-08-09 08:46:52 +01:00 committed by Aileen Booker
parent a86a86e3e4
commit cd013356f9
3 changed files with 24 additions and 1 deletions

View file

@ -1 +1,10 @@
<iframe id="explore-frame" class="explore-frame" frameborder="0" title="Explore" ...attributes {{did-insert this.setup}}></iframe>
<iframe
id="explore-frame"
class="explore-frame"
frameborder="0"
title="Explore"
{{did-insert this.setup}}
{{did-update this.handleDarkModeChange this.feature.nightShift}}
...attributes
>
</iframe>

View file

@ -40,6 +40,13 @@ export default class GhExploreIframe extends Component {
}
}
@action
async handleDarkModeChange() {
if (this.explore.exploreWindowOpen) {
this.explore.sendUIUpdate({darkMode: this.feature.nightShift});
}
}
// The iframe can send route updates to navigate to within Admin, as some routes
// have to be rendered within the iframe and others require to break out of it.
_handleRouteUpdate(data) {

View file

@ -79,6 +79,13 @@ export default class ExploreService extends Service {
}, '*');
}
sendUIUpdate(data) {
this.getExploreIframe().contentWindow.postMessage({
query: 'uiUpdate',
response: data
}, '*');
}
// Controls explore window modal visibility and sync of the URL visible in browser
// and the URL opened on the iframe. It is responsible to non user triggered iframe opening,
// for example: by entering "/explore" route in the URL or using history navigation (back and forward)