- Issue created by @lauriii
- ๐ง๐ชBelgium wim leers Ghent ๐ง๐ช๐ช๐บ
That's for this Views block:
core/modules/user/config/optional/views.view.who_s_online.yml
.I'm curious if this is specific to
\Drupal\experience_builder\Plugin\ExperienceBuilder\ComponentSource\BlockComponent
or whether this can be reproduced for SDCs too. - ๐ฎ๐ณIndia Akhil Babu Chengannur
This issue does not affect for SDC components.
This part of the code is causing the issue
experience_builder_block_alter() { // $component = Component::create([ // 'label' => (string) new TranslatableMarkup('@label block', ['@label' => $definition['admin_label']]), // ]); }
(string) new TranslatableMarkup('@label block', ['@label' => $definition['admin_label']])
returns the incorrect label for blocks - ๐ฎ๐ณIndia Akhil Babu Chengannur
Drupal\Component\Render\FormattableMarkup::placeholderFormat
always escapes the special characters in the string if the placeholder passed is '@'. This happens every time, and then the render API properly renders the special characters. But not sure why it's not happening in this case (Maybe because the rendering happens in the decoupled UI, but the label in the component listing/admin/structure/component
is also double escaped). Should we usehtml_entity_decode
here? - First commit to issue fork.
- ๐ฌ๐งUnited Kingdom samberry
I did some investigation here and found that this is actually coming from the Component.php file in the normalizeForClientSide() method.
It seems to be printed from the block label itself with the encoded apostrophe so I have added the html_entity_decode here.
- ๐ง๐ชBelgium wim leers Ghent ๐ง๐ช๐ช๐บ
So this needs to undo what
\Drupal\Component\Utility\Html::escape()
did, interesting! ๐This is 99% correct AFAICT, but this would make it 100%: https://git.drupalcode.org/project/experience_builder/-/merge_requests/6... โ asking @longwave to confirm.
- ๐ฆ๐บAustralia larowlan ๐ฆ๐บ๐.au GMT+10
@akhil babu is correct, it is wrong in the config entity
drush cget experience_builder.component.block.views_block.who_s_online-who_s_online_block uuid: 57867d30-4a30-4b86-af25-12cb6fa03497 langcode: en status: true dependencies: { } label: 'Who's online block' ๐๏ธ๐๏ธ๐๏ธ id: block.views_block.who_s_online-who_s_online_block source: block category: 'Lists (Views)' settings: plugin_id: 'views_block:who_s_online-who_s_online_block' default_settings: id: 'views_block:who_s_online-who_s_online_block' label: "Who's online" label_display: '' provider: views views_label: '' items_per_page: none
- ๐ง๐ชBelgium wim leers Ghent ๐ง๐ช๐ช๐บ
Closed ๐ Block names in component list are encoded Active as a duplicate of this.
- ๐ง๐ชBelgium wim leers Ghent ๐ง๐ช๐ช๐บ
Related: ๐ Handle update and delete of Block component config entities Active and ๐ Capture all reasons why particular SDC is incompatible Active .
- ๐ง๐ชBelgium wim leers Ghent ๐ง๐ช๐ช๐บ
Doesn't need to be @longwave who does this!
- ๐ฌ๐งUnited Kingdom f.mazeikis Brighton
f.mazeikis โ made their first commit to this issueโs fork.
- ๐ฌ๐งUnited Kingdom f.mazeikis Brighton
Merged in 0.x, resolved conflicts, implemented Wim's suggestion.
- First commit to issue fork.
- ๐ฎ๐ณIndia JatinGupta40
Hello @traviscarden
I tried doing the rebase, and it is saying - `Current branch 3504819-component-names-are is up to date.`It is good to go.
Thanks.
- ๐ฌ๐งUnited Kingdom f.mazeikis Brighton
Made some changes in efforts to address https://www.drupal.org/project/experience_builder/issues/3504819#comment-15992301
- ๐ง๐ชBelgium wim leers Ghent ๐ง๐ช๐ช๐บ
I think it's totally reasonable to remove the
block
suffix now that โจ Display "Dynamic Components" in top bar popover Active moved blocks to :
- ๐ฌ๐งUnited Kingdom f.mazeikis Brighton
Updated Cypress tests, no PHP tested were affected.
-
wim leers โ
committed 8bf0bc5b on 0.x authored by
samberry โ
Issue #3504819 by f.mazeikis, samberry, traviscarden, lauriii, akhil...
-
wim leers โ
committed 8bf0bc5b on 0.x authored by
samberry โ
Automatically closed - issue fixed for 2 weeks with no activity.