mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
45 lines
1.2 KiB
CoffeeScript
45 lines
1.2 KiB
CoffeeScript
|
View = require 'views/kinds/RootView'
|
||
|
template = require 'templates/admin/users'
|
||
|
User = require 'models/User'
|
||
|
|
||
|
module.exports = class UsersView extends View
|
||
|
# TODO: Pagination, choosing filters on the page itself.
|
||
|
|
||
|
id: "admin-users-view"
|
||
|
template: template
|
||
|
|
||
|
constructor: (options) ->
|
||
|
super options
|
||
|
@getUsers()
|
||
|
|
||
|
getUsers: ->
|
||
|
# 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 agrs for the function
|
||
|
|
||
|
conditions = [
|
||
|
['limit', 20]
|
||
|
['sort', '-dateCreated']
|
||
|
['where', 'anonymous']
|
||
|
['equals', false]
|
||
|
#['where', 'email']
|
||
|
#['equals', 'sderickson@gmail.com']
|
||
|
#['where', 'dateCreated']
|
||
|
#['lt', (new Date()).toString()]
|
||
|
]
|
||
|
conditions = $.param({conditions:JSON.stringify(conditions)})
|
||
|
UserCollection = Backbone.Collection.extend({
|
||
|
model: User
|
||
|
url: '/db/user?' + conditions
|
||
|
})
|
||
|
@users = new UserCollection()
|
||
|
@users.fetch()
|
||
|
@users.on('all', @render)
|
||
|
|
||
|
getRenderData: =>
|
||
|
c = super()
|
||
|
c.users = (user.attributes for user in @users.models)
|
||
|
console.log('our render data', c)
|
||
|
c
|