Skip to content

Commit d461886

Browse files
authored
Merge pull request #6702 from nextcloud-libraries/chore/migrate-get-parent-ts
chore: migrate `GetParent` to Typescript
2 parents 878797d + fc204e2 commit d461886

File tree

3 files changed

+100
-8
lines changed

3 files changed

+100
-8
lines changed

src/mixins/actionText.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
import actionGlobal from './actionGlobal.js'
7-
import GetParent from '../utils/GetParent.js'
7+
import { getParent } from '../utils/getParent.ts'
88

99
export default {
1010
mixins: [actionGlobal],
@@ -83,7 +83,7 @@ export default {
8383
this.$emit('click', event)
8484

8585
if (this.closeAfterClick) {
86-
const parent = GetParent(this, 'NcActions')
86+
const parent = getParent(this, 'NcActions')
8787
if (parent && parent.closeMenu) {
8888
parent.closeMenu(false)
8989
}

src/utils/GetParent.js src/utils/getParent.ts

+5-6
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
* SPDX-License-Identifier: AGPL-3.0-or-later
44
*/
55

6+
import type { ComponentPublicInstance } from 'vue'
7+
68
/**
79
* Get the first parent component matching the provided name
810
*
9-
* @param {object} context the context to search from (usually this)
10-
* @param {string} name the parent name
11-
* @return {object|undefined} the parent component
11+
* @param context - The component to search from (usually this)
12+
* @param name - The parent name
1213
*/
13-
const GetParent = function(context, name) {
14+
export function getParent(context: ComponentPublicInstance, name: string) {
1415
let parent = context.$parent
1516
while (parent) {
1617
if (parent.$options.name === name) {
@@ -19,5 +20,3 @@ const GetParent = function(context, name) {
1920
parent = parent.$parent
2021
}
2122
}
22-
23-
export default GetParent

tests/unit/utils/getParent.spec.ts

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
/**
2+
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
5+
6+
import { mount } from '@vue/test-utils'
7+
import { describe, expect, it, vi } from 'vitest'
8+
import { defineComponent } from 'vue'
9+
10+
import { getParent } from '../../../src/utils/getParent.ts'
11+
12+
const CParent = defineComponent({
13+
name: 'CParent',
14+
template: '<div><slot /></div>',
15+
})
16+
17+
const CChild = defineComponent({
18+
name: 'CChild',
19+
template: '<div>hello</div>',
20+
inject: ['foundParent'],
21+
mounted() {
22+
(this.foundParent as (x: unknown) => void)(getParent(this, 'CParent'))
23+
},
24+
computed: {
25+
parent() {
26+
return getParent(this, 'CParent')
27+
},
28+
},
29+
})
30+
31+
const CWrapper = defineComponent({
32+
name: 'CWrapper',
33+
template: '<div><slot /></div>',
34+
})
35+
36+
describe('utils: getParent', () => {
37+
it('finds direct parent', () => {
38+
const foundParent = vi.fn()
39+
const component = defineComponent({
40+
template: '<CParent><CChild ref="child" /></CParent>',
41+
components: { CChild, CParent },
42+
provide: {
43+
foundParent,
44+
},
45+
})
46+
47+
mount(component)
48+
expect(foundParent).toBeCalledWith({})
49+
})
50+
51+
it('finds indirect parent', () => {
52+
const foundParent = vi.fn()
53+
const component = defineComponent({
54+
template: '<CParent><CWrapper><CChild ref="child" /></CWrapper></CParent>',
55+
components: { CChild, CParent, CWrapper },
56+
provide: {
57+
foundParent,
58+
},
59+
})
60+
61+
mount(component)
62+
expect(foundParent).toBeCalledWith({})
63+
})
64+
65+
it('finds indirect parent in native elements', () => {
66+
const foundParent = vi.fn()
67+
const component = defineComponent({
68+
template: '<CParent><div><CChild ref="child" /></div></CParent>',
69+
components: { CChild, CParent },
70+
provide: {
71+
foundParent,
72+
},
73+
})
74+
75+
mount(component)
76+
expect(foundParent).toBeCalledWith({})
77+
})
78+
79+
it('does not find parent if there is none', () => {
80+
const foundParent = vi.fn()
81+
const component = defineComponent({
82+
template: '<div><CChild ref="child" /></div>',
83+
components: { CChild },
84+
provide: {
85+
foundParent,
86+
},
87+
})
88+
89+
mount(component)
90+
expect(foundParent).toBeCalledTimes(1)
91+
expect(foundParent).toBeCalledWith(undefined)
92+
})
93+
})

0 commit comments

Comments
 (0)