Source: scripts/summary.js

  1. /**
  2. * Initializes the page by loading the necessary components and rendering
  3. * the contact list.
  4. *
  5. * @returns {Promise<void>} A promise that resolves when the page has been
  6. * initialized.
  7. */
  8. async function init() {
  9. showGreeting();
  10. loadComponents();
  11. await getTodosFromData("guest");
  12. populateCounters(globalTodos);
  13. updateGreeting();
  14. }
  15. /**
  16. * Loads all necessary components into the page.
  17. *
  18. * Currently, this function only loads the header and navbar components.
  19. * @returns {void}
  20. */
  21. function loadComponents() {
  22. loadHeader();
  23. loadNavbar();
  24. }
  25. /**
  26. * Loads the header component into the element with the id "header".
  27. * If no element with that id exists, this function does nothing.
  28. * @returns {void}
  29. */
  30. function loadHeader() {
  31. const header = document.getElementById("header");
  32. if (!header) return;
  33. header.innerHTML = getHeaderTemplate();
  34. }
  35. /**
  36. * Loads the navbar component into the element with the id "navbar".
  37. * If no element with that id exists, this function does nothing.
  38. *
  39. * @returns {void}
  40. */
  41. function loadNavbar() {
  42. const navbar = document.getElementById("navbar");
  43. if (!navbar) return;
  44. navbar.innerHTML = getNavbarTemplate("summary");
  45. }
  46. /**
  47. * Populates the DOM elements with counts of different types of todos and user information.
  48. *
  49. * @param {Array} todos - An array of todo objects, each containing state, priority, and other properties.
  50. */
  51. function populateCounters(todos) {
  52. updateTodoCounts(todos);
  53. updateUserInfo();
  54. updateDueDate(todos);
  55. }
  56. /**
  57. * Updates the count of todos in different states.
  58. *
  59. * @param {Array} todos - An array of todo objects.
  60. */
  61. function updateTodoCounts(todos) {
  62. document.getElementById("todo-count").textContent = countTodos(todos, "todo");
  63. document.getElementById("done-count").textContent = countTodos(todos, "done");
  64. document.getElementById("progress-count").textContent = countTodos(todos, "progress");
  65. document.getElementById("feedback-count").textContent = countTodos(todos, "feedback");
  66. document.getElementById("urgent-count").textContent = countUrgentTodos(todos);
  67. document.getElementById("total-count").textContent = todos.length;
  68. }
  69. /**
  70. * Updates the user information displayed on the page.
  71. */
  72. function updateUserInfo() {
  73. var nameElement = document.getElementById("name");
  74. if (currentUser.name.toLowerCase() !== "guest") {
  75. nameElement.textContent = currentUser.name;
  76. } else {
  77. nameElement.textContent = "";
  78. }
  79. }
  80. /**
  81. * Updates the due date display and its label based on the earliest deadline of urgent todos.
  82. *
  83. * @param {Array} todos - An array of todo objects.
  84. */
  85. function updateDueDate(todos) {
  86. const { date } = findEarliestDeadline(todos);
  87. const dueDateElement = document.getElementById("due-date");
  88. const deadlineTextElement = document.getElementById("deadline-text");
  89. if (date !== "No urgent tasks") {
  90. updateDueDateText(dueDateElement, date);
  91. } else {
  92. clearDueDate(dueDateElement, deadlineTextElement);
  93. }
  94. }
  95. /**
  96. * Updates the text and color of the due date element and the label text.
  97. *
  98. * @param {HTMLElement} dueDateElement - The DOM element for displaying the due date.
  99. * @param {Date} date - The date of the earliest deadline.
  100. */
  101. function updateDueDateText(dueDateElement, date) {
  102. dueDateElement.textContent = date.toLocaleDateString("en-US", {
  103. year: "numeric",
  104. month: "long",
  105. day: "numeric",
  106. });
  107. const today = new Date();
  108. today.setHours(0, 0, 0, 0);
  109. const isPastDue = date < today;
  110. dueDateElement.classList.toggle("overdue", isPastDue);
  111. dueDateElement.classList.toggle("upcoming", !isPastDue);
  112. const deadlineTextElement = document.getElementById("deadline-text");
  113. deadlineTextElement.textContent = isPastDue ? "Overdue Deadline" : "Upcoming Deadline";
  114. }
  115. /**
  116. * Clears the due date display and resets the label text.
  117. *
  118. * @param {HTMLElement} dueDateElement - The DOM element for displaying the due date.
  119. * @param {HTMLElement} deadlineTextElement - The DOM element for displaying the label text.
  120. */
  121. function clearDueDate(dueDateElement, deadlineTextElement) {
  122. dueDateElement.textContent = "No urgent Deadline";
  123. dueDateElement.classList.remove("overdue", "upcoming");
  124. deadlineTextElement.textContent = "";
  125. }
  126. /**
  127. * Finds the earliest deadline among urgent todos that are not marked as done.
  128. *
  129. * @param {Array} todos - An array of todo objects.
  130. * @returns {Object} An object containing the earliest deadline as a Date object.
  131. */
  132. function findEarliestDeadline(todos) {
  133. const urgentTasks = todos.filter((todo) => todo.priority === "high" && todo.state !== "done");
  134. if (urgentTasks.length > 0) {
  135. const earliest = urgentTasks.reduce((earliest, todo) => {
  136. const todoDate = new Date(todo.date);
  137. return todoDate < earliest ? todoDate : earliest;
  138. }, new Date(urgentTasks[0].date));
  139. return {
  140. date: earliest,
  141. };
  142. }
  143. return { date: "No urgent tasks" };
  144. }
  145. /**
  146. * Counts the number of todos in a specific state.
  147. *
  148. * @param {Array} todos - An array of todo objects.
  149. * @param {string} state - The state of the todos to count (e.g., "todo", "done").
  150. * @returns {number} The count of todos in the specified state.
  151. */
  152. function countTodos(todos, state) {
  153. return todos.filter((todo) => todo.state === state).length;
  154. }
  155. /**
  156. * Counts the number of urgent todos that are not marked as done.
  157. *
  158. * @param {Array} todos - An array of todo objects.
  159. * @returns {number} The count of urgent todos (high priority) that are not done.
  160. */
  161. function countUrgentTodos(todos) {
  162. return todos.filter((todo) => todo.priority === "high" && todo.state !== "done").length;
  163. }
  164. /**
  165. * Updates the greeting message based on the current time of day.
  166. */
  167. function updateGreeting() {
  168. const greetingElement = document.getElementById("greeting");
  169. const currentTime = new Date();
  170. const currentHour = currentTime.getHours();
  171. let greeting;
  172. if (currentHour < 12) {
  173. greeting = "Good morning";
  174. } else if (currentHour < 18) {
  175. greeting = "Good afternoon";
  176. } else {
  177. greeting = "Good evening";
  178. }
  179. if (currentUser.name.toLowerCase() !== "guest") {
  180. greeting += ",";
  181. }
  182. greetingElement.textContent = greeting;
  183. }
  184. /**
  185. * Displays the greeting container if the screen width is less than 1080 pixels.
  186. * The container is visible for 2 seconds, and then fades out.
  187. * During the animation, body scrolling is disabled.
  188. *
  189. * @function showGreeting
  190. */
  191. function showGreeting() {
  192. const greetingContainer = document.getElementById("greeting-container");
  193. if (window.innerWidth < 1080) {
  194. greetingContainer.classList.add("show");
  195. setTimeout(() => {
  196. greetingContainer.classList.add("fade-out");
  197. setTimeout(() => {
  198. greetingContainer.style.display = "none";
  199. document.body.style.overflow = "";
  200. }, 600);
  201. }, 2000);
  202. document.body.style.overflow = "hidden";
  203. }
  204. }