Skip to content

Commit dde8603

Browse files
fix: do not warn for binding_property_non_reactive if binding is a store in an each (#15318)
Fixes #15315
1 parent 87d7cc7 commit dde8603

File tree

6 files changed

+33
-2
lines changed

6 files changed

+33
-2
lines changed

.changeset/little-laws-sit.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'svelte': patch
3+
---
4+
5+
fix: do not warn for `binding_property_non_reactive` if binding is a store in an each

packages/svelte/src/compiler/phases/3-transform/client/types.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ export interface ComponentClientTransformState extends ClientTransformState {
4545
readonly hoisted: Array<Statement | ModuleDeclaration>;
4646
readonly events: Set<string>;
4747
readonly is_instance: boolean;
48+
readonly store_to_invalidate?: string;
4849

4950
/** Stuff that happens before the render effect(s) */
5051
readonly init: Statement[];

packages/svelte/src/compiler/phases/3-transform/client/visitors/EachBlock.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ export function EachBlock(node, context) {
143143

144144
const child_state = {
145145
...context.state,
146-
transform: { ...context.state.transform }
146+
transform: { ...context.state.transform },
147+
store_to_invalidate
147148
};
148149

149150
/** The state used when generating the key function, if necessary */

packages/svelte/src/compiler/phases/3-transform/client/visitors/shared/utils.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -309,12 +309,16 @@ export function validate_binding(state, binding, expression) {
309309

310310
const loc = locator(binding.start);
311311

312+
const obj = /** @type {Expression} */ (expression.object);
313+
312314
state.init.push(
313315
b.stmt(
314316
b.call(
315317
'$.validate_binding',
316318
b.literal(state.analysis.source.slice(binding.start, binding.end)),
317-
b.thunk(/** @type {Expression} */ (expression.object)),
319+
b.thunk(
320+
state.store_to_invalidate ? b.sequence([b.call('$.mark_store_binding'), obj]) : obj
321+
),
318322
b.thunk(
319323
/** @type {Expression} */ (
320324
expression.computed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { test } from '../../test';
2+
3+
export default test({
4+
compileOptions: {
5+
dev: true
6+
},
7+
async test({ assert, warnings }) {
8+
assert.deepEqual(warnings, []);
9+
}
10+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<svelte:options runes />
2+
<script>
3+
import { writable } from 'svelte/store';
4+
5+
const array = writable([{ name: "" }]);
6+
</script>
7+
8+
{#each $array as item}
9+
<div><input bind:value={item.name} /></div>
10+
{/each}

0 commit comments

Comments
 (0)