Files
@ b355f8089950
Branch filter:
Location: light9/light9/web/timeline.coffee
b355f8089950
8.1 KiB
text/coffeescript
move row & note elements to coffee
Ignore-this: fa6a3b252138df332e1eb166353509ff
Ignore-this: fa6a3b252138df332e1eb166353509ff
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | log = console.log
Polymer
is: 'light9-timeline-editor'
behaviors: [ Polymer.IronResizableBehavior ]
properties:
viewState: { type: Object }
debug: {type: String}
graph: {type: Object, notify: true}
width: ko.observable(1)
listeners:
'iron-resize': '_onIronResize'
_onIronResize: ->
@width(@offsetWidth)
attached: ->
@dia = @$.dia
@viewState =
zoomSpec:
duration: ko.observable(190)
t1: ko.observable(102)
t2: ko.observable(161)
cursor:
t: ko.observable(105)
ko.computed =>
@debug = ko.toJSON(@viewState)
ko.computed =>
@fullZoomX = d3.scaleLinear().domain([0, @viewState.zoomSpec.duration()]).range([0, @width()])
@zoomInX = d3.scaleLinear().domain([@viewState.zoomSpec.t1(), @viewState.zoomSpec.t2()]).range([0, @width()])
@dia.setTimeAxis(@width(), @$.zoomed.$.audio.offsetTop, @zoomInX)
@$.adjusters.updateAllCoords()
animCursor = () =>
@viewState.cursor.t = 130 + 20 * Math.sin(Date.now() / 2000)
@$.dia.setCursor(@$.audio.offsetTop, @$.audio.offsetHeight,
@$.zoomed.$.time.offsetTop,
@$.zoomed.$.time.offsetHeight,
@fullZoomX, @zoomInX, @viewState.cursor)
#@viewState.zoomSpec.t1(80 + 10 * Math.sin(Date.now() / 3000))
setInterval(animCursor, 50)
@adjs = @makeZoomAdjs().concat(@persistDemo())
persistDemo: ->
ctx = @graph.Uri('http://example.com/')
adjs = []
for n in [0..7]
subj = @graph.Uri(':demoResource'+n)
adjs.push(new AdjustableFloatObject({
graph: @graph
subj: subj
pred: @graph.Uri(':startTime')
ctx: ctx
getTargetTransform: (value) => $V([@zoomInX(value), 300])
getValueForPos: (pos) => @zoomInX.invert(pos.e(1))
getSuggestedTargetOffset: () => $V([-30, 80])
}))
adjs.push(new AdjustableFloatObject({
graph: @graph
subj: subj
pred: @graph.Uri(':endTime')
ctx: ctx
getTargetTransform: (value) => $V([@zoomInX(value), 300])
getValueForPos: (pos) => @zoomInX.invert(pos.e(1))
getSuggestedTargetOffset: () => $V([30, 100])
}))
return adjs
makeZoomAdjs: ->
yMid = @$.audio.offsetTop + @$.audio.offsetHeight / 2
dur = @viewState.zoomSpec.duration
valForPos = (pos) =>
x = pos.e(1)
t = @fullZoomX.invert(x)
left = new AdjustableFloatObservable({
observable: @viewState.zoomSpec.t1,
getTarget: () =>
$V([@fullZoomX(@viewState.zoomSpec.t1()), yMid])
getSuggestedTargetOffset: () => $V([-50, 0])
getValueForPos: valForPos
})
right = new AdjustableFloatObservable({
observable: @viewState.zoomSpec.t2,
getTarget: () =>
$V([@fullZoomX(@viewState.zoomSpec.t2()), yMid])
getSuggestedTargetOffset: () => $V([50, 0])
getValueForPos: valForPos
})
panObs = ko.pureComputed({
read: () =>
(@viewState.zoomSpec.t1() + @viewState.zoomSpec.t2()) / 2
write: (value) =>
zs = @viewState.zoomSpec
span = zs.t2() - zs.t1()
zs.t1(value - span / 2)
zs.t2(value + span / 2)
})
pan = new AdjustableFloatObservable({
observable: panObs
emptyBox: true
# fullzoom is not right- the sides shouldn't be able to go
# offscreen
getTarget: () => $V([@fullZoomX(panObs()), yMid])
getSuggestedTargetOffset: () => $V([0, 0])
getValueForPos: valForPos
})
return [left, right, pan]
Polymer
is: "light9-timeline-time-axis",
# for now since it's just one line calling dia,
# light9-timeline-editor does our drawing work.
Polymer
is: 'light9-timeline-graph-row'
behaviors: [ Polymer.IronResizableBehavior ]
properties: {}
window.xserial = 0
Polymer
is: 'light9-timeline-note'
behaviors: [ Polymer.IronResizableBehavior ]
listeners: 'iron-resize': '_onIronResize'
properties: {}
_onIronResize: ->
setNote 'myuri', 60 + 150 * window.xserial++, 180, @offsetTop, @offsetTop + @offsetHeight
Polymer
is: "light9-timeline-adjusters"
properties:
adjs: { type: Array },
dia: { type: Object }
updateAllCoords: ->
for elem in @querySelectorAll('light9-timeline-adjuster')
elem.updateDisplay()
_adjusterSerial = 0
Polymer
is: 'light9-timeline-adjuster'
properties:
adj:
type: Object
notify: true
observer: 'onAdj'
target:
type: Object
notify: true
displayValue:
type: String
centerStyle:
type: Object
spanClass:
type: String
value: ''
onAdj: (adj) ->
@adj.subscribe(@updateDisplay.bind(this))
updateDisplay: () ->
@spanClass = if @adj.config.emptyBox then 'empty' else ''
@displayValue = @adj.getDisplayValue()
center = @adj.getCenter()
@centerStyle = {x: center.e(1), y: center.e(2)}
@dia?.setAdjusterConnector(@myId, @adj.getCenter(),
@adj.getTarget())
attached: ->
@myId = 'adjuster-' + _adjusterSerial
_adjusterSerial += 1
drag = d3.drag()
sel = d3.select(@$.label)
sel.call(drag)
drag.subject((d) -> {x: @offsetLeft, y: @offsetTop})
drag.container(@offsetParent)
drag.on('start', () => @adj?.startDrag())
drag.on 'drag', () =>
@adj?.continueDrag($V([d3.event.x, d3.event.y]))
drag.on('end', () => @adj?.endDrag())
svgPathFromPoints = (pts) ->
out = ''
pts.forEach (p) ->
p = p.elements if p.elements # for vec2
if out.length == 0
out = 'M '
else
out += 'L '
out += '' + p[0] + ',' + p[1] + ' '
return
out
Polymer
is: 'light9-timeline-diagram-layer'
properties: {}
ready: ->
@elemById = {}
window.setNote = @setNote.bind(this)
window.setMouse = @setMouse.bind(this)
setTimeAxis: (width, yTop, scale) ->
pxPerTick = 50
axis = d3.axisTop(scale).ticks(width / pxPerTick)
d3.select(@$.timeAxis).attr('transform', 'translate(0,'+yTop+')').call(axis)
setMouse: (pos) ->
elem = @getOrCreateElem('mouse-x', 'mouse', 'path', {style: "fill:none;stroke:#333;stroke-width:0.5;"})
elem.setAttribute('d', svgPathFromPoints([[-999, pos.e(2)], [999, pos.e(2)]]))
elem = @getOrCreateElem('mouse-y', 'mouse', 'path', {style: "fill:none;stroke:#333;stroke-width:0.5;"})
elem.setAttribute('d', svgPathFromPoints([[pos.e(1), -999], [pos.e(1), 999]]))
getOrCreateElem: (uri, groupId, tag, attrs) ->
elem = @elemById[uri]
if !elem
elem = @elemById[uri] = document.createElementNS("http://www.w3.org/2000/svg", tag)
@$[groupId].appendChild(elem)
elem.setAttribute('id', uri)
for k,v of attrs
elem.setAttribute(k, v)
return elem
setNote: (uri, x1, x2, y1, y2) ->
elem = @getOrCreateElem(uri, 'notes', 'path', {style:"fill:#53774b; stroke:#000000; stroke-width:1.5;"})
d = svgPathFromPoints([
[x1, y2]
[x1 * .75 + x2 * .25, y1]
[x1 * .25 + x2 * .75, y1]
[x2, y2]
])
elem.setAttribute('d', d)
setCursor: (y1, h1, y2, h2, fullZoomX, zoomInX, cursor) ->
@cursorPath =
top: @querySelector('#cursor1')
mid: @querySelector('#cursor2')
bot: @querySelector('#cursor3')
return if !@cursorPath.top
xZoomedOut = fullZoomX(cursor.t)
xZoomedIn = zoomInX(cursor.t)
@cursorPath.top.setAttribute 'd', svgPathFromPoints([
[xZoomedOut, y1]
[xZoomedOut, y1 + h1]
])
@cursorPath.mid.setAttribute 'd', svgPathFromPoints([
[xZoomedIn + 2, y2 + h2]
[xZoomedIn - 2, y2 + h2]
[xZoomedOut - 1, y1 + h1]
[xZoomedOut + 1, y1 + h1]
]) + ' Z'
@cursorPath.bot.setAttribute 'd', svgPathFromPoints([
[xZoomedIn, y2 + h2]
[xZoomedIn, @offsetParent.offsetHeight]
])
setAdjusterConnector: (uri, center, target) ->
elem = @getOrCreateElem(uri, 'connectors', 'path', {style: "fill:none;stroke:#d4d4d4;stroke-width:0.9282527;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.78475821, 2.78475821;stroke-dashoffset:0;"})
elem.setAttribute('d', svgPathFromPoints([center, target]))
|