mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* chore: upgrade deps * chore: replace __ExtractPublicPropTypes with ExtractPublicPropTypes * fix: get rid of type errors * fix: resolve test errors with @vue/test-utils v2.4.6 * fix: resolve test errors with Vue 3.5.22 * ci: set pnpm flag * chore: update the Vue peer dependency version * Apply suggestion from @tolking Co-authored-by: qiang <qw13131wang@gmail.com> * docs: update example code Co-authored-by: warmthsea <2586244885@qq.com> * chore: remove csstype (#22487) * chore: fix merge code type error * chore: fix test:ssr error - Cannot read properties of undefined (reading 'getSSRProps') * chore: fix typecheck:vitest error * chore: update pnpm yaml file * test: fix collapse accordion error * chore: update deps * chore: fix type error * chore: lock file * chore: sync change sync with the remove of vue macro * refactor: use computed instead of eagerComputed * fix: timeline.test.tsx typecheck * chore: clean lock file try dont throw CodeFactor issues in ci did: - rm pnpm-lock.yaml - rm -rf ./**/node_modules - pnpm store prune - pnpm cache delete - pnpm install Also stay in 3.1.0 for vue-tsc in order to avoid the warnings of template refs, see https://github.com/vuejs/language-tools/issues/5815 * chore: format code --------- Co-authored-by: Dsaquel <291874700n@gmail.com> Co-authored-by: qiang <qw13131wang@gmail.com> Co-authored-by: warmthsea <2586244885@qq.com> Co-authored-by: Noblet Ouways <91417411+Dsaquel@users.noreply.github.com> Co-authored-by: sea <45450994+warmthsea@users.noreply.github.com> Co-authored-by: btea <2356281422@qq.com>
113 lines
3.0 KiB
TypeScript
113 lines
3.0 KiB
TypeScript
import { nextTick, ref } from 'vue'
|
|
import { mount } from '@vue/test-utils'
|
|
import { afterEach, describe, expect, it, vi } from 'vitest'
|
|
import { POPPER_INJECTION_KEY } from '@element-plus/components/popper'
|
|
import ElTrigger from '../src/trigger.vue'
|
|
|
|
import type { VueWrapper } from '@vue/test-utils'
|
|
import type { PopperTriggerInstance } from '../src/trigger'
|
|
|
|
const AXIOM = 'rem is the best girl'
|
|
|
|
const popperInjection = {
|
|
triggerRef: ref(null),
|
|
popperInstanceRef: ref(null),
|
|
contentRef: ref(null),
|
|
}
|
|
|
|
const mountTrigger = (props = {}) =>
|
|
mount(<ElTrigger {...props}>{AXIOM}</ElTrigger>, {
|
|
global: {
|
|
provide: {
|
|
[POPPER_INJECTION_KEY as symbol]: popperInjection,
|
|
},
|
|
},
|
|
}) as unknown as VueWrapper<PopperTriggerInstance>
|
|
|
|
describe('<ElPopperTrigger />', () => {
|
|
let wrapper: VueWrapper<PopperTriggerInstance>
|
|
|
|
afterEach(() => {
|
|
popperInjection.triggerRef.value = null
|
|
})
|
|
describe('rendering', () => {
|
|
it('should be able to render with children', async () => {
|
|
wrapper = mountTrigger()
|
|
await nextTick()
|
|
|
|
expect(popperInjection.triggerRef.value).not.toBeNull()
|
|
expect(wrapper.text()).toEqual(AXIOM)
|
|
})
|
|
|
|
it('should be able to render for virtual ref', async () => {
|
|
wrapper = mountTrigger({
|
|
virtualTriggering: true,
|
|
})
|
|
|
|
await nextTick()
|
|
|
|
expect(wrapper.text()).not.toEqual(AXIOM)
|
|
|
|
const virtualRef = document.createElement('div')
|
|
await wrapper.setProps({
|
|
virtualRef,
|
|
})
|
|
|
|
expect(popperInjection.triggerRef.value).toStrictEqual
|
|
})
|
|
})
|
|
|
|
describe('can attach handlers', () => {
|
|
it('should be able to attach handlers to the trigger', async () => {
|
|
const onClick = vi.fn()
|
|
const virtualRef = document.createElement('div')
|
|
wrapper = mountTrigger({
|
|
onClick,
|
|
virtualTriggering: true,
|
|
virtualRef,
|
|
})
|
|
await nextTick()
|
|
expect(onClick).not.toHaveBeenCalled()
|
|
const evt = new MouseEvent('click')
|
|
virtualRef.dispatchEvent(evt)
|
|
await nextTick()
|
|
expect(onClick).toHaveBeenCalled()
|
|
})
|
|
it('should cleanup listeners when triggerRef changes', async () => {
|
|
const onClick = vi.fn()
|
|
const first = document.createElement('p')
|
|
const removeSpy = vi.spyOn(first, 'removeEventListener')
|
|
const addSpy = vi.spyOn(first, 'addEventListener')
|
|
|
|
wrapper = mountTrigger({
|
|
onClick,
|
|
virtualTriggering: true,
|
|
virtualRef: first,
|
|
})
|
|
await nextTick()
|
|
|
|
await wrapper.setProps({
|
|
virtualRef: {
|
|
getBoundingClientRect: () => {
|
|
return {
|
|
top: 0,
|
|
left: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
width: 0,
|
|
height: 0,
|
|
x: 0,
|
|
y: 0,
|
|
toJSON: () => ({}),
|
|
} as DOMRect
|
|
},
|
|
},
|
|
})
|
|
await nextTick()
|
|
|
|
expect(addSpy).toHaveBeenCalledWith('click', onClick, false)
|
|
expect(removeSpy).toHaveBeenCalledWith('click', onClick, false)
|
|
})
|
|
})
|
|
})
|