Skip to content

Commit

Permalink
fix(runtime-core): fix provide function data access in extends/mixins
Browse files Browse the repository at this point in the history
fix #2300
  • Loading branch information
yyx990803 committed Oct 8, 2020
1 parent cbcec6e commit f06518a
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 11 deletions.
30 changes: 30 additions & 0 deletions packages/runtime-core/__tests__/apiOptions.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,36 @@ describe('api: options', () => {
expect(renderToString(h(Root))).toBe(`11112345`)
})

test('provide accessing data in extends', () => {
const Base = defineComponent({
data() {
return {
a: 1
}
},
provide() {
return {
a: this.a
}
}
})

const Child = {
inject: ['a'],
render() {
return (this as any).a
}
}

const Root = defineComponent({
extends: Base,
render() {
return h(Child)
}
})
expect(renderToString(h(Root))).toBe(`1`)
})

test('lifecycle', async () => {
const count = ref(0)
const root = nodeOps.createElement('div')
Expand Down
49 changes: 38 additions & 11 deletions packages/runtime-core/src/componentOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@ export function applyOptions(
options: ComponentOptions,
deferredData: DataFn[] = [],
deferredWatch: ComponentWatchOptions[] = [],
deferredProvide: (Data | Function)[] = [],
asMixin: boolean = false
) {
const {
Expand Down Expand Up @@ -483,16 +484,29 @@ export function applyOptions(
)
isInBeforeCreate = false
// global mixins are applied first
applyMixins(instance, globalMixins, deferredData, deferredWatch)
applyMixins(
instance,
globalMixins,
deferredData,
deferredWatch,
deferredProvide
)
}

// extending a base component...
if (extendsOptions) {
applyOptions(instance, extendsOptions, deferredData, deferredWatch, true)
applyOptions(
instance,
extendsOptions,
deferredData,
deferredWatch,
deferredProvide,
true
)
}
// local mixins
if (mixins) {
applyMixins(instance, mixins, deferredData, deferredWatch)
applyMixins(instance, mixins, deferredData, deferredWatch, deferredProvide)
}

const checkDuplicateProperties = __DEV__ ? createDuplicateChecker() : null
Expand Down Expand Up @@ -634,12 +648,17 @@ export function applyOptions(
}

if (provideOptions) {
const provides = isFunction(provideOptions)
? provideOptions.call(publicThis)
: provideOptions
for (const key in provides) {
provide(key, provides[key])
}
deferredProvide.push(provideOptions)
}
if (!asMixin && deferredProvide.length) {
deferredProvide.forEach(provideOptions => {
const provides = isFunction(provideOptions)
? provideOptions.call(publicThis)
: provideOptions
for (const key in provides) {
provide(key, provides[key])
}
})
}

// asset options.
Expand Down Expand Up @@ -777,10 +796,18 @@ function applyMixins(
instance: ComponentInternalInstance,
mixins: ComponentOptions[],
deferredData: DataFn[],
deferredWatch: ComponentWatchOptions[]
deferredWatch: ComponentWatchOptions[],
deferredProvide: (Data | Function)[]
) {
for (let i = 0; i < mixins.length; i++) {
applyOptions(instance, mixins[i], deferredData, deferredWatch, true)
applyOptions(
instance,
mixins[i],
deferredData,
deferredWatch,
deferredProvide,
true
)
}
}

Expand Down

0 comments on commit f06518a

Please sign in to comment.