Fixed Gridmancer session linking on profile view.

This commit is contained in:
Nick Winter 2014-06-18 12:05:40 -07:00
parent 50fea7e937
commit ac6c7292c8
3 changed files with 3 additions and 6 deletions

View file

@ -254,7 +254,7 @@ module.exports = class ProfileView extends View
link.icon = @iconForLink link for link in links
context.profileLinks = _.sortBy links, (link) -> not link.icon # icons first
if @sessions
context.sessions = (s.attributes for s in @sessions.models when (s.get('submitted') or s.get('level-id') is 'gridmancer'))
context.sessions = (s.attributes for s in @sessions.models when (s.get('submitted') or (s.get('levelID') is 'gridmancer') and s.get('code')?.thoktar?.plan?.length isnt 942)) # no default code
context.sessions.sort (a, b) -> (b.playtime ? 0) - (a.playtime ? 0)
else
context.sessions = []

View file

@ -54,18 +54,15 @@ module.exports = class ModelModal extends View
container = $(e.target).closest('.model-container')
model = _.find @models, id: container.data('model-id')
treema = @modelTreemas[model.id]
changes = {}
for key, val of treema.data when not _.isEqual val, model.get key
console.log "Updating", key, "from", model.get(key), "to", val
model.set key, val
changes[key] = val
for key, val of model.attributes when treema.get(key) is undefined and not _.string.startsWith key, '_'
console.log "Deleting", key, "which was", val, "but man, that ain't going to work, now is it?"
#changes[key] = undefined
model.unset key
if errors = model.validate()
return console.warn model, "failed validation with errors:", errors
res = model.save changes, {patch: true}
return unless res = model.patch()
res.error =>
return if @destroyed
console.error model, "failed to save with error:", res.responseText

View file

@ -229,7 +229,7 @@ UserHandler = class UserHandler extends Handler
getLevelSessionsForEmployer: (req, res, userID) ->
return @sendUnauthorizedError(res) unless req.user._id+'' is userID or req.user.isAdmin() or ('employer' in req.user.get('permissions'))
query = creator: userID, levelID: {$in: ['gridmancer', 'greed', 'dungeon-arena', 'brawlwood', 'gold-rush']}
projection = 'levelName levelID team playtime codeLanguage submitted' # code totalScore
projection = 'levelName levelID team playtime codeLanguage submitted code totalScore'
LevelSession.find(query).select(projection).exec (err, documents) =>
return @sendDatabaseError(res, err) if err
documents = (LevelSessionHandler.formatEntity(req, doc) for doc in documents)