mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +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
185 lines
5.4 KiB
TypeScript
185 lines
5.4 KiB
TypeScript
import { ref, nextTick, inject, defineComponent } from 'vue'
|
|
import { mount } from '@vue/test-utils'
|
|
import { composeRefs } from '@element-plus/utils/dom'
|
|
import { EVENT_CODE } from '@element-plus/utils/aria'
|
|
import {
|
|
ROVING_FOCUS_COLLECTION_INJECTION_KEY,
|
|
ROVING_FOCUS_ITEM_COLLECTION_INJECTION_KEY,
|
|
} from '../src/roving-focus-group'
|
|
import {
|
|
ROVING_FOCUS_GROUP_INJECTION_KEY,
|
|
ROVING_FOCUS_GROUP_ITEM_INJECTION_KEY,
|
|
} from '../src/tokens'
|
|
import ElRovingFocusItem from '../src/roving-focus-item.vue'
|
|
const AXIOM = 'rem is the best girl'
|
|
const focusItemKls = 'item-kls'
|
|
|
|
let counter = 0
|
|
const FocusItem = defineComponent({
|
|
setup() {
|
|
const { rovingFocusGroupItemRef, ...itemInjection } = inject(
|
|
ROVING_FOCUS_GROUP_ITEM_INJECTION_KEY,
|
|
undefined
|
|
)
|
|
const collectionItemInjection = inject(
|
|
ROVING_FOCUS_ITEM_COLLECTION_INJECTION_KEY,
|
|
undefined
|
|
)!
|
|
const itemRef = composeRefs(
|
|
rovingFocusGroupItemRef,
|
|
collectionItemInjection.collectionItemRef
|
|
)
|
|
return {
|
|
itemRef,
|
|
...itemInjection,
|
|
id: ++counter,
|
|
}
|
|
},
|
|
template: `<div
|
|
:ref="itemRef"
|
|
:tabindex="tabIndex"
|
|
class="${focusItemKls}"
|
|
@keydown="handleKeydown"
|
|
@focus="handleFocus"
|
|
@mousedown="handleMousedown"
|
|
>
|
|
${AXIOM} {{ id }}
|
|
</div>`,
|
|
})
|
|
|
|
describe('<ElRovingFocusItem />', () => {
|
|
const currentTabbedId = ref('test_id')
|
|
const loop = ref(false)
|
|
const onItemFocus = jest.fn()
|
|
const onItemShiftTab = jest.fn()
|
|
const itemMap = new Map()
|
|
const getItems = () => [...itemMap.values()]
|
|
const defaultProvides = {
|
|
[ROVING_FOCUS_GROUP_INJECTION_KEY as symbol]: {
|
|
currentTabbedId,
|
|
loop,
|
|
onItemFocus,
|
|
onItemShiftTab,
|
|
},
|
|
[ROVING_FOCUS_COLLECTION_INJECTION_KEY as symbol]: {
|
|
getItems,
|
|
itemMap,
|
|
},
|
|
}
|
|
const createComponent = (props = {}) =>
|
|
mount(
|
|
{
|
|
template: `<div>
|
|
<el-roving-focus-item v-bind="$attrs">
|
|
<focus-item />
|
|
</el-roving-focus-item>
|
|
<el-roving-focus-item v-bind="$attrs">
|
|
<focus-item />
|
|
</el-roving-focus-item>
|
|
<el-roving-focus-item v-bind="$attrs">
|
|
<focus-item />
|
|
</el-roving-focus-item>
|
|
</div>`,
|
|
components: {
|
|
ElRovingFocusItem,
|
|
FocusItem,
|
|
},
|
|
},
|
|
{
|
|
props,
|
|
global: {
|
|
provide: defaultProvides,
|
|
},
|
|
attachTo: document.body,
|
|
}
|
|
)
|
|
let wrapper: ReturnType<typeof createComponent>
|
|
const findItems = () => wrapper.findAllComponents(ElRovingFocusItem)
|
|
const findDOMItems = () => wrapper.findAll(`.${focusItemKls}`)
|
|
beforeEach(async () => {
|
|
wrapper = createComponent()
|
|
await nextTick()
|
|
})
|
|
afterEach(() => {
|
|
;[onItemFocus, onItemShiftTab].forEach((f) => f.mockClear())
|
|
wrapper.unmount()
|
|
})
|
|
|
|
describe('rendering test', () => {
|
|
it('should be able to render content', () => {
|
|
expect(wrapper.html()).toContain(AXIOM)
|
|
expect(findItems()).toHaveLength(3)
|
|
})
|
|
})
|
|
|
|
describe('roving focus', () => {
|
|
it('should be able to handle mousedown event', async () => {
|
|
const DOMItems = findDOMItems()
|
|
const items = findItems()
|
|
const firstDOMItem = DOMItems.at(0)
|
|
|
|
await firstDOMItem.trigger('mousedown')
|
|
await nextTick()
|
|
|
|
const firstItem = items.at(0)
|
|
expect(firstItem.emitted()).toHaveProperty('mousedown')
|
|
await wrapper.setProps({
|
|
focusable: false,
|
|
})
|
|
await firstDOMItem.trigger('mousedown')
|
|
// when the item is not focusable, the focus event should be prevented by default
|
|
const emittedEvents = firstItem.emitted().mousedown
|
|
expect(emittedEvents.at(0)[0].defaultPrevented).toBe(false)
|
|
expect(emittedEvents.at(1)[0].defaultPrevented).toBe(true)
|
|
})
|
|
|
|
it('should be able to handle focus event', async () => {
|
|
expect(onItemFocus).not.toHaveBeenCalled()
|
|
const DOMItems = findDOMItems()
|
|
const firstDOMItem = DOMItems.at(0)
|
|
await firstDOMItem.trigger('focus')
|
|
expect(onItemFocus).toHaveBeenCalled()
|
|
expect(findItems().at(0).emitted()).toHaveProperty('focus')
|
|
})
|
|
|
|
it('should be able to handle keyboard navigation', async () => {
|
|
const DOMItems = findDOMItems()
|
|
const items = findItems()
|
|
const firstDOMItem = DOMItems.at(0)
|
|
expect(onItemShiftTab).not.toHaveBeenCalled()
|
|
await firstDOMItem.trigger('keydown.shift', {
|
|
key: EVENT_CODE.tab,
|
|
})
|
|
expect(items.at(0).emitted()).toHaveProperty('keydown')
|
|
expect(onItemShiftTab).toHaveBeenCalled()
|
|
// navigating clockwise
|
|
expect(document.activeElement).toBe(document.body)
|
|
await DOMItems.at(1).trigger('keydown', {
|
|
key: EVENT_CODE.down,
|
|
})
|
|
await nextTick()
|
|
expect(document.activeElement).toStrictEqual(DOMItems.at(2).element)
|
|
|
|
// navigate anticlockwise
|
|
await DOMItems.at(1).trigger('keydown', {
|
|
key: EVENT_CODE.up,
|
|
})
|
|
await nextTick()
|
|
expect(document.activeElement).toStrictEqual(DOMItems.at(0).element)
|
|
|
|
// should be able to focus on the last element when press End
|
|
await DOMItems.at(0).trigger('keydown', {
|
|
key: EVENT_CODE.end,
|
|
})
|
|
await nextTick()
|
|
expect(document.activeElement).toStrictEqual(DOMItems.at(2).element)
|
|
|
|
await DOMItems.at(0).trigger('keydown', {
|
|
key: EVENT_CODE.home,
|
|
})
|
|
await nextTick()
|
|
expect(document.activeElement).toStrictEqual(DOMItems.at(0).element)
|
|
})
|
|
})
|
|
})
|