Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: mock brower event about issues 1327 #1328

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
"aria-query": "5.3.0",
"chalk": "^4.1.0",
"dom-accessibility-api": "^0.5.9",
"lodash": "^4.17.21",
"lz-string": "^1.5.0",
"pretty-format": "^27.0.2"
},
Expand Down
4 changes: 2 additions & 2 deletions src/__tests__/fake-timers.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ test('times out after 1000ms by default', async () => {
jest.useRealTimers()
// NOTE: this assertion ensures that the timeout runs in the declared (fake) clock
// while in real time the time was only a fraction since the real clock is only bound by the CPU.
// So 20ms is really just an approximation on how long the CPU needs to execute our code.
// So 80ms is really just an approximation on how long the CPU needs to execute our code.
// If people want to timeout in real time they should rely on their test runners.
expect(performance.now() - startReal).toBeLessThanOrEqual(20)
expect(performance.now() - startReal).toBeLessThanOrEqual(80)
})

test('recursive timers do not cause issues', async () => {
Expand Down
17 changes: 17 additions & 0 deletions src/event-map.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// eslint-disable-next-line import/no-extraneous-dependencies
import _ from 'lodash'
import {valiateByAttr} from './life-cycle'
export const eventMap = {
// Clipboard Events
copy: {
Expand Down Expand Up @@ -112,10 +115,24 @@ export const eventMap = {
dragOver: {
EventType: 'DragEvent',
defaultInit: {bubbles: true, cancelable: true, composed: true},
cond: conditionObj => {
const shouldTrueAttrArr = ['dragover']
const shouldFalseAttrArr = ['defaultprevented']
if (valiateByAttr(conditionObj, [], shouldFalseAttrArr)) {
return true
}
if (valiateByAttr(conditionObj, shouldTrueAttrArr, [])) {
return true
}
return false
},
},
dragStart: {
EventType: 'DragEvent',
defaultInit: {bubbles: true, cancelable: true, composed: true},
before: (config = {}) => {
return _.pick(config, ['dragstart', 'defaultprevented'])
},
},
drop: {
EventType: 'DragEvent',
Expand Down
33 changes: 29 additions & 4 deletions src/events.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
import {getConfig} from './config'
import {getWindowFromNode} from './helpers'
import {eventMap, eventAliasMap} from './event-map'
import {beforeFn} from './life-cycle'
const NodeEventMap = new Map()

function fireEvent(element, event) {
function fireEvent(
element,
event,
cond = () => {
return true
},
before,
) {
return getConfig().eventWrapper(() => {
if (!event) {
throw new Error(
Expand All @@ -14,7 +23,21 @@ function fireEvent(element, event) {
`Unable to fire a "${event.type}" event - please provide a DOM element.`,
)
}
return element.dispatchEvent(event)
const CloneConditionValue = NodeEventMap.get(element)
const condition = beforeFn(CloneConditionValue, event, before)
if (cond && typeof cond == 'function') {
if (cond(condition)) {
element.dispatchEvent(event)
}
}
if (event.defaultPrevented) {
condition.defaultprevented = true
}
NodeEventMap.set(element, condition)
if (event.cancelable && event.defaultPrevented) {
return false
}
return true
})
}

Expand Down Expand Up @@ -93,12 +116,14 @@ function createEvent(
}

Object.keys(eventMap).forEach(key => {
const {EventType, defaultInit} = eventMap[key]
const {EventType, defaultInit, cond, before} = eventMap[key]
const eventName = key.toLowerCase()

createEvent[key] = (node, init) =>
createEvent(eventName, node, init, {EventType, defaultInit})
fireEvent[key] = (node, init) => fireEvent(node, createEvent[key](node, init))
fireEvent[key] = (node, init) => {
return fireEvent(node, createEvent[key](node, init), cond, before)
}
})

// function written after some investigation here:
Expand Down
53 changes: 53 additions & 0 deletions src/life-cycle.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/**
* @description before->cond->dispatch
*/

export const beforeFn = (
initValue,
event,
before = config => {
return config
},
) => {
let ConditionValue = initValue
if (before && typeof before == 'function') {
ConditionValue = before(ConditionValue)
}
if (!ConditionValue) {
ConditionValue = {
[`${event.type}`]: true,
}
}
if (ConditionValue) {
ConditionValue = {
...ConditionValue,
[`${event.type}`]: true,
}
}
return ConditionValue
}

/**
* @description judge attr exist about condition
* @param {*} element
* @param {*} AttrObj
* @returns
*/
export function valiateByAttr(element, AttrTrueObj, AttrFalseObj) {
if (!element) {
return false
}
let trueFlag = true
for (const i in AttrTrueObj) {
if (element[`${AttrTrueObj[i]}`]) {
trueFlag = false
}
}
let falseFlag = true
for (const i in AttrFalseObj) {
if (element[`${AttrFalseObj[i]}`]) {
falseFlag = false
}
}
return trueFlag && falseFlag
}
Loading