npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

get-nested-bounding-client-rect

v1.0.0

Published

Get the bounding client rect of an element relative to a root document, going through iframes

Downloads

200

Readme

get-nested-bounding-client-rect

This package provides a function that gives you a bounding DOMRect for an HTMLElement, taking into account offsets caused by any iframe(s) containing that element.

Imagine you have this in your DOM:

<div id="iframe-wrapper">
  <iframe src="http://some-video-website.example.com/videoId=1234"> </iframe>
</div>

And the page inside the iframe renders this:

<html>
  <body>
    <div id="header">...</div>
    <video src="..."></video>
  </body>
</html>

And you want to draw an overlay tooltip on top of that <video> there, when the user hovers over it.

If you call getBoundingClientRect on that <video> element, the numbers in the DOMRect returned are relative to the iframe's document, not your document (its parent). So you couldn't use them to position a tooltip in your document.

If you use the getNestedBoundingClientRect function provided by this package instead, then you'll get a DOMRect whose numbers are relative to your document.

Installation

npm install --save get-nested-bounding-client-rect

Usage

const getNestedBoundingClientRect = require("get-nested-bounding-client-rect");

// el can be any HTMLElement, within an iframe or not (or nested within multiple iframes)
const el = document
  .querySelector("iframe")
  .contentDocument.querySelector("#target");

const rect = getNestedBoundingClientRect(el);

// Resulting rect has offsets added to compensate for any iframes el is nested within
console.log(rect);
// {
//   top: 45,
//   left: 45,
//   bottom: 245,
//   right: 245,
//   width: 200,
//   height: 200,
// }

If you have an element nested within multiple iframes and you need to calculate the offset relative to one of the iframes in the root document rather than the root document itself,

  1. God help you
  2. You can pass in an iframe's window object as the second argument to getNestedBoundingClientRect.
const getNestedBoundingClientRect = require("get-nested-bounding-client-rect");

// Some iframe that you want to calculate a rect relative to
const iframe = document.querySelector("iframe");
// The window object (global) inside that iframe
const iframeWindow = iframe.contentDocument.defaultView;

// el is some deep descendant of that iframe; in this case, it's nested in another inner iframe (iframe2)
const iframe2 = iframe.contentDocument.querySelector("iframe");
const el = iframe2.contentDocument.querySelector("#target");

const rect = getNestedBoundingClientRect(el, iframeWindow);

// Resulting rect has offsets added for iframe2 but not iframe
console.log(rect);
// {
//   top: 45,
//   left: 45,
//   bottom: 245,
//   right: 245,
//   width: 200,
//   height: 200,
// }

Note that this will only work if the element you pass into getNestedBoundingClientRect is within the iframe window you pass in; otherwise, it will behave as if you didn't pass an iframe window in.

License

MIT