Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/imvbhargav/pomodorotimer

freeCodeCamp's Front End Development Libraries Project, Pomodoro Timer.
https://github.com/imvbhargav/pomodorotimer

freecodecamp freecodecamp-project javascript pomodoro-timer react

Last synced: about 23 hours ago
JSON representation

freeCodeCamp's Front End Development Libraries Project, Pomodoro Timer.

Awesome Lists containing this project

README

        

# freeCodeCamp's Front End Development Libraries Certification Project.
## 25 + 5 Clock (Pomodoro Timer)
### Test Conditions passed: 29/29
#### Technology Stack
1. You can use any mix of HTML, JavaScript, CSS, Bootstrap, SASS, React, Redux, and jQuery to complete this project. You should use a frontend framework (like React for example) because this section is about learning frontend frameworks. Additional technologies not listed above are not recommended and using them is at your own risk. We are looking at supporting other frontend frameworks like Angular and Vue, but they are not currently supported. We will accept and try to fix all issue reports that use the suggested technology stack for this project. Happy coding!
#### Content
1. I can see an element with id="break-label" that contains a string (e.g. “Break Length”).
2. I can see an element with id="session-label" that contains a string (e.g. "Session Length”).
3. I can see two clickable elements with corresponding IDs: id="break-decrement" and id="session-decrement".
4. I can see two clickable elements with corresponding IDs: id="break-increment" and id="session-increment".
5. I can see an element, with corresponding id="break-length", which by default (on load) displays a value of 5.
6. I can see an element, with corresponding id="session-length", which by default displays a value of 25.
7. I can see an element, with corresponding id="timer-label", that contains a string indicating a session is initialized (e.g. "Session").
8. I can see an element with corresponding id="time-left". NOTE: Paused or running, the value in this field should always be displayed in mm:ss format (i.e. 25:00). 683ms
9. I can see a clickable element with corresponding id="start_stop".
10. I can see a clickable element with corresponding id="reset".
#### Timer
1. When I click the element with the id of "reset", any running timer should be stopped, the value within id="break-length" should return to 5, the value within id="session-length" should return to 25, and the element with id="time-left" should reset to it's default state. 8821ms
2. When I click the element with the id of "break-decrement", the value within id="break-length" decrements by a value of 1, and I can see the updated value. 236ms
3. When I click the element with the id of "break-increment", the value within id="break-length" increments by a value of 1, and I can see the updated value. 239ms
4. When I click the element with the id of "session-decrement", the value within id="session-length" decrements by a value of 1, and I can see the updated value. 238ms
5. When I click the element with the id of "session-increment", the value within id="session-length" increments by a value of 1, and I can see the updated value. 251ms
6. I should not be able to set a session or break length to <= 0. 595ms
7. I should not be able to set a session or break length to > 60. 713ms
8. When I first click the element with id="start_stop", the timer should begin running from the value currently displayed in id="session-length", even if the value has been incremented or decremented from the original value of 25.
9. If the timer is running, the element with the id of "time-left" should display the remaining time in mm:ss format (decrementing by a value of 1 and updating the display every 1000ms). 1501ms
10. If the timer is running and I click the element with id="start_stop", the countdown should pause. 3022ms
11. If the timer is paused and I click the element with id="start_stop", the countdown should resume running from the point at which it was paused. 4531ms
12. When a session countdown reaches zero (NOTE: timer MUST reach 00:00), and a new countdown begins, the element with the id of "timer-label" should display a string indicating a break has begun. 3778ms
13. When a session countdown reaches zero (NOTE: timer MUST reach 00:00), a new break countdown should begin, counting down from the value currently displayed in the id="break-length" element. 3780ms
14. When a break countdown reaches zero (NOTE: timer MUST reach 00:00), and a new countdown begins, the element with the id of "timer-label" should display a string indicating a session has begun. 7508ms
15. When a break countdown reaches zero (NOTE: timer MUST reach 00:00), a new session countdown should begin, counting down from the value currently displayed in the id="session-length" element. 7540ms
#### Audio
1. When a countdown reaches zero (NOTE: timer MUST reach 00:00), a sound indicating that time is up should play. This should utilize an HTML5 tag and have a corresponding id="beep". 3947ms
2. The audio element with id="beep" must be 1 second or longer.
3. The audio element with id of "beep" must stop playing and be rewound to the beginning when the element with the id of "reset" is clicked.

***
[Deployed on Vercel](https://pomodoro-timer-by-imvbhargav.vercel.app)