You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/app/assets/javascripts/player/views/renderers/base.js.coffee

86 lines
2.0 KiB
CoffeeScript

class AsciiIo.Renderer.Base extends Backbone.View
events:
'click': 'onClick'
initialize: (options) ->
@cols = options.cols
@lines = options.lines
@showCursor true
@startCursorBlink()
@clearState()
requestAnimationFrame @render
clearState: ->
@state =
changes: {}
cursorX: undefined
cursorY: undefined
dirty: false
onClick: ->
@trigger('terminal-click')
push: (state) ->
_(@state.changes).extend state.changes
@state.cursorX = state.cursorX
@state.cursorY = state.cursorY
@state.dirty = true
render: =>
requestAnimationFrame @render
if @state.dirty
for n, fragments of @state.changes
c = if parseInt(n) is @state.cursorY then @state.cursorX else undefined
@renderLine n, fragments || [], c
@clearState()
renderLine: (n, data, cursorX) ->
throw '#renderLine not implemented'
afterInsertedToDom: ->
sample = $('<span class="font-sample"><span class="line"><span>M</span></span></span>')
@$el.parent().append(sample)
@cellWidth = sample.width()
span = sample.find('span span')
@cellHeight = span.height() + span.css('padding-top') + span.css('padding-bottom')
sample.remove()
@fixTerminalElementSize()
@fixPlayerContainerSize()
renderSnapshot: (text) ->
i = 0
for line in text.split("\n")
fragments = [[line, AsciiIo.Brush.normal()]]
@renderLine i, fragments, undefined
i++
fixTerminalElementSize: ->
fixPlayerContainerSize: ->
@$el.parent('.player').css(width: @$el.outerWidth() + 'px')
showCursor: (show) ->
throw '#showCursor not implemented'
blinkCursor: ->
throw '#blinkCursor not implemented'
resetCursorState: ->
startCursorBlink: ->
@cursorTimerId = setInterval(@blinkCursor.bind(this), 500)
stopCursorBlink: ->
if @cursorTimerId
clearInterval @cursorTimerId
@cursorTimerId = null
restartCursorBlink: ->
@stopCursorBlink()
@resetCursorState()
@startCursorBlink()
visualBell: ->