mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 10:06:08 -05:00
129 lines
3.8 KiB
CoffeeScript
129 lines
3.8 KiB
CoffeeScript
SpellListEntryView = require './SpellListEntryView'
|
|
ThangAvatarView = require 'views/play/level/ThangAvatarView'
|
|
template = require 'templates/play/level/tome/spell_list_tab_entry'
|
|
LevelComponent = require 'models/LevelComponent'
|
|
DocFormatter = require './DocFormatter'
|
|
|
|
module.exports = class SpellListTabEntryView extends SpellListEntryView
|
|
template: template
|
|
id: 'spell-list-tab-entry-view'
|
|
|
|
subscriptions:
|
|
'tome:spell-loaded': 'onSpellLoaded'
|
|
'tome:spell-changed': 'onSpellChanged'
|
|
'god:new-world-created': 'onNewWorld'
|
|
'tome:spell-changed-language': 'onSpellChangedLanguage'
|
|
'tome:fullscreen-view': 'onFullscreenClick'
|
|
|
|
events:
|
|
'click .spell-list-button': 'onDropdownClick'
|
|
'click .reload-code': 'onCodeReload'
|
|
'click .beautify-code': 'onBeautifyClick'
|
|
'click .fullscreen-code': 'onFullscreenClick'
|
|
|
|
constructor: (options) ->
|
|
super options
|
|
|
|
getRenderData: (context={}) ->
|
|
context = super context
|
|
context
|
|
|
|
afterRender: ->
|
|
super()
|
|
@$el.addClass 'spell-tab'
|
|
|
|
onNewWorld: (e) ->
|
|
@thang = e.world.thangMap[@thang.id] if @thang
|
|
|
|
setThang: (thang) ->
|
|
return if thang.id is @thang?.id
|
|
@thang = thang
|
|
@spellThang = @spell.thangs[@thang.id]
|
|
@buildAvatar()
|
|
@buildDocs() unless @docsBuilt
|
|
|
|
buildAvatar: ->
|
|
avatar = new ThangAvatarView thang: @thang, includeName: false, supermodel: @supermodel
|
|
if @avatar
|
|
@avatar.$el.replaceWith avatar.$el
|
|
@avatar.destroy()
|
|
else
|
|
@$el.find('.thang-avatar-placeholder').replaceWith avatar.$el
|
|
@avatar = avatar
|
|
@avatar.render()
|
|
|
|
buildDocs: ->
|
|
@docsBuilt = true
|
|
lcs = @supermodel.getModels LevelComponent
|
|
found = false
|
|
for lc in lcs when not found
|
|
for doc in lc.get('propertyDocumentation') ? []
|
|
if doc.name is @spell.name
|
|
found = true
|
|
break
|
|
return unless found
|
|
docFormatter = new DocFormatter doc: doc, thang: @thang, language: @options.language, selectedMethod: true
|
|
@$el.find('code').popover(
|
|
animation: true
|
|
html: true
|
|
placement: 'bottom'
|
|
trigger: 'hover'
|
|
content: docFormatter.formatPopover()
|
|
container: @$el.parent()
|
|
)
|
|
|
|
onMouseEnterAvatar: (e) -> # Don't call super
|
|
onMouseLeaveAvatar: (e) -> # Don't call super
|
|
onClick: (e) -> # Don't call super
|
|
|
|
onDropdownClick: (e) ->
|
|
return unless @controlsEnabled
|
|
Backbone.Mediator.publish 'tome:toggle-spell-list'
|
|
|
|
onCodeReload: ->
|
|
return unless @controlsEnabled
|
|
Backbone.Mediator.publish 'tome:reload-code', spell: @spell
|
|
|
|
onBeautifyClick: ->
|
|
return unless @controlsEnabled
|
|
Backbone.Mediator.publish 'spell-beautify', spell: @spell
|
|
|
|
onFullscreenClick: ->
|
|
unless $('.fullscreen-code').hasClass 'maximized'
|
|
$('#code-area').addClass 'fullscreen-editor'
|
|
$('.fullscreen-code').addClass 'maximized'
|
|
else
|
|
$('#code-area').removeClass 'fullscreen-editor'
|
|
$('.fullscreen-code').removeClass 'maximized'
|
|
|
|
updateReloadButton: ->
|
|
changed = @spell.hasChanged null, @spell.getSource()
|
|
@$el.find('.reload-code').css('display', if changed then 'inline-block' else 'none')
|
|
|
|
onSpellLoaded: (e) ->
|
|
return unless e.spell is @spell
|
|
@updateReloadButton()
|
|
|
|
onSpellChanged: (e) ->
|
|
return unless e.spell is @spell
|
|
@updateReloadButton()
|
|
|
|
onSpellChangedLanguage: (e) ->
|
|
return unless e.spell is @spell
|
|
@options.language = e.language
|
|
@$el.find('code').popover 'destroy'
|
|
@render()
|
|
@docsBuilt = false
|
|
@buildDocs() if @thang
|
|
|
|
toggleControls: (e, enabled) ->
|
|
# Don't call super; do it differently
|
|
return if e.controls and not ('editor' in e.controls)
|
|
return if enabled is @controlsEnabled
|
|
@controlsEnabled = enabled
|
|
@$el.toggleClass 'read-only', not enabled
|
|
|
|
destroy: ->
|
|
@avatar?.destroy()
|
|
@$el.find('code').popover 'destroy'
|
|
super()
|