main.js 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. import '../styles/counter.css'
  2. import { Countdown } from './counter.js'
  3. import { fetchObject } from './fetch.js';
  4. // select elements
  5. const app = document.querySelector('.countdown-timer');
  6. const message = document.querySelector('.message');
  7. const heading = document.querySelector('h1');
  8. const api = new fetchObject("http://localhost:8000/counter", app.dataset.id);
  9. const counter = await api.getCounter();
  10. heading.innerText = counter.name;
  11. const buttonInit = document.querySelector('#init');
  12. const buttonStart = document.querySelector('#start');
  13. // Get the new year
  14. const getEndTime = () => {
  15. return new Date(Date.parse(counter.endTime));
  16. };
  17. const format = (t) => {
  18. return t < 10 ? '0' + t : t;
  19. };
  20. const render = (time) => {
  21. app.innerHTML = `
  22. <div class="count-down">
  23. <div class="timer hidden">
  24. <h2 class="days">${format(time.days)}</h2>
  25. <small>Days</small>
  26. </div>
  27. <div class="timer">
  28. <h2 class="hours">${format(time.hours)}</h2>
  29. <small>Hours</small>
  30. </div>
  31. <div class="timer">
  32. <h2 class="minutes">${format(time.minutes)}</h2>
  33. <small>Minutes</small>
  34. </div>
  35. <div class="timer">
  36. <h2 class="seconds">${format(time.seconds)}</h2>
  37. <small>Seconds</small>
  38. </div>
  39. </div>
  40. `;
  41. };
  42. const showMessage = () => {
  43. message.innerHTML = "Le compteur est terminé";
  44. app.innerHTML = '';
  45. //heading.style.display = 'none';
  46. };
  47. const hideMessage = () => {
  48. message.innerHTML = '';
  49. heading.style.display = 'block';
  50. };
  51. const complete = () => {
  52. console.log("Fonction complete() du main")
  53. showMessage();
  54. };
  55. const countdownTimer = new Countdown(
  56. getEndTime(),
  57. render,
  58. complete
  59. );