Icon not found when rendered from renderable array

Created on 22 November 2024, 5 months ago

Problem/Motivation

Hi,

For UI Suite Bootstrap, I have started to use icons in [5.1.x] Use icons Active .

I started with media library, and I have to inject an icon into a `#title` of a #type link in a preprocess (at least it is the first solution I try to explore).

When trying the following code, it gives nothing:

  $icon = [
    '#type' => 'icon',
    '#pack_id' => 'bootstrap',
    '#icon_id' => 'grid-fill',
    '#settings' => [
      'size' => '1em',
    ],
  ];
  $test = \Drupal::service('renderer')->renderInIsolation($icon);

$test is empty, even with render().

I started to check why, and it seems that during rendering ui_icons/modules/ui_icons_backport/src/Element/Icon.php:

  public static function preRenderIcon(array $element): array {
    $icon_full_id = IconDefinition::createIconId($element['#pack_id'], $element['#icon_id']);
    $iconCollector = \Drupal::service('Drupal\Core\Theme\Icon\IconCollector');
    $icon = $iconCollector->get($icon_full_id);

There is no $definition argument (which should be named $definitions as it is an array but that's not the subject) passed to $iconCollector->get() so no icon is found.

Proposed resolution

Remaining tasks

API changes

Maybe some interfaces signature?

🐛 Bug report
Status

Active

Version

1.0

Component

Code

Created by

🇫🇷France Grimreaper France 🇫🇷

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

Merge Requests

Comments & Activities

Production build 0.71.5 2024