mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-02 16:21:01 -04:00
Added tasks view to Thang editor search.
This commit is contained in:
parent
dbc42fb7e1
commit
bf9aa27e73
4 changed files with 11 additions and 3 deletions
app
locale
templates/editor/thang
views
|
@ -657,6 +657,7 @@
|
|||
achievement_query_goals: "Key achievement off of level goals"
|
||||
level_completion: "Level Completion"
|
||||
pop_i18n: "Populate I18N"
|
||||
tasks: "Tasks"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Preview"
|
||||
|
|
|
@ -14,6 +14,7 @@ block tableHeader
|
|||
th(data-i18n="general.name") Name
|
||||
th(data-i18n="general.description") Description
|
||||
th(data-i18n="general.version") Version
|
||||
th(data-i18n="editor.tasks") Tasks
|
||||
|
||||
block tableBody
|
||||
for thang in documents
|
||||
|
@ -25,4 +26,10 @@ block tableBody
|
|||
| #{thang.get('name')}
|
||||
td.body-row #{thang.get('description')}
|
||||
- var version = thang.get('version')
|
||||
td #{version.major}.#{version.minor}
|
||||
td #{version.major}.#{version.minor}
|
||||
- var tasks = thang.get('tasks');
|
||||
if tasks && tasks.length
|
||||
- var completed = tasks.filter(function(t) { return t.complete; });
|
||||
td #{completed.length}/#{tasks.length}
|
||||
else
|
||||
td
|
||||
|
|
|
@ -6,7 +6,7 @@ app = require 'core/application'
|
|||
class SearchCollection extends Backbone.Collection
|
||||
initialize: (modelURL, @model, @term, @projection) ->
|
||||
@url = "#{modelURL}?project="
|
||||
if @projection? and not (@projection == [])
|
||||
if @projection?.length
|
||||
@url += 'created,permissions'
|
||||
@url += ',' + projected for projected in projection
|
||||
else @url += 'true'
|
||||
|
|
|
@ -6,7 +6,7 @@ module.exports = class ThangTypeSearchView extends SearchView
|
|||
model: require 'models/ThangType'
|
||||
modelURL: '/db/thang.type'
|
||||
tableTemplate: require 'templates/editor/thang/table'
|
||||
projection: ['original', 'name', 'version', 'description', 'slug', 'kind', 'rasterIcon']
|
||||
projection: ['original', 'name', 'version', 'description', 'slug', 'kind', 'rasterIcon', 'tasks']
|
||||
page: 'thang'
|
||||
|
||||
getRenderData: ->
|
||||
|
|
Loading…
Add table
Reference in a new issue