-
-
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: use moveBefore on supported browsers #15512
Conversation
🦋 Changeset detectedLatest commit: 555321f 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 |
|
Will this have any unwanted impact on transitions? (TBH I'm not even sure if we want to run transitions on moved within an array, or if they do right now) |
I don't think this will impact transitions, since they are executed before/after the node is deleted/added. But, I also tested the demo-site : https://state-preserving-atomic-move.glitch.me/ Maybe it would be better to wait until it is a little more stable. |
We only want to use |
The "no side effects" comment is an indicator for bundlers that a function is pure. |
I think it's fine : if I'm not mistaken it's only used on the
So I suppose this is not the case here, since the DOM is modified... |
I'm going to close this because I'm quite certain we shouldn't do this. It will make bugs more likely, not less, because it means that people will see stuff working in Chrome and assume it works everywhere. It's much better if people are forced to solve these issues in a cross-browser way — Svelte should avoid having different behaviour between different browsers. |
Before submitting the PR, please make sure you do the following
The PR change the API used in
{#each}
block to move existing node.Currently it use
before()
. Now it use the new APImoveBefore()
when the browser support it, or fallback toinsertBefore()
.moveBefore()
allow to move a node without losing state.The feature is stiff experimental but I don't think there a problem using it (with a fallback)
Sources :
moveBefore()
state-preserving atomic move API whatwg/dom#1307Notes :
/*@__NO_SIDE_EFFECTS__*/
.I don't know what this does exactly or if I should put it on the function I added
feat:
,fix:
,chore:
, ordocs:
.packages/svelte/src
, add a changeset (npx changeset
).Tests and linting
pnpm test
and lint the project withpnpm lint