-
-
Notifications
You must be signed in to change notification settings - Fork 349
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
base: 2.x
Are you sure you want to change the base?
Conversation
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 |
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 Let's be pragmatic, always adding this |
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 Thanks for your comprehension! |
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... |
and when you rendering 100 icons in same page it becomes 440 :) |
I'm pretty sure you webserver can compress your HTML response... |
True, but 440 characters represents almost 0,43 ko ! |
i still stand with @smnandre . do as you wish, i will write a script to clean the files |
but the repository size also grows |
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! |
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 |
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 |
There was a problem hiding this 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. |
There was a problem hiding this comment.
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:
- Add `xmlns` attribute in downloaded svg. | |
## 2.24.0 | |
- Add `xmlns` attribute in downloaded svg. |
There was a problem hiding this comment.
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:
- 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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cc @norkunas
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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 ? 😅
There was a problem hiding this comment.
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
If I will set |
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 |
@smnandre I didn't said about custom option, I am exploring from what's available: |
The xmlns attribute was not present in the downloaded SVG icons.
To follow the W3C standard, I added it inside the svg tag.