File tree 2 files changed +11
-1
lines changed
packages/svelte/src/internal/client
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -159,6 +159,8 @@ export function set(source, value) {
159
159
return internal_set ( source , value ) ;
160
160
}
161
161
162
+ export const old_values = new Map ( ) ;
163
+
162
164
/**
163
165
* @template V
164
166
* @param {Source<V> } source
@@ -167,6 +169,8 @@ export function set(source, value) {
167
169
*/
168
170
export function internal_set ( source , value ) {
169
171
if ( ! source . equals ( value ) ) {
172
+ old_values . set ( source , source . v ) ;
173
+
170
174
var old_value = source . v ;
171
175
source . v = value ;
172
176
source . wv = increment_write_version ( ) ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import {
25
25
BOUNDARY_EFFECT
26
26
} from './constants.js' ;
27
27
import { flush_tasks } from './dom/task.js' ;
28
- import { internal_set } from './reactivity/sources.js' ;
28
+ import { internal_set , old_values } from './reactivity/sources.js' ;
29
29
import { destroy_derived_effects , update_derived } from './reactivity/deriveds.js' ;
30
30
import * as e from './errors.js' ;
31
31
import { FILENAME } from '../../constants.js' ;
@@ -673,6 +673,8 @@ function flush_queued_root_effects() {
673
673
if ( DEV ) {
674
674
dev_effect_stack = [ ] ;
675
675
}
676
+
677
+ old_values . clear ( ) ;
676
678
}
677
679
}
678
680
@@ -923,6 +925,10 @@ export function get(signal) {
923
925
}
924
926
}
925
927
928
+ if ( is_destroying_effect && old_values . has ( signal ) ) {
929
+ return old_values . get ( signal ) ;
930
+ }
931
+
926
932
return signal . v ;
927
933
}
928
934
You can’t perform that action at this time.
0 commit comments