Account created on 17 April 2008, almost 17 years ago
#

Merge Requests

More

Recent comments

🇫🇷France mogtofu33

mogtofu33 changed the visibility of the branch 3508441-update-components-to to active.

🇫🇷France mogtofu33

mogtofu33 changed the visibility of the branch 3508441-update-components-to to hidden.

🇫🇷France mogtofu33

Move modules based on status.

🇫🇷France mogtofu33

Add SDC devel module.

🇫🇷France mogtofu33

Add library key explanation, add core json schema for reference.

🇫🇷France mogtofu33

I am not sure to get the whole scope of changes and result expected here, could we be more clear and give testable examples:

{% set variable = '' %}
{% if variable is not empty %}{% endif %}

=> Warning

{% set variable = [] %}
{% if variable is not empty %}{% endif %}

=> Warning

{% set variable = 0 %}
{% if variable is not empty %}{% endif %}

=> No warning

{% set variable = null %}
{% if variable is not empty %}{% endif %}

=> ?

{% set variable = true %}
{% if variable is not empty %}{% endif %}

=> ?

{% set variable = false %}
{% if variable is not empty %}{% endif %}

=> ?

{% set variable = injected_variable %}
{% if variable is not empty %}{% endif %}

=> From previous rules based on type of injected variable?

{% set variable = set_variable_before %}
{% if variable is not empty %}{% endif %}

=> Probably hard to detect as the vriable is set in the template.

🇫🇷France mogtofu33

NullCoalesceBinary didn't exist before Twig 3.7, added as a new test and fix the false positive here.

🇫🇷France mogtofu33

Not sure why but my push created a new branch. Issue work on mr 6.

But I cannot reproduce and it could be related to Twig version taht changed from 11.1.1 to >11.1.2, so it's a blind fix on 1.0.x, let me know if it work.

🇫🇷France mogtofu33

A note on the icon API override:

The core icon API do not provide (yet) a switch/override/weight system for the discovery, because it's based on the core YamlDiscovery there is an override based on provider name and type in this order: module by name, profiles by name, themes by name.
So if you create an icon pack named navigation in a module with name > n, this will override, if it's < n it will not.
If you have a profile with icon pack navigation it will override the modules, a theme icon pack navigation will override profiles and modules.
This is not intuitive but just how YamlDiscovery works to lookup files. I will try to add this to the current icon api documentation.

On @m4olivei POC

I like the more simple approach to not force any icon and rely on a mapping and some install config.

Your work on the NavigationMenuLinkTree suggest I should work on a core issue to allow MenuLinkTree to handle icon ids.

I agree with @plopesc on the not very intuitive, perhaps set the pack_id as a setting and the mapping too instead of hook would be better. You can have the pack list option from IconPackManager::listIconPackOptions().

Unfortunately there is not (yet) a core icon field, combined with a compatible MenuLinkTree it would make less work here. I have to try to work on that but I don't have much time currently...

🇫🇷France mogtofu33

First check the template generated to be sure there is no double quoted string.

Then your SVG icons must be compatible with usage of fill="currentColor", see documentation for color inheritance: https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/color.

🇫🇷France mogtofu33

I have a suggestion to make navigation menu compatible with ui_icons_menu , which give the opportunity to add an icon to the menu, and would probably be compatible with any other module giving the opportunity to add an icon to the menu.

In toolbar-button.twig, we could check if the text is not only text but something more, like for ui_icons_menu the text include the icon as a FormattableMarkup. In this case, checking if text is a mapping would allow to ignore the non icon (2 letters) and let a custom icon be picked. The icon choice will even be part of the Navigation Icon pack! So you can even provide more icons not yet used in the current entries!

So would be line 27:
{% if icon and text is not mapping %}

You can quickly test by installing ui_icons, enable ui_icons_menu, create a menu entry and pick an icon.

Here is the result example, there is just a minor padding to fix that could be added in the ui_icons_menu:

🇫🇷France mogtofu33

Looking great!

The Icon API ignore folders as a choice to allow moving icons inside and organizing as will without impact.

Just added a small fix for the announcement icon upside down.

And as well I forgot the Icon twig function do not do anything to allow 'last' rendering from the icon RenderElement. So as you found you need to render.

🇫🇷France mogtofu33

The Icon API provide a render element and a Twig function based on the icon id, so the form element can simply return the icon id (pack_id:icon_id).

For the available icons, need to create an icon pack discovery yaml (see doc ). One file can reference all available icons through different paths.

For some starting point you can check ui_icons FormElement and derived picker FormElement.
This form element is a bit complex because of the feature to be able to set custom settings to the icon (size, color, ...) perhaps you don't need that.

🇫🇷France mogtofu33

Fix wrong title and double text.

🇫🇷France mogtofu33

Thanks @finnsky, added the toolbar message icon as well.

But because the naming need to match the icon, had to rename radioactive to error and copy help as status.
I let you decide how to manage that.

I didn't include a default icon for message in the twig. As I am not sure of the status for this feature, I just started simple.

Let me know if you need something else.

🇫🇷France mogtofu33

Hello @finnsky,

I updated the announcement and title buttons. But for the Top Bar icons, there is a vertical alignment to fix.

Probably not possible to replace the throbber icon override in toolbar-button. Not until the core throbber is an icon.

I am struggling to replace the toolbar-message icons (radioactive, help, warning) as I don't really see how to activate the messages, if you can point me I could probably do that.

🇫🇷France mogtofu33

On the branch I forgot to merge... :D

🇫🇷France mogtofu33

Following core API fix 🐛 IconFinder does not generate url with base_url Active , I changed a bit to strip the starting slash as it make more sense.

🇫🇷France mogtofu33

Hi @finnsky, re-rolled!

The sidebar icons looks good, I have to check for other icons around navigation code, if you can have a look, thanks.

🇫🇷France mogtofu33

Current jobs fail is not related to Icon.

🇫🇷France mogtofu33

mogtofu33 changed the visibility of the branch 3483209-navigation-icon-api to hidden.

🇫🇷France mogtofu33

@goz, I am still working on it to have a reliable kernel test for different base_path() values.

🇫🇷France mogtofu33

So base_path() make more sense, mentioning base_url was confusing.

🇫🇷France mogtofu33

mogtofu33 made their first commit to this issue’s fork.

🇫🇷France mogtofu33

I was too fast in merging and seems it needs more information.

The merge add a beginning slash (/) this seems to be a solution for a specific use case. Icons sources can be relative to the module with the definition (*.icons.yml) or relative to Drupal root, for example /libraries/...

There is no base_url anymore in Drupal 8+, so I guess the problem could be in your Webserver configuration to allow this sub folder.

Try to use the definition of icons relative to drupal root libraries folder ( ie: sources start with /libraries).

You should as well check on the Apache/Nginx configuration you are using and optionnaly if you have any custom specific code in your settings*.php or sites.php.

🇫🇷France mogtofu33

Thanks for the MR, I created a follow up issue with the core Icon API for 1.1.x 🐛 IconFinder does not generate url with base_url Active .

🇫🇷France mogtofu33

Thanks for the issue and proposition, I used intanceof check instead of object.

On 1.1.X and backported on 1.0.x.

🇫🇷France mogtofu33

Hi @nod_ and @pdureau,

I fully agree to the responsibilities listed for definition of maintainers and subsystem maintainer responsibilities.

Hope I can help as much as possible on the new theme/sdc and Icon API to be successful.

🇫🇷France mogtofu33

mogtofu33 made their first commit to this issue’s fork.

🇫🇷France mogtofu33

Seems like just removing the specific light classes is enough for the dark theme support!

🇫🇷France mogtofu33

Small update, it can be achieved now with ui_icons_media using the core CKeditor media plugin.

  • With ui_icons_media enable, create an media type icon
  • Create the limited number of icons you need
  • Media Icon fields > Manage display > Media library, replace thumbnail by icon with settings pack size to 50
  • Text formats and editors > enable Media, limit to type Icon

Contrib modules around media embed can help customize.

🇫🇷France mogtofu33

Can you be more precise on how to reproduce, this is related to link with icon as a field in a media?

🇫🇷France mogtofu33

mogtofu33 changed the visibility of the branch 3489673-regression-with-uiiconsmenu to hidden.

🇫🇷France mogtofu33

(Try to) Fix code language YAML overridden by language PHP.

🇫🇷France mogtofu33

Remove SVG sprite url reference as it's not currently available.

Add properties and parameters for icon element and twig function.

🇫🇷France mogtofu33

Faster on both sides, for discovery and a better in front at least after first download...
SVG Sprite could be use with CDN but not public one because of CORS, so it's an edge case optimization.

As it's just a suggestion I understand we could keep to SVG. My mind is not fully set on that.

🇫🇷France mogtofu33

Fixed on 1.1.x, backported on 1.0.x.

🇫🇷France mogtofu33

Had an issue with a double icon_display, fixed in IconFieldHelpers::validateSettings(), fixed on 1.1.x, backported 1.0.x.

But didn't had double pack settings.

Please try to export config, manually edit to remove what's not under icon_settings and import it back.

Here is my test on clean Drupal 11.1 + UI icons 1.1.x-dev.

  • Enable UI Icons media, Icons bootstrap example with this config and create Icon media
  • Set media icon field display settings for the icon packs
  • Add field Media icons to content
  • Set content display with layout builder

With that, config core.entity_view_display.media.icon.default is valid as below.

content:
  field_linkit_attributes:
    type: icon_linkit_formatter
    label: hidden
    settings:
      trim_length: 80
      url_only: false
      url_plain: false
      rel: '0'
      target: _blank
      linkit_profile: default
      icon_settings:
        bootstrap:
          color: '#6200ee'
          size: 32
          alt: ''
        bootstrap_svg:
          color: '#f66151'
          size: 32
        bootstrap_path:
          color: '#000000'
          size: 32
          alt: ''
        bootstrap_name:
          color: '#000000'
          size: 32
      icon_display: after
    third_party_settings: {  }
    weight: 0
    region: content
🇫🇷France mogtofu33

Found the doc! Fixed on 1.0.x and 1.1.x

Production build 0.71.5 2024