mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
Merge pull request #3704 from duybkict/refactor-MainLadderView
refactor MainLadderView
This commit is contained in:
commit
bd64764b6c
1 changed files with 8 additions and 7 deletions
|
@ -15,15 +15,16 @@ module.exports = class MainLadderView extends RootView
|
|||
id: 'main-ladder-view'
|
||||
template: template
|
||||
|
||||
constructor: (options) ->
|
||||
super options
|
||||
@levelStatusMap = {}
|
||||
@levelPlayCountMap = {}
|
||||
@sessions = @supermodel.loadCollection(new LevelSessionsCollection(), 'your_sessions', {cache: false}, 0).model
|
||||
@listenToOnce @sessions, 'sync', @onSessionsLoaded
|
||||
@getLevelPlayCounts()
|
||||
initialize: ->
|
||||
@levelStatusMap = []
|
||||
@levelPlayCountMap = []
|
||||
@campaigns = campaigns
|
||||
|
||||
@sessions = @supermodel.loadCollection(new LevelSessionsCollection(), 'your_sessions', {cache: false}, 0).model
|
||||
@listenToOnce @sessions, 'sync', @onSessionsLoaded
|
||||
|
||||
@getLevelPlayCounts()
|
||||
|
||||
onSessionsLoaded: (e) ->
|
||||
for session in @sessions.models
|
||||
@levelStatusMap[session.get('levelID')] = if session.get('state')?.complete then 'complete' else 'started'
|
||||
|
|
Loading…
Add table
Reference in a new issue