ensl_gathers/lib/react/gather.jsx

639 lines
15 KiB
React
Raw Normal View History

2015-07-28 15:54:29 +00:00
"use strict";
var VoteButton = React.createClass({
cancelVote: function (e) {
socket.emit("gather:vote", {
leader: {
candidate: null
}
});
},
vote: function (e) {
e.preventDefault();
socket.emit("gather:vote", {
leader: {
candidate: parseInt(e.target.value, 10)
}
});
},
render: function () {
if (this.props.currentGatherer === null) {
return false;
}
if (this.props.currentGatherer.leaderVote === this.props.candidate.id) {
return (
<button
onClick={this.cancelVote}
className="btn btn-xs btn-success">Voted
</button>
);
} else {
return (
<button
onClick={this.vote}
className="btn btn-xs btn-default"
value={this.props.candidate.id}>Vote
</button>
);
}
}
});
var SelectPlayerButton = React.createClass({
selectPlayer: function (e) {
e.preventDefault();
2015-07-28 23:32:50 +00:00
socket.emit("gather:select", {
player: parseInt(e.target.value, 10)
})
2015-07-28 15:54:29 +00:00
},
render: function () {
2015-07-28 23:32:50 +00:00
if (this.props.gatherer.leader) {
return (<button
className="btn btn-xs btn-default"
data-disabled="true">Leader</button>);
2015-08-08 17:13:17 +00:00
} else if (this.props.gatherer.team !== "lobby") {
return (<button
onClick={this.selectPlayer}
value={this.props.gatherer.id}
className="btn btn-xs btn-default"> Reselect
</button>
);
2015-07-28 15:54:29 +00:00
} else {
return (<button
onClick={this.selectPlayer}
2015-07-28 23:32:50 +00:00
value={this.props.gatherer.id}
2015-07-28 15:54:29 +00:00
className="btn btn-xs btn-primary"> Select
</button>
);
}
}
2015-07-28 23:32:50 +00:00
});
2015-07-28 15:54:29 +00:00
2015-08-08 19:14:16 +00:00
var GathererList = React.createClass({
memberList: function () {
var self = this;
2015-07-28 15:54:29 +00:00
return this.props.gather.gatherers.filter(function (gatherer) {
2015-08-08 19:14:16 +00:00
return gatherer.team === self.props.team;
2015-07-28 15:54:29 +00:00
}).sort(function (gatherer) {
2015-07-28 23:32:50 +00:00
return (gatherer.leader) ? 1 : -1;
2015-07-28 15:54:29 +00:00
});
},
render: function () {
var extractGatherer = function (gatherer) {
var image;
if (gatherer.leader) {
image = (<img src="/images/commander.png"
alt="Commander"
height="20"
width="20" />);
}
return (
<tr key={gatherer.id}>
<td className="col-md-1">{image}</td>
<td className="col-md-11">{gatherer.user.username}</td>
</tr>
);
}
2015-08-08 19:14:16 +00:00
var members = this.memberList().map(extractGatherer);
return (
<table className="table">
<tbody>
{members}
</tbody>
</table>
);
}
});
var GatherTeams = React.createClass({
render: function () {
2015-07-28 15:54:29 +00:00
return (
<div className="panel-body">
<div className="row">
<div className="col-md-6">
<div className="panel panel-default">
<div className="panel-heading">
Aliens
</div>
2015-08-08 19:14:16 +00:00
<GathererList gather={this.props.gather} team="alien" />
2015-07-28 15:54:29 +00:00
</div>
</div>
<div className="col-md-6">
<div className="panel panel-default">
<div className="panel-heading">
Marines
</div>
2015-08-08 19:14:16 +00:00
<GathererList gather={this.props.gather} team="marine" />
2015-07-28 15:54:29 +00:00
</div>
</div>
</div>
</div>
);
}
2015-08-08 19:14:16 +00:00
});
2015-07-28 15:54:29 +00:00
2015-07-31 15:54:08 +00:00
var ElectionProgressBar = React.createClass({
componentDidMount: function () {
var self = this;
this.timer = setInterval(function () {
self.forceUpdate();
}, 900);
},
progress: function () {
var interval = this.props.gather.election.interval;
var startTime = (new Date(this.props.gather.election.startTime)).getTime();
var msTranspired = Math.floor((new Date()).getTime() - startTime);
return {
num: msTranspired,
den: interval,
barMessage: Math.floor((interval - msTranspired) / 1000) + "s remaining"
2015-07-31 15:54:08 +00:00
}
},
componentWillUnmount: function () {
clearInterval(this.timer);
},
render: function () {
return (<ProgressBar progress={this.progress()} />);
}
});
var ProgressBar = React.createClass({
render: function () {
var style = {
width: Math.round((this.props.progress.num / this.props.progress.den * 100)) + "%"
};
var barMessage = this.props.progress.barMessage || "";
return (
<div className="progress">
<div className="progress-bar progress-bar-striped active"
data-role="progressbar"
data-aria-valuenow={this.props.progress.num}
data-aria-valuemin="0"
data-aria-valuemax={this.props.progress.den}
style={style}>{barMessage}
</div>
</div>
);
}
});
2015-07-28 15:54:29 +00:00
var GatherProgress = React.createClass({
stateDescription: function () {
switch(this.props.gather.state) {
case "gathering":
return "Waiting for more gatherers.";
case "election":
return "Currently voting for team leaders.";
case "selection":
2015-07-31 16:34:27 +00:00
return "Waiting for leaders to pick teams.";
2015-07-28 15:54:29 +00:00
case "done":
return "Gather completed.";
default:
return "Initialising gather.";
}
},
gatheringProgress: function () {
var num = this.props.gather.gatherers.length;
var den = 12;
var remaining = den - num;
var message = (remaining === 1) ? "Waiting for last player" : "Waiting for " + remaining + " more players";
return {
num: num,
den: den,
message: message
};
},
electionProgress: function () {
var num = this.props.gather.gatherers.reduce(function (acc, gatherer) {
if (gatherer.leaderVote) acc++;
return acc;
}, 0);
var den = 12;
return {
num: num,
den: den,
message: den - num + " more votes required"
};
},
selectionProgress: function () {
var num = this.props.gather.gatherers.reduce(function (acc, gatherer) {
if (gatherer.team !== "lobby") acc++;
return acc;
}, 0);
var den = 12;
return {
num: num,
den: den,
message: num + " out of " + den + " players assigned"
};
},
render: function () {
2015-07-31 15:54:08 +00:00
var progress, progressBar;
2015-07-28 15:54:29 +00:00
var gatherState = this.props.gather.state;
if (gatherState === 'gathering' && this.props.gather.gatherers.length) {
progress = this.gatheringProgress();
2015-07-31 15:54:08 +00:00
progressBar = (<ProgressBar progress={progress} />);
2015-07-28 15:54:29 +00:00
} else if (gatherState === 'election') {
progress = this.electionProgress();
2015-07-31 15:54:08 +00:00
progressBar = (<ElectionProgressBar {...this.props} progress={progress} />);
2015-07-28 15:54:29 +00:00
} else if (gatherState === 'selection') {
progress = this.selectionProgress();
2015-07-31 15:54:08 +00:00
progressBar = (<ProgressBar progress={progress} />);
2015-07-28 15:54:29 +00:00
}
2015-07-31 15:54:08 +00:00
if (!progress) return false;
return (
<div className="panel-body no-bottom">
<p><strong>{this.stateDescription()}</strong> {progress.message}</p>
{progressBar}
</div>
);
2015-07-28 15:54:29 +00:00
}
});
2015-07-28 23:32:50 +00:00
var GatherActions = React.createClass({
2015-07-29 14:35:58 +00:00
joinGather: function (e) {
e.preventDefault();
socket.emit("gather:join");
},
2015-07-28 15:54:29 +00:00
leaveGather: function (e) {
e.preventDefault();
2015-07-28 23:32:50 +00:00
socket.emit("gather:leave");
},
confirmTeam: function (e) {
e.preventDefault();
socket.emit("gather:select:confirm");
2015-07-28 15:54:29 +00:00
},
inviteToGather: function (e) {
e.preventDefault();
2015-07-29 14:35:58 +00:00
alert("Boop!");
2015-07-28 15:54:29 +00:00
},
render: function () {
var joinButton;
2015-07-28 23:32:50 +00:00
if (this.props.currentGatherer) {
2015-07-28 15:54:29 +00:00
joinButton = (<li><button
onClick={this.leaveGather}
className="btn btn-danger">Leave Gather</button></li>);
2015-07-29 14:35:58 +00:00
} else if (this.props.gather.state === 'gathering') {
joinButton = (
<button
onClick={this.joinGather}
className="btn btn-success">Join Gather</button>
);
2015-07-28 15:54:29 +00:00
}
2015-07-28 23:32:50 +00:00
var confirmTeam;
if (this.props.currentGatherer &&
this.props.currentGatherer.leader &&
this.props.gather.state === 'selection' &&
this.props.gather.gatherers.every(function (gatherer) {
return gatherer.team !== 'lobby';
}) ) {
if (this.props.currentGatherer.confirm) {
confirmTeam = (
<li>
<button
className="btn btn-default"
data-disabled="true"
>
Confirmed
</button>
</li>
);
} else {
confirmTeam = (
<li>
<button
2015-07-29 10:46:30 +00:00
className="btn btn-success"
2015-07-28 23:32:50 +00:00
onClick={this.confirmTeam}
>
Confirm Team
</button>
</li>
);
}
}
2015-07-28 15:54:29 +00:00
var inviteButton;
if (this.props.gather.state === 'gathering') {
inviteButton = (<li><button
onClick={this.inviteToGather}
className="btn btn-primary">Invite to Gather</button></li>);
}
2015-07-28 23:32:50 +00:00
return (
<div className="panel-footer text-right">
2015-07-29 10:46:30 +00:00
<ul className="list-inline no-bottom">
2015-07-28 23:32:50 +00:00
{confirmTeam}
{inviteButton}
{joinButton}
</ul>
</div>
);
}
});
2015-07-29 13:50:39 +00:00
var ServerVoting = React.createClass({
handleServerVote: function (e) {
e.preventDefault();
socket.emit("gather:vote", {
server: {
id: parseInt(e.target.value, 10)
}
});
},
votesForServer: function (server) {
return this.props.gather.gatherers.reduce(function (acc, gatherer) {
if (server.id === gatherer.serverVote) acc++;
return acc;
}, 0);
},
render: function () {
var self = this;
var servers = self.props.servers.map(function (server) {
var voteButton;
if (self.props.currentGatherer.serverVote === server.id) {
voteButton = (<button
data-disabled="true"
className="btn btn-xs btn-success">
Voted</button>)
} else {
voteButton = (<button
onClick={self.handleServerVote}
value={server.id}
className="btn btn-xs btn-primary">
Vote</button>);
}
return (
2015-07-31 11:23:55 +00:00
<tr key={server.id}>
2015-07-29 13:50:39 +00:00
<td className="col-md-6">{server.name}</td>
2015-07-31 14:39:59 +00:00
<td className="col-md-6 text-right">
{self.votesForServer(server)} Votes&nbsp;
2015-07-29 13:50:39 +00:00
{voteButton}
</td>
</tr>
);
});
return (
<div className="panel panel-default">
<div className="panel-heading">
Server Voting
</div>
<table id="serverVoteTable" className="table table-condensed table-hover voting-table">
{servers}
</table>
</div>
);
}
})
var MapVoting = React.createClass({
handleMapVote: function (e) {
e.preventDefault();
socket.emit("gather:vote", {
map: {
id: parseInt(e.target.value, 10)
}
});
},
votesForMap: function (map) {
return this.props.gather.gatherers.reduce(function (acc, gatherer) {
if (map.id === gatherer.mapVote) acc++;
return acc;
}, 0);
},
render: function () {
var self = this;
var maps = self.props.maps.map(function (map) {
var voteButton;
if (self.props.currentGatherer.mapVote === map.id) {
voteButton = (<button
data-disabled="true"
className="btn btn-xs btn-success">
Voted</button>)
} else {
voteButton = (<button
onClick={self.handleMapVote}
value={map.id}
className="btn btn-xs btn-primary">
Vote</button>);
}
return (
2015-07-31 11:23:55 +00:00
<tr key={map.id}>
2015-07-29 13:50:39 +00:00
<td className="col-md-6">{map.name}</td>
2015-07-31 14:39:59 +00:00
<td className="col-md-6 text-right">
{self.votesForMap(map)} Votes&nbsp;
2015-07-29 13:50:39 +00:00
{voteButton}
</td>
</tr>
);
});
return (
<div className="panel panel-default">
<div className="panel-heading">
Map Voting
</div>
<table className="table table-condensed table-hover voting-table">
{maps}
</table>
</div>
);
}
})
2015-07-28 23:32:50 +00:00
var Gather = React.createClass({
getDefaultProps: function () {
return {
gather: {
gatherers: []
}
}
},
componentDidMount: function () {
var self = this;
socket.on("gather:refresh", function (data) {
2015-07-29 13:50:39 +00:00
self.setProps(data);
2015-07-28 23:32:50 +00:00
});
},
render: function () {
if (this.props.gather.state === 'done') {
2015-07-29 14:35:58 +00:00
return (<CompletedGather {...this.props} />);
2015-07-28 23:32:50 +00:00
}
2015-07-29 13:50:39 +00:00
var voting;
if (this.props.currentGatherer) {
voting = (
<div className="panel-body">
<div className="row">
<div className="col-md-6">
<MapVoting {...this.props} />
</div>
<div className="col-md-6">
<ServerVoting {...this.props} />
</div>
</div>
</div>
);
}
2015-07-28 15:54:29 +00:00
var gatherTeams;
if (this.props.gather.state === 'selection') {
gatherTeams = <GatherTeams gather={this.props.gather} />
}
return (
<div className="panel panel-default">
<div className="panel-heading">
2015-08-04 23:57:54 +00:00
<strong>Current Gather</strong>
2015-07-28 15:54:29 +00:00
<span className="badge add-left">{this.props.gather.gatherers.length}</span>
</div>
2015-07-31 15:54:08 +00:00
<GatherProgress {...this.props} />
<Gatherers {...this.props} />
2015-07-28 15:54:29 +00:00
{gatherTeams}
2015-07-29 14:35:58 +00:00
{voting}
2015-07-28 23:32:50 +00:00
<GatherActions {...this.props} />
2015-07-28 15:54:29 +00:00
</div>
);
}
});
var Gatherers = React.createClass({
2015-07-29 14:35:58 +00:00
joinGather: function (e) {
e.preventDefault();
socket.emit("gather:join");
},
2015-07-28 15:54:29 +00:00
render: function () {
var self = this;
var gatherers = this.props.gather.gatherers.map(function (gatherer) {
2015-08-08 17:13:17 +00:00
// Country
var country;
if (gatherer.user.country) {
country = (<img src="images/blank.gif"
className={"flag flag-" + gatherer.user.country.toLowerCase()}
alt={gatherer.user.country} />);
};
2015-07-28 15:54:29 +00:00
var division = (<span className="label label-primary">{gatherer.user.ability.division}</span>);
2015-08-05 00:06:09 +00:00
var lifeform = (
gatherer.user.ability.lifeforms.map(function (lifeform) {
return (<span className="label label-default"
key={[lifeform, gatherer.id].join("-")}>{lifeform}</span>);
})
);
2015-08-08 15:27:17 +00:00
var team;
if (gatherer.user.team) {
team = (<span className="label label-primary">{gatherer.user.team.name}</span>);
}
2015-07-28 23:32:50 +00:00
2015-08-05 00:06:09 +00:00
var action;
2015-07-28 23:32:50 +00:00
2015-07-28 15:54:29 +00:00
if (self.props.gather.state === "election") {
var votes = self.props.gather.gatherers.reduce(function (acc, voter) {
if (voter.leaderVote === gatherer.id) acc++;
return acc;
}, 0)
action = (
<span>
<small>{votes + " votes"} &nbsp;</small>
<VoteButton currentGatherer={self.props.currentGatherer} candidate={gatherer} />
</span>
);
}
2015-07-28 23:32:50 +00:00
if (self.props.gather.state === 'selection') {
2015-08-08 17:13:17 +00:00
if (self.props.currentGatherer && self.props.currentGatherer.leader) {
action = (
<span>
<SelectPlayerButton gatherer={gatherer} />
</span>
);
} else {
if (gatherer.team !== "lobby") {
action = (<span className="label label-success">{gatherer.team}</span>);
}
}
2015-07-28 23:32:50 +00:00
}
2015-07-28 15:54:29 +00:00
return (
<tr key={gatherer.user.id}>
2015-08-08 19:14:16 +00:00
<td className="col-md-5">{country} {gatherer.user.username}&nbsp; ({gatherer.user.id})</td>
2015-08-08 17:13:17 +00:00
<td className="col-md-5">
{lifeform} {division} {team}&nbsp;
</td>
<td className="col-md-2 text-right">{action}&nbsp;</td>
2015-07-28 15:54:29 +00:00
</tr>
);
})
if (this.props.gather.gatherers.length) {
return (
<div className="panel-body">
<div className="panel panel-default">
<table className="table roster-table">
<tbody>
{gatherers}
</tbody>
</table>
</div>
</div>
);
} else {
2015-07-29 10:46:30 +00:00
return (
<div className="panel-body text-center join-hero">
2015-07-29 14:35:58 +00:00
<button
onClick={this.joinGather}
className="btn btn-success btn-lg">Start a Gather</button>
2015-07-29 10:46:30 +00:00
</div>
);
2015-07-28 15:54:29 +00:00
}
}
});
2015-07-29 14:35:58 +00:00
var CompletedGather = React.createClass({
2015-08-08 19:14:16 +00:00
countVotes: function (voteType) {
return this.props.gather.gatherers.reduce(function (acc, gatherer) {
if (gatherer[voteType] !== null) acc.push(gatherer[voteType]);
return acc;
}, []);
2015-07-29 14:35:58 +00:00
},
2015-08-08 19:14:16 +00:00
selectedMaps: function () {
return rankVotes(this.countVotes('mapVote'), this.props.maps).slice(0, 2)
},
selectedServer: function () {
return rankVotes(this.countVotes('serverVote'), this.props.servers).slice(0, 1);
2015-07-29 14:35:58 +00:00
},
render: function () {
2015-08-08 19:14:16 +00:00
var maps = this.selectedMaps();
var server = this.selectedServer().pop();
2015-07-29 14:35:58 +00:00
return (
<div className="panel panel-default">
<div className="panel-heading">
2015-08-08 19:14:16 +00:00
<strong>Gather Details</strong>
2015-07-29 14:35:58 +00:00
</div>
2015-08-08 19:14:16 +00:00
<GatherTeams gather={this.props.gather} />
2015-07-29 14:35:58 +00:00
<div className="panel-body">
2015-08-08 19:14:16 +00:00
<dl className="dl-horizontal">
<dt>Maps</dt>
<dd>{maps.map(function(map) { return map.name}).join(" & ")}</dd>
<dt>Server</dt>
<dd>{server.name}</dd>
<dt>Address</dt>
<dd>{server.ip}:{server.port}</dd>
<dt>Password</dt>
<dd>{server.password}</dd>
<br />
<dt>&nbsp;</dt>
<dd><a href={["steam://run/4920/connect", server.ip +":"+server.port, server.password].join("/")}
className="btn btn-primary">Click to Join</a></dd>
</dl>
2015-07-29 14:35:58 +00:00
</div>
</div>
);
}
});