mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-30 19:06:59 -05:00
28 lines
940 B
CoffeeScript
28 lines
940 B
CoffeeScript
CocoView = require 'views/core/CocoView'
|
|
utils = require 'core/utils'
|
|
|
|
module.exports = class ProgressView extends CocoView
|
|
|
|
id: 'progress-view'
|
|
className: 'modal-content'
|
|
template: require 'templates/play/level/modal/progress-view'
|
|
|
|
events:
|
|
'click #done-btn': 'onClickDoneButton'
|
|
'click #next-level-btn': 'onClickNextLevelButton'
|
|
|
|
initialize: (options) ->
|
|
@level = options.level
|
|
@course = options.course
|
|
@classroom = options.classroom
|
|
@nextLevel = options.nextLevel
|
|
@levelSessions = options.levelSessions
|
|
# Translate and Markdownify level description, but take out any images (we don't have room for arena banners, etc.).
|
|
# Images in Markdown are like ![description](url)
|
|
@nextLevelDescription = marked(utils.i18n(@nextLevel.attributes, 'description').replace(/!\[.*?\]\(.*?\)\n*/g, ''))
|
|
|
|
onClickDoneButton: ->
|
|
@trigger 'done'
|
|
|
|
onClickNextLevelButton: ->
|
|
@trigger 'next-level'
|