Skip to content
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

Add getBbox function #117

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
26 changes: 26 additions & 0 deletions src/Browser/Dom.elm
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ module Browser.Dom exposing
, getViewport, Viewport, getViewportOf
, setViewport, setViewportOf
, getElement, Element
, getBbox, Bbox
)

{-| This module allows you to manipulate the DOM in various ways. It covers:
Expand Down Expand Up @@ -382,3 +383,28 @@ type alias Element =
, height : Float
}
}

{-
The SVGGraphicsElement.getBBox() allows us to determine the coordinates of the smallest rectangle
in which the object fits. The coordinates returned are with respect to the current svg space,
i.e. after the application of all geometry attributes on all the elements contained in the target element.

Note: getBBox must return the actual bounding box at the time the method was called,
even in case the element has not yet been rendered.
It also neglects any transformation applied on the element or its parents.
-}

getBbox : String -> Task Error Bbox
getBbox =
Elm.Kernel.Browser.getBbox

{-
getBBox returns different values than getBoundingClientRect(),
as the latter returns value relative to the viewport
-}
type alias Bbox =
{ x : Float
, y : Float
, width : Float
, height : Float
}
20 changes: 20 additions & 0 deletions src/Elm/Kernel/Browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,26 @@ function _Browser_getElement(id)



// BBOX



function _Browser_getBbox(id)
{
return _Browser_withNode(id, function(node)
{
var bbox = node.getBBox();
return {
__$x: bbox.x,
__$y: bbox.y,
__$width: bbox.width,
__$height: bbox.height
};
});
}



// LOAD and RELOAD


Expand Down