-
-
Save btnwtn/083d5a27336a631cb8e9ffd10f8b3c8f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Logs all calls to preventDefault / stopPropagation in an user-friendly way | |
if ( process.env.NODE_ENV !== "production" ) { | |
(function monkeyPatchEventMethods() { | |
const logEventMethodCall = (event,methodName) => { | |
const MinimumMeaningfulSelectors = 3; // how much meaningful items we want in log message | |
const target = event.target; | |
const selector = (function computeSelector() { | |
const parentSelectors = []; | |
let node = target; | |
let minimumSelectors = 0; | |
do { | |
const meaningfulSelector = node.id ? | |
`#${node.id}` : node.classList.length > 0 ? | |
`.${Array.prototype.join.call(node.classList, '.')}` : undefined; | |
if ( meaningfulSelector ) minimumSelectors++; | |
const nodeSelector = `${node.tagName.toLowerCase()}${meaningfulSelector ? meaningfulSelector : ''}`; | |
parentSelectors.unshift(nodeSelector); | |
node = node.parentNode; | |
} while (node && node !== document && minimumSelectors < MinimumMeaningfulSelectors); | |
return parentSelectors.join(" > "); | |
})(); | |
console.debug(`${event.type}.${methodName}() on ${selector}`,event); | |
}; | |
const preventDefault = Event.prototype.preventDefault; | |
Event.prototype.preventDefault = function() { | |
logEventMethodCall(this,'preventDefault'); | |
preventDefault.call(this); | |
}; | |
const stopPropagation = Event.prototype.stopPropagation; | |
Event.prototype.stopPropagation = function() { | |
logEventMethodCall(this,'stopPropagation'); | |
stopPropagation.call(this); | |
}; | |
})(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment