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

chore: allow <svelte:element> effects to be pruned #12356

Merged
merged 1 commit into from
Jul 9, 2024

Conversation

Rich-Harris
Copy link
Member

'Inert' effects (those with no dependencies, or DOM, or teardown functions) do not get added to the effect tree, since there's no reason to keep them alive.

In two cases — {#await ...} and <svelte:element> effects — we return a noop function to prevent the effects from being pruned. In the case of await blocks this is necessary because a branch might not be created during the block's first run. In the case of <svelte:element> it's not — I think it was only there because we were previously updating the DOM manually rather than using the simpler assign_nodes mechanism, which organically prevents the effect being pruned.

In fact there's an edge case where we want the effect to be pruned — the case where this is non-reactive and falsy...

<svelte:element this={null} />

...and that's what happens with this PR.

Before submitting the PR, please make sure you do the following

  • It's really useful if your PR references an issue where it is discussed ahead of time. In many cases, features are absent for a reason. For large changes, please create an RFC: https://github.com/sveltejs/rfcs
  • Prefix your PR title with feat:, fix:, chore:, or docs:.
  • This message body should clearly illustrate what problems it solves.
  • Ideally, include a test that fails without this PR but passes with it.

Tests and linting

  • Run the tests with pnpm test and lint the project with pnpm lint

Copy link

changeset-bot bot commented Jul 9, 2024

⚠️ No Changeset found

Latest commit: 6e39d2a

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Rich-Harris added a commit that referenced this pull request Jul 9, 2024
@dummdidumm dummdidumm merged commit c314d1b into main Jul 9, 2024
9 checks passed
@dummdidumm dummdidumm deleted the simpler-svelte-element branch July 9, 2024 11:28
Rich-Harris added a commit that referenced this pull request Jul 9, 2024
* WIP towards single-pass hydration

* fix

* fixes

* fix

* fix

* fixes

* fix

* fixes

* fix

* fix, tidy up

* update script (it currently fails)

* fix

* fix

* hmm

* fix

* fix

* fix

* fix

* all hydration tests passing

* drive-by fix

* fix

* update snapshot tests

* fix

* recover: false

* fix invalid HTML message

* note to self

* fix

* fix

* update snapshot tests

* fix

* fix

* fix

* update test

* fix

* fix

* fix

* ALL TESTS PASSING THIS IS NOT A DRILL

* optimise each blocks

* changeset

* type stuff

* fix comment

* tidy up

* tidy up

* tidy up

* tidy up

* tidy up

* remove comment, turns out we do need it

* revert

* reinstate standalone optimisation

* improve <svelte:element> SSR

* reset more conservatively

* tweak

* DRY/fix

* revert

* simplify

* add comment

* tweak

* simplify

* simplify

* answer: yes, at least for now, because otherwise empty components are a nuisance

* tweak

* unused

* comment is answered by #12356

* tweak

* handle `<template>` edge case at compile time

* this is no longer a possibility, because of is_text_first

* unused

* tweak

* fix

* move annotations to properties

* Update packages/svelte/src/constants.js

Co-authored-by: Simon H <[email protected]>

* Update packages/svelte/src/compiler/phases/3-transform/client/visitors/template.js

Co-authored-by: Simon H <[email protected]>

* Update packages/svelte/src/internal/client/dom/blocks/each.js

Co-authored-by: Simon H <[email protected]>

* Update packages/svelte/src/internal/client/dom/hydration.js

Co-authored-by: Simon H <[email protected]>

* Update playgrounds/demo/vite.config.js

Co-authored-by: Simon H <[email protected]>

* add a comment

* prettier

* tweak

* tighten up hydration tests, add test for standalone component

* test for standalone snippet

* fix

* add some comments

* tidy up

* avoid mutating `arguments`

---------

Co-authored-by: Simon H <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants