codecombat/app/views/docs/components_view.coffee

29 lines
942 B
CoffeeScript
Raw Normal View History

RootView = require 'views/kinds/RootView'
template = require 'templates/docs/components'
CocoCollection = require 'collections/CocoCollection'
LevelComponent = require 'models/LevelComponent'
class ComponentDocsCollection extends CocoCollection
url: '/db/level.component?project=name,description,dependencies,propertyDocumentation'
model: LevelComponent
module.exports = class UnnamedView extends RootView
id: 'docs-components-view'
template: template
constructor: (options) ->
super(options)
@componentDocs = new ComponentDocsCollection()
@supermodel.loadCollection @componentDocs, 'components'
onLoaded: ->
console.log 'we have the components...', (c.get('name') for c in @componentDocs.models)
2014-07-09 16:01:53 -04:00
console.log 'we have the attributes...', (c.attributes for c in @componentDocs.models)
super()
getRenderData: ->
c = super()
c.components = @componentDocs.models
2014-07-14 14:18:17 -04:00
c.marked = marked
c