mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
51 lines
1.6 KiB
CoffeeScript
51 lines
1.6 KiB
CoffeeScript
RootView = require 'views/core/RootView'
|
|
template = require 'templates/admin/user-code-problems'
|
|
UserCodeProblem = require 'models/UserCodeProblem'
|
|
|
|
module.exports = class UserCodeProblemsView extends RootView
|
|
# TODO: Pagination, choosing filters on the page itself.
|
|
|
|
id: 'admin-user-code-problems-view'
|
|
template: template
|
|
|
|
constructor: (options) ->
|
|
super options
|
|
@fetchingData = true
|
|
@getUserCodeProblems()
|
|
|
|
getUserCodeProblems: ->
|
|
# can have this page show arbitrary conditions, see mongoose queries
|
|
# http://mongoosejs.com/docs/queries.html
|
|
# Each list in conditions is a function call.
|
|
# The first arg is the function name
|
|
# The rest are the args for the function
|
|
|
|
lastMonth = new Date()
|
|
if lastMonth.getMonth() is 1
|
|
lastMonth.setMonth 12
|
|
lastMonth.setYear lastMonth.getYear() - 1
|
|
else
|
|
lastMonth.setMonth lastMonth.getMonth() - 1
|
|
|
|
conditions = [
|
|
['limit', 300]
|
|
['sort', '-created']
|
|
['where', 'created']
|
|
['gte', lastMonth.toString()]
|
|
]
|
|
conditions = $.param({conditions:JSON.stringify(conditions)})
|
|
UserCodeProblemCollection = Backbone.Collection.extend({
|
|
model: UserCodeProblem
|
|
url: '/db/user.code.problem?' + conditions
|
|
})
|
|
@userCodeProblems = new UserCodeProblemCollection()
|
|
@userCodeProblems.fetch()
|
|
@listenTo @userCodeProblems, 'all', ->
|
|
@fetchingData = false
|
|
@render()
|
|
|
|
getRenderData: ->
|
|
c = super()
|
|
c.fetchingData = @fetchingData
|
|
c.userCodeProblems = (problem.attributes for problem in @userCodeProblems.models)
|
|
c
|