Add support for adding score
This commit is contained in:
parent
623b53d542
commit
bcda8f8a4f
@ -179,3 +179,21 @@ figure.participant figcaption {
|
|||||||
#participants {
|
#participants {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.score {
|
||||||
|
display: inline-block;
|
||||||
|
background: green;
|
||||||
|
border-radius: 100px;
|
||||||
|
color: white;
|
||||||
|
padding: 4px 9px;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.participant button {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.participant.buzzed button {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
30
room.js
30
room.js
@ -129,4 +129,32 @@ function closeRoom(roomId) {
|
|||||||
delete rooms[roomId];
|
delete rooms[roomId];
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {getOrCreateRoom, addParticipant, addParticipantWS, addAudienceWS, buzz, removeParticipant, reset, closeRoom}
|
function updateScore(roomId, participantId, points) {
|
||||||
|
let room = getOrCreateRoom(roomId);
|
||||||
|
let participant = room.participants.find(p => p.participantId === participantId);
|
||||||
|
if (participant) {
|
||||||
|
if (!participant.score) participant.score = 0;
|
||||||
|
|
||||||
|
participant.score += points;
|
||||||
|
|
||||||
|
participant.ws.send(JSON.stringify({
|
||||||
|
type: "score",
|
||||||
|
score: participant.score,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
room.audience.forEach(ws => {
|
||||||
|
ws.send(JSON.stringify({
|
||||||
|
type: "participants",
|
||||||
|
participants: room.participants.map(p => { return {
|
||||||
|
participantId: p.participantId,
|
||||||
|
character: p.character,
|
||||||
|
participantName: p.participantName,
|
||||||
|
score: p.score,
|
||||||
|
active: p.active,
|
||||||
|
}})
|
||||||
|
}));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {getOrCreateRoom, addParticipant, addParticipantWS, addAudienceWS, buzz, removeParticipant, reset, closeRoom, updateScore}
|
||||||
|
@ -72,6 +72,8 @@ wss.on('connection', (ws, req) => {
|
|||||||
message = JSON.parse(message);
|
message = JSON.parse(message);
|
||||||
if (message.type === "reset") {
|
if (message.type === "reset") {
|
||||||
rooms.reset(roomId);
|
rooms.reset(roomId);
|
||||||
|
} else if (message.type === "point") {
|
||||||
|
rooms.updateScore(roomId, message.participantId, message.points);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -51,6 +51,11 @@
|
|||||||
<figure class="participant ${!p.active ? 'hide': ''}" id="p-${p.participantId}">
|
<figure class="participant ${!p.active ? 'hide': ''}" id="p-${p.participantId}">
|
||||||
<img src="${p.character}" />
|
<img src="${p.character}" />
|
||||||
<figcaption>${p.participantName}</figcaption>
|
<figcaption>${p.participantName}</figcaption>
|
||||||
|
<div>
|
||||||
|
<button onclick="updateScore('${p.participantId}', -1)">-1</button>
|
||||||
|
<div class="score">${p.score || 0}</div>
|
||||||
|
<button onclick="updateScore('${p.participantId}', 1)">+1</button>
|
||||||
|
</div>
|
||||||
</figure>
|
</figure>
|
||||||
`;
|
`;
|
||||||
});
|
});
|
||||||
@ -63,6 +68,14 @@
|
|||||||
window.navigator.vibrate(500);
|
window.navigator.vibrate(500);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateScore(participantId, points) {
|
||||||
|
socket.send(JSON.stringify({
|
||||||
|
type: "point",
|
||||||
|
participantId,
|
||||||
|
points,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
document.getElementById('resetBuzzers').addEventListener('click', function() {
|
document.getElementById('resetBuzzers').addEventListener('click', function() {
|
||||||
socket.send(JSON.stringify({
|
socket.send(JSON.stringify({
|
||||||
type: "reset"
|
type: "reset"
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
<h2>{{name}} <img src="{{character}}"/></h2>
|
<h2>{{name}} <img src="{{character}}"/> <div class="score">0</div></h2>
|
||||||
|
|
||||||
<button id="buzzer">
|
<button id="buzzer">
|
||||||
BUZZ
|
BUZZ
|
||||||
@ -47,6 +47,8 @@
|
|||||||
reset();
|
reset();
|
||||||
} else if (msg.type === "close") {
|
} else if (msg.type === "close") {
|
||||||
roomClosed();
|
roomClosed();
|
||||||
|
} else if (msg.type === "score") {
|
||||||
|
document.querySelector('.score').innerText = msg.score;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user