-
Notifications
You must be signed in to change notification settings - Fork 4.6k
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
Move Analytics Pixel from HTML <head>
to Dynamic JavaScript Injection via Backend
#3293
base: main
Are you sure you want to change the base?
Conversation
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.
Pull Request Overview
This PR moves the analytics pixel injection from a static HTML element in common.html to a dynamic JavaScript snippet generated by the backend via AdditionalLanguageJsController.java.
- Removed hardcoded static pixel from the HTML head.
- Dynamically injects the tracking pixel with JavaScript in AdditionalLanguageJsController.java.
Files not reviewed (1)
- src/main/resources/templates/fragments/common.html: Language not supported
Comments suppressed due to low confidence (1)
src/main/java/stirling/software/SPDF/controller/api/AdditionalLanguageJsController.java:59
- [nitpick] Consider renaming 'pixel' to 'trackingPixel' for improved clarity about its purpose.
const pixel = document.createElement('img');
Hi @Ludy87. Could you explain why using dynamic js injection here is better than keeping the pixel in the front end? |
Because the generated JS is loaded in every situation. Feel free to suggest another option; I'm open to it. |
Description of Changes
Please provide a summary of the changes, including:
What was changed:
AdditionalLanguageJsController.java
toAdditionalJsController.java
to better reflect its broader purpose./js/additional.js
, replacing the previous/js/additionalLanguageCode.js
.<head>
incommon.html
to the dynamically generated JavaScript response.Why the change was made:
<head>
and instead move toward dynamic inclusion.Checklist
General
Documentation
UI Changes (if applicable)
Testing (if applicable)