Add completed gather information

This commit is contained in:
Chris Blanchard 2015-08-08 20:14:16 +01:00
parent b9123202c1
commit 3d02b5d316
5 changed files with 146 additions and 74 deletions

View File

@ -69,17 +69,11 @@ var SelectPlayerButton = React.createClass({
} }
}); });
var GatherTeams = React.createClass({ var GathererList = React.createClass({
alienGatherers: function () { memberList: function () {
var self = this;
return this.props.gather.gatherers.filter(function (gatherer) { return this.props.gather.gatherers.filter(function (gatherer) {
return gatherer.team === "alien"; return gatherer.team === self.props.team;
}).sort(function (gatherer) {
return (gatherer.leader) ? 1 : -1;
});
},
marineGatherers: function () {
return this.props.gather.gatherers.filter(function (gatherer) {
return gatherer.team === "marine";
}).sort(function (gatherer) { }).sort(function (gatherer) {
return (gatherer.leader) ? 1 : -1; return (gatherer.leader) ? 1 : -1;
}); });
@ -100,8 +94,19 @@ var GatherTeams = React.createClass({
</tr> </tr>
); );
} }
var marines = this.marineGatherers().map(extractGatherer); var members = this.memberList().map(extractGatherer);
var aliens = this.alienGatherers().map(extractGatherer); return (
<table className="table">
<tbody>
{members}
</tbody>
</table>
);
}
});
var GatherTeams = React.createClass({
render: function () {
return ( return (
<div className="panel-body"> <div className="panel-body">
<div className="row"> <div className="row">
@ -110,11 +115,7 @@ var GatherTeams = React.createClass({
<div className="panel-heading"> <div className="panel-heading">
Aliens Aliens
</div> </div>
<table className="table"> <GathererList gather={this.props.gather} team="alien" />
<tbody>
{aliens}
</tbody>
</table>
</div> </div>
</div> </div>
<div className="col-md-6"> <div className="col-md-6">
@ -122,18 +123,14 @@ var GatherTeams = React.createClass({
<div className="panel-heading"> <div className="panel-heading">
Marines Marines
</div> </div>
<table className="table"> <GathererList gather={this.props.gather} team="marine" />
<tbody>
{marines}
</tbody>
</table>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
); );
} }
}) });
var ElectionProgressBar = React.createClass({ var ElectionProgressBar = React.createClass({
componentDidMount: function () { componentDidMount: function () {
@ -458,7 +455,6 @@ var Gather = React.createClass({
componentDidMount: function () { componentDidMount: function () {
var self = this; var self = this;
socket.on("gather:refresh", function (data) { socket.on("gather:refresh", function (data) {
console.log(data);
self.setProps(data); self.setProps(data);
}); });
}, },
@ -566,7 +562,7 @@ var Gatherers = React.createClass({
return ( return (
<tr key={gatherer.user.id}> <tr key={gatherer.user.id}>
<td className="col-md-5">{country} {gatherer.user.username}&nbsp;</td> <td className="col-md-5">{country} {gatherer.user.username}&nbsp; ({gatherer.user.id})</td>
<td className="col-md-5"> <td className="col-md-5">
{lifeform} {division} {team}&nbsp; {lifeform} {division} {team}&nbsp;
</td> </td>
@ -599,24 +595,44 @@ var Gatherers = React.createClass({
}); });
var CompletedGather = React.createClass({ var CompletedGather = React.createClass({
votedMaps: function () { countVotes: function (voteType) {
return this.props.gather.gatherers.reduce(function (acc, gatherer) {
if (gatherer[voteType] !== null) acc.push(gatherer[voteType]);
return acc;
}, []);
}, },
votedServer: function () { selectedMaps: function () {
// console.log(this.countVotes('mapVote'))
return rankVotes(this.countVotes('mapVote'), this.props.maps).slice(0, 2)
},
selectedServer: function () {
return rankVotes(this.countVotes('serverVote'), this.props.servers).slice(0, 1);
}, },
render: function () { render: function () {
var maps = this.selectedMaps();
var server = this.selectedServer().pop();
return ( return (
<div className="panel panel-default"> <div className="panel panel-default">
<div className="panel-heading"> <div className="panel-heading">
<strong>Gather Completed</strong> <strong>Gather Details</strong>
</div>
<div className="panel-body">
<h3>Join Up:</h3>
<p>Map Voted: To be completed</p>
<p>Server Voted: To be completed</p>
</div> </div>
<GatherTeams gather={this.props.gather} /> <GatherTeams gather={this.props.gather} />
<div className="panel-body">
<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>
</div>
</div> </div>
); );
} }

View File

@ -7,7 +7,7 @@ var UserLogin = React.createClass({
}); });
setTimeout(function () { setTimeout(function () {
socket.emit("gather:refresh"); socket.emit("gather:refresh");
}, 5000); }, 1000);
}, },
handleSubmit: function (e) { handleSubmit: function (e) {
e.preventDefault(); e.preventDefault();
@ -112,7 +112,7 @@ var CurrentUser = React.createClass({
render: function () { render: function () {
if (this.props.user) { if (this.props.user) {
return ( return (
<li class="dropdown"> <li className="dropdown">
<a className="dropdown-toggle" data-toggle="dropdown" href="#"> <a className="dropdown-toggle" data-toggle="dropdown" href="#">
{this.props.user.username} &nbsp;<img src={this.props.user.avatar} {this.props.user.username} &nbsp;<img src={this.props.user.avatar}
alt="User Avatar" alt="User Avatar"

View File

@ -69,17 +69,11 @@ var SelectPlayerButton = React.createClass({displayName: "SelectPlayerButton",
} }
}); });
var GatherTeams = React.createClass({displayName: "GatherTeams", var GathererList = React.createClass({displayName: "GathererList",
alienGatherers: function () { memberList: function () {
var self = this;
return this.props.gather.gatherers.filter(function (gatherer) { return this.props.gather.gatherers.filter(function (gatherer) {
return gatherer.team === "alien"; return gatherer.team === self.props.team;
}).sort(function (gatherer) {
return (gatherer.leader) ? 1 : -1;
});
},
marineGatherers: function () {
return this.props.gather.gatherers.filter(function (gatherer) {
return gatherer.team === "marine";
}).sort(function (gatherer) { }).sort(function (gatherer) {
return (gatherer.leader) ? 1 : -1; return (gatherer.leader) ? 1 : -1;
}); });
@ -100,8 +94,19 @@ var GatherTeams = React.createClass({displayName: "GatherTeams",
) )
); );
} }
var marines = this.marineGatherers().map(extractGatherer); var members = this.memberList().map(extractGatherer);
var aliens = this.alienGatherers().map(extractGatherer); return (
React.createElement("table", {className: "table"},
React.createElement("tbody", null,
members
)
)
);
}
});
var GatherTeams = React.createClass({displayName: "GatherTeams",
render: function () {
return ( return (
React.createElement("div", {className: "panel-body"}, React.createElement("div", {className: "panel-body"},
React.createElement("div", {className: "row"}, React.createElement("div", {className: "row"},
@ -110,11 +115,7 @@ var GatherTeams = React.createClass({displayName: "GatherTeams",
React.createElement("div", {className: "panel-heading"}, React.createElement("div", {className: "panel-heading"},
"Aliens" "Aliens"
), ),
React.createElement("table", {className: "table"}, React.createElement(GathererList, {gather: this.props.gather, team: "alien"})
React.createElement("tbody", null,
aliens
)
)
) )
), ),
React.createElement("div", {className: "col-md-6"}, React.createElement("div", {className: "col-md-6"},
@ -122,18 +123,14 @@ var GatherTeams = React.createClass({displayName: "GatherTeams",
React.createElement("div", {className: "panel-heading"}, React.createElement("div", {className: "panel-heading"},
"Marines" "Marines"
), ),
React.createElement("table", {className: "table"}, React.createElement(GathererList, {gather: this.props.gather, team: "marine"})
React.createElement("tbody", null,
marines
)
)
) )
) )
) )
) )
); );
} }
}) });
var ElectionProgressBar = React.createClass({displayName: "ElectionProgressBar", var ElectionProgressBar = React.createClass({displayName: "ElectionProgressBar",
componentDidMount: function () { componentDidMount: function () {
@ -458,7 +455,6 @@ var Gather = React.createClass({displayName: "Gather",
componentDidMount: function () { componentDidMount: function () {
var self = this; var self = this;
socket.on("gather:refresh", function (data) { socket.on("gather:refresh", function (data) {
console.log(data);
self.setProps(data); self.setProps(data);
}); });
}, },
@ -566,7 +562,7 @@ var Gatherers = React.createClass({displayName: "Gatherers",
return ( return (
React.createElement("tr", {key: gatherer.user.id}, React.createElement("tr", {key: gatherer.user.id},
React.createElement("td", {className: "col-md-5"}, country, " ", gatherer.user.username, " "), React.createElement("td", {className: "col-md-5"}, country, " ", gatherer.user.username, "  (", gatherer.user.id, ")"),
React.createElement("td", {className: "col-md-5"}, React.createElement("td", {className: "col-md-5"},
lifeform, " ", division, " ", team, " " lifeform, " ", division, " ", team, " "
), ),
@ -599,24 +595,44 @@ var Gatherers = React.createClass({displayName: "Gatherers",
}); });
var CompletedGather = React.createClass({displayName: "CompletedGather", var CompletedGather = React.createClass({displayName: "CompletedGather",
votedMaps: function () { countVotes: function (voteType) {
return this.props.gather.gatherers.reduce(function (acc, gatherer) {
if (gatherer[voteType] !== null) acc.push(gatherer[voteType]);
return acc;
}, []);
}, },
votedServer: function () { selectedMaps: function () {
// console.log(this.countVotes('mapVote'))
return rankVotes(this.countVotes('mapVote'), this.props.maps).slice(0, 2)
},
selectedServer: function () {
return rankVotes(this.countVotes('serverVote'), this.props.servers).slice(0, 1);
}, },
render: function () { render: function () {
var maps = this.selectedMaps();
var server = this.selectedServer().pop();
return ( return (
React.createElement("div", {className: "panel panel-default"}, React.createElement("div", {className: "panel panel-default"},
React.createElement("div", {className: "panel-heading"}, React.createElement("div", {className: "panel-heading"},
React.createElement("strong", null, "Gather Completed") React.createElement("strong", null, "Gather Details")
), ),
React.createElement(GatherTeams, {gather: this.props.gather}),
React.createElement("div", {className: "panel-body"}, React.createElement("div", {className: "panel-body"},
React.createElement("h3", null, "Join Up:"), React.createElement("dl", {className: "dl-horizontal"},
React.createElement("p", null, "Map Voted: To be completed"), React.createElement("dt", null, "Maps"),
React.createElement("p", null, "Server Voted: To be completed") React.createElement("dd", null, maps.map(function(map) { return map.name}).join(" & ")),
), React.createElement("dt", null, "Server"),
React.createElement(GatherTeams, {gather: this.props.gather}) React.createElement("dd", null, server.name),
React.createElement("dt", null, "Address"),
React.createElement("dd", null, server.ip, ":", server.port),
React.createElement("dt", null, "Password"),
React.createElement("dd", null, server.password),
React.createElement("br", null),
React.createElement("dt", null, " "),
React.createElement("dd", null, React.createElement("a", {href: ["steam://run/4920/connect", server.ip +":"+server.port, server.password].join("/"),
className: "btn btn-primary"}, "Click to Join"))
)
)
) )
); );
} }
@ -830,7 +846,7 @@ var UserLogin = React.createClass({displayName: "UserLogin",
}); });
setTimeout(function () { setTimeout(function () {
socket.emit("gather:refresh"); socket.emit("gather:refresh");
}, 5000); }, 1000);
}, },
handleSubmit: function (e) { handleSubmit: function (e) {
e.preventDefault(); e.preventDefault();
@ -935,7 +951,7 @@ var CurrentUser = React.createClass({displayName: "CurrentUser",
render: function () { render: function () {
if (this.props.user) { if (this.props.user) {
return ( return (
React.createElement("li", {class: "dropdown"}, React.createElement("li", {className: "dropdown"},
React.createElement("a", {className: "dropdown-toggle", "data-toggle": "dropdown", href: "#"}, React.createElement("a", {className: "dropdown-toggle", "data-toggle": "dropdown", href: "#"},
this.props.user.username, "  ", React.createElement("img", {src: this.props.user.avatar, this.props.user.username, "  ", React.createElement("img", {src: this.props.user.avatar,
alt: "User Avatar", alt: "User Avatar",

39
public/js/helper.js Normal file
View File

@ -0,0 +1,39 @@
"use strict";
// Helper Methods
var rankVotes = function (votes, candidates) {
var initial = candidates.reduce(function (acc, candidate) {
acc[candidate.id] = 0;
return acc;
}, {});
var scores = votes.reduce(function (acc, id) {
if (acc[id] !== undefined) {
acc[id]++;
}
return acc;
}, initial);
var rank = [];
for (var id in scores) {
if (scores.hasOwnProperty(id)) {
rank.push({
id: parseInt(id, 10),
count: scores[id]
});
}
}
return rank.sort(function (a, b) {
return b.count - a.count;
}).map(function (tally) {
return tally.id
}).map(function (id) {
return candidates.reduce(function (acc, candidate) {
if (candidate.id === id) return candidate;
return acc;
});
});
};

View File

@ -18,4 +18,5 @@
<script src="/js/socket.io-1.3.5.js"></script> <script src="/js/socket.io-1.3.5.js"></script>
<script src="/js/theme.js"></script> <script src="/js/theme.js"></script>
<script src="/js/react-0.13.3.js"></script> <script src="/js/react-0.13.3.js"></script>
<script src="/js/helper.js"></script>
</head> </head>