Addition of the ability to add data-attributes

Created on 7 February 2025, about 2 months ago

Problem/Motivation

Would it be possible to allow the addition of attributes to the highlighted terms on the page.

Doing would open the doors to using things like Bootstrap 5 Tooltips to add a very useful prompt to end-user reassuring them a click won't navigate them away from the page.

We believe that would be a sensible UX addition at very low cost.

Here is a mock-up of why…

In that example, the following code would appear spliced into the <span>…

...
data-bs-toggle="tooltip" data-bs-placement="bottom" fallbackplacements="[&quot;top&quot;, &quot;left&quot;, &quot;right&quot;]" data-bs-delay="{&quot;show&quot;:1000, &quot;hide&quot;:100}" data-bs-html="true" data-bs-title="Pop up a term definition." data-once="ajax"
...
✨ Feature request
Status

Active

Version

4.2

Component

User interface

Created by

πŸ‡¬πŸ‡§United Kingdom SirClickALot Somerset

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

Merge Requests

Comments & Activities

  • Issue created by @SirClickALot
  • πŸ‡«πŸ‡·France mably

    May be we could add a hook to allow altering the HTML of the found glossary term. Will see what I can do. Then the tooltip addition could be done in a submodule or a custom module.

  • πŸ‡«πŸ‡·France mably

    @sirclickalot This issue's MR adds a new hook that should solve your problem.

    You just need to add this hook in your theme or a custom module:

    /**
     * Implements hook_term_glossary_term_alter().
     */
    function my_module_term_glossary_term_alter(&$term_tag, &$term_id, &$term_value) {
      // Here alter the term button HTML render array.
      $term_tag['#attributes']['data-bs-toggle'] = 'tooltip';
      $term_tag['#attributes']['data-bs-placement'] = 'bottom';
      $term_tag['#attributes']['fallbackplacements'] = '["top", "left", "right"]';
      $term_tag['#attributes']['data-bs-delay'] = '{"show":1000, "hide":100}';
      $term_tag['#attributes']['data-bs-html'] = 'true';
      $term_tag['#attributes']['data-bs-title'] = 'Pop up a term definition.';
    }
    

    Tell me how it goes.

  • πŸ‡«πŸ‡·France mably

    Here is what I get locally:

  • πŸ‡¬πŸ‡§United Kingdom SirClickALot Somerset

    Hi @mably,

    This is intriguing...

    I have patched my local 4.2.0-alpha2 version and patch applied without issue.

    I can clearly see the hook implementation in the term_glossary.api.php along with the other source code alterations (GUI Git client screenshot)...

    I have implemented the hook in my trusty (and very minimal) overrides module (custom_drupal_overrides)...

    function custom_drupal_overrides_term_glossary_term_alter(&$term_tag, &$term_id, &$term_value) {
      // Alter the term button HTML render array.
      $term_tag['#attributes']['data-bs-toggle'] = 'tooltip';
      $term_tag['#attributes']['data-bs-placement'] = 'bottom';
      $term_tag['#attributes']['fallbackplacements'] = '["top", "left", "right"]';
      $term_tag['#attributes']['data-bs-delay'] = '{"show":1000, "hide":100}';
      $term_tag['#attributes']['data-bs-html'] = 'true';
      $term_tag['#attributes']['data-bs-title'] = 'Pop up an exam-ready-worded definition of this term.';
    }

    I have cleared every conceivable cache over and over.

    BUT no splicing in of the goods?

    Very odd, especially since you very helpfully sent me a screenshot of it working locally.

    What could we have missed here?

  • πŸ‡«πŸ‡·France mably

    It should be custom_drupal_overrides_term_glossary_term_match_alter, you miss the match in your hook name.

  • πŸ‡¬πŸ‡§United Kingdom SirClickALot Somerset

    What a weird thing!

    I copied the plain text from a plaintext version of the email alert from the DO site, screenshot below...

    Ghostly.

    Or is it a touchΓ© ?

    Anyway, all sorted so thanks, this is a really useful addition because now us tweakers can do whatever we like.

    Thanks again.

    • mably β†’ committed e131e237 on 4.2.x
      Issue #3505043 by mably: Addition of the ability to add data-attributes
      
  • πŸ‡«πŸ‡·France mably

    @sirclickalot the hook signature will slightly change (for the good) in this issue: πŸ“Œ New term_data alter hook and term_match hook signature change Active .

    You will get in the second parameter the whole term data array instead of just the idea.

    And you will be able to customize that term data array with a new hook term_data_alter coming in the same issue.

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024