Skip to content

Commit e452e9d

Browse files
committed
fix: export proxyRefs
close #12600
1 parent bcb62d1 commit e452e9d

File tree

3 files changed

+39
-21
lines changed

3 files changed

+39
-21
lines changed

src/v3/apiSetup.ts

+4-21
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
} from '../shared/util'
1313
import { currentInstance, setCurrentInstance } from './currentInstance'
1414
import { shallowReactive } from './reactivity/reactive'
15-
import { isRef } from './reactivity/ref'
15+
import { proxyWithRefUnwrap } from './reactivity/ref'
1616

1717
/**
1818
* @internal
@@ -68,7 +68,9 @@ export function initSetup(vm: Component) {
6868
// exposed for compiled render fn
6969
const proxy = (vm._setupProxy = {})
7070
for (const key in setupResult) {
71-
proxyWithRefUnwrap(proxy, setupResult, key)
71+
if (key !== '__sfc') {
72+
proxyWithRefUnwrap(proxy, setupResult, key)
73+
}
7274
}
7375
}
7476
} else if (__DEV__ && setupResult !== undefined) {
@@ -81,25 +83,6 @@ export function initSetup(vm: Component) {
8183
}
8284
}
8385

84-
export function proxyWithRefUnwrap(
85-
target: any,
86-
source: Record<string, any>,
87-
key: string
88-
) {
89-
Object.defineProperty(target, key, {
90-
enumerable: true,
91-
configurable: true,
92-
get: () => {
93-
const raw = source[key]
94-
return isRef(raw) ? raw.value : raw
95-
},
96-
set: newVal => {
97-
const raw = source[key]
98-
isRef(raw) ? (raw.value = newVal) : (source[key] = newVal)
99-
}
100-
})
101-
}
102-
10386
function createSetupContext(vm: Component): SetupContext {
10487
let exposeCalled = false
10588
return {

src/v3/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export {
77
toRef,
88
toRefs,
99
unref,
10+
proxyRefs,
1011
customRef,
1112
triggerRef,
1213
Ref,

src/v3/reactivity/ref.ts

+34
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,40 @@ export function unref<T>(ref: T | Ref<T>): T {
9393
return isRef(ref) ? (ref.value as any) : ref
9494
}
9595

96+
export function proxyRefs<T extends object>(
97+
objectWithRefs: T
98+
): ShallowUnwrapRef<T> {
99+
if (isReactive(objectWithRefs)) {
100+
return objectWithRefs as any
101+
}
102+
const proxy = {}
103+
const keys = Object.keys(objectWithRefs)
104+
for (let i = 0; i < keys.length; i++) {
105+
proxyWithRefUnwrap(proxy, objectWithRefs, keys[i])
106+
}
107+
return proxy as any
108+
}
109+
110+
export function proxyWithRefUnwrap(
111+
target: any,
112+
source: Record<string, any>,
113+
key: string
114+
) {
115+
Object.defineProperty(target, key, {
116+
enumerable: true,
117+
configurable: true,
118+
get: () => unref(source[key]),
119+
set: value => {
120+
const oldValue = source[key]
121+
if (isRef(oldValue) && !isRef(value)) {
122+
oldValue.value = value
123+
} else {
124+
source[key] = value
125+
}
126+
}
127+
})
128+
}
129+
96130
export type CustomRefFactory<T> = (
97131
track: () => void,
98132
trigger: () => void

0 commit comments

Comments
 (0)