mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 08:38:09 -05:00
33 lines
1,002 B
CoffeeScript
33 lines
1,002 B
CoffeeScript
View = require 'views/kinds/CocoView'
|
|
template = require 'templates/play/level/tome/problem_alert'
|
|
{me} = require 'lib/auth'
|
|
|
|
module.exports = class ProblemAlertView extends View
|
|
className: 'problem-alert'
|
|
template: template
|
|
|
|
subscriptions: {}
|
|
|
|
events:
|
|
"click .close": "onRemoveClicked"
|
|
|
|
constructor: (options) ->
|
|
super options
|
|
@problem = options.problem
|
|
|
|
getRenderData: (context={}) ->
|
|
context = super context
|
|
format = (s) -> s?.replace("\n", "<br>").replace('<', '<').replace('>', '>')
|
|
context.message = format @problem.aetherProblem.message
|
|
context.hint = format @problem.aetherProblem.hint
|
|
context
|
|
|
|
afterRender: ->
|
|
super()
|
|
@$el.addClass('alert').addClass("alert-#{@problem.aetherProblem.level}").hide().fadeIn('slow')
|
|
Backbone.Mediator.publish 'play-sound', trigger: 'error_appear', volume: 1.0
|
|
|
|
onRemoveClicked: ->
|
|
@$el.remove()
|
|
@destroy()
|
|
#@problem.destroy() # let's try leaving the annotations / marker ranges alone
|