functions.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. import { useState } from "react";
  2. import { Share } from "react-native";
  3. /**
  4. * Custom Hook to only be executed at Initial Mount. Similar to componentDidMount Lifecycle Method.
  5. * @param {Function} callBack - Callback Function to be executed
  6. * @return {null}
  7. */
  8. export const useConstructor = (callBack = () => { }) => {
  9. const [hasBeenCalled, setHasBeenCalled] = useState(false);
  10. if (hasBeenCalled) return;
  11. callBack();
  12. setHasBeenCalled(true);
  13. }
  14. /**
  15. * Datetime Constants
  16. */
  17. const _MS_PER_SECOND = 1000;
  18. const _MS_PER_MINUTE = _MS_PER_SECOND * 60;
  19. const _MS_PER_HOUR = _MS_PER_MINUTE * 60;
  20. const _MS_PER_DAY = _MS_PER_HOUR * 24;
  21. const _MS_PER_MONTH = _MS_PER_DAY * 31;
  22. const _MS_PER_YEAR = _MS_PER_MONTH * 12;
  23. /**
  24. * Capitilize String.
  25. * @param {string} str - Text String
  26. * @return {string} Capitalized String.
  27. */
  28. export const capitalize = (str) => str.charAt(0).toUpperCase() + str.substring(1, str.length).toLowerCase()
  29. /**
  30. * Get Difference betweenn two dates.
  31. * @param {Date} startDate - Start Date
  32. * @param {Date} endDate - End Date
  33. * @return {object} Returns differences in years,months, days, hours, minutes and seconds .
  34. */
  35. export const getDifferenceInDates = (startDate, endDate) => {
  36. var diff = Math.floor(startDate.getTime() - endDate.getTime());
  37. return {
  38. "year": Math.floor(diff / _MS_PER_YEAR),
  39. "month": Math.floor(diff / _MS_PER_MONTH),
  40. "day": Math.floor(diff / _MS_PER_DAY),
  41. "hour": Math.floor(diff / _MS_PER_HOUR),
  42. "minute": Math.floor(diff / _MS_PER_MINUTE),
  43. "second": Math.floor(diff / _MS_PER_SECOND),
  44. }
  45. }
  46. /**
  47. * get Humanized Timestamp.
  48. * @param {string} isoTimestamp - ISO String for Timestamp
  49. * @return {string} Humanized Timestamp
  50. */
  51. export const getTimestamp = (isoTimestamp) => {
  52. let diffObj = getDifferenceInDates(new Date(), new Date(isoTimestamp))
  53. var result = "Timestamp Not Found"
  54. for (const key of Object.keys(diffObj)) {
  55. if (diffObj[key] > 0) {
  56. result = `${diffObj[key]} ${capitalize(key)}${diffObj[key] > 1 ? "s" : ""} ago`
  57. break
  58. }
  59. }
  60. return result
  61. }
  62. /**
  63. * Get Month Name.
  64. * @param {string} index - Month Index Number.
  65. * @return {string} Month Name
  66. */
  67. const _getMonth = (index) => {
  68. const months = {
  69. 0: "January",
  70. 1: "Febraury",
  71. 2: "March",
  72. 3: "April",
  73. 4: "May",
  74. 5: "June",
  75. 6: "July",
  76. 7: "August",
  77. 8: "September",
  78. 9: "October",
  79. 10: "November",
  80. 11: "December"
  81. }
  82. if (Object.hasOwn(months, index)) {
  83. return months[index]
  84. } else {
  85. return "Month Not Found"
  86. }
  87. /**
  88. * Get Humanized DateTime.
  89. * @param {string} isoTimestamp - ISO String for Timestamp.
  90. * @return {string} Humanized Date String
  91. */}
  92. export const getDate = (isoTimestamp) => {
  93. let date = new Date(isoTimestamp)
  94. return `${date.getDate()} ${_getMonth(date.getMonth())} ${date.getFullYear()}`
  95. }
  96. /**
  97. * Checks if Email is valid or not.
  98. * @param {string} email - Email to be Validated
  99. * @return {boolean}.
  100. * For the Email Regex, Refer: {@link https://regex101.com/r/sI6yF5/1}
  101. */
  102. export const validateEmail = (email) => {
  103. const emailRegex = "/^([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x22([^\x0d\x22\x5c\x80-\xff]|\x5c[\x00-\x7f])*\x22)(\x2e([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x22([^\x0d\x22\x5c\x80-\xff]|\x5c[\x00-\x7f])*\x22))*\x40([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x5b([^\x0d\x5b-\x5d\x80-\xff]|\x5c[\x00-\x7f])*\x5d)(\x2e([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x5b([^\x0d\x5b-\x5d\x80-\xff]|\x5c[\x00-\x7f])*\x5d))*$/"
  104. return String(email).match(emailRegex)
  105. }
  106. /**
  107. * Navigate to News Detail Page.
  108. * @param {any} navigation - Navigation Prop
  109. * @param {String} article_id - Article ID
  110. * @param {String} article_slug - Article Slug
  111. * @return {null}.
  112. */
  113. export const navigateToArticle = (navigation, article_id, article_slug) => {
  114. navigation.push("NewsDetailPage", { slug: article_slug, id: article_id })
  115. navigation.navigate("NewsDetailPage", { slug: article_slug, id: article_id })
  116. }
  117. /**
  118. * Navigate to List View Page with Topic Type and Type.
  119. * @param {any} navigation - Navigation Prop
  120. * @param {any} topic_type - Topic Type
  121. * @param {any} topic - Topic
  122. * @return {null}.
  123. */
  124. export const navigateToListViewPage = (navigation, topic_type, topic) => {
  125. navigation.navigate("NewsListPage", { type: topic_type, title: topic } )
  126. }
  127. /**
  128. * Navigate to Home Page.
  129. * @param {any} navigation - Navigation Prop
  130. * @return {null}.
  131. */
  132. export const navigateToHomePage = (navigation) => {
  133. navigation.navigate("MainPage")
  134. }
  135. /**
  136. * Sharing Function to share data across other apps.
  137. * @param {object} myOptions - Parameters for Sharing Modal.
  138. * @return {null}.
  139. */
  140. export const onShare = async (myOptions) => {
  141. try {
  142. await Share.share(myOptions);
  143. } catch (error) {
  144. alert(error.message);
  145. }
  146. };