2014-07-17 20:20:11 -04:00
|
|
|
CocoView = require 'views/kinds/CocoView'
|
2014-01-03 13:32:13 -05:00
|
|
|
template = require 'templates/play/level/tome/problem_alert'
|
|
|
|
{me} = require 'lib/auth'
|
|
|
|
|
2014-07-17 20:20:11 -04:00
|
|
|
module.exports = class ProblemAlertView extends CocoView
|
2014-11-07 00:43:39 -05:00
|
|
|
id: 'problem-alert-view'
|
2014-01-03 13:32:13 -05:00
|
|
|
className: 'problem-alert'
|
|
|
|
template: template
|
|
|
|
|
2014-11-07 00:43:39 -05:00
|
|
|
subscriptions:
|
|
|
|
'tome:show-problem-alert': 'onShowProblemAlert'
|
2014-11-08 01:46:12 -05:00
|
|
|
'tome:jiggle-problem-alert': 'onJiggleProblemAlert'
|
2014-11-07 00:43:39 -05:00
|
|
|
'tome:manual-cast': 'onHideProblemAlert'
|
|
|
|
'real-time-multiplayer:manual-cast': 'onHideProblemAlert'
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
events:
|
2014-06-30 22:16:26 -04:00
|
|
|
'click .close': 'onRemoveClicked'
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
constructor: (options) ->
|
|
|
|
super options
|
2014-11-07 00:43:39 -05:00
|
|
|
if options.problem?
|
|
|
|
@problem = options.problem
|
|
|
|
@onWindowResize()
|
|
|
|
else
|
|
|
|
@$el.hide()
|
|
|
|
$(window).on 'resize', @onWindowResize
|
|
|
|
|
|
|
|
destroy: ->
|
|
|
|
$(window).off 'resize', @onWindowResize
|
|
|
|
super()
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2014-02-11 17:58:45 -05:00
|
|
|
getRenderData: (context={}) ->
|
2014-01-03 13:32:13 -05:00
|
|
|
context = super context
|
2014-11-07 00:43:39 -05:00
|
|
|
if @problem?
|
|
|
|
format = (s) -> s?.replace(/</g, '<').replace(/>/g, '>').replace(/\n/g, '<br>')
|
|
|
|
context.message = format @problem.aetherProblem.message
|
|
|
|
context.hint = format @problem.aetherProblem.hint
|
2014-01-03 13:32:13 -05:00
|
|
|
context
|
|
|
|
|
|
|
|
afterRender: ->
|
|
|
|
super()
|
2014-11-07 00:43:39 -05:00
|
|
|
if @problem?
|
|
|
|
@$el.addClass('alert').addClass("alert-#{@problem.aetherProblem.level}").hide().fadeIn('slow')
|
|
|
|
@$el.addClass('no-hint') unless @problem.aetherProblem.hint
|
|
|
|
Backbone.Mediator.publish 'audio-player:play-sound', trigger: 'error_appear', volume: 1.0
|
|
|
|
|
|
|
|
onShowProblemAlert: (data) ->
|
|
|
|
return if @problem? and data.problem.aetherProblem.message is @problem.aetherProblem.message and data.problem.aetherProblem.hint is @problem.aetherProblem.hint
|
|
|
|
return unless $('#code-area').is(":visible")
|
|
|
|
@problem = data.problem
|
|
|
|
@lineOffsetPx = data.lineOffsetPx or 0
|
|
|
|
@$el.show()
|
|
|
|
@onWindowResize()
|
|
|
|
@render()
|
2014-11-08 01:46:12 -05:00
|
|
|
@onJiggleProblemAlert()
|
|
|
|
|
|
|
|
onJiggleProblemAlert: ->
|
|
|
|
if @$el.is(":visible")
|
|
|
|
@$el.css('animation-play-state', 'running')
|
|
|
|
@$el.css('-moz-animation-play-state', 'running')
|
|
|
|
@$el.css('-webkit-animation-play-state', 'running')
|
|
|
|
pauseJiggle = =>
|
|
|
|
@$el.css('animation-play-state', 'paused')
|
|
|
|
@$el.css('-moz-animation-play-state', 'paused')
|
|
|
|
@$el.css('-webkit-animation-play-state', 'paused')
|
|
|
|
_.delay pauseJiggle, 2000
|
2014-11-07 00:43:39 -05:00
|
|
|
|
|
|
|
onHideProblemAlert: ->
|
|
|
|
@onRemoveClicked()
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
onRemoveClicked: ->
|
2014-11-07 00:43:39 -05:00
|
|
|
@$el.hide()
|
|
|
|
@problem = null
|
|
|
|
|
|
|
|
onWindowResize: (e) =>
|
|
|
|
# TODO: This all seems a little hacky
|
|
|
|
if @problem?
|
|
|
|
@$el.css('left', $('#goals-view').outerWidth(true) + 'px')
|
|
|
|
@$el.css('right', $('#code-area').outerWidth(true) + 'px')
|
|
|
|
|
|
|
|
# 45px from top roughly aligns top of alert with top of first code line
|
|
|
|
# TODO: calculate this in a more dynamic, less sketchy way
|
|
|
|
@$el.css('top', (45 + @lineOffsetPx) + 'px')
|