-
Notifications
You must be signed in to change notification settings - Fork 140
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
Element highlighter #1025
Element highlighter #1025
Changes from all commits
f02afe2
db12ed2
be7d099
ad22e56
95c8b15
ae62420
464b4e4
283c200
eb8d3c2
eecf064
b74e1ae
1461eb4
f1ba3b6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
import throttle from 'lodash-es/throttle'; | ||
|
||
import channel from './channel'; | ||
|
||
const RESIZE_THROTTLE = 250; | ||
let highlightSelector = null; | ||
|
||
const handleWindowResize = throttle(() => { | ||
updateCovers(highlightSelector); | ||
}, RESIZE_THROTTLE); | ||
|
||
window.addEventListener('resize', handleWindowResize); | ||
|
||
function getOffsetFromBody(element) { | ||
if (element === document.body) { | ||
return {top: 0, left: 0}; | ||
} | ||
const {top, left} = getOffsetFromBody(element.offsetParent); | ||
return {top: top + element.offsetTop, left: left + element.offsetLeft}; | ||
} | ||
|
||
function removeCovers() { | ||
const highlighterElements = | ||
document.querySelectorAll('.__popcode-highlighter'); | ||
for (const highlighterElement of highlighterElements) { | ||
highlighterElement.remove(); | ||
} | ||
} | ||
|
||
function addCovers(selector) { | ||
const elements = document.querySelectorAll(selector); | ||
for (const element of elements) { | ||
const cover = document.createElement('div'); | ||
const rect = element.getBoundingClientRect(); | ||
let offset = {top: rect.top, left: rect.left}; | ||
if (element.offsetParent === null) { | ||
cover.style.position = 'fixed'; | ||
} else if (element !== document.body || | ||
element !== document.documentElement) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The body seems to have an additional 8px of padding. So the box is off by a bit using getOffsetFromBody There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually looking again I think this condition will always evaluate to true, since it’s saying “if the element isn’t the body OR it isn’t the document root”? So maybe no need for the condition at all if it behaves correctly as written? |
||
offset = getOffsetFromBody(element); | ||
} | ||
document.body.appendChild(cover); | ||
cover.classList = '__popcode-highlighter'; | ||
cover.style.left = `${offset.left}px`; | ||
cover.style.top = `${offset.top}px`; | ||
cover.style.width = `${element.offsetWidth}px`; | ||
cover.style.height = `${element.offsetHeight}px`; | ||
cover.classList.add('fade'); | ||
} | ||
} | ||
|
||
function updateCovers(selector) { | ||
removeCovers(); | ||
if (selector !== null) { | ||
highlightSelector = selector; | ||
addCovers(selector); | ||
} | ||
} | ||
|
||
export default function handleElementHighlights() { | ||
channel.bind( | ||
'highlightElement', | ||
(_trans, selector) => updateCovers(selector), | ||
); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this fired when the editor is focused/unfocused as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is fired only when the editor is focused I believe