/*** @jsx React.DOM */ var chart_map = [0, 1, 2, 3, 4, 6, 7, 8, 9]; var valid_charts = ['SP Beginner', 'SP Basic', 'SP Difficult', 'SP Expert', 'SP Challenge', 'DP Basic', 'DP Difficult', 'DP Expert', 'DP Challenge'].filter(function(val, index) { return window.difficulties[window.chart_map[index]] > 0; }); var pagenav = new History(valid_charts); var top_scores = createReactClass({ sortTopScores: function(topscores) { var newscores = [[], [], [], [], [], [], [], [], [], []]; topscores.map(function(score) { newscores[score.chart].push(score); }.bind(this)); return newscores; }, getInitialState: function(props) { return { topscores: this.sortTopScores(window.topscores), players: window.players, chart: pagenav.getInitialState(valid_charts[0]), }; }, componentDidMount: function() { pagenav.onChange(function(chart) { this.setState({chart: chart}); }.bind(this)); this.refreshScores(); }, refreshScores: function() { AJAX.get( Link.get('refresh'), function(response) { this.setState({ topscores: this.sortTopScores(response.topscores), players: response.players, }); // Refresh every 15 seconds setTimeout(this.refreshScores, 15000); }.bind(this) ); }, convertChart: function(chart) { switch(chart) { case 'SP Beginner': return 0; case 'SP Basic': return 1; case 'SP Difficult': return 2; case 'SP Expert': return 3; case 'SP Challenge': return 4; case 'DP Basic': return 5; case 'DP Difficult': return 6; case 'DP Expert': return 7; case 'DP Challenge': return 8; default: return null; } }, getGroove: function(chart) { return [ 500 + window.groove[chart].stream * 11, 500 + window.groove[chart].chaos * 0.5, 500 + window.groove[chart].freeze * 1, 500 + window.groove[chart].air * 64, 500 + window.groove[chart].voltage * 4.5, ]; }, render: function() { var chart = this.convertChart(this.state.chart); if ( window.groove[window.chart_map[chart]].stream != 0 || window.groove[window.chart_map[chart]].chaos != 0 || window.groove[window.chart_map[chart]].freeze != 0 || window.groove[window.chart_map[chart]].air != 0 || window.groove[window.chart_map[chart]].voltage != 0 ) { var hasGroove = true; } else { var hasGroove = false; } return (