Microsite menu links always appear in original language

Created on 25 May 2023, almost 2 years ago
Updated 17 July 2023, over 1 year ago

Problem/Motivation

The microsite menu link always appear in the original language of the node that corresponds to the menu link.

Steps to reproduce

Translate some nodes that are within a microsite. Note that the microsite menu links always has the label of the node in the original lanuage of the node.

Proposed resolution

I'm going to post a patch that takes inspiration from the taxonomy_menu module. It defines a more sophisticated getTitle() method on its menu link class that takes into account the current language.

https://git.drupalcode.org/project/taxonomy_menu/-/blob/8.x-3.x/src/Plug...

Remaining tasks

User interface changes

Better translation support

API changes

Change to MicrositeMenuItem::getTitle()

Data model changes

N/A

πŸ› Bug report
Status

Needs review

Version

3.0

Component

Microsites sub-module

Created by

πŸ‡ΊπŸ‡ΈUnited States danflanagan8 St. Louis, US

Live updates comments and jobs are added and updated live.
  • Needs tests

    The change is currently missing an automated test that fails when run with the original code, and succeeds when the bug has been fixed.

Sign in to follow issues

Comments & Activities

  • Issue created by @danflanagan8
  • Status changed to Needs review almost 2 years ago
  • Open in Jenkins β†’ Open on Drupal.org β†’
    Core: 10.0.7 + Environment: PHP 8.1 & MySQL 8
    last update almost 2 years ago
    93 pass, 3 fail
  • πŸ‡ΊπŸ‡ΈUnited States danflanagan8 St. Louis, US

    Here's a patch. I haven't had a chance to look into test coverage.

  • Issue was unassigned.
  • πŸ‡ΊπŸ‡ΈUnited States danflanagan8 St. Louis, US
  • Status changed to Needs work almost 2 years ago
  • πŸ‡ΊπŸ‡ΈUnited States danflanagan8 St. Louis, US

    Those failures are both related to the patch not handling overrides correctly. Hrm...

    How does one allow translation and allow title overrides? That may be tricky.

  • Status changed to Needs review almost 2 years ago
  • Open in Jenkins β†’ Open on Drupal.org β†’
    Core: 10.0.7 + Environment: PHP 8.1 & MySQL 8
    last update almost 2 years ago
    96 pass
  • πŸ‡ΊπŸ‡ΈUnited States danflanagan8 St. Louis, US

    Here's a shot at supporting overrides and translated node titles. This requires more changes than I would like but I think it works.

  • πŸ‡ΊπŸ‡ΈUnited States danflanagan8 St. Louis, US

    The latest patch offers what I would consider a bonus improvement.

    Currently, if I use the menu link override form to change a link's weight, say, the node title at that moment gets saved as the menu link override title. From that point onward if I change the node title the microsite menu link will continue showing that old title because it's saved to the override entity.

    With the latest patch, setting the menu link override label to an empty string allows the override to continue honoring the node title.

    It needs some love from a UX standpoint. I would rather the override form load with an empty string as the label until you save the override with a label.

  • πŸ‡¦πŸ‡ΊAustralia larowlan πŸ‡¦πŸ‡ΊπŸ.au GMT+10
    +++ b/modules/entity_hierarchy_microsite/src/Plugin/Menu/MicrositeMenuItem.php
    @@ -194,7 +194,21 @@ class MicrositeMenuItem extends MenuLinkBase implements ContainerFactoryPluginIn
    +    $node = $this->entityTypeManager->getStorage('node')->load($this->pluginDefinition['metadata']['entity_id']);
    +    $language = \Drupal::languageManager()->getCurrentLanguage()->getId();
    +    if (!empty($node) && $node->hasTranslation($language)) {
    

    Do default menu links work this way? It feels like a performance issue to be loading a single node and its translation for each menu link.

  • Status changed to Needs work almost 2 years ago
  • πŸ‡¦πŸ‡ΊAustralia larowlan πŸ‡¦πŸ‡ΊπŸ.au GMT+10

    It does a loadMultiple by way of \Drupal\menu_link_content\Plugin\Menu\MenuLinkContent::__construct and a static property.

    Not great but I think still performant than what we're doing here.

    Needs work to try and emulate the load multiple approach.

    We do have an advantage here in that we can query the tree to get all the entity IDs using the EH api.

  • Status changed to Needs review over 1 year ago
  • Open in Jenkins β†’ Open on Drupal.org β†’
    Core: 10.0.7 + Environment: PHP 8.1 & MySQL 8
    last update over 1 year ago
    95 pass, 1 fail
  • πŸ‡ΊπŸ‡ΈUnited States danflanagan8 St. Louis, US

    Hi @larowlan. As always, thank you for the thoughtful review. :)

    I'm still trying to grok the load multiple stuff going on in MenuLinkContent. I don't have any performance improvements in here.

    I'm posting an updated patch that deals with a lingering bug or two. For better or worse, I'm trying to use the absence of the title on the plugin definition as a signal that the node's title should be used as the link title. The patch here makes sure that (1) the discovery does not set the title, (2) the add override form does not populate the title field automatically, (3) the edit override form has a helpful title even if the override does not have a title.

    This patch breaks the update test (which I didn't feel like fixing right now). It also caused an assertion in the admin tests to fail. I updated the failing assertion based on updated expectations and I also added a bit of coverage. This doesn't cover translation yet, but it covers the idea of an empty plugin or override title indicating that the node title should be used.

    I'm setting to NR to trigger tests. The update tests will fail, kicking this back to NW, which is the correct status.

Production build 0.71.5 2024