Skip to content
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

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

Ludy87
Copy link
Contributor

@Ludy87 Ludy87 commented Apr 2, 2025

Description of Changes

Please provide a summary of the changes, including:

  • What was changed:

    • Renamed AdditionalLanguageJsController.java to AdditionalJsController.java to better reflect its broader purpose.
    • Consolidated dynamic JavaScript generation under /js/additional.js, replacing the previous /js/additionalLanguageCode.js.
    • Moved the analytics pixel (non-PII tracking image) from the static <head> in common.html to the dynamically generated JavaScript response.
    • Updated all HTML templates referencing the old JS endpoint to use the new unified script.
  • Why the change was made:

    • To avoid injecting static tracking elements directly in the HTML <head> and instead move toward dynamic inclusion.
    • This offers better control over when the pixel is loaded and can make maintenance or conditional logic easier in the future.

Checklist

General

Documentation

UI Changes (if applicable)

  • Screenshots or videos demonstrating the UI changes are attached (e.g., as comments or direct attachments in the PR)

Testing (if applicable)

  • I have tested my changes locally. Refer to the Testing Guide for more details.

@Copilot Copilot bot review requested due to automatic review settings April 2, 2025 19:24
@dosubot dosubot bot added the size:S This PR changes 10-29 lines, ignoring generated files. label Apr 2, 2025
Copy link

@Copilot Copilot AI left a 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');

@github-actions github-actions bot added Java Pull requests that update Java code Front End Issues or pull requests related to front-end development Back End Issues related to back-end development API API-related issues or pull requests labels Apr 2, 2025
@dosubot dosubot bot added size:M This PR changes 30-99 lines, ignoring generated files. and removed size:S This PR changes 10-29 lines, ignoring generated files. labels Apr 2, 2025
@ConnorYoh
Copy link
Contributor

Hi @Ludy87. Could you explain why using dynamic js injection here is better than keeping the pixel in the front end?

@Ludy87
Copy link
Contributor Author

Ludy87 commented Apr 3, 2025

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
API API-related issues or pull requests Back End Issues related to back-end development Front End Issues or pull requests related to front-end development Java Pull requests that update Java code size:M This PR changes 30-99 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants