codecombat/app/views/play/level/tome/spell_toolbar_view.coffee

120 lines
4.8 KiB
CoffeeScript
Raw Normal View History

View = require 'views/kinds/CocoView'
template = require 'templates/play/level/tome/spell_toolbar'
module.exports = class SpellToolbarView extends View
className: 'spell-toolbar-view'
template: template
2014-01-25 18:11:29 -05:00
progressHoverDelay: 500
subscriptions:
'spell-step-backward': 'onStepBackward'
'spell-step-forward': 'onStepForward'
events:
2014-01-25 18:11:29 -05:00
'mousemove .spell-progress': 'onProgressHover'
'mouseout .spell-progress': 'onProgressMouseOut'
'click .step-backward': 'onStepBackward'
'click .step-forward': 'onStepForward'
constructor: (options) ->
super options
@ace = options.ace
afterRender: ->
super()
2014-01-25 18:11:29 -05:00
toggleFlow: (to) ->
2014-06-30 22:16:26 -04:00
@$el.find('.flow').toggle to
2014-01-25 18:11:29 -05:00
setStatementIndex: (statementIndex) ->
return unless total = @callState?.statementsExecuted
@statementIndex = Math.min(total - 1, Math.max(0, statementIndex))
@statementRatio = @statementIndex / (total - 1)
2014-01-22 13:56:49 -05:00
@statementTime = @callState.statements[@statementIndex]?.userInfo.time ? 0
@$el.find('.progress-bar').css('width', 100 * @statementRatio + '%')
@$el.find('.step-backward').prop('disabled', @statementIndex is 0)
@$el.find('.step-forward').prop('disabled', @statementIndex is total - 1)
@updateMetrics()
2014-01-25 18:11:29 -05:00
_.defer =>
Backbone.Mediator.publish 'tome:spell-statement-index-updated', statementIndex: @statementIndex, ace: @ace
updateMetrics: ->
statementsExecuted = @callState.statementsExecuted
$metrics = @$el.find('.metrics')
2014-01-25 18:11:29 -05:00
return $metrics.hide() if @suppressMetricsUpdates or not (statementsExecuted or @metrics.statementsExecuted)
if @metrics.callsExecuted > 1
$metrics.find('.call-index').text @callIndex + 1
$metrics.find('.calls-executed').text @metrics.callsExecuted
$metrics.find('.calls-metric').show().attr('title', "Method call #{@callIndex + 1} of #{@metrics.callsExecuted} calls")
else
$metrics.find('.calls-metric').hide()
if @metrics.statementsExecuted
$metrics.find('.statement-index').text @statementIndex + 1
$metrics.find('.statements-executed').text statementsExecuted
if @metrics.statementsExecuted > statementsExecuted
$metrics.find('.statements-executed-total').text " (#{@metrics.statementsExecuted})"
titleSuffix = " (#{@metrics.statementsExecuted} statements total)"
else
2014-06-30 22:16:26 -04:00
$metrics.find('.statements-executed-total').text ''
titleSuffix = ''
$metrics.find('.statements-metric').show().attr('title', "Statement #{@statementIndex + 1} of #{statementsExecuted} this call#{titleSuffix}")
else
$metrics.find('.statements-metric').hide()
2014-01-25 18:11:29 -05:00
left = @$el.find('.scrubber-handle').position().left + @$el.find('.spell-progress').position().left
$metrics.finish().show().css({left: left - $metrics.width() / 2}).delay(2000).fadeOut('fast')
setStatementRatio: (ratio) ->
return unless total = @callState?.statementsExecuted
2014-01-25 18:11:29 -05:00
statementIndex = Math.floor ratio * total
@setStatementIndex statementIndex unless statementIndex is @statementIndex
onProgressHover: (e) ->
2014-01-25 18:11:29 -05:00
return @onProgressHoverLong(e) if @maintainIndexHover
@lastHoverEvent = e
@hoverTimeout = _.delay @onProgressHoverLong, @progressHoverDelay unless @hoverTimeout
onProgressHoverLong: (e) =>
e ?= @lastHoverEvent
@hoverTimeout = null
2014-07-15 12:35:14 -04:00
offsetX = e.offsetX or e.clientX - $(e.target).offset().left
@setStatementRatio offsetX / @$el.find('.progress').width()
@updateTime()
@maintainIndexHover = true
@updateScroll()
onProgressMouseOut: (e) ->
@maintainIndexHover = false
2014-01-25 18:11:29 -05:00
if @hoverTimeout
clearTimeout @hoverTimeout
@hoverTimeout = null
onStepBackward: (e) -> @step -1
onStepForward: (e) -> @step 1
step: (delta) ->
lastTime = @statementTime
@setStatementIndex @statementIndex + delta
2014-01-25 18:11:29 -05:00
@updateTime() if @statementTime isnt lastTime
@updateScroll()
updateTime: ->
@maintainIndexScrub = true
clearTimeout @maintainIndexScrubTimeout if @maintainIndexScrubTimeout
@maintainIndexScrubTimeout = _.delay (=> @maintainIndexScrub = false), 500
Backbone.Mediator.publish 'level-set-time', time: @statementTime, scrubDuration: 500
updateScroll: ->
return unless statementStart = @callState?.statements?[@statementIndex]?.range[0]
2014-03-24 10:54:59 -04:00
text = @ace.getValue() # code in editor
currentLine = statementStart.row
@ace.scrollToLine currentLine, true, true
setCallState: (callState, statementIndex, @callIndex, @metrics) ->
return if callState is @callState and statementIndex is @statementIndex
return unless @callState = callState
2014-01-25 18:11:29 -05:00
@suppressMetricsUpdates = true
2014-01-22 13:56:49 -05:00
if not @maintainIndexHover and not @maintainIndexScrub and statementIndex? and callState.statements[statementIndex]?.userInfo.time isnt @statementTime
@setStatementIndex statementIndex
else
@setStatementRatio @statementRatio
2014-01-25 18:11:29 -05:00
@suppressMetricsUpdates = false