mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
43 lines
1.1 KiB
CoffeeScript
Executable file
43 lines
1.1 KiB
CoffeeScript
Executable file
ModalView = require 'views/kinds/ModalView'
|
|
template = require 'templates/modal/versions'
|
|
tableTemplate = require 'templates/kinds/table'
|
|
|
|
class VersionsViewCollection extends Backbone.Collection
|
|
url: ""
|
|
model: null
|
|
|
|
initialize: (@url, @levelID, @model) ->
|
|
@url = url + levelID + '/versions'
|
|
@model = model
|
|
|
|
module.exports = class VersionsModalView extends ModalView
|
|
template: template
|
|
startsLoading: true
|
|
plain: true
|
|
modalWidthPercent: 80
|
|
|
|
# needs to be overwritten by child
|
|
id: ""
|
|
url: ""
|
|
page: ""
|
|
|
|
constructor: (options, @ID, @model) ->
|
|
super options
|
|
@view = new model(_id: @ID)
|
|
@view.fetch()
|
|
@listenToOnce(@view, 'sync', @onViewSync)
|
|
|
|
onViewSync: ->
|
|
@collection = new VersionsViewCollection(@url, @view.attributes.original, @model)
|
|
@collection.fetch()
|
|
@listenTo(@collection, 'sync', @onVersionFetched)
|
|
|
|
onVersionFetched: ->
|
|
@startsLoading = false
|
|
@render()
|
|
|
|
getRenderData: (context={}) ->
|
|
context = super(context)
|
|
context.page = @page
|
|
context.dataList = (m.attributes for m in @collection.models) if @collection
|
|
context
|