make leftMark and rightMark separate model properties

the logic is much simpler if rightMark is a time not a duration
This commit is contained in:
Daniel Barlow 2024-11-27 17:47:58 +00:00
parent a1f64fed52
commit 0bc1d5e2e3
2 changed files with 31 additions and 29 deletions

View File

@ -63,11 +63,7 @@ init _ url navKey =
case Url.Parser.parse routeParser url of case Url.Parser.parse routeParser url of
Just (Timeline (Just s) (Just d)) -> (toFloat s, toFloat d) Just (Timeline (Just s) (Just d)) -> (toFloat s, toFloat d)
_ -> (10,10) _ -> (10,10)
in in (Model.empty, fetchTrack start duration)
((Model
(toCoord (Pos 0 0 Nothing))
(ZoomLevel 0) Nothing 0 0 (0,0) Loading),
(fetchTrack start duration))
-- SUBSCRIPTIONS -- SUBSCRIPTIONS
@ -116,18 +112,17 @@ dragUpdate model (newx, newy) =
let t = subtractTuple fromxy (newx, newy) let t = subtractTuple fromxy (newx, newy)
in { model | centre = translate fromcoord (pixelsToCoord model.zoom t) } in { model | centre = translate fromcoord (pixelsToCoord model.zoom t) }
Just (DragGraph (fromx,_) fromtime) -> Just (DragGraph (fromx,_) fromtime) ->
let time = secondsFromPixels model (fromx - newx)
in { model | startTime = fromtime + time }
Just (DragLeftMark (fromx,_) (fromtime, fromduration)) ->
let time = secondsFromPixels model (fromx - newx) let time = secondsFromPixels model (fromx - newx)
in { model | in { model |
markedTime = ((fromtime - time), startTime = fromtime + time
(max (fromduration + time) 0))
} }
Just (DragRightMark (fromx,_) fromduration) -> Just (DragLeftMark (fromx,_) fromtime) ->
let time = secondsFromPixels model (fromx - newx) let time = secondsFromPixels model (fromx - newx)
in { model | markedTime = (Tuple.first model.markedTime, in { model | leftMark = fromtime - time
(max (fromduration - time) 0)) } , rightMark = max (fromtime - time) model.rightMark }
Just (DragRightMark (fromx,_) fromtime) ->
let time = secondsFromPixels model (fromx - newx)
in { model | rightMark = max (fromtime - time) model.leftMark }
@ -149,13 +144,12 @@ updateModel msg model =
TimeScale factor -> TimeScale factor ->
let startTime = model.startTime + factor / 2 let startTime = model.startTime + factor / 2
duration = model.duration - factor duration = model.duration - factor
clampVisible = clamp startTime (startTime + duration)
in { model | in { model |
startTime = startTime startTime = startTime
, duration = duration , duration = duration
, markedTime = , leftMark = clampVisible model.leftMark
let (s, d) = model.markedTime , rightMark = clampVisible model.rightMark
in ( max s startTime
, (min (s + d) (startTime + duration)) - s)
} }
Loaded result -> Loaded result ->
@ -170,7 +164,8 @@ updateModel msg model =
, zoom = ZoomLevel (13 * 8) , zoom = ZoomLevel (13 * 8)
, startTime = start , startTime = start
, duration = duration , duration = duration
, markedTime = (start + 300, duration - 900) , leftMark = start
, rightMark = start + duration
} }
Err (Http.BadBody e) -> { model | track = Debug.log e (Failure "e") } Err (Http.BadBody e) -> { model | track = Debug.log e (Failure "e") }
Err e -> { model | track = Debug.log "unknown error" (Failure "e") } Err e -> { model | track = Debug.log "unknown error" (Failure "e") }
@ -346,9 +341,9 @@ handleDragMark model e =
let epos ev = Tuple.mapBoth floor floor ev.pointer.clientPos let epos ev = Tuple.mapBoth floor floor ev.pointer.clientPos
in case e.targetId of in case e.targetId of
"left-marker" -> "left-marker" ->
DragStart (DragLeftMark (epos e.pointerEvent) model.markedTime) DragStart (DragLeftMark (epos e.pointerEvent) model.leftMark)
"right-marker" -> "right-marker" ->
DragStart (DragRightMark (epos e.pointerEvent) (Tuple.second model.markedTime)) DragStart (DragRightMark (epos e.pointerEvent) model.rightMark)
_ -> Dribble "drag with unknown target" _ -> Dribble "drag with unknown target"
@ -409,13 +404,9 @@ timeAxis model points =
, strokeWidth "3" , strokeWidth "3"
] [] ] []
markStartPix = markStartPix =
case model.markedTime of floor ((model.leftMark - startTime) * portalWidth/maxX)
(s, d) ->
floor ((s - startTime) * portalWidth/maxX)
markEndPix = markEndPix =
case model.markedTime of ceiling ((model.rightMark - startTime) * portalWidth/maxX)
(s, d) ->
ceiling ((s - startTime + d) * portalWidth/maxX)
in in
svg svg
[ width portalWidth [ width portalWidth

View File

@ -3,14 +3,16 @@ module Model exposing
Model Model
, TrackState(..) , TrackState(..)
, DragState(..) , DragState(..)
, empty
) )
import TileMap exposing (ZoomLevel, Coord) import TileMap exposing (ZoomLevel(..), Coord, toCoord)
import Point exposing (Point) import Point exposing (Point)
import Pos exposing (Pos)
type DragState = type DragState =
DragMap (Int, Int) Coord DragMap (Int, Int) Coord
| DragGraph (Int, Int) Float | DragGraph (Int, Int) Float
| DragLeftMark (Int, Int) (Float, Float) | DragLeftMark (Int, Int) Float
| DragRightMark (Int, Int) Float | DragRightMark (Int, Int) Float
type TrackState = Empty | Loading | Failure String | Present (List Point) type TrackState = Empty | Loading | Failure String | Present (List Point)
@ -21,5 +23,14 @@ type alias Model =
, drag: Maybe DragState , drag: Maybe DragState
, startTime : Float , startTime : Float
, duration : Float , duration : Float
, markedTime : (Float, Float) , leftMark : Float
, rightMark : Float
, track: TrackState } , track: TrackState }
empty = Model
(toCoord (Pos 0 0 Nothing))
(ZoomLevel 0)
Nothing
0 0
0 0
Loading