emoji-picker-element/src/picker/utils/calculateTextWidth.js

12 lines
369 B
JavaScript

// get the width of the text inside of a DOM node, via https://stackoverflow.com/a/59525891/680742
export function calculateTextWidth (node) {
/* istanbul ignore else */
if (process.env.NODE_ENV === 'test') {
return 1
} else {
const range = document.createRange()
range.selectNode(node.firstChild)
return range.getBoundingClientRect().width
}
}