Skip to content

Commit a840e7d

Browse files
committed
fix(types): update setup binding unwrap types for 6b10f0c
close #738
1 parent 8d817bb commit a840e7d

File tree

2 files changed

+35
-9
lines changed

2 files changed

+35
-9
lines changed

packages/runtime-core/src/componentProxy.ts

+17-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ import {
88
ComputedOptions,
99
MethodOptions
1010
} from './apiOptions'
11-
import { UnwrapRef, ReactiveEffect, isRef, isReactive } from '@vue/reactivity'
11+
import {
12+
ReactiveEffect,
13+
isRef,
14+
isReactive,
15+
Ref,
16+
ComputedRef
17+
} from '@vue/reactivity'
1218
import { warn } from './warning'
1319
import { Slots } from './componentSlots'
1420
import {
@@ -19,9 +25,9 @@ import {
1925
// public properties exposed on the proxy, which is used as the render context
2026
// in templates (as `this` in the render option)
2127
export type ComponentPublicInstance<
22-
P = {},
23-
B = {},
24-
D = {},
28+
P = {}, // props type extracted from props option
29+
B = {}, // raw bindings returned from setup()
30+
D = {}, // return from data()
2531
C extends ComputedOptions = {},
2632
M extends MethodOptions = {},
2733
PublicProps = P
@@ -40,11 +46,17 @@ export type ComponentPublicInstance<
4046
$nextTick: typeof nextTick
4147
$watch: typeof instanceWatch
4248
} & P &
43-
UnwrapRef<B> &
49+
UnwrapSetupBindings<B> &
4450
D &
4551
ExtractComputedReturns<C> &
4652
M
4753

54+
type UnwrapSetupBindings<B> = { [K in keyof B]: UnwrapBinding<B[K]> }
55+
56+
type UnwrapBinding<B> = B extends ComputedRef<any>
57+
? B extends ComputedRef<infer V> ? V : B
58+
: B extends Ref<infer V> ? V : B
59+
4860
const publicPropertiesMap: Record<
4961
string,
5062
(i: ComponentInternalInstance) => any

test-dts/defineComponent.test-d.tsx

+18-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
import { expectError, expectType } from 'tsd'
2-
import { describe, defineComponent, PropType, ref, createApp } from './index'
2+
import {
3+
describe,
4+
defineComponent,
5+
PropType,
6+
ref,
7+
Ref,
8+
reactive,
9+
createApp
10+
} from './index'
311

412
describe('with object props', () => {
513
interface ExpectedProps {
@@ -57,11 +65,14 @@ describe('with object props', () => {
5765
// setup context
5866
return {
5967
c: ref(1),
60-
d: {
68+
d: reactive({
6169
e: ref('hi')
62-
},
63-
f: {
70+
}),
71+
f: reactive({
6472
g: ref('hello' as GT)
73+
}),
74+
h: {
75+
i: ref('hi')
6576
}
6677
}
6778
},
@@ -95,6 +106,9 @@ describe('with object props', () => {
95106
expectType<string>(this.d.e)
96107
expectType<GT>(this.f.g)
97108

109+
// should not unwrap refs nested under non-reactive objects
110+
expectType<Ref<string>>(this.h.i)
111+
98112
// setup context properties should be mutable
99113
this.c = 2
100114

0 commit comments

Comments
 (0)