index.ts 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. import { toast } from 'react-toastify';
  2. import FileSaver from 'file-saver';
  3. const format = (a: string) => a.split(' ').join('').trim()
  4. const firstLetter = (word: string) => word.slice(0, 1).toUpperCase()
  5. const slicedWord = (word: string, max: number, from: number = 0) =>
  6. word.length < max ? word.slice(from) : word.slice(from, max)
  7. const timeStamp = (updatedAt: string) => new Date(updatedAt).toLocaleString("en-US", {
  8. year:'numeric',
  9. month: 'short',
  10. day: 'numeric',
  11. hour: 'numeric',
  12. minute: '2-digit',
  13. })
  14. const timeStampEU = (updatedAt: string) => new Date(updatedAt).toLocaleString('en-GB', {
  15. year:'numeric',
  16. month: 'short',
  17. day: 'numeric',
  18. hour: 'numeric',
  19. minute: '2-digit',
  20. })
  21. const timeStampMessage = (updatedAt: string) => new Date(updatedAt).toLocaleString('en-GB',{
  22. hour: 'numeric',
  23. minute: '2-digit',
  24. })
  25. const timeStampFilter = (updatedAt: string) => new Date(updatedAt).toLocaleString("en-US", {
  26. year:'numeric',
  27. month: 'short',
  28. day: 'numeric',
  29. })
  30. const playNotification = (url:string) => {
  31. const audio = new Audio(url);
  32. audio.play();
  33. }
  34. const notification = (name: string, onClick: () => void) => {
  35. toast(`🦄new message from ${name}`, {
  36. position: "bottom-right",
  37. autoClose: 5000,
  38. hideProgressBar: false,
  39. closeOnClick: true,
  40. pauseOnHover: true,
  41. draggable: true,
  42. progress: undefined,
  43. onClick
  44. });
  45. }
  46. const copied = (text:string) => {
  47. toast(`${text} Copied`, {
  48. position: "bottom-right",
  49. autoClose: 2000,
  50. hideProgressBar: false,
  51. closeOnClick: true,
  52. pauseOnHover: true,
  53. draggable: true,
  54. progress: undefined,
  55. });
  56. }
  57. const playNotificationWithoutPermission = (url: string) => {
  58. const w:any = window
  59. const audioContext: any = new (w.AudioContext || w.webkitAudioContext)();
  60. navigator.mediaDevices
  61. .getUserMedia({ audio: true })
  62. .then(() => {
  63. const source = audioContext.createBufferSource();
  64. source.addEventListener('ended', () => {
  65. source.stop();
  66. audioContext.close();
  67. });
  68. const request = new XMLHttpRequest();
  69. request.open('GET', url, true);
  70. request.responseType = 'arraybuffer';
  71. request.onload = () => {
  72. audioContext.decodeAudioData(
  73. request.response,
  74. (buffer:any) => {
  75. source.buffer = buffer;
  76. source.connect(audioContext.destination);
  77. source.start();
  78. },
  79. (e:any) => {
  80. console.log('Error with decoding audio data' + e.message);
  81. });
  82. }
  83. request.send();
  84. })
  85. .catch(reason => console.error(`Audio permissions denied: ${reason}`));
  86. }
  87. const handleDownload = async (url: string, type: string) => await FileSaver.saveAs(url, type);
  88. const handleSort = (sortBy: string, data: any,sort:boolean): any => {
  89. return [...data].sort(function (a: any, b: any) {
  90. if (sort?a[sortBy] > b[sortBy]:a[sortBy] < b[sortBy]) {
  91. return -1;
  92. } else if (sort?a[sortBy] < b[sortBy]:a[sortBy] > b[sortBy]) {
  93. return 1;
  94. }
  95. return 0;
  96. });
  97. };
  98. export {
  99. format,
  100. firstLetter,
  101. slicedWord,
  102. timeStamp,
  103. timeStampEU,
  104. timeStampMessage,
  105. timeStampFilter,
  106. playNotification,
  107. notification,
  108. copied,
  109. playNotificationWithoutPermission,
  110. handleDownload,
  111. handleSort
  112. }