use a Maybe instead of NoTarget
This commit is contained in:
parent
7dc7c6b2b0
commit
dfe0a7dbd5
@ -145,7 +145,6 @@ handleDragFinish model target (x, y) =
|
|||||||
(s, d) = model.markedTime
|
(s, d) = model.markedTime
|
||||||
in (s, d - deltat)
|
in (s, d - deltat)
|
||||||
}
|
}
|
||||||
NoTarget -> model
|
|
||||||
|
|
||||||
|
|
||||||
updateModel msg model =
|
updateModel msg model =
|
||||||
@ -347,12 +346,12 @@ targetedEventDecoder =
|
|||||||
Pointer.eventDecoder
|
Pointer.eventDecoder
|
||||||
(D.at ["target", "id"] D.string)
|
(D.at ["target", "id"] D.string)
|
||||||
|
|
||||||
targetFor : String -> DragTarget
|
targetFor : String -> Maybe DragTarget
|
||||||
targetFor s =
|
targetFor s =
|
||||||
case s of
|
case s of
|
||||||
"left-marker" -> StartMark
|
"left-marker" -> Just StartMark
|
||||||
"right-marker" -> EndMark
|
"right-marker" -> Just EndMark
|
||||||
_ -> NoTarget
|
_ -> Nothing
|
||||||
|
|
||||||
onDownWithTarget tag =
|
onDownWithTarget tag =
|
||||||
let
|
let
|
||||||
@ -439,7 +438,11 @@ timeAxis model points =
|
|||||||
svg
|
svg
|
||||||
[ width portalWidth
|
[ width portalWidth
|
||||||
, height (graphHeight + 20)
|
, height (graphHeight + 20)
|
||||||
, onDownWithTarget (\e -> DragStart (targetFor e.targetId) (epos e.pointerEvent))
|
, onDownWithTarget (\e ->
|
||||||
|
case targetFor e.targetId of
|
||||||
|
Just tgt -> DragStart tgt (epos e.pointerEvent)
|
||||||
|
Nothing -> Dribble "drag with unknown target"
|
||||||
|
)
|
||||||
, viewBox ("0 -10 " ++ (String.fromInt portalWidth) ++
|
, viewBox ("0 -10 " ++ (String.fromInt portalWidth) ++
|
||||||
" " ++ (String.fromInt (graphHeight + 10)))
|
" " ++ (String.fromInt (graphHeight + 10)))
|
||||||
]
|
]
|
||||||
|
@ -8,7 +8,7 @@ module Model exposing
|
|||||||
import TileMap exposing (ZoomLevel, Coord)
|
import TileMap exposing (ZoomLevel, Coord)
|
||||||
import Point exposing (Point)
|
import Point exposing (Point)
|
||||||
|
|
||||||
type DragTarget = Map | Graph | StartMark | EndMark | NoTarget
|
type DragTarget = Map | Graph | StartMark | EndMark
|
||||||
|
|
||||||
type Drag
|
type Drag
|
||||||
= None
|
= None
|
||||||
|
Loading…
Reference in New Issue
Block a user