mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
25 lines
872 B
CoffeeScript
25 lines
872 B
CoffeeScript
ModalView = require 'views/core/ModalView'
|
|
template = require 'templates/play/level/modal/picoctf-victory-modal'
|
|
|
|
module.exports = class PicoCTFVictoryModal extends ModalView
|
|
id: 'picoctf-victory-modal'
|
|
template: template
|
|
closesOnClickOutside: false
|
|
|
|
initialize: (options) ->
|
|
@session = options.session
|
|
@level = options.level
|
|
|
|
form = {flag: options.world.picoCTFFlag, pid: @level.picoCTFProblem.pid}
|
|
@supermodel.addRequestResource(url: '/picoctf/submit', method: 'POST', data: form, success: (response) =>
|
|
console.log 'submitted', form, 'and got response', response
|
|
).load()
|
|
|
|
if nextLevel = @level.get('nextLevel')
|
|
@nextLevel = new Level().setURL "/db/level/#{nextLevel.original}/version/#{nextLevel.majorVersion}"
|
|
@nextLevel = @supermodel.loadModel(@nextLevel).model
|
|
|
|
@playSound 'victory'
|
|
|
|
onLoaded: ->
|
|
super()
|