Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Icons] Add xmlns attribute to svg icons #2661

Open
wants to merge 3 commits into
base: 2.x
Choose a base branch
from

Conversation

Enz000
Copy link

@Enz000 Enz000 commented Mar 27, 2025

Q A
Bug fix? no
New feature? yes
Docs? no
Issues Fix #2561
License MIT

The xmlns attribute was not present in the downloaded SVG icons.
To follow the W3C standard, I added it inside the svg tag.

@carsonbot carsonbot added Feature New Feature Icons Status: Needs Review Needs to be reviewed labels Mar 27, 2025
@Enz000 Enz000 marked this pull request as draft March 27, 2025 21:58
@smnandre
Copy link
Member

Problem is you now add it for everyone, everywhere, even in the inline rendering, where this is not required (and has no realy meaning).

I do believe we should try to implement custom attribute allowing/disallow list

@Kocal
Copy link
Member

Kocal commented Mar 28, 2025

Problem is you now add it for everyone, everywhere, even in the inline rendering, where this is not required (and has no really meaning).

Is it really an issue? Sure it may be not useful when inlining, but is it breaking the document or the browser?

Popular icons "libraries" like HeroIcons or FontAwesome or Google's Icons provides SVG icons with a xmlns attribute, and no one tells you to remove it if you want to inline the svg in your document.

Let's be pragmatic, always adding this xmlns attribute is fine

@carsonbot carsonbot added Status: Needs Work Additional work is needed and removed Status: Needs Review Needs to be reviewed labels Mar 28, 2025
@norkunas
Copy link
Contributor

Let's be pragmatic, always adding this xmlns attribute is fine

which will break many tests for us

@Kocal
Copy link
Member

Kocal commented Mar 28, 2025

Let's be pragmatic, always adding this xmlns attribute is fine

which will break many tests for us

Even if the rendered HTML changes, as long as it doesn't break rendering in the browser, that's totally fine.

We understand your tests will break, but we do not really cares here, it's not like we are removing some HTML attributes or whatever more impactful.

Also, note that we already did this kind of "breaking changes" on ComponentAttributes rendering because of performance issues, and we already stated that these kind of changes were fine.

Thanks for your comprehension!

@norkunas
Copy link
Contributor

Sorry,but this will expand html size for no reason for us ... Im not against it, but at least config option would be ok

@Enz000
Copy link
Author

Enz000 commented Mar 28, 2025

Sorry,but this will expand html size for no reason for us ... Im not against it, but at least config option would be ok

The HTML size is not a valid reason for me. The attribute’s length is about 44 characters...

@norkunas
Copy link
Contributor

and when you rendering 100 icons in same page it becomes 440 :)

@Kocal
Copy link
Member

Kocal commented Mar 28, 2025

I'm pretty sure you webserver can compress your HTML response...

@Enz000
Copy link
Author

Enz000 commented Mar 28, 2025

and when you rendering 100 icons in same page it becomes 440 :)

True, but 440 characters represents almost 0,43 ko !
Still nothing but maybe I'm mistaken

@norkunas
Copy link
Contributor

i still stand with @smnandre . do as you wish, i will write a script to clean the files

@norkunas
Copy link
Contributor

I'm pretty sure you webserver can compress your HTML response...

but the repository size also grows

@Kocal Kocal changed the title [Icons] add xmnls attribute to svg icons [Icons] Add xmlns attribute to svg icons Mar 28, 2025
@Kocal
Copy link
Member

Kocal commented Mar 28, 2025

Please let's keep the discussion pertinent, I don't think the arguments "my tests will break" nor the "HTML or repo size will grow" are resonable enough to prevent this feature to ship. Otherwise, shouldn't we stop developing things and remove code only? 😬

To move forwards @Enz000, you still need to update Icons tests and we will be fine. Maybe add one or two lines in the change log about the "breaking" thing.

Thanks everyone!

@norkunas
Copy link
Contributor

As I said I'm not against it, just do not understand why such a rare need is pushed without opt-in for all users

@carsonbot carsonbot added Status: Needs Review Needs to be reviewed and removed Status: Needs Work Additional work is needed labels Mar 28, 2025
@Enz000 Enz000 marked this pull request as ready for review March 28, 2025 23:06
@smnandre
Copy link
Member

I'm sure we can all be a bit more chill here (and respectful).

I think all points are valid here:

UX Icons was made to render SVG icons in Twig. So I do agree this use case does not feel a valid reason to change the HTML generated by everyone else.

On the other side, not having this attribute can be a real pain (at least during development) raising a valid DX problem here. And making it hard to use the icons for anything else than inline rendering. So I do agree this use case does represent a valid reason to change something.

Ideally, this situation would have require just a tiny bit of goodwill, some people giving a bit of energy or time (like really not much here) to implement something more clever/adapted.

I already mentioned on another issue (quesstion from Javier i think) the following idea: we could add a include/exclude system of attributes, globally and/or by set and/or by usage (in file / at render time), as this seems to be very opiniated debates.

So to me forcing this attribute for everyone and storing it in cache is not the best idea, clearly. I suppose this would maybe be something to be done in the commands, via an Input Option.

But I don't want either to "penalize" someone that took some time to explain its problem, open a PR to try something, etc.

Have a good week-end you guys

@Enz000 Enz000 requested a review from Kocal March 31, 2025 19:32
@carsonbot carsonbot added Status: Reviewed Has been reviewed by a maintainer and removed Status: Needs Review Needs to be reviewed labels Apr 1, 2025
Copy link
Member

@smnandre smnandre left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@@ -4,6 +4,7 @@

- Add `aliases` configuration option to define icon alternative names.
- Add support for `int` and `float` attribute values in `<twig:ux:icon />`.
- Add `xmlns` attribute in downloaded svg.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It must be added in a new section for 2.24:

Suggested change
- Add `xmlns` attribute in downloaded svg.
## 2.24.0
- Add `xmlns` attribute in downloaded svg.

Copy link
Member

@Kocal Kocal Apr 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, as discussed in the PR but also with @smnandre yesterday, about the ""breaking changes"", it is true it can happens when you didn't lock your icons, and your tests/CI always fetch and re-fetch icons for Iconify.

Maybe we can add few words about the impacts and how to deal with, something like this:

Suggested change
- Add `xmlns` attribute in downloaded svg.
## 2.24.0
- **BREAKING** Add `xmlns` attribute to icons downloaded with Iconify, to allows icons to be correctly rendered in browser as an external file, in SVG editors, and in files explorers or text editors previews.
This is **an accepted breaking change** since **we did not modified the current rendering behavior in the browser** and it won't break your website. However it **may breaks your pipeline** if your tests assert on `ux_icon()` or `<twig:ux:icon>` output and you [didn't lock your icons](https://symfony.com/bundles/ux-icons/current/index.html#locking-on-demand-icons).
We recommend you to **lock** your icons **before** upgrading to UX Icons 2.24. We also suggest you to to **force-lock** your icons **after** upgrading to UX Icons 2.24, to add the attribute `xmlns` to your icons already downloaded from Iconify.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually I always import them, to avoid useless http requests :) so at least all previously imported icons will be clean

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As I see it, we have two options to see it:

  • If it’s a breaking change, we don’t release it.
  • If it’s not a breaking change, there’s no need to make a big deal out of it.

But releasing it with BREAKING in the changelog does not feel a good idea.

So which one it is ? 😅

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Trying to cover so strictly the shape of the retval of a public method that isn't even documented code-wise is calling for trouble :) Putting that sentence in the PR body in case anyone want to read it should be more than enough

@carsonbot carsonbot added Status: Needs Work Additional work is needed and removed Status: Reviewed Has been reviewed by a maintainer labels Apr 2, 2025
@norkunas
Copy link
Contributor

norkunas commented Apr 2, 2025

If I will set ux_icon.default_icon_attributes.xmlns config option to false will it avoid rendering it at least? If no - would it be possible to make this work?

@smnandre
Copy link
Member

smnandre commented Apr 2, 2025

I'd like we don't make a custom option per attribute, and use something more generic / once for all if possible.

But a temporary hard-coded option would be acceptable here, until someone has time to make clean things.

Discussion / implementation ideas here: #2353

@norkunas
Copy link
Contributor

norkunas commented Apr 2, 2025

@smnandre I didn't said about custom option, I am exploring from what's available: default_icon_attributes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature New Feature Icons Status: Needs Work Additional work is needed
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Icons] Icons are missing xmlns attribute
6 participants