functions.js 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. import { useState } from "react";
  2. /*
  3. Executes before Render
  4. */
  5. export const useConstructor = (callBack = () => { }) => {
  6. const [hasBeenCalled, setHasBeenCalled] = useState(false);
  7. if (hasBeenCalled) return;
  8. callBack();
  9. setHasBeenCalled(true);
  10. }
  11. const _MS_PER_SECOND = 1000;
  12. const _MS_PER_MINUTE = _MS_PER_SECOND * 60;
  13. const _MS_PER_HOUR = _MS_PER_MINUTE * 60;
  14. const _MS_PER_DAY = _MS_PER_HOUR * 24;
  15. const _MS_PER_MONTH = _MS_PER_DAY * 31;
  16. const _MS_PER_YEAR = _MS_PER_MONTH * 12;
  17. export const capitalize = (str) => str.charAt(0).toUpperCase() + str.substring(1, str.length).toLowerCase()
  18. export const getDifferenceInDates = (startDate, endDate) => {
  19. var diff = Math.floor(startDate.getTime() - endDate.getTime());
  20. return {
  21. "year": Math.floor(diff / _MS_PER_YEAR),
  22. "month": Math.floor(diff / _MS_PER_MONTH),
  23. "day": Math.floor(diff / _MS_PER_DAY),
  24. "minute": Math.floor(diff / _MS_PER_MINUTE),
  25. "second": Math.floor(diff / _MS_PER_SECOND),
  26. }
  27. }
  28. export const getTimestamp = (iso_date_str) => {
  29. let diffObj = getDifferenceInDates(new Date(), new Date(iso_date_str))
  30. var result = "Timestamp Not Found"
  31. for (const key of Object.keys(diffObj)) {
  32. if (diffObj[key] > 0) {
  33. result = `${diffObj[key]} ${capitalize(key)}${ diffObj > 1 ? "s" : ""} ago`
  34. break
  35. }
  36. }
  37. return result
  38. }
  39. const _getMonth = (index) => {
  40. const months = {
  41. 0: "January",
  42. 1: "Febraury",
  43. 2: "March",
  44. 3: "April",
  45. 4: "May",
  46. 5: "June",
  47. 6: "July",
  48. 7: "August",
  49. 8: "September",
  50. 9: "October",
  51. 10: "November",
  52. 11: "December"
  53. }
  54. if (Object.hasOwn(months, index)) {
  55. return months[index]
  56. } else {
  57. return "Month Not Found"
  58. }
  59. }
  60. export const getDate = (iso_date_str) => {
  61. let date = new Date(iso_date_str)
  62. return `${date.getDate()} ${_getMonth(date.getMonth())} ${date.getFullYear()}`
  63. }