mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
Less useless ladder refresh requests.
This commit is contained in:
parent
9713f7d142
commit
ff1e64e1f6
2 changed files with 6 additions and 10 deletions
app
|
@ -58,6 +58,7 @@ div#columns.row
|
|||
span(data-i18n="ladder.watch_victory") Watch your victory
|
||||
else
|
||||
span(data-i18n="ladder.defeat_the") Defeat the
|
||||
|
|
||||
| #{team.otherTeam}
|
||||
|
||||
if !team.matches.length
|
||||
|
|
|
@ -72,20 +72,15 @@ module.exports = class LadderView extends RootView
|
|||
@showPlayModal(hash) if @sessions.loaded
|
||||
|
||||
fetchSessionsAndRefreshViews: ->
|
||||
return if @destroyed or application.userIsIdle or @$el.find('#simulate.active').length or (new Date() - 2000 < @lastRefreshTime)
|
||||
@sessions.fetch({"success": @refreshViews})
|
||||
|
||||
refreshViews: =>
|
||||
return if @destroyed or application.userIsIdle
|
||||
if @$el.find("#ladder.active").length
|
||||
return if new Date() - 2000 < @lastLadderRefreshTime
|
||||
@lastLadderRefreshTime = new Date()
|
||||
@ladderTab.refreshLadder()
|
||||
console.log "Refreshing ladder."
|
||||
if @$el.find("#my-matches.active").length
|
||||
return if new Date() - 2000 < @lastMatchesRefreshTime
|
||||
@lastMatchesRefreshTime = new Date()
|
||||
@myMatchesTab.refreshMatches()
|
||||
console.log "Refreshing matches view."
|
||||
@lastRefreshTime = new Date()
|
||||
@ladderTab.refreshLadder()
|
||||
@myMatchesTab.refreshMatches()
|
||||
console.log "Refreshed sessions for ladder and matches."
|
||||
|
||||
onIdleChanged: (e) ->
|
||||
@refreshViews() unless e.idle
|
||||
|
|
Loading…
Add table
Reference in a new issue