mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-14 17:00:32 +00:00
39 lines
736 B
JavaScript
39 lines
736 B
JavaScript
"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;
|
|
});
|
|
});
|
|
};
|