use a Maybe instead of NoTarget

This commit is contained in:
Daniel Barlow 2024-11-25 21:36:07 +00:00
parent 7dc7c6b2b0
commit dfe0a7dbd5
2 changed files with 10 additions and 7 deletions

View File

@ -145,7 +145,6 @@ handleDragFinish model target (x, y) =
(s, d) = model.markedTime
in (s, d - deltat)
}
NoTarget -> model
updateModel msg model =
@ -347,12 +346,12 @@ targetedEventDecoder =
Pointer.eventDecoder
(D.at ["target", "id"] D.string)
targetFor : String -> DragTarget
targetFor : String -> Maybe DragTarget
targetFor s =
case s of
"left-marker" -> StartMark
"right-marker" -> EndMark
_ -> NoTarget
"left-marker" -> Just StartMark
"right-marker" -> Just EndMark
_ -> Nothing
onDownWithTarget tag =
let
@ -439,7 +438,11 @@ timeAxis model points =
svg
[ width portalWidth
, 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) ++
" " ++ (String.fromInt (graphHeight + 10)))
]

View File

@ -8,7 +8,7 @@ module Model exposing
import TileMap exposing (ZoomLevel, Coord)
import Point exposing (Point)
type DragTarget = Map | Graph | StartMark | EndMark | NoTarget
type DragTarget = Map | Graph | StartMark | EndMark
type Drag
= None