Отримайте побратимів із посиланням на меню


11

Я намагаюся створити меню в Drupal 8, яке є лише посиланнями на поточну сторінку. Отже, якщо меню таке:

  • Головна
  • Батько 1
    • Підродинник 1
      • Дитина 1
    • Під-батьків 2
      • Дитина 2
      • Дитина 3
      • Дитина 4
  • Батько 2

Коли я перебуваю на сторінці "Дитина 3", я хочу, щоб блок меню посилався таким чином:

  • Дитина 2
  • Дитина 3
  • Дитина 4

Я знаю, як це зробити в D7, я думаю, але мені важко перевести ці знання на D8. Це навіть щось, що можна зробити в D8? І якщо це так, чи може хтось вказати мені в правильному напрямку, як це зробити?

Дякую!

Уточнення: Дочірній рівень повинен бути змінним, щоб пункти меню з різною глибиною могли відображати своїх побратимів. Так, наприклад, крім того, щоб хотіти меню для дітей, мені знадобиться меню для батьків та меню для батьків тощо. Я також не маю контролю над / знанням того, наскільки глибоко йде меню і чи воно проходить так глибоко у всіх розділах.

Відповіді:


19

Отже, я вирішив з'ясувати якийсь код, який дозволив би мені це зробити, створивши власний блок і, використовуючи метод збірки, вивести меню з доданими до нього трансформаторами. Це посилання, яке я використовував, щоб зрозуміти, як отримати меню в блоці та додати до нього трансформатори: http://alexrayu.com/blog/drupal-8-display-submenu-block . Моя build()ситуація виглядала так:

$menu_tree = \Drupal::menuTree();
$menu_name = 'main';

// Build the typical default set of menu tree parameters.
$parameters = $menu_tree->getCurrentRouteMenuTreeParameters($menu_name);

// Load the tree based on this set of parameters.
$tree = $menu_tree->load($menu_name, $parameters);

// Transform the tree using the manipulators you want.
$manipulators = array(
  // Only show links that are accessible for the current user.
  array('callable' => 'menu.default_tree_manipulators:checkAccess'),
  // Use the default sorting of menu links.
  array('callable' => 'menu.default_tree_manipulators:generateIndexAndSort'),
  // Remove all links outside of siblings and active trail
  array('callable' => 'intranet.menu_transformers:removeInactiveTrail'),
);
$tree = $menu_tree->transform($tree, $manipulators);

// Finally, build a renderable array from the transformed tree.
$menu = $menu_tree->build($tree);

return array(
  '#markup' => \Drupal::service('renderer')->render($menu),
  '#cache' => array(
    'contexts' => array('url.path'),
  ),
);

Трансформатор - це послуга, тому я додав intranet.services.ymlсвій модуль до інтрамережі, вказуючи на клас, який я закінчив визначати. Клас мав три методи:, removeInactiveTrail()який закликав getCurrentParent()отримати батьківську сторінку сторінки, на якій зараз перебуває користувач, і stripChildren()який позбавив меню лише дітям поточного пункту меню та його братів і сестер (тобто: видалив усі підменю, що були ' t в активному слід).

Ось що виглядало так:

/**
 * Removes all link trails that are not siblings to the active trail.
 *
 * For a menu such as:
 * Parent 1
 *  - Child 1
 *  -- Child 2
 *  -- Child 3
 *  -- Child 4
 *  - Child 5
 * Parent 2
 *  - Child 6
 * with current page being Child 3, Parent 2, Child 6, and Child 5 would be
 * removed.
 *
 * @param \Drupal\Core\Menu\MenuLinkTreeElement[] $tree
 *   The menu link tree to manipulate.
 *
 * @return \Drupal\Core\Menu\MenuLinkTreeElement[]
 *   The manipulated menu link tree.
 */
public function removeInactiveTrail(array $tree) {
  // Get the current item's parent ID
  $current_item_parent = IntranetMenuTransformers::getCurrentParent($tree);

  // Tree becomes the current item parent's children if the current item
  // parent is not empty. Otherwise, it's already the "parent's" children
  // since they are all top level links.
  if (!empty($current_item_parent)) {
    $tree = $current_item_parent->subtree;
  }

  // Strip children from everything but the current item, and strip children
  // from the current item's children.
  $tree = IntranetMenuTransformers::stripChildren($tree);

  // Return the tree.
  return $tree;
}

/**
 * Get the parent of the current active menu link, or return NULL if the
 * current active menu link is a top-level link.
 *
 * @param \Drupal\Core\Menu\MenuLinkTreeElement[] $tree
 *   The tree to pull the parent link out of.
 * @param \Drupal\Core\Menu\MenuLinkTreeElement|null $prev_parent
 *   The previous parent's parent, or NULL if no previous parent exists.
 * @param \Drupal\Core\Menu\MenuLinkTreeElement|null $parent
 *   The parent of the current active link, or NULL if not parent exists.
 *
 * @return \Drupal\Core\Menu\MenuLinkTreeElement|null
 *   The parent of the current active menu link, or NULL if no parent exists.
 */
private function getCurrentParent($tree, $prev_parent = NULL, $parent = NULL) {
  // Get active item
  foreach ($tree as $leaf) {
    if ($leaf->inActiveTrail) {
      $active_item = $leaf;
      break;
    }
  }

  // If the active item is set and has children
  if (!empty($active_item) && !empty($active_item->subtree)) {
    // run getCurrentParent with the parent ID as the $active_item ID.
    return IntranetMenuTransformers::getCurrentParent($active_item->subtree, $parent, $active_item);
  }

  // If the active item is not set, we know there was no active item on this
  // level therefore the active item parent is the previous level's parent
  if (empty($active_item)) {
    return $prev_parent;
  }

  // Otherwise, the current active item has no children to check, so it is
  // the bottommost and its parent is the correct parent.
  return $parent;
}


/**
 * Remove the children from all MenuLinkTreeElements that aren't active. If
 * it is active, remove its children's children.
 *
 * @param \Drupal\Core\Menu\MenuLinkTreeElement[] $tree
 *   The menu links to strip children from non-active leafs.
 *
 * @return \Drupal\Core\Menu\MenuLinkTreeElement[]
 *   A menu tree with no children of non-active leafs.
 */
private function stripChildren($tree) {
  // For each item in the tree, if the item isn't active, strip its children
  // and return the tree.
  foreach ($tree as &$leaf) {
    // Check if active and if has children
    if ($leaf->inActiveTrail && !empty($leaf->subtree)) {
      // Then recurse on the children.
      $leaf->subtree = IntranetMenuTransformers::stripChildren($leaf->subtree);
    }
    // Otherwise, if not the active menu
    elseif (!$leaf->inActiveTrail) {
      // Otherwise, it's not active, so we don't want to display any children
      // so strip them.
      $leaf->subtree = array();
    }
  }

  return $tree;
}

Це найкращий спосіб зробити це? Напевно, ні. Але це принаймні забезпечує вихідне місце для людей, яким потрібно зробити щось подібне.


Це в значній мірі те, що робить колонтитул. +1 за користування послугою menu.tree.
mradcliffe

2
Скажіть, будь ласка, який код слід розмістити у файлі service.yml? Як вказати клас на файл service.yml?
siddiq

Як виключити посилання на меню батьків / s?
Пермана

3

Drupal 8 має функціональний блок меню, вбудований в основне, єдине, що вам потрібно зробити - це створити новий блок меню в інтерфейсі Block і налаштувати це.

Це відбувається:

  • Розміщення нового блоку, а потім вибір меню, для якого потрібно створити блок.
  • У конфігурації блоку потрібно вибрати "Початковий рівень меню", який дорівнюватиме 3.
  • Ви також можете встановити "Максимальна кількість рівнів меню для відображення" на 1, якщо ви хочете друкувати лише пункти меню з третього рівня.

На жаль, я не можу бути впевнений, на якому рівні буде розташована сторінка, тому я не можу просто створити для неї блок меню. Існує також можливість того, що це може знадобитися на змінних рівнях, залежно від того, якою є структура сайту.
Ерін Маклафлін

menu_block для Drupal 8 наразі не включає функціональність для слідування за поточним вузлом, патчі, які переглядаються тут; drupal.org/node/2756675
Крістіан

Гаразд для статичного використання. Але не для динамічного використання, як у "Розмістіть блок на кожній сторінці та покажіть побратимів поточної сторінки незалежно від того, на якому рівні ви зараз перебуваєте".
leymannx

3

Якщо встановити корінь на поточному посиланні, можливо, вдасться до цього:

$menu_tree = \Drupal::menuTree();
$menu_name = 'main';

$parameters = $menu_tree->getCurrentRouteMenuTreeParameters($menu_name);
$currentLinkId = reset($parameters->activeTrail);
$parameters->setRoot($currentLinkId);
$tree = $menu_tree->load($menu_name, $parameters);

// Transform the tree using the manipulators you want.
$manipulators = array(
  // Only show links that are accessible for the current user.
  array('callable' => 'menu.default_tree_manipulators:checkAccess'),
  // Use the default sorting of menu links.
  array('callable' => 'menu.default_tree_manipulators:generateIndexAndSort'),
);
$tree = $menu_tree->transform($tree, $manipulators);

Ні, на жаль, це показують лише діти. Але не братів і сестер. ОП хоче братів і сестер.
leymannx

3

Блок меню братів і сестер

За допомогою відповіді @Icubes, і MenuLinkTreeInterface::getCurrentRouteMenuTreeParametersми можемо просто дістати поточний маршрут активного меню поточного маршруту. Маючи це, у нас також є пункт батьківського меню. Встановивши, що як відправна точка MenuTreeParameters::setRootдля створення нового дерева, ви отримаєте бажане меню побратимів.

// Enable url-wise caching.
$build = [
  '#cache' => [
    'contexts' => ['url'],
  ],
];

$menu_name = 'main';
$menu_tree = \Drupal::menuTree();

// This one will give us the active trail in *reverse order*.
// Our current active link always will be the first array element.
$parameters   = $menu_tree->getCurrentRouteMenuTreeParameters($menu_name);
$active_trail = array_keys($parameters->activeTrail);

// But actually we need its parent.
// Except for <front>. Which has no parent.
$parent_link_id = isset($active_trail[1]) ? $active_trail[1] : $active_trail[0];

// Having the parent now we set it as starting point to build our custom
// tree.
$parameters->setRoot($parent_link_id);
$parameters->setMaxDepth(1);
$parameters->excludeRoot();
$tree = $menu_tree->load($menu_name, $parameters);

// Optional: Native sort and access checks.
$manipulators = [
  ['callable' => 'menu.default_tree_manipulators:checkNodeAccess'],
  ['callable' => 'menu.default_tree_manipulators:checkAccess'],
  ['callable' => 'menu.default_tree_manipulators:generateIndexAndSort'],
];
$tree = $menu_tree->transform($tree, $manipulators);

// Finally, build a renderable array.
$menu = $menu_tree->build($tree);

$build['#markup'] = \Drupal::service('renderer')->render($menu);

return $build;

Це рішення спрацювало як шарм. :)
Панкай Сачдева
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.