codecombat/app/views/play/level/tome/problem_alert_view.coffee
2014-01-03 10:32:13 -08:00

30 lines
773 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
context.message = @problem.aetherProblem.message.replace("\n", "<br>")
context
afterRender: ->
super()
@$el.addClass('alert').addClass("alert-#{@problem.aetherProblem.level}")
onRemoveClicked: ->
@$el.remove()
@destroy()
#@problem.destroy() # let's try leaving the annotations / marker ranges alone