mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
dd19cae2bc
* refactor(components): popper composables - Refactor popper composables * updates * updates for tooltip * Updates for popper. TODO: fix controlled tooltip animation * Fix controlled mode popper animation issue * Add new feature for customizing tooltip theme * Fix popover and popconfirm error * - Add Collection component for wrapping a collection of component - Add FocusTrap component for trap focus for popups - Add RovingFocus component for roving focus component type - Adjust dropdown component based on these newly added components - Add popper-trigger component for placing the trigger - TODO: Finish current dropdown component, and all component's tests plus documents * Refactor popper * Complete organizing popper * Almost finish dropdown * Update popper tests * update only-child test * Finish focus trap component test * Finish tooltip content test * Finish tooltip trigger tests * Finish tooltip tests * finish tests for Collection and RovingFocusGroup * Fix test cases for timeselect & select & popover * Fix popover, popconfirm, menu bug and test cases * Fix select-v2 test error caused by updating popper * Fix date-picker test issue for updating popper * fix test cases * Fix eslint * Rebase dev & fix tests * Remove unused code
56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
import { ref, nextTick } from 'vue'
|
|
import { shallowMount } from '@vue/test-utils'
|
|
import ElArrow from '../src/arrow.vue'
|
|
import { POPPER_CONTENT_INJECTION_KEY } from '../src/tokens'
|
|
|
|
const popperContentInjection = {
|
|
arrowRef: ref(null),
|
|
arrowOffset: ref(0),
|
|
}
|
|
|
|
const mountArrow = () =>
|
|
shallowMount(ElArrow, {
|
|
global: {
|
|
provide: {
|
|
[POPPER_CONTENT_INJECTION_KEY as symbol]: popperContentInjection,
|
|
},
|
|
},
|
|
})
|
|
|
|
describe('<ElPopperArrow />', () => {
|
|
let wrapper
|
|
|
|
beforeEach(() => {
|
|
wrapper = mountArrow()
|
|
return nextTick()
|
|
})
|
|
|
|
afterEach(() => {
|
|
wrapper?.unmount()
|
|
popperContentInjection.arrowRef.value = null
|
|
popperContentInjection.arrowOffset.value = 0
|
|
})
|
|
|
|
it('should set the arrowRef after mounted', async () => {
|
|
expect(popperContentInjection.arrowRef.value).toBe(wrapper.vm.arrowRef)
|
|
expect(popperContentInjection.arrowOffset.value).toBe(0)
|
|
})
|
|
|
|
it('should update the offset after props changed', async () => {
|
|
expect(popperContentInjection.arrowOffset.value).toBe(0)
|
|
|
|
await wrapper.setProps({
|
|
arrowOffset: 10,
|
|
})
|
|
|
|
expect(popperContentInjection.arrowOffset.value).toBe(10)
|
|
})
|
|
|
|
it('should unset arrowRef before unmount', async () => {
|
|
expect(popperContentInjection.arrowRef.value).toBe(wrapper.vm.arrowRef)
|
|
|
|
wrapper.unmount()
|
|
expect(popperContentInjection.arrowRef.value).toBeNull()
|
|
})
|
|
})
|