IconFinder does not generate url with base_url

Created on 4 February 2025, about 2 months ago

Problem/Motivation

Follow up πŸ› ui_icons does not generate url with base_url Active

In case base_url is not / but /something, generated urls from svg library are expected to be /something/modules/.../image.png.
Currently, it's not.

Steps to reproduce

Configure Drupal to work with "subfolder" so base_url is /something where "something" is the string you want.
Add a library like described in examples modules https://gitlab.com/ui-icons/ui-icons-example.
Add an icon to a content
Display the page with icon, looking url generated for this icon, url is /modules/... and not /something/modules/...

Proposed resolution

Current proposed resolution is to wrap the $this->appRoot in IconFinder::processFoundFiles.

Need to be tested and see if it's the best approach.

Remaining tasks

Commit and test. If needed add/update a PHPUnit test.

User interface changes

None.

API changes

None.

Data model changes

None.

πŸ› Bug report
Status

Active

Version

11.1 πŸ”₯

Component

theme system

Created by

πŸ‡«πŸ‡·France mogtofu33

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

Merge Requests

Comments & Activities

  • Issue created by @mogtofu33
  • πŸ‡³πŸ‡ΏNew Zealand quietone

    Changes are made on on 11.x (our main development branch) first, and are then back ported as needed according to the Core change policies β†’ .

  • πŸ‡«πŸ‡·France goz

    In \Drupal\Core\Theme\Icon\IconFinder::processFoundFiles()

            'source' => $this->fileUrlGenerator->generateString(str_replace($this->appRoot, '', $file_absolute_path)),
    

    does not take care of base_path

    Here is a piece of code to check logic.

    <?php
    // Hardcode base path, i want Drupal root with subfolder, so http://domain.tld/dir is my drupal root base path.
    $GLOBALS['base_path'] = '/dir/';
    
    // Check current code, $this->appRoot does not end by /.
    $appRoot = '/var/www/html';
    echo(\Drupal::service('file_url_generator')->generateString(str_replace($appRoot, '', '/var/www/html/core/modules/system/tests/modules/icon_test/icons')));
    // Result is : /core/modules/system/tests/modules/icon_test/icons
    
    echo ("\n");
    
    // Add / to the end of appRoot.
    echo(\Drupal::service('file_url_generator')->generateString(str_replace("{$appRoot}/", '', '/var/www/html/core/modules/system/tests/modules/icon_test/icons')));
    // Result is : /dir/core/modules/system/tests/modules/icon_test/icons
    
    

    We could check first $this->appRoot does not already end by / before adding it.

  • Pipeline finished with Failed
    about 2 months ago
    Total: 528s
    #419213
  • πŸ‡«πŸ‡·France goz

    Looks like tests fails for another reason but cannot launch it again.

    @mogtofu33 you set "Needs work" status because of failing tests or you are waiting for another changes ?

  • Pipeline finished with Failed
    about 2 months ago
    Total: 110s
    #419976
  • Pipeline finished with Failed
    about 2 months ago
    Total: 789s
    #419986
  • πŸ‡«πŸ‡·France mogtofu33

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

  • Pipeline finished with Failed
    about 2 months ago
    Total: 95s
    #420808
  • Pipeline finished with Failed
    about 2 months ago
    Total: 1888s
    #420832
  • πŸ‡«πŸ‡·France mogtofu33

    Current jobs fail is not related to Icon.

  • Pipeline finished with Failed
    about 2 months ago
    Total: 378s
    #421876
  • πŸ‡ΊπŸ‡ΈUnited States smustgrave

    Left some comments on the MR.

    If you are another contributor eager to jump in, please allow the previous poster at least 48 hours to respond to feedback first, so they have the opportunity to finish what they started!

  • Pipeline finished with Failed
    13 days ago
    Total: 736s
    #454085
Production build 0.71.5 2024