Skip to content

Port getBoundingClientRect from web-html #53

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

Merged
merged 2 commits into from
Mar 25, 2022
Merged
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Notable changes to this project are documented in this file. The format is based
Breaking changes:
- Migrate FFI to ES modules (#51 by @JordanMartinez)
- Unwrap returned `Effect` for `doctype` (#52 by @JordanMartinez)
- Port `getBoundingClientRect` from `web-html`; set arg to `Element` (#53 by @JordanMartinez)

New features:

Expand Down
16 changes: 16 additions & 0 deletions src/Web/DOM/Element.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,22 @@ export function clientHeight(el) {
};
}

export function getBoundingClientRect(el) {
return function () {
var rect = el.getBoundingClientRect();
return {
top: rect.top,
right: rect.right,
bottom: rect.bottom,
left: rect.left,
width: rect.width,
height: rect.height,
x: rect.x,
y: rect.y
};
};
}

export function _attachShadow(props) {
return function (el) {
return function() {
Expand Down
15 changes: 15 additions & 0 deletions src/Web/DOM/Element.purs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ module Web.DOM.Element
, clientLeft
, clientWidth
, clientHeight
, getBoundingClientRect
, DOMRect
, ShadowRootInit
, attachShadow
) where
Expand Down Expand Up @@ -144,6 +146,19 @@ foreign import clientLeft :: Element -> Effect Number
foreign import clientWidth :: Element -> Effect Number
foreign import clientHeight :: Element -> Effect Number

type DOMRect =
{ top :: Number
, right :: Number
, bottom :: Number
, left :: Number
, width :: Number
, height :: Number
, x :: Number
, y :: Number
}

foreign import getBoundingClientRect :: Element -> Effect DOMRect

type ShadowRootInit = {
mode :: ShadowRootMode,
delegatesFocus :: Boolean
Expand Down