1
0
mirror of synced 2024-11-28 16:00:51 +01:00
bemaniutils/bemani/frontend/static/controllers/jubeat/rivals.react.js

296 lines
12 KiB
JavaScript

/*** @jsx React.DOM */
var valid_versions = Object.keys(window.rivals);
var pagenav = new History(valid_versions);
var rivals_view = React.createClass({
getInitialState: function(props) {
var profiles = Object.keys(window.rivals);
var version = pagenav.getInitialState(profiles[profiles.length - 1]);
return {
rivals: window.rivals,
players: window.players,
profiles: profiles,
version: version,
term: "",
results: {},
searching: false,
offset: 0,
limit: 5,
};
},
componentDidMount: function() {
pagenav.onChange(function(version) {
this.setState({version: version, offset: 0});
}.bind(this));
this.refreshRivals();
},
refreshRivals: function() {
AJAX.get(
Link.get('refresh'),
function(response) {
this.setState({
rivals: response.rivals,
players: response.players,
});
setTimeout(this.refreshRivals, 5000);
}.bind(this)
);
},
searchForPlayers: function(event) {
this.setState({searching: true});
AJAX.post(
Link.get('search'),
{
version: this.state.version,
term: this.state.term,
},
function(response) {
this.setState({
results: response.results,
searching: false,
});
}.bind(this)
);
event.preventDefault();
},
addRival: function(event, userid) {
AJAX.post(
Link.get('addrival'),
{
version: this.state.version,
userid: userid,
},
function(response) {
this.setState({
rivals: response.rivals,
players: response.players,
});
}.bind(this)
);
event.preventDefault();
},
removeRival: function(event, userid) {
AJAX.post(
Link.get('removerival'),
{
version: this.state.version,
userid: userid,
},
function(response) {
this.setState({
rivals: response.rivals,
players: response.players,
});
}.bind(this)
);
event.preventDefault();
},
addRivals: function(userid) {
if (userid == window.userid) {
return null;
}
var avail = true;
var count = 0;
var current_rivals = this.state.rivals[this.state.version];
for (var i = 0; i < current_rivals.length; i++) {
count++;
if (current_rivals[i].userid == userid) {
avail = false;
}
}
if (count >= 3) { avail = false; }
return (
<span>
{avail ?
<Add
title="Add Rival"
onClick={function(event) {
this.addRival(event, userid);
}.bind(this)}
/> :
null
}
</span>
);
},
render: function() {
if (this.state.rivals[this.state.version]) {
var rivals = this.state.rivals[this.state.version];
var resultlength = 0;
Object.keys(this.state.results).map(function(userid, index) {
var player = this.state.results[userid][this.state.version];
if (player) { resultlength++; }
}.bind(this));
return (
<div>
<div className="section">
<h3>Rivals</h3>
{this.state.profiles.map(function(version) {
return (
<Nav
title={window.versions[version]}
active={this.state.version == version}
onClick={function(event) {
if (this.state.version == version) { return; }
this.setState({
version: version,
offset: 0,
});
pagenav.navigate(version);
}.bind(this)}
/>
);
}.bind(this))}
</div>
<div className="section">
<form onSubmit={this.searchForPlayers}>
<label for="search">Name or Jubeat ID:</label>
<br />
<input
type="text"
className="inline"
maxlength="9"
value={this.state.term}
onChange={function(event) {
var value = event.target.value.toUpperCase();
var intRegex = /^[ -&\\.\\*A-Z0-9]*$/;
// Normally, names are <= 8 characters, but we allow Jubeat IDs here too
if (value.length <= 9 && intRegex.test(value)) {
this.setState({term: value});
}
}.bind(this)}
name="search"
/>
<input type="submit" value="search" />
{ this.state.searching ?
<img className="loading" src={Link.get('static', 'loading-16.gif')} /> :
null
}
</form>
{resultlength > 0 ?
<table className="list players">
<thead>
<tr>
<th>Name</th>
<th>Jubeat ID</th>
<th className="action"></th>
</tr>
</thead>
<tbody>{
Object.keys(this.state.results).map(function(userid, index) {
if (index < this.state.offset || index >= this.state.offset + this.state.limit) {
return null;
}
var player = this.state.results[userid][this.state.version];
if (!player) { return null; }
return (
<tr>
<td><Rival userid={userid} player={player} /></td>
<td>{ player.extid }</td>
<td className="edit">{this.addRivals(userid)}</td>
</tr>
);
}.bind(this))
}</tbody>
<tfoot>
<tr>
<td colSpan={2}>
{ this.state.offset > 0 ?
<Prev onClick={function(event) {
var page = this.state.offset - this.state.limit;
if (page < 0) { page = 0; }
this.setState({offset: page});
}.bind(this)}/> : null
}
{ (this.state.offset + this.state.limit) < resultlength ?
<Next style={ {float: 'right'} } onClick={function(event) {
var page = this.state.offset + this.state.limit;
if (page >= resultlength) { return; }
this.setState({offset: page});
}.bind(this)}/> : null
}
</td>
</tr>
</tfoot>
</table> :
<div className="placeholder">No players match the specified search.</div>
}
</div>
<div className="section">
<h3>Rivals</h3>
<table className="list players">
<thead>
<tr>
<th>Name</th>
<th>Jubeat ID</th>
<th className="action"></th>
</tr>
</thead>
<tbody>
{this.state.rivals[this.state.version].map(function(rival, index) {
var player = this.state.players[rival.userid][this.state.version];
return (
<tr>
<td><Rival userid={rival.userid} player={player} /></td>
<td>{ player.extid }</td>
<td className="edit">
<Delete
title="Remove Rival"
onClick={function(event) {
this.removeRival(event, rival.userid);
}.bind(this)}
/>
</td>
</tr>
);
}.bind(this))}
</tbody>
</table>
</div>
</div>
);
} else {
return (
<div>
<div className="section">
You have no profile for {window.versions[this.state.version]}!
</div>
<div className="section">
{this.state.profiles.map(function(version) {
return (
<Nav
title={window.versions[version]}
active={this.state.version == version}
onClick={function(event) {
if (this.state.version == version) { return; }
this.setState({version: version, offset: 0});
pagenav.navigate(version);
}.bind(this)}
/>
);
}.bind(this))}
</div>
</div>
);
}
},
});
ReactDOM.render(
React.createElement(rivals_view, null),
document.getElementById('content')
);