-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
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
chore: rewrite set_style() to handle directives #15418
Conversation
🦋 Changeset detectedLatest commit: 4894e3d The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
Reverted a last-minute change thaht break tests... Using Note sure what we should do... |
I just adjusted some tests to allow the use of |
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.
What is the reason behind separating important from non-important styles and setting them separately in DOM?
Also, is it possible to avoid the to_style
call (which adds some perf and bundle size overhead) in the DOM (and maybe even the server) by just concatenating styles and letting the browser figure out the duplicates?
packages/svelte/src/compiler/phases/3-transform/client/visitors/shared/element.js
Outdated
Show resolved
Hide resolved
packages/svelte/src/compiler/phases/3-transform/client/visitors/shared/element.js
Show resolved
Hide resolved
suggestions from dummdidumm Co-authored-by: Simon H <[email protected]>
I haven't found a better way to handle the
This can be a (small) breaking change if the initial style use an <div style="color: red !important" style:color={'blue'}>Hello World</div> => But yes that would simplify a lot of things... Also the set_style() in DOM helps to avoid multiple mutations during hydration... |
Honestly I would call this a bugfix, because
How exactly? Aren't all styles collected and then applied to |
In this case the export function to_style(value, styles) {
if (styles) {
var new_style = value ? String(value).trim() + ';' : '';
if (Array.isArray(styles)) {
new_style += append_styles(styles[0]);
new_style += append_styles(styles[1], true);
} else {
new_style += append_styles(styles);
}
return new_style === '' ? null : new_style;
} else if (value == null) {
return null;
}
return String(value);
}
Yes in this PR with Take the following code (example in REPL) <div {style} style:color style:border>Hello World</div> On server-side it will render something like that : But on client-site it's currently handheld by 3 differents function call : $.set_attribute(div, 'style', style());
$.set_style(div, 'color', color());
$.set_style(div, 'border', border()); On hydration there will be mismatch and the style is modified 3 times, even though the server generated the correct code :
|
Using the "simplified" version of
An alternative would be to use |
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.
This is great! In addition to fixing the bugs, getting rid of is_attributes_reactive
allowed for a chain reaction of simplifying code
This is the #15352 counterpart for
style:directive
Currently the
style:xxx
directives are managed separately from thestyle
attribute.This is a PoC for rewriting
set_style()
in order to includesclass:
directives.Note that I edited a test, for removing an empty attribute
Basically :
I haven't had time to do a test for this yet.
I'll do it this week...
Before submitting the PR, please make sure you do the following
feat:
,fix:
,chore:
, ordocs:
.packages/svelte/src
, add a changeset (npx changeset
).Tests and linting
pnpm test
and lint the project withpnpm lint