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

Fixed PostHog toolbar in admin (#19675)

refs PA-32

- The PostHog toolbar relies on a value that is passed via a hash in the
URL to launch successfully
- Admin overwrites the hash (since it uses hash based routing) before
the toolbar has a chance to read the value
- This change checks for the hash and if it exists, it launches the
toolbar using the hash value
This commit is contained in:
Chris Raible 2024-02-08 13:40:03 -08:00 committed by GitHub
parent 600445cf39
commit c32ee3ca40
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 25 additions and 2 deletions

View file

@ -1,8 +1,8 @@
import Component from '@glimmer/component';
import trackEvent from '../utils/analytics';
import {action} from '@ember/object';
import {inject} from 'ghost-admin/decorators/inject';
import {inject as service} from '@ember/service';
import {trackEvent} from '../utils/analytics';
import {tracked} from '@glimmer/tracking';
export default class KoenigImageEditor extends Component {

View file

@ -1,4 +1,5 @@
import Route from '@ember/routing/route';
import {loadToolbar} from '../utils/analytics';
import {inject as service} from '@ember/service';
export default class HomeRoute extends Route {
@ -9,6 +10,8 @@ export default class HomeRoute extends Route {
beforeModel(transition) {
super.beforeModel(...arguments);
loadToolbar();
if (transition.to?.queryParams?.firstStart === 'true') {
return this.router.transitionTo('setup.done');
}

View file

@ -1,8 +1,28 @@
// Wrapper function for Plausible event
export default function trackEvent(eventName, props = {}) {
export function trackEvent(eventName, props = {}) {
window.plausible = window.plausible || function () {
(window.plausible.q = window.plausible.q || []).push(arguments);
};
window.plausible(eventName, {props: props});
}
/**
* Load the PostHog toolbar if available
* window.posthog must be available for this to do anything
* This function needs to be called before the Admin App is fully initialized
* because the Admin App overwrites the #__posthog hash with its own routing
* before the PostHog snippet can read it and load the toolbar itself.
* @returns {void}
*/
export function loadToolbar() {
try {
const toolbarJSON = new URLSearchParams(window.location.hash.substring(1)).get('__posthog');
if (toolbarJSON && window.posthog) {
window.posthog.loadToolbar(JSON.parse(toolbarJSON));
}
} catch (e) {
// fail silently
}
}