mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
fd45c9d473
Add Campaign factory First basic tests for HeroSelectModal in demo flow Implement HeroSelectModal for demo flow Improve tests Disable empty test Fix text inconsistency around 'me' Just listen once Add HeroSelectModal events test Don't reuse destroyed modal Fix inconsistent modal close behavior Fix tests
67 lines
2 KiB
CoffeeScript
67 lines
2 KiB
CoffeeScript
CocoView = require './CocoView'
|
|
|
|
module.exports = class ModalView extends CocoView
|
|
className: 'modal fade'
|
|
closeButton: true
|
|
closesOnClickOutside: true
|
|
modalWidthPercent: null
|
|
plain: false
|
|
instant: false
|
|
template: require 'templates/core/modal-base'
|
|
|
|
events:
|
|
'click a': 'toggleModal'
|
|
'click button': 'toggleModal'
|
|
'click li': 'toggleModal'
|
|
|
|
shortcuts:
|
|
'esc': 'hide'
|
|
|
|
constructor: (options) ->
|
|
@className = @className.replace ' fade', '' if options?.instant or @instant
|
|
@closeButton = options.closeButton if options?.closeButton?
|
|
@modalWidthPercent = options.modalWidthPercent if options?.modalWidthPercent
|
|
super arguments...
|
|
@options ?= {}
|
|
|
|
subscriptions:
|
|
{}
|
|
|
|
afterRender: ->
|
|
super()
|
|
if Backbone.history.fragment is "employers"
|
|
$(@$el).find(".background-wrapper").each ->
|
|
$(this).addClass("employer-modal-background-wrapper").removeClass("background-wrapper")
|
|
|
|
if @modalWidthPercent
|
|
@$el.find('.modal-dialog').css width: "#{@modalWidthPercent}%"
|
|
@$el.on 'hide.bs.modal', =>
|
|
@onHidden() unless @hidden
|
|
@hidden = true
|
|
@$el.find('.background-wrapper').addClass('plain') if @plain
|
|
|
|
afterInsert: ->
|
|
super()
|
|
# This makes sure if you press enter right after opening the players guide,
|
|
# it doesn't just reopen the modal.
|
|
$(document.activeElement).blur()
|
|
|
|
showLoading: ($el) ->
|
|
$el = @$el.find('.modal-body') unless $el
|
|
super($el)
|
|
|
|
# TODO: Combine hide/onHidden such that backbone 'hide/hidden.bs.modal' events and our 'hide/hidden' events are more 1-to-1
|
|
# For example:
|
|
# pressing 'esc' or using `currentModal.hide()` triggers 'hide', 'hide.bs.modal', 'hidden', 'hidden.bs.modal'
|
|
# clicking outside the modal triggers 'hide.bs.modal', 'hidden', 'hidden.bs.modal' (but not 'hide')
|
|
hide: ->
|
|
@trigger 'hide'
|
|
@$el.removeClass('fade').modal 'hide' unless @destroyed
|
|
|
|
onHidden: ->
|
|
@trigger 'hidden'
|
|
|
|
destroy: ->
|
|
@hide() unless @hidden
|
|
@$el.off 'hide.bs.modal'
|
|
super()
|