File tree 4 files changed +39
-7
lines changed
test/unit/features/v3/reactivity
4 files changed +39
-7
lines changed Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ export function defineReactive(
191
191
} else if ( getter ) {
192
192
// #7981: for accessor properties without setter
193
193
return
194
- } else if ( isRef ( value ) && ! isRef ( newVal ) ) {
194
+ } else if ( ! shallow && isRef ( value ) && ! isRef ( newVal ) ) {
195
195
value . value = newVal
196
196
return
197
197
} else {
Original file line number Diff line number Diff line change @@ -483,7 +483,6 @@ describe('reactivity/readonly', () => {
483
483
const ror = readonly ( r )
484
484
const obj = reactive ( { ror } )
485
485
obj . ror = true
486
-
487
486
expect ( obj . ror ) . toBe ( false )
488
487
expect ( `Set operation on key "value" failed` ) . toHaveBeenWarned ( )
489
488
} )
@@ -492,14 +491,20 @@ describe('reactivity/readonly', () => {
492
491
const r = ref ( false )
493
492
const ror = readonly ( r )
494
493
const obj = reactive ( { ror } )
495
- try {
496
- obj . ror = ref ( true ) as unknown as boolean
497
- } catch ( e ) { }
498
-
494
+ obj . ror = ref ( true ) as unknown as boolean
499
495
expect ( obj . ror ) . toBe ( true )
500
496
expect ( toRaw ( obj ) . ror ) . not . toBe ( ror ) // ref successfully replaced
501
497
} )
502
498
499
+ test ( 'setting readonly object to writable nested ref' , ( ) => {
500
+ const r = ref < any > ( )
501
+ const obj = reactive ( { r } )
502
+ const ro = readonly ( { } )
503
+ obj . r = ro
504
+ expect ( obj . r ) . toBe ( ro )
505
+ expect ( r . value ) . toBe ( ro )
506
+ } )
507
+
503
508
test ( 'compatiblity with classes' , ( ) => {
504
509
const spy = vi . fn ( )
505
510
class Foo {
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ import {
11
11
isReactive ,
12
12
isShallow ,
13
13
reactive ,
14
- computed
14
+ computed ,
15
+ readonly
15
16
} from 'v3'
16
17
import { effect } from 'v3/reactivity/effect'
17
18
@@ -404,4 +405,17 @@ describe('reactivity/ref', () => {
404
405
b . value = obj
405
406
expect ( spy2 ) . toBeCalledTimes ( 1 )
406
407
} )
408
+
409
+ test ( 'ref should preserve value readonly-ness' , ( ) => {
410
+ const original = { }
411
+ const r = reactive ( original )
412
+ const rr = readonly ( original )
413
+ const a = ref ( original )
414
+
415
+ expect ( a . value ) . toBe ( r )
416
+
417
+ a . value = rr
418
+ expect ( a . value ) . toBe ( rr )
419
+ expect ( a . value ) . not . toBe ( r )
420
+ } )
407
421
} )
Original file line number Diff line number Diff line change 3
3
isRef ,
4
4
isShallow ,
5
5
reactive ,
6
+ Ref ,
6
7
ref ,
7
8
shallowReactive ,
8
9
shallowReadonly
@@ -45,6 +46,18 @@ describe('shallowReactive', () => {
45
46
expect ( foo . bar . value ) . toBe ( 123 )
46
47
} )
47
48
49
+ // #12688
50
+ test ( 'should not mutate refs' , ( ) => {
51
+ const original = ref ( 123 )
52
+ const foo = shallowReactive < { bar : Ref < number > | number } > ( {
53
+ bar : original
54
+ } )
55
+ expect ( foo . bar ) . toBe ( original )
56
+ foo . bar = 234
57
+ expect ( foo . bar ) . toBe ( 234 )
58
+ expect ( original . value ) . toBe ( 123 )
59
+ } )
60
+
48
61
// @discrepancy no shallow/non-shallow versions from the same source -
49
62
// cannot support this without real proxies
50
63
// #2843
You can’t perform that action at this time.
0 commit comments