mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
44 lines
1.2 KiB
CoffeeScript
44 lines
1.2 KiB
CoffeeScript
RootView = require 'views/kinds/RootView'
|
|
template = require 'templates/admin/users'
|
|
User = require 'models/User'
|
|
|
|
module.exports = class UsersView extends RootView
|
|
# 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()
|
|
@listenTo(@users, 'all', @render)
|
|
|
|
getRenderData: ->
|
|
c = super()
|
|
c.users = (user.attributes for user in @users.models)
|
|
c
|