⚠️ Please note:This repository is considered deprecated. Ongoing development is taking place here: Planningpoker.
- run backend:
./backend $ sbt run
- run frontend:
./frontend $ npm start
-
Poker room
-
User (name)
-
Moderator (name)
-
Estimation round (id, results)
-
Estimation (user, value)
-
Estimation result
Clients keep a list of all other users currently estimating. The event when a user joins or leaves the room is broadcasted to all other participants.
ParticipantJoined (name)
ParticipantLeft (name)
When a new user joins into a room already filled with users, he/she receives information about all other users through multiple ParticipantJoined
events.
Any user is able to send a RequestStartEstimation (task)
event to the server which is then broadcasted to all clients. Each user is also able to ask for the estimation result (RequestShowResult
).
Clients send their estimation to the server. The server collects incoming estimations and broadcasts the result once all users in the rooms have submitted their estimation.
Estimation is done by sending a StartEstimation (task)
event to the clients. All clients, also those that connect in the meanwhile receive this event after they have received the user list. When the task to estimate is set on client side, they show buttons that represent the different complexities.
When all clients have submitted their estimations, the server broadcasts the result to all clients (clients receive the estimations of all other users).
-
Start new estimation round
- Moderator decides to move on to the next story and asks users to estimate.
-
Send estimation
- User sends his/her estimation for the current story.
-
Request to reveal result
- A user requests to reveal the users' estimations.
-
Restart estimation
- Moderator resets all estimations and asks users to estimate again.