-
Notifications
You must be signed in to change notification settings - Fork 5
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
Améliorations posthog #1229
base: main
Are you sure you want to change the base?
Améliorations posthog #1229
Conversation
- meilleure gestion du mode iframe - correctif sur le script qui ne redirige pas sur la bonne route
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.
OK pour débloquer le bugfix mais pour moi le code manque d'explications
@@ -91,7 +91,7 @@ export default class extends Controller<HTMLElement> { | |||
this.personProperties.iframe = true | |||
} | |||
|
|||
if (document.referrer) { | |||
if (document.referrer && !document.referrer.includes(document.location.origin)) { |
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.
Peut être que le code parait évident pour celui qui l'écrit: mais vu qu'on a une single codebase avec plusieurs stacks (javascript, python) et différentes expertises (front, data engineering etc...) je rajouterais 1 ligne avec explication:
"Inclure l'analytics que si l'utilisateur provient d'un autre site parce que ___"
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.
Est-ce que quelque chose comme ça te parlerait ?
if (document.referrer && !document.referrer.includes(document.location.origin)) { | |
const referrerIsExternal = document.referrer && !document.referrer.includes(document.location.origin) | |
if (referrerIsExternal) { |
Je peux ajouter un commentaire, mais j'aime bien un nommage propre, c'est mieux maintenu 😇
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.
oui c'est mieux mais ce que le code n'explique pas c'est le pourquoi: pourquoi on fait l'inclusion uniquement dans le cas d'un referrer externe?
Description succincte du problème résolu
https://www.notion.so/accelerateur-transition-ecologique-ademe/AST-1-Mise-en-place-du-tracking-nouvelle-archi-assistant-sur-Posthog-et-Matomo-1266523d57d780399115d465f94dfa88?pvs=4
Type de changement :
Auto-review
Les trucs à faire avant de demander une review :
.env.template