Issue with Drupal.t() in js

Created on 3 October 2024, 6 months ago

Hello,

There is an issue with Drupal.t() function when `vite: true` is enable in libraries.

_locale_parse_js_file() function does'nt use manifest to find js file to parse.

I fixed this issue locally with an extra lib js without vite that declares the translation strings. Ideally, this function should be able to go through the manifest.

Thanks,

πŸ› Bug report
Status

Active

Version

1.2

Component

Code

Created by

πŸ‡«πŸ‡·France myriam_b

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @myriam_b
  • I don't know if it's your problem but Vite may uglify Drupal variable in your function, so you get a.t() in your uglified JS.

    And Drupal.t() needs to remain Drupal.t() even uglified
    https://drupal.stackexchange.com/a/284198/106294

  • πŸ‡¬πŸ‡·Greece axioteo

    This issue doesn't appear to be caused by the Drupal module or Vite independently but rather seems to be a "side-effect" of using the two together. Specifically, as @daymoz pointed out, the problem seems related to how Vite performs JavaScript uglification and thus not respecting Drupal.t as a reserved function name. I was under the impression that Vite could be configured (using mangleProps etc in esbuild configurations) to exclude certain expressions or patterns from uglification, but any attempts to achieve this have not been successful so far.

    With this plugin, there’s no need to extract locale variables into a standalone library excluded from Vite. Instead, you can continue to use Drupal.t() as you would in any other scenario. While the plugin hasn’t been extensively tested yet, it is functioning as expected in several local setups where we’ve integrated the Drupal Vite module. Feel free to check it out, and let me know if any changes need to be made.

    Example usage and installation process:
    https://www.npmjs.com/package/vite-plugin-preserve-drupal-t

  • Status changed to Needs work about 2 months ago
  • πŸ‡΅πŸ‡±Poland wotnak

    As mentioned above, the problem with Drupal translations in js built by Vite is not really an issue with the module, but rather an incompatibility of Vite js minification and the way in JS translations are handled by Drupal. This will probably apply also for other modern js minification tools.

    To support translations in javascript Drupal in js_alter hook scans js files from all attached asset libraries using regex looking for Drupal.t(...) and Drupal.formatPlural(...), from them extracts strings that should be translated and attaches dynamically generated script that puts available translations for found strings in the window.drupalTranslations object that is later used by translation functions.

    When Vite minifies js script that is wrapped in IIFE (which is a standard Drupal practice), eg.

    (function (Drupal) {
      console.log(Drupal.t("test"))
    })(Drupal);
    

    then it minifies internal function parameter names since in normal circumstances it doesn't matter what names they will have, so the script becomes something like:

    (function(i){console.log(i.t("test"))})(Drupal);
    

    which functions the same but is smaller.
    The problem is that Drupal to attach needed translations looks for Drupal.t which it doesn't find there so the translation for in this case 'test' isn't attached to the page.

    One workaround could be to use global Drupal object directly instead of passing it as a function argument.

    (function () {
      console.log(Drupal.t("test"))
    })();
    // will be minified to
    (function(){console.log(Drupal.t("test"))})();
    

    @axioteo The plugin looks good, although it would be nice to include support for Drupal.formatPlural and make the regex a bit more elastic to catch all translation functions instances, the best would be probably to just take the beginning part of the regex Drupal uses, so something like:

    [^\w]Drupal\s*\.\s*t\s*\(
    // and
    [^\w]Drupal\s*\.\s*formatPlural\s*\(

    When it comes to this issue, the best way to resolve it would be to add a section to the README that would explain the problem and suggest using the vite plugin axioteo created.

  • πŸ‡¬πŸ‡·Greece vensires

    @axioteo, feel free to update README.md with the correct details on how to fix this issue, either using your plugin either without it (if possible).

    After this is resolved, we might open another issue to suggest the change of the description of the module if required by @wotnak.

  • Merge request !23Resolve #3478543 "Issue with drupal.t" β†’ (Merged) created by axioteo
  • Pipeline finished with Failed
    18 days ago
    Total: 147s
    #451273
  • πŸ‡¬πŸ‡·Greece axioteo

    Thank you @wotnak for pointing out ```formatPlural```, this completely slipped my attention. I've extended the vite plugin based on your recent suggestions, and actually tried to make it even more abstract by accepting optional params in the plugin setup. This way, theoretically we can cover any other case that we may need in the future.

    As for the documentation update, I've practically added your great explanation on the issue, and also a brief "workarounds" chapter that suggest possible solutions, along with an explanation on the plugin usage and implementation.

  • Pipeline finished with Failed
    18 days ago
    Total: 293s
    #451307
  • Pipeline finished with Failed
    18 days ago
    Total: 145s
    #451320
  • Pipeline finished with Failed
    18 days ago
    Total: 146s
    #451328
  • Pipeline finished with Success
    18 days ago
    Total: 148s
    #451345
  • πŸ‡¬πŸ‡·Greece vensires

    @wotnak, if you don't have any further issues with the MR, you might also consider mentioning either the vite plugin or just this issue in the module's project page description. I see you already have a link to the README.md file; it might just be a bit more fancy - maybe adding another "note-tip" CSS class. Whatever you decide though.

  • πŸ‡΅πŸ‡±Poland wotnak

    Looks good.

  • Pipeline finished with Skipped
    9 days ago
    #458999
  • πŸ‡΅πŸ‡±Poland wotnak

    Merged and added a direct link to the section about using Drupal translations in js on the module's project page.

Production build 0.71.5 2024