codecombat/app/views/ladder/MyMatchesTabView.coffee

176 lines
6.3 KiB
CoffeeScript
Raw Normal View History

CocoView = require 'views/core/CocoView'
2014-03-02 15:43:21 -05:00
Level = require 'models/Level'
LevelSession = require 'models/LevelSession'
LeaderboardCollection = require 'collections/LeaderboardCollection'
LadderSubmissionView = require 'views/play/common/LadderSubmissionView'
2014-03-02 15:43:21 -05:00
{teamDataFromLevel} = require './utils'
require 'vendor/d3'
2014-03-02 15:43:21 -05:00
module.exports = class MyMatchesTabView extends CocoView
id: 'my-matches-tab-view'
template: require 'templates/play/ladder/my_matches_tab'
2014-03-02 15:43:21 -05:00
constructor: (options, @level, @sessions) ->
super(options)
2014-03-09 16:22:22 -04:00
@nameMap = {}
@previouslyRankingTeams = {}
2014-03-03 15:10:24 -05:00
@refreshMatches()
2014-03-03 15:10:24 -05:00
refreshMatches: ->
2014-03-02 15:43:21 -05:00
@teams = teamDataFromLevel @level
@loadNames()
loadNames: ->
2014-03-09 16:22:22 -04:00
# Only fetch the names for the userIDs we don't already have in @nameMap
2014-03-02 15:43:21 -05:00
ids = []
for session in @sessions.models
2014-03-09 16:22:22 -04:00
for match in (session.get('matches') or [])
id = match.opponents[0].userID
unless id
2014-06-30 22:16:26 -04:00
console.error 'Found bad opponent ID in malformed match:', match, 'from session', session
continue
2014-03-09 16:22:22 -04:00
ids.push id unless @nameMap[id]
ids = _.uniq ids
2014-08-26 20:34:00 -04:00
return unless ids.length
2014-03-02 15:43:21 -05:00
2014-03-09 16:22:22 -04:00
success = (nameMap) =>
return if @destroyed
for session in @sessions.models
for match in session.get('matches') or []
opponent = match.opponents[0]
continue if @nameMap[opponent.userID]
opponentUser = nameMap[opponent.userID]
name = opponentUser?.name
name ||= opponentUser.firstName + ' ' + opponentUser.lastName if opponentUser?.firstName
name ||= "Anonymous #{opponent.userID.substr(18)}" if opponentUser
unless name
console.log 'found', nameMap[opponent.userID], 'for', opponent.userID, "http://codecombat.com/db/user/#{opponent.userID}"
name ||= '<bad match data>'
if name.length > 21
name = name.substr(0, 18) + '...'
@nameMap[opponent.userID] = name
2014-08-26 20:34:00 -04:00
@render() if @supermodel.finished()
2014-03-02 15:43:21 -05:00
2014-08-26 20:34:00 -04:00
userNamesRequest = @supermodel.addRequestResource 'user_names', {
url: '/db/user/-/names'
2014-03-02 15:43:21 -05:00
data: {ids: ids}
2014-08-26 20:34:00 -04:00
method: 'POST'
2014-03-02 15:43:21 -05:00
success: success
2014-08-26 20:34:00 -04:00
}, 0
userNamesRequest.load()
2014-03-02 15:43:21 -05:00
getRenderData: ->
ctx = super()
ctx.level = @level
ctx.levelID = @level.get('slug') or @level.id
ctx.teams = @teams
convertMatch = (match, submitDate) =>
2014-03-02 15:43:21 -05:00
opponent = match.opponents[0]
state = 'win'
state = 'loss' if match.metrics.rank > opponent.metrics.rank
state = 'tie' if match.metrics.rank is opponent.metrics.rank
fresh = match.date > (new Date(new Date() - 20 * 1000)).toISOString()
if fresh
Backbone.Mediator.publish 'audio-player:play-sound', trigger: 'chat_received'
2014-03-02 15:43:21 -05:00
{
state: state
opponentName: @nameMap[opponent.userID]
opponentID: opponent.userID
when: moment(match.date).fromNow()
sessionID: opponent.sessionID
stale: match.date < submitDate
fresh: fresh
codeLanguage: match.codeLanguage
simulator: JSON.stringify(match.simulator) + ' | seed ' + match.randomSeed
2014-03-02 15:43:21 -05:00
}
for team in @teams
team.session = (s for s in @sessions.models when s.get('team') is team.id)[0]
team.readyToRank = team.session?.readyToRank()
team.isRanking = team.session?.get('isRanking')
team.matches = (convertMatch(match, team.session.get('submitDate')) for match in team.session?.get('matches') or [])
2014-03-02 15:43:21 -05:00
team.matches.reverse()
team.score = (team.session?.get('totalScore') or 10).toFixed(2)
2014-07-15 12:47:13 -04:00
team.wins = _.filter(team.matches, {state: 'win', stale: false}).length
team.ties = _.filter(team.matches, {state: 'tie', stale: false}).length
team.losses = _.filter(team.matches, {state: 'loss', stale: false}).length
scoreHistory = team.session?.get('scoreHistory')
if scoreHistory?.length > 1
2014-04-02 21:41:10 -04:00
team.scoreHistory = scoreHistory
if not team.isRanking and @previouslyRankingTeams[team.id]
Backbone.Mediator.publish 'audio-player:play-sound', trigger: 'cast-end'
@previouslyRankingTeams[team.id] = team.isRanking
2014-03-02 15:43:21 -05:00
ctx
afterRender: ->
super()
2014-05-20 11:00:44 -04:00
@removeSubView subview for key, subview of @subviews when subview instanceof LadderSubmissionView
@$el.find('.ladder-submission-view').each (i, el) =>
placeholder = $(el)
sessionID = placeholder.data('session-id')
2014-03-15 10:56:44 -04:00
session = _.find @sessions.models, {id: sessionID}
ladderSubmissionView = new LadderSubmissionView session: session, level: @level
@insertSubView ladderSubmissionView, placeholder
2014-04-02 21:41:10 -04:00
@$el.find('.score-chart-wrapper').each (i, el) =>
scoreWrapper = $(el)
team = _.find @teams, name: scoreWrapper.data('team-name')
2014-04-04 17:22:30 -04:00
@generateScoreLineChart(scoreWrapper.attr('id'), team.scoreHistory, team.name)
2014-03-02 15:43:21 -05:00
@$el.find('tr.fresh').removeClass('fresh', 5000)
2014-06-30 22:16:26 -04:00
generateScoreLineChart: (wrapperID, scoreHistory, teamName) =>
margin =
2014-04-02 21:41:10 -04:00
top: 20
right: 20
bottom: 30
left: 50
2014-04-02 21:41:10 -04:00
width = 450 - margin.left - margin.right
height = 125
2014-06-30 22:16:26 -04:00
x = d3.time.scale().range([0, width])
y = d3.scale.linear().range([height, 0])
2014-06-30 22:16:26 -04:00
xAxis = d3.svg.axis().scale(x).orient('bottom').ticks(4).outerTickSize(0)
yAxis = d3.svg.axis().scale(y).orient('left').ticks(4).outerTickSize(0)
2014-04-02 21:41:10 -04:00
line = d3.svg.line().x(((d) -> x(d.date))).y((d) -> y(d.close))
2014-06-30 22:16:26 -04:00
selector = '#' + wrapperID
2014-06-30 22:16:26 -04:00
svg = d3.select(selector).append('svg')
.attr('width', width + margin.left + margin.right)
.attr('height', height + margin.top + margin.bottom)
.append('g')
.attr('transform', "translate(#{margin.left}, #{margin.top})")
2014-04-02 21:41:10 -04:00
time = 0
data = scoreHistory.map (d) ->
time +=1
return {
date: time
close: d[1] * 100
}
2014-04-02 21:41:10 -04:00
x.domain(d3.extent(data, (d) -> d.date))
y.domain(d3.extent(data, (d) -> d.close))
2014-06-30 22:16:26 -04:00
svg.append('g')
.attr('class', 'y axis')
2014-04-02 21:41:10 -04:00
.call(yAxis)
2014-06-30 22:16:26 -04:00
.append('text')
.attr('transform', 'rotate(-90)')
.attr('y', 4)
.attr('dy', '.75em')
.style('text-anchor', 'end')
.text('Score')
lineClass = 'line'
if teamName.toLowerCase() is 'ogres' then lineClass = 'ogres-line'
if teamName.toLowerCase() is 'humans' then lineClass = 'humans-line'
svg.append('path')
2014-04-02 21:41:10 -04:00
.datum(data)
2014-06-30 22:16:26 -04:00
.attr('class', lineClass)
.attr('d', line)