我一直在尝试向Elm中的SVG元素添加on "click"
事件,以确定鼠标在该元素中的相对位置。
下面给出了一个代码示例,您可以尝试在http://elm-lang.org/try运行,以显示HTML元素上的点击事件如何按预期工作,但不能用于SVG元素。
在示例中,使用Html.on "click"
而不是Html.onClick
来允许从事件中解码位置数据,如this discussion中所述。
在阅读文档和源代码之后,我希望当on "click"
事件添加到SVG元素时,它的工作方式与将事件添加到HTML元素的方式相同。但是,完成此操作后,单击SVG元素不会触发事件,也不会向更新功能发送任何消息。
在此示例中,单击黑色SVG rect
应触发更新功能并更改白色rect
的位置,但忽略点击次数。这可以通过打开控制台并注意到未调用Debug.log
来确认。下面放置了一个HTML div
,其中包含相同的点击事件,当在div
内注册点击时,白色rect
会更改位置。
这是Elm中的预期行为,是否有任何变通方法?
在stackoverflow here上也提出了类似的问题,但这是指画布形状,据我所知,这是一个完全独立的问题(虽然我可能错了)。
import Html exposing (Html, div)
import Html.App as App
import Html.Attributes
import Html.Events exposing (on)
import Json.Decode as Json exposing (object2, int, at)
import Mouse exposing (Position)
import Svg exposing (svg, rect)
import Svg.Attributes exposing (..)
main =
App.beginnerProgram
{ model = model
, view = view
, update = update
}
type alias Model =
Position
type Msg
= ChangePosition Position
model : Model
model =
Position 0 0
update : Msg -> Model -> Model
update msg _ =
case Debug.log "msg" msg of
ChangePosition position ->
position
view : Model -> Html Msg
view model =
div []
[ svg
[ width "400"
, height "100"
, viewBox "0 0 400 100"
]
[ rect
[ onClickLocation -- this should work but does nothing
, width "400"
, height "100"
, x "0"
, y "0"
, fill "#000"
, cursor "pointer"
]
[]
, rect
[ width "50"
, height "50"
, x (toString model.x)
, y "20"
, fill "#fff"
]
[]
]
, div
[ onClickLocation -- this works
, Html.Attributes.style
[ ( "background-color", "white" )
, ( "border", "2px solid black" )
, ( "width", "400px" )
, ( "height", "100px" )
, ( "position", "absolute" )
, ( "left", "0px" )
, ( "top", "150px" )
, ( "color", "black" )
, ( "cursor", "pointer" )
]
]
[ div [] [ Html.text "Click in here to move x position of white svg square. Relative click coordinates shown below (y coordinate ignored)." ]
, div [] [ Html.text (toString model) ]
]
]
onClickLocation : Html.Attribute Msg
onClickLocation =
on "click"
(Json.map
ChangePosition
(object2
Position
(object2 (-)
(at [ "pageX" ] int)
(at [ "target", "offsetLeft" ] int)
)
(object2 (-)
(at [ "pageY" ] int)
(at [ "target", "offsetTop" ] int)
)
)
)
答案 0 :(得分:6)
Json解码器不起作用的原因很明显是因为
没有offsetLeft
和offsetTop
存在于
事件对象。
因为这些属性可用,所以有点令人困惑 用于Html DOM的单击事件,但不适用于SVG DOM。 (我的建议 在Elm中实现事件解码器是临时附加的 浏览器调试器控制台中的事件处理程序并研究实际的事件对象。榆树的解码器默默地失败,很难知道为什么解码器 不工作。 )
在这里,我实现了另一种使用port
获取方式的方法
使用javascript的父位置(不使用任何
社区图书馆)。
port module Main exposing (main)
import Html exposing (Html, div)
import Html.App as App
import Html.Attributes
import Html.Events exposing (on)
import Json.Decode as Json exposing (object2, object1, int, at)
import Mouse exposing (Position)
import Svg exposing (svg, rect)
import Svg.Attributes exposing (..)
main : Program Never
main =
App.program
{ init = (initmodel, getParentPos ())
, view = view
, update = update
, subscriptions = subscriptions
}
type alias Model =
{ position : Position
, parentPosition : Position
}
type Msg
= ChangePosition Position
| UpdateParentPosition { top : Int, left : Int }
initmodel : Model
initmodel =
{ position = Position 0 0
, parentPosition = Position 0 0
}
update : Msg -> Model -> (Model, Cmd Msg)
update msg model =
case Debug.log "msg" msg of
ChangePosition position ->
let
relativepos = Position
( position.x - model.parentPosition.x )
( position.y - model.parentPosition.y )
in ({ model | position = relativepos } , Cmd.none)
UpdateParentPosition {top, left} ->
({ model | parentPosition = Position top left }, Cmd.none)
port getParentPos : () -> Cmd msg
subscriptions : Model -> Sub Msg
subscriptions model =
parentPos UpdateParentPosition
port parentPos : ({ top : Int, left : Int } -> msg) -> Sub msg
view : Model -> Html Msg
view model =
div []
[ svg
[ width "400"
, height "100"
, viewBox "0 0 400 100"
, id "parent"
]
[ rect
[ onClickLocation -- this should work but does nothing
, width "400"
, height "100"
, x "0"
, y "0"
, fill "#000"
, cursor "pointer"
]
[]
, rect
[ width "50"
, height "50"
, x (toString model.position.x)
, y (toString model.position.y)
, fill "#fff"
]
[]
]
, div
[ onClickLocation -- this works
, Html.Attributes.style
[ ( "background-color", "white" )
, ( "border", "2px solid black" )
, ( "width", "400px" )
, ( "height", "100px" )
, ( "position", "absolute" )
, ( "left", "0px" )
, ( "top", "150px" )
, ( "color", "black" )
, ( "cursor", "pointer" )
]
]
[ div [] [ Html.text "Click in here to move x position of white svg square. Relative click coordinates shown below (y coordinate ignored)." ]
, div [] [ Html.text (toString model) ]
]
]
onClickLocation : Html.Attribute Msg
onClickLocation =
on "click"
(Json.map
ChangePosition
(object2
Position
(at [ "pageX" ] int)
(at [ "pageY" ] int)
)
)
的javascript:
const app = Elm.Main.fullscreen();
app.ports.getParentPos.subscribe(() => {
const e = document.querySelector('#parent');
const rect = e.getBoundingClientRect();
app.ports.parentPos.send({
top: Math.round(rect.top),
left: Math.round(rect.left)
});
});
答案 1 :(得分:0)
这是使用VirtualDom的示例的固定版本。我也将它升级到elm v0.18。 请注意,就像接受的答案一样,这只是获取pageX / pageY位置,而不是相对位置。我没有扩展它。
相关更改从onClickLocation
import Html exposing (Html, div)
import Html.Attributes
import Html.Events exposing (on)
import Json.Decode as Json exposing (..)
import Svg exposing (svg, rect)
import Svg.Attributes exposing (..)
import VirtualDom
main =
Html.beginnerProgram
{ model = model
, view = view
, update = update
}
type alias Position =
{ x : Int
, y : Int
}
type alias Model =
Position
type Msg
= ChangePosition Position
model : Model
model =
Position 0 0
update : Msg -> Model -> Model
update msg _ =
case Debug.log "msg" msg of
ChangePosition position ->
position
view : Model -> Html Msg
view model =
div []
[ svg
[ width "400"
, height "100"
, viewBox "0 0 400 100"
]
[ rect
[ onClickLocation -- this should work but does nothing
, width "400"
, height "100"
, x "0"
, y "0"
, fill "#000"
, cursor "pointer"
]
[]
, rect
[ width "50"
, height "50"
, x (toString model.x)
, y "20"
, fill "#fff"
]
[]
]
, div
[ onClickLocation -- this works
, Html.Attributes.style
[ ( "background-color", "white" )
, ( "border", "2px solid black" )
, ( "width", "400px" )
, ( "height", "100px" )
, ( "position", "absolute" )
, ( "left", "0px" )
, ( "top", "150px" )
, ( "color", "black" )
, ( "cursor", "pointer" )
]
]
[ div [] [ Html.text "Click in here to move x position of white svg square. Relative click coordinates shown below (y coordinate ignored)." ]
, div [] [ Html.text (toString model) ]
]
]
onClickLocation : Html.Attribute Msg
onClickLocation =
mouseClick ChangePosition
offsetPosition : Json.Decoder Position
offsetPosition =
Json.map2 Position (field "pageX" Json.int) (field "pageY" Json.int)
mouseEvent : String -> (Position -> msg) -> VirtualDom.Property msg
mouseEvent event messager =
let
options =
{ preventDefault = True, stopPropagation = True }
in
VirtualDom.onWithOptions event options (Json.map messager offsetPosition)
mouseClick : (Position -> msg) -> VirtualDom.Property msg
mouseClick =
mouseEvent "click"