@magmamath/students-features 1.3.23-rc.2 → 1.3.23-rc.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (306) hide show
  1. package/dist/commonjs/features/translation/constants.js +11 -0
  2. package/dist/commonjs/features/translation/constants.js.map +1 -0
  3. package/dist/commonjs/features/translation/helpers.js +60 -0
  4. package/dist/commonjs/features/translation/helpers.js.map +1 -0
  5. package/dist/commonjs/features/translation/index.js +105 -0
  6. package/dist/commonjs/features/translation/index.js.map +1 -0
  7. package/dist/commonjs/features/translation/model/TranslationModel.js +122 -0
  8. package/dist/commonjs/features/translation/model/TranslationModel.js.map +1 -0
  9. package/dist/commonjs/features/translation/model/TranslationPreprocessor.js +142 -0
  10. package/dist/commonjs/features/translation/model/TranslationPreprocessor.js.map +1 -0
  11. package/dist/commonjs/features/translation/model/TranslationService.js +112 -0
  12. package/dist/commonjs/features/translation/model/TranslationService.js.map +1 -0
  13. package/dist/commonjs/features/translation/preserve/wordsToPreserve.js +314 -0
  14. package/dist/commonjs/features/translation/preserve/wordsToPreserve.js.map +1 -0
  15. package/dist/commonjs/features/translation/providers/google/GoogleTranslationProvider.js +50 -0
  16. package/dist/commonjs/features/translation/providers/google/GoogleTranslationProvider.js.map +1 -0
  17. package/dist/commonjs/features/translation/providers/google/supportedLanguages.js +230 -0
  18. package/dist/commonjs/features/translation/providers/google/supportedLanguages.js.map +1 -0
  19. package/dist/commonjs/features/translation/providers/google.types.js +2 -0
  20. package/dist/commonjs/features/translation/providers/google.types.js.map +1 -0
  21. package/dist/commonjs/features/translation/providers/translation.interface.js +49 -0
  22. package/dist/commonjs/features/translation/providers/translation.interface.js.map +1 -0
  23. package/dist/commonjs/features/translation/types.js +2 -0
  24. package/dist/commonjs/features/translation/types.js.map +1 -0
  25. package/dist/commonjs/features/voice/index.js +4 -4
  26. package/dist/commonjs/features/voice/index.js.map +1 -1
  27. package/dist/commonjs/features/voice/playing/components/VoiceTranscriptContent.js +44 -0
  28. package/dist/commonjs/features/voice/playing/components/VoiceTranscriptContent.js.map +1 -0
  29. package/dist/commonjs/features/voice/playing/components/VoiceTranscription.js +107 -0
  30. package/dist/commonjs/features/voice/playing/components/VoiceTranscription.js.map +1 -0
  31. package/dist/commonjs/features/voice/playing/components/VoiceTranscriptionCollapsible.js +66 -0
  32. package/dist/commonjs/features/voice/playing/components/VoiceTranscriptionCollapsible.js.map +1 -0
  33. package/dist/commonjs/features/voice/playing/components/VoiceTranscriptionHeaderActions.js +58 -0
  34. package/dist/commonjs/features/voice/playing/components/VoiceTranscriptionHeaderActions.js.map +1 -0
  35. package/dist/commonjs/features/voice/playing/hooks/{useVoiceTranscriptionsDropdown.js → useDropdownAnimation.js} +8 -7
  36. package/dist/commonjs/features/voice/playing/hooks/useDropdownAnimation.js.map +1 -0
  37. package/dist/commonjs/features/voice/playing/hooks/useVoiceTranscriptionController.js +128 -0
  38. package/dist/commonjs/features/voice/playing/hooks/useVoiceTranscriptionController.js.map +1 -0
  39. package/dist/commonjs/features/voice/playing/model/{VoiceTranscriptionsDropdown.model.js → Dropdown.model.js} +4 -4
  40. package/dist/commonjs/features/voice/playing/model/Dropdown.model.js.map +1 -0
  41. package/dist/commonjs/features/voice/playing/model/PlaybackController.js +183 -0
  42. package/dist/commonjs/features/voice/playing/model/PlaybackController.js.map +1 -0
  43. package/dist/commonjs/features/voice/playing/model/Player.model.js +24 -1
  44. package/dist/commonjs/features/voice/playing/model/Player.model.js.map +1 -1
  45. package/dist/commonjs/features/voice/playing/model/{VoiceTranscriptionsCollection.js → TranscriptionsCollection.js} +4 -4
  46. package/dist/commonjs/features/voice/playing/model/TranscriptionsCollection.js.map +1 -0
  47. package/dist/commonjs/features/voice/playing/model/TranscriptionsDownloader.model.js +82 -0
  48. package/dist/commonjs/features/voice/playing/model/TranscriptionsDownloader.model.js.map +1 -0
  49. package/dist/commonjs/features/voice/playing/model/Translation.model.js +62 -0
  50. package/dist/commonjs/features/voice/playing/model/Translation.model.js.map +1 -0
  51. package/dist/commonjs/features/voice/playing/model/VoiceFileDownloader.model.js +2 -2
  52. package/dist/commonjs/features/voice/playing/model/VoiceFileDownloader.model.js.map +1 -1
  53. package/dist/commonjs/features/voice/playing/model/VoicePlayer.model.js +46 -172
  54. package/dist/commonjs/features/voice/playing/model/VoicePlayer.model.js.map +1 -1
  55. package/dist/commonjs/features/voice/types.js.map +1 -1
  56. package/dist/commonjs/index.js +12 -0
  57. package/dist/commonjs/index.js.map +1 -1
  58. package/dist/module/features/translation/constants.js +7 -0
  59. package/dist/module/features/translation/constants.js.map +1 -0
  60. package/dist/module/features/translation/helpers.js +53 -0
  61. package/dist/module/features/translation/helpers.js.map +1 -0
  62. package/dist/module/features/translation/index.js +12 -0
  63. package/dist/module/features/translation/index.js.map +1 -0
  64. package/dist/module/features/translation/model/TranslationModel.js +117 -0
  65. package/dist/module/features/translation/model/TranslationModel.js.map +1 -0
  66. package/dist/module/features/translation/model/TranslationPreprocessor.js +137 -0
  67. package/dist/module/features/translation/model/TranslationPreprocessor.js.map +1 -0
  68. package/dist/module/features/translation/model/TranslationService.js +107 -0
  69. package/dist/module/features/translation/model/TranslationService.js.map +1 -0
  70. package/dist/module/features/translation/preserve/wordsToPreserve.js +310 -0
  71. package/dist/module/features/translation/preserve/wordsToPreserve.js.map +1 -0
  72. package/dist/module/features/translation/providers/google/GoogleTranslationProvider.js +45 -0
  73. package/dist/module/features/translation/providers/google/GoogleTranslationProvider.js.map +1 -0
  74. package/dist/module/features/translation/providers/google/supportedLanguages.js +225 -0
  75. package/dist/module/features/translation/providers/google/supportedLanguages.js.map +1 -0
  76. package/dist/module/features/translation/providers/google.types.js +2 -0
  77. package/dist/module/features/translation/providers/google.types.js.map +1 -0
  78. package/dist/module/features/translation/providers/translation.interface.js +44 -0
  79. package/dist/module/features/translation/providers/translation.interface.js.map +1 -0
  80. package/dist/module/features/translation/types.js +2 -0
  81. package/dist/module/features/translation/types.js.map +1 -0
  82. package/dist/module/features/voice/index.js +1 -1
  83. package/dist/module/features/voice/index.js.map +1 -1
  84. package/dist/module/features/voice/playing/components/VoiceTranscriptContent.js +38 -0
  85. package/dist/module/features/voice/playing/components/VoiceTranscriptContent.js.map +1 -0
  86. package/dist/module/features/voice/playing/components/VoiceTranscription.js +101 -0
  87. package/dist/module/features/voice/playing/components/VoiceTranscription.js.map +1 -0
  88. package/dist/module/features/voice/playing/components/VoiceTranscriptionCollapsible.js +58 -0
  89. package/dist/module/features/voice/playing/components/VoiceTranscriptionCollapsible.js.map +1 -0
  90. package/dist/module/features/voice/playing/components/VoiceTranscriptionHeaderActions.js +52 -0
  91. package/dist/module/features/voice/playing/components/VoiceTranscriptionHeaderActions.js.map +1 -0
  92. package/dist/module/features/voice/playing/hooks/{useVoiceTranscriptionsDropdown.js → useDropdownAnimation.js} +6 -5
  93. package/dist/module/features/voice/playing/hooks/useDropdownAnimation.js.map +1 -0
  94. package/dist/module/features/voice/playing/hooks/useVoiceTranscriptionController.js +123 -0
  95. package/dist/module/features/voice/playing/hooks/useVoiceTranscriptionController.js.map +1 -0
  96. package/dist/module/features/voice/playing/model/{VoiceTranscriptionsDropdown.model.js → Dropdown.model.js} +2 -2
  97. package/dist/module/features/voice/playing/model/Dropdown.model.js.map +1 -0
  98. package/dist/module/features/voice/playing/model/PlaybackController.js +178 -0
  99. package/dist/module/features/voice/playing/model/PlaybackController.js.map +1 -0
  100. package/dist/module/features/voice/playing/model/Player.model.js +24 -1
  101. package/dist/module/features/voice/playing/model/Player.model.js.map +1 -1
  102. package/dist/module/features/voice/playing/model/{VoiceTranscriptionsCollection.js → TranscriptionsCollection.js} +2 -2
  103. package/dist/module/features/voice/playing/model/TranscriptionsCollection.js.map +1 -0
  104. package/dist/module/features/voice/playing/model/TranscriptionsDownloader.model.js +77 -0
  105. package/dist/module/features/voice/playing/model/TranscriptionsDownloader.model.js.map +1 -0
  106. package/dist/module/features/voice/playing/model/Translation.model.js +57 -0
  107. package/dist/module/features/voice/playing/model/Translation.model.js.map +1 -0
  108. package/dist/module/features/voice/playing/model/VoiceFileDownloader.model.js +2 -2
  109. package/dist/module/features/voice/playing/model/VoiceFileDownloader.model.js.map +1 -1
  110. package/dist/module/features/voice/playing/model/VoicePlayer.model.js +48 -174
  111. package/dist/module/features/voice/playing/model/VoicePlayer.model.js.map +1 -1
  112. package/dist/module/features/voice/types.js.map +1 -1
  113. package/dist/module/index.js +1 -0
  114. package/dist/module/index.js.map +1 -1
  115. package/dist/typescript/commonjs/features/translation/constants.d.ts +5 -0
  116. package/dist/typescript/commonjs/features/translation/constants.d.ts.map +1 -0
  117. package/dist/typescript/commonjs/features/translation/helpers.d.ts +9 -0
  118. package/dist/typescript/commonjs/features/translation/helpers.d.ts.map +1 -0
  119. package/dist/typescript/commonjs/features/translation/index.d.ts +12 -0
  120. package/dist/typescript/commonjs/features/translation/index.d.ts.map +1 -0
  121. package/dist/typescript/commonjs/features/translation/model/TranslationModel.d.ts +33 -0
  122. package/dist/typescript/commonjs/features/translation/model/TranslationModel.d.ts.map +1 -0
  123. package/dist/typescript/commonjs/features/translation/model/TranslationPreprocessor.d.ts +34 -0
  124. package/dist/typescript/commonjs/features/translation/model/TranslationPreprocessor.d.ts.map +1 -0
  125. package/dist/typescript/commonjs/features/translation/model/TranslationService.d.ts +40 -0
  126. package/dist/typescript/commonjs/features/translation/model/TranslationService.d.ts.map +1 -0
  127. package/dist/typescript/commonjs/features/translation/preserve/wordsToPreserve.d.ts +3 -0
  128. package/dist/typescript/commonjs/features/translation/preserve/wordsToPreserve.d.ts.map +1 -0
  129. package/dist/typescript/commonjs/features/translation/providers/google/GoogleTranslationProvider.d.ts +17 -0
  130. package/dist/typescript/commonjs/features/translation/providers/google/GoogleTranslationProvider.d.ts.map +1 -0
  131. package/dist/typescript/commonjs/features/translation/providers/google/supportedLanguages.d.ts +209 -0
  132. package/dist/typescript/commonjs/features/translation/providers/google/supportedLanguages.d.ts.map +1 -0
  133. package/dist/typescript/commonjs/features/translation/providers/google.types.d.ts +15 -0
  134. package/dist/typescript/commonjs/features/translation/providers/google.types.d.ts.map +1 -0
  135. package/dist/typescript/commonjs/features/translation/providers/translation.interface.d.ts +30 -0
  136. package/dist/typescript/commonjs/features/translation/providers/translation.interface.d.ts.map +1 -0
  137. package/dist/typescript/commonjs/features/translation/types.d.ts +27 -0
  138. package/dist/typescript/commonjs/features/translation/types.d.ts.map +1 -0
  139. package/dist/typescript/commonjs/features/voice/index.d.ts +2 -1
  140. package/dist/typescript/commonjs/features/voice/index.d.ts.map +1 -1
  141. package/dist/typescript/commonjs/features/voice/playing/components/VoiceTranscriptContent.d.ts +8 -0
  142. package/dist/typescript/commonjs/features/voice/playing/components/VoiceTranscriptContent.d.ts.map +1 -0
  143. package/dist/typescript/{module/features/voice/playing/components/VoiceTranscriptionsDropdown.d.ts → commonjs/features/voice/playing/components/VoiceTranscription.d.ts} +3 -4
  144. package/dist/typescript/commonjs/features/voice/playing/components/VoiceTranscription.d.ts.map +1 -0
  145. package/dist/typescript/commonjs/features/voice/playing/components/VoiceTranscriptionCollapsible.d.ts +10 -0
  146. package/dist/typescript/commonjs/features/voice/playing/components/VoiceTranscriptionCollapsible.d.ts.map +1 -0
  147. package/dist/typescript/commonjs/features/voice/playing/components/VoiceTranscriptionHeaderActions.d.ts +12 -0
  148. package/dist/typescript/commonjs/features/voice/playing/components/VoiceTranscriptionHeaderActions.d.ts.map +1 -0
  149. package/dist/typescript/{module/features/voice/playing/hooks/useVoiceTranscriptionsDropdown.d.ts → commonjs/features/voice/playing/hooks/useDropdownAnimation.d.ts} +3 -3
  150. package/dist/typescript/commonjs/features/voice/playing/hooks/useDropdownAnimation.d.ts.map +1 -0
  151. package/dist/typescript/commonjs/features/voice/playing/hooks/useVoiceTranscriptionController.d.ts +30 -0
  152. package/dist/typescript/commonjs/features/voice/playing/hooks/useVoiceTranscriptionController.d.ts.map +1 -0
  153. package/dist/typescript/{module/features/voice/playing/model/VoiceTranscriptionsDropdown.model.d.ts → commonjs/features/voice/playing/model/Dropdown.model.d.ts} +2 -2
  154. package/dist/typescript/commonjs/features/voice/playing/model/Dropdown.model.d.ts.map +1 -0
  155. package/dist/typescript/commonjs/features/voice/playing/model/PlaybackController.d.ts +28 -0
  156. package/dist/typescript/commonjs/features/voice/playing/model/PlaybackController.d.ts.map +1 -0
  157. package/dist/typescript/commonjs/features/voice/playing/model/Player.model.d.ts +3 -0
  158. package/dist/typescript/commonjs/features/voice/playing/model/Player.model.d.ts.map +1 -1
  159. package/dist/typescript/{module/features/voice/playing/model/VoiceTranscriptionsCollection.d.ts → commonjs/features/voice/playing/model/TranscriptionsCollection.d.ts} +2 -2
  160. package/dist/typescript/commonjs/features/voice/playing/model/TranscriptionsCollection.d.ts.map +1 -0
  161. package/dist/typescript/commonjs/features/voice/playing/model/TranscriptionsDownloader.model.d.ts +19 -0
  162. package/dist/typescript/commonjs/features/voice/playing/model/TranscriptionsDownloader.model.d.ts.map +1 -0
  163. package/dist/typescript/commonjs/features/voice/playing/model/Translation.model.d.ts +25 -0
  164. package/dist/typescript/commonjs/features/voice/playing/model/Translation.model.d.ts.map +1 -0
  165. package/dist/typescript/commonjs/features/voice/playing/model/VoiceFileDownloader.model.d.ts +2 -2
  166. package/dist/typescript/commonjs/features/voice/playing/model/VoiceFileDownloader.model.d.ts.map +1 -1
  167. package/dist/typescript/commonjs/features/voice/playing/model/VoicePlayer.model.d.ts +18 -18
  168. package/dist/typescript/commonjs/features/voice/playing/model/VoicePlayer.model.d.ts.map +1 -1
  169. package/dist/typescript/commonjs/features/voice/types.d.ts +5 -1
  170. package/dist/typescript/commonjs/features/voice/types.d.ts.map +1 -1
  171. package/dist/typescript/commonjs/index.d.ts +1 -0
  172. package/dist/typescript/commonjs/index.d.ts.map +1 -1
  173. package/dist/typescript/module/features/translation/constants.d.ts +5 -0
  174. package/dist/typescript/module/features/translation/constants.d.ts.map +1 -0
  175. package/dist/typescript/module/features/translation/helpers.d.ts +9 -0
  176. package/dist/typescript/module/features/translation/helpers.d.ts.map +1 -0
  177. package/dist/typescript/module/features/translation/index.d.ts +12 -0
  178. package/dist/typescript/module/features/translation/index.d.ts.map +1 -0
  179. package/dist/typescript/module/features/translation/model/TranslationModel.d.ts +33 -0
  180. package/dist/typescript/module/features/translation/model/TranslationModel.d.ts.map +1 -0
  181. package/dist/typescript/module/features/translation/model/TranslationPreprocessor.d.ts +34 -0
  182. package/dist/typescript/module/features/translation/model/TranslationPreprocessor.d.ts.map +1 -0
  183. package/dist/typescript/module/features/translation/model/TranslationService.d.ts +40 -0
  184. package/dist/typescript/module/features/translation/model/TranslationService.d.ts.map +1 -0
  185. package/dist/typescript/module/features/translation/preserve/wordsToPreserve.d.ts +3 -0
  186. package/dist/typescript/module/features/translation/preserve/wordsToPreserve.d.ts.map +1 -0
  187. package/dist/typescript/module/features/translation/providers/google/GoogleTranslationProvider.d.ts +17 -0
  188. package/dist/typescript/module/features/translation/providers/google/GoogleTranslationProvider.d.ts.map +1 -0
  189. package/dist/typescript/module/features/translation/providers/google/supportedLanguages.d.ts +209 -0
  190. package/dist/typescript/module/features/translation/providers/google/supportedLanguages.d.ts.map +1 -0
  191. package/dist/typescript/module/features/translation/providers/google.types.d.ts +15 -0
  192. package/dist/typescript/module/features/translation/providers/google.types.d.ts.map +1 -0
  193. package/dist/typescript/module/features/translation/providers/translation.interface.d.ts +30 -0
  194. package/dist/typescript/module/features/translation/providers/translation.interface.d.ts.map +1 -0
  195. package/dist/typescript/module/features/translation/types.d.ts +27 -0
  196. package/dist/typescript/module/features/translation/types.d.ts.map +1 -0
  197. package/dist/typescript/module/features/voice/index.d.ts +2 -1
  198. package/dist/typescript/module/features/voice/index.d.ts.map +1 -1
  199. package/dist/typescript/module/features/voice/playing/components/VoiceTranscriptContent.d.ts +8 -0
  200. package/dist/typescript/module/features/voice/playing/components/VoiceTranscriptContent.d.ts.map +1 -0
  201. package/dist/typescript/{commonjs/features/voice/playing/components/VoiceTranscriptionsDropdown.d.ts → module/features/voice/playing/components/VoiceTranscription.d.ts} +3 -4
  202. package/dist/typescript/module/features/voice/playing/components/VoiceTranscription.d.ts.map +1 -0
  203. package/dist/typescript/module/features/voice/playing/components/VoiceTranscriptionCollapsible.d.ts +10 -0
  204. package/dist/typescript/module/features/voice/playing/components/VoiceTranscriptionCollapsible.d.ts.map +1 -0
  205. package/dist/typescript/module/features/voice/playing/components/VoiceTranscriptionHeaderActions.d.ts +12 -0
  206. package/dist/typescript/module/features/voice/playing/components/VoiceTranscriptionHeaderActions.d.ts.map +1 -0
  207. package/dist/typescript/{commonjs/features/voice/playing/hooks/useVoiceTranscriptionsDropdown.d.ts → module/features/voice/playing/hooks/useDropdownAnimation.d.ts} +3 -3
  208. package/dist/typescript/module/features/voice/playing/hooks/useDropdownAnimation.d.ts.map +1 -0
  209. package/dist/typescript/module/features/voice/playing/hooks/useVoiceTranscriptionController.d.ts +30 -0
  210. package/dist/typescript/module/features/voice/playing/hooks/useVoiceTranscriptionController.d.ts.map +1 -0
  211. package/dist/typescript/{commonjs/features/voice/playing/model/VoiceTranscriptionsDropdown.model.d.ts → module/features/voice/playing/model/Dropdown.model.d.ts} +2 -2
  212. package/dist/typescript/module/features/voice/playing/model/Dropdown.model.d.ts.map +1 -0
  213. package/dist/typescript/module/features/voice/playing/model/PlaybackController.d.ts +28 -0
  214. package/dist/typescript/module/features/voice/playing/model/PlaybackController.d.ts.map +1 -0
  215. package/dist/typescript/module/features/voice/playing/model/Player.model.d.ts +3 -0
  216. package/dist/typescript/module/features/voice/playing/model/Player.model.d.ts.map +1 -1
  217. package/dist/typescript/{commonjs/features/voice/playing/model/VoiceTranscriptionsCollection.d.ts → module/features/voice/playing/model/TranscriptionsCollection.d.ts} +2 -2
  218. package/dist/typescript/module/features/voice/playing/model/TranscriptionsCollection.d.ts.map +1 -0
  219. package/dist/typescript/module/features/voice/playing/model/TranscriptionsDownloader.model.d.ts +19 -0
  220. package/dist/typescript/module/features/voice/playing/model/TranscriptionsDownloader.model.d.ts.map +1 -0
  221. package/dist/typescript/module/features/voice/playing/model/Translation.model.d.ts +25 -0
  222. package/dist/typescript/module/features/voice/playing/model/Translation.model.d.ts.map +1 -0
  223. package/dist/typescript/module/features/voice/playing/model/VoiceFileDownloader.model.d.ts +2 -2
  224. package/dist/typescript/module/features/voice/playing/model/VoiceFileDownloader.model.d.ts.map +1 -1
  225. package/dist/typescript/module/features/voice/playing/model/VoicePlayer.model.d.ts +18 -18
  226. package/dist/typescript/module/features/voice/playing/model/VoicePlayer.model.d.ts.map +1 -1
  227. package/dist/typescript/module/features/voice/types.d.ts +5 -1
  228. package/dist/typescript/module/features/voice/types.d.ts.map +1 -1
  229. package/dist/typescript/module/index.d.ts +1 -0
  230. package/dist/typescript/module/index.d.ts.map +1 -1
  231. package/package.json +28 -1
  232. package/src/features/translation/constants.ts +4 -0
  233. package/src/features/translation/helpers.ts +63 -0
  234. package/src/features/translation/index.ts +30 -0
  235. package/src/features/translation/model/TranslationModel.ts +174 -0
  236. package/src/features/translation/model/TranslationPreprocessor.ts +171 -0
  237. package/src/features/translation/model/TranslationService.ts +148 -0
  238. package/src/features/translation/preserve/wordsToPreserve.ts +87 -0
  239. package/src/features/translation/providers/google/GoogleTranslationProvider.ts +50 -0
  240. package/src/features/translation/providers/google/supportedLanguages.ts +229 -0
  241. package/src/features/translation/providers/google.types.ts +16 -0
  242. package/src/features/translation/providers/translation.interface.ts +63 -0
  243. package/src/features/translation/types.ts +30 -0
  244. package/src/features/voice/index.ts +2 -1
  245. package/src/features/voice/playing/components/VoiceTranscriptContent.tsx +37 -0
  246. package/src/features/voice/playing/components/VoiceTranscription.tsx +117 -0
  247. package/src/features/voice/playing/components/VoiceTranscriptionCollapsible.tsx +59 -0
  248. package/src/features/voice/playing/components/VoiceTranscriptionHeaderActions.tsx +61 -0
  249. package/src/features/voice/playing/hooks/{useVoiceTranscriptionsDropdown.ts → useDropdownAnimation.ts} +5 -5
  250. package/src/features/voice/playing/hooks/useVoiceTranscriptionController.ts +171 -0
  251. package/src/features/voice/playing/model/{VoiceTranscriptionsDropdown.model.ts → Dropdown.model.ts} +2 -2
  252. package/src/features/voice/playing/model/PlaybackController.ts +213 -0
  253. package/src/features/voice/playing/model/Player.model.ts +26 -1
  254. package/src/features/voice/playing/model/{VoiceTranscriptionsCollection.ts → TranscriptionsCollection.ts} +1 -1
  255. package/src/features/voice/playing/model/TranscriptionsDownloader.model.ts +88 -0
  256. package/src/features/voice/playing/model/Translation.model.ts +75 -0
  257. package/src/features/voice/playing/model/VoiceFileDownloader.model.ts +2 -2
  258. package/src/features/voice/playing/model/VoicePlayer.model.ts +57 -194
  259. package/src/features/voice/types.ts +10 -0
  260. package/src/index.ts +1 -0
  261. package/dist/commonjs/features/voice/playing/components/VoiceTranscriptionsDropdown.js +0 -251
  262. package/dist/commonjs/features/voice/playing/components/VoiceTranscriptionsDropdown.js.map +0 -1
  263. package/dist/commonjs/features/voice/playing/components/VoiceTranscriptionsDropdownItem.js +0 -109
  264. package/dist/commonjs/features/voice/playing/components/VoiceTranscriptionsDropdownItem.js.map +0 -1
  265. package/dist/commonjs/features/voice/playing/hooks/useVoiceTranscriptionsDropdown.js.map +0 -1
  266. package/dist/commonjs/features/voice/playing/hooks/useVoiceTranscriptionsDropdownItemAnimation.js +0 -34
  267. package/dist/commonjs/features/voice/playing/hooks/useVoiceTranscriptionsDropdownItemAnimation.js.map +0 -1
  268. package/dist/commonjs/features/voice/playing/model/TranscriptionsDownloaderModel.js +0 -66
  269. package/dist/commonjs/features/voice/playing/model/TranscriptionsDownloaderModel.js.map +0 -1
  270. package/dist/commonjs/features/voice/playing/model/VoiceTranscriptionsCollection.js.map +0 -1
  271. package/dist/commonjs/features/voice/playing/model/VoiceTranscriptionsDropdown.model.js.map +0 -1
  272. package/dist/module/features/voice/playing/components/VoiceTranscriptionsDropdown.js +0 -244
  273. package/dist/module/features/voice/playing/components/VoiceTranscriptionsDropdown.js.map +0 -1
  274. package/dist/module/features/voice/playing/components/VoiceTranscriptionsDropdownItem.js +0 -103
  275. package/dist/module/features/voice/playing/components/VoiceTranscriptionsDropdownItem.js.map +0 -1
  276. package/dist/module/features/voice/playing/hooks/useVoiceTranscriptionsDropdown.js.map +0 -1
  277. package/dist/module/features/voice/playing/hooks/useVoiceTranscriptionsDropdownItemAnimation.js +0 -29
  278. package/dist/module/features/voice/playing/hooks/useVoiceTranscriptionsDropdownItemAnimation.js.map +0 -1
  279. package/dist/module/features/voice/playing/model/TranscriptionsDownloaderModel.js +0 -61
  280. package/dist/module/features/voice/playing/model/TranscriptionsDownloaderModel.js.map +0 -1
  281. package/dist/module/features/voice/playing/model/VoiceTranscriptionsCollection.js.map +0 -1
  282. package/dist/module/features/voice/playing/model/VoiceTranscriptionsDropdown.model.js.map +0 -1
  283. package/dist/typescript/commonjs/features/voice/playing/components/VoiceTranscriptionsDropdown.d.ts.map +0 -1
  284. package/dist/typescript/commonjs/features/voice/playing/components/VoiceTranscriptionsDropdownItem.d.ts +0 -12
  285. package/dist/typescript/commonjs/features/voice/playing/components/VoiceTranscriptionsDropdownItem.d.ts.map +0 -1
  286. package/dist/typescript/commonjs/features/voice/playing/hooks/useVoiceTranscriptionsDropdown.d.ts.map +0 -1
  287. package/dist/typescript/commonjs/features/voice/playing/hooks/useVoiceTranscriptionsDropdownItemAnimation.d.ts +0 -11
  288. package/dist/typescript/commonjs/features/voice/playing/hooks/useVoiceTranscriptionsDropdownItemAnimation.d.ts.map +0 -1
  289. package/dist/typescript/commonjs/features/voice/playing/model/TranscriptionsDownloaderModel.d.ts +0 -15
  290. package/dist/typescript/commonjs/features/voice/playing/model/TranscriptionsDownloaderModel.d.ts.map +0 -1
  291. package/dist/typescript/commonjs/features/voice/playing/model/VoiceTranscriptionsCollection.d.ts.map +0 -1
  292. package/dist/typescript/commonjs/features/voice/playing/model/VoiceTranscriptionsDropdown.model.d.ts.map +0 -1
  293. package/dist/typescript/module/features/voice/playing/components/VoiceTranscriptionsDropdown.d.ts.map +0 -1
  294. package/dist/typescript/module/features/voice/playing/components/VoiceTranscriptionsDropdownItem.d.ts +0 -12
  295. package/dist/typescript/module/features/voice/playing/components/VoiceTranscriptionsDropdownItem.d.ts.map +0 -1
  296. package/dist/typescript/module/features/voice/playing/hooks/useVoiceTranscriptionsDropdown.d.ts.map +0 -1
  297. package/dist/typescript/module/features/voice/playing/hooks/useVoiceTranscriptionsDropdownItemAnimation.d.ts +0 -11
  298. package/dist/typescript/module/features/voice/playing/hooks/useVoiceTranscriptionsDropdownItemAnimation.d.ts.map +0 -1
  299. package/dist/typescript/module/features/voice/playing/model/TranscriptionsDownloaderModel.d.ts +0 -15
  300. package/dist/typescript/module/features/voice/playing/model/TranscriptionsDownloaderModel.d.ts.map +0 -1
  301. package/dist/typescript/module/features/voice/playing/model/VoiceTranscriptionsCollection.d.ts.map +0 -1
  302. package/dist/typescript/module/features/voice/playing/model/VoiceTranscriptionsDropdown.model.d.ts.map +0 -1
  303. package/src/features/voice/playing/components/VoiceTranscriptionsDropdown.tsx +0 -302
  304. package/src/features/voice/playing/components/VoiceTranscriptionsDropdownItem.tsx +0 -128
  305. package/src/features/voice/playing/hooks/useVoiceTranscriptionsDropdownItemAnimation.ts +0 -40
  306. package/src/features/voice/playing/model/TranscriptionsDownloaderModel.ts +0 -80
@@ -0,0 +1,123 @@
1
+ "use strict";
2
+
3
+ import { useUnit } from 'effector-react';
4
+ import { useCallback, useEffect, useMemo, useRef } from 'react';
5
+ import { useTranslation } from 'react-i18next';
6
+ import { NO_AUDIO_BE_MESSAGE } from "../../constants.js";
7
+ import { getActiveAttempt } from "../../helpers.js";
8
+ import { resolveGoogleLanguageCode } from "../../../translation/providers/google/supportedLanguages.js";
9
+ import { useText } from "../../../../i18n/i18n.js";
10
+ export const useVoiceTranscriptionController = ({
11
+ model,
12
+ answers,
13
+ attemptOffset,
14
+ attemptsCount,
15
+ problemId
16
+ }) => {
17
+ const t = useText();
18
+ const {
19
+ i18n
20
+ } = useTranslation();
21
+ const [playerState, isLoadingTranscripts, isTranslationActive, translations, isTranslating] = useUnit([model.$playerState, model.loader.loadTranscriptForAttempt.pending, model.translation.$isActive, model.translation.$translations, model.translation.translate.pending]);
22
+ const activeAttempt = getActiveAttempt(attemptOffset, attemptsCount);
23
+ const answersKey = useMemo(() => answers.map(a => `${a._id}:${a.audioFileId ?? ''}`).join(','), [answers]);
24
+ const activeAudioFileId = activeAttempt !== null ? answers?.[activeAttempt - 1]?.audioFileId : undefined;
25
+ const hasActiveAudio = activeAudioFileId !== undefined;
26
+ const anyAttemptHasAudio = useMemo(() => answers.some(a => !!a.audioFileId), [answers]);
27
+ const cachedEntry = activeAudioFileId ? model.loader.getCachedTranscript(activeAudioFileId) : undefined;
28
+ const activeTranscript = cachedEntry?.text ?? null;
29
+ const hasTranscriptText = !!activeTranscript && activeTranscript !== NO_AUDIO_BE_MESSAGE;
30
+ const isActiveTranscriptLoading = isLoadingTranscripts && hasActiveAudio && !activeTranscript;
31
+ const isSourceSameAsTarget = !!cachedEntry?.language && resolveGoogleLanguageCode(cachedEntry.language) === resolveGoogleLanguageCode(i18n.language);
32
+ const canTranslate = hasTranscriptText && !isSourceSameAsTarget;
33
+ const cachedTranslation = activeAttempt !== null ? translations[activeAttempt] : undefined;
34
+ const showTranslation = isTranslationActive && canTranslate;
35
+ const isTranslationLoading = showTranslation && !cachedTranslation && isTranslating;
36
+ const displayText = showTranslation ? cachedTranslation ?? activeTranscript : hasTranscriptText ? activeTranscript : t('voice.transcriptNotAvailable');
37
+
38
+ // Lifecycle effects
39
+ const answersRef = useRef(answers);
40
+ answersRef.current = answers;
41
+ useEffect(() => {
42
+ model.reinitializePlayer();
43
+ return () => {
44
+ model.stopAudio();
45
+ model.dropdown.setExpanded(false);
46
+ };
47
+ }, [model]);
48
+ useEffect(() => {
49
+ model.dropdown.setExpanded(false);
50
+ model.resetPlayer();
51
+ }, [problemId]);
52
+ useEffect(() => {
53
+ if (answersRef.current.some(a => a.audioFileId)) {
54
+ model.initializeWithAudios(answersRef.current);
55
+ }
56
+ }, [model, answersKey]);
57
+ useEffect(() => {
58
+ model.stopAudio();
59
+ model.setCurrentAttempt(activeAttempt);
60
+ if (activeAttempt !== null) {
61
+ model.loader.loadTranscriptForAttempt(activeAttempt);
62
+ }
63
+ }, [model, activeAttempt, answersKey]);
64
+
65
+ // Auto-activate translation once per (problemId, activeAttempt) when translatable
66
+ const autoActivatedAttempts = useRef(new Set());
67
+ useEffect(() => {
68
+ autoActivatedAttempts.current.clear();
69
+ }, [problemId]);
70
+ useEffect(() => {
71
+ if (canTranslate && activeAttempt !== null && !autoActivatedAttempts.current.has(activeAttempt)) {
72
+ autoActivatedAttempts.current.add(activeAttempt);
73
+ model.translation.setActive(true);
74
+ }
75
+ }, [canTranslate, activeAttempt, model]);
76
+
77
+ // Trigger translate when we should show translation but don't have it cached
78
+ useEffect(() => {
79
+ if (showTranslation && activeAttempt !== null && !cachedTranslation && !isTranslating) {
80
+ model.translation.translate({
81
+ attemptNumber: activeAttempt,
82
+ targetLanguage: i18n.language
83
+ });
84
+ }
85
+ }, [showTranslation, activeAttempt, cachedTranslation, isTranslating, i18n.language, model]);
86
+
87
+ // Auto-open dropdown when a translation successfully completes
88
+ useEffect(() => {
89
+ return model.translation.translate.doneData.watch(result => {
90
+ if (result) {
91
+ model.dropdown.setExpanded(true);
92
+ }
93
+ });
94
+ }, [model]);
95
+ const onPlayPress = useCallback(() => {
96
+ if (activeAttempt) {
97
+ model.translation.setActive(false);
98
+ model.togglePlayPause(activeAttempt);
99
+ }
100
+ }, [model, activeAttempt]);
101
+ const onTranslationToggle = useCallback(() => {
102
+ model.translation.toggle();
103
+ model.dropdown.setExpanded(true);
104
+ }, [model]);
105
+ return {
106
+ display: {
107
+ text: displayText,
108
+ isLoading: isActiveTranscriptLoading || isTranslationLoading
109
+ },
110
+ flags: {
111
+ playerState: playerState,
112
+ hasActiveAudio,
113
+ anyAttemptHasAudio,
114
+ canTranslate,
115
+ isTranslationActive
116
+ },
117
+ actions: {
118
+ onPlayPress,
119
+ onTranslationToggle
120
+ }
121
+ };
122
+ };
123
+ //# sourceMappingURL=useVoiceTranscriptionController.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["useUnit","useCallback","useEffect","useMemo","useRef","useTranslation","NO_AUDIO_BE_MESSAGE","getActiveAttempt","resolveGoogleLanguageCode","useText","useVoiceTranscriptionController","model","answers","attemptOffset","attemptsCount","problemId","t","i18n","playerState","isLoadingTranscripts","isTranslationActive","translations","isTranslating","$playerState","loader","loadTranscriptForAttempt","pending","translation","$isActive","$translations","translate","activeAttempt","answersKey","map","a","_id","audioFileId","join","activeAudioFileId","undefined","hasActiveAudio","anyAttemptHasAudio","some","cachedEntry","getCachedTranscript","activeTranscript","text","hasTranscriptText","isActiveTranscriptLoading","isSourceSameAsTarget","language","canTranslate","cachedTranslation","showTranslation","isTranslationLoading","displayText","answersRef","current","reinitializePlayer","stopAudio","dropdown","setExpanded","resetPlayer","initializeWithAudios","setCurrentAttempt","autoActivatedAttempts","Set","clear","has","add","setActive","attemptNumber","targetLanguage","doneData","watch","result","onPlayPress","togglePlayPause","onTranslationToggle","toggle","display","isLoading","flags","actions"],"sourceRoot":"../../../../../../src","sources":["features/voice/playing/hooks/useVoiceTranscriptionController.ts"],"mappings":"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","ignoreList":[]}
@@ -1,10 +1,10 @@
1
1
  "use strict";
2
2
 
3
3
  import { createEvent, restore } from 'effector';
4
- export class VoiceTranscriptionsDropdownModel {
4
+ export class DropdownModel {
5
5
  toggleExpand = createEvent();
6
6
  setExpanded = createEvent();
7
7
  reset = createEvent();
8
8
  $isExpanded = restore(this.setExpanded, false).on(this.toggleExpand, state => !state).reset(this.reset);
9
9
  }
10
- //# sourceMappingURL=VoiceTranscriptionsDropdown.model.js.map
10
+ //# sourceMappingURL=Dropdown.model.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["createEvent","restore","DropdownModel","toggleExpand","setExpanded","reset","$isExpanded","on","state"],"sourceRoot":"../../../../../../src","sources":["features/voice/playing/model/Dropdown.model.ts"],"mappings":";;AAAA,SAASA,WAAW,EAAEC,OAAO,QAAQ,UAAU;AAE/C,OAAO,MAAMC,aAAa,CAAC;EACTC,YAAY,GAAGH,WAAW,CAAC,CAAC;EAC5BI,WAAW,GAAGJ,WAAW,CAAU,CAAC;EACpCK,KAAK,GAAGL,WAAW,CAAC,CAAC;EAErBM,WAAW,GAAGL,OAAO,CAAC,IAAI,CAACG,WAAW,EAAE,KAAK,CAAC,CAC3DG,EAAE,CAAC,IAAI,CAACJ,YAAY,EAAGK,KAAK,IAAK,CAACA,KAAK,CAAC,CACxCH,KAAK,CAAC,IAAI,CAACA,KAAK,CAAC;AACtB","ignoreList":[]}
@@ -0,0 +1,178 @@
1
+ "use strict";
2
+
3
+ import { createEffect } from 'effector';
4
+ import { PlayerState } from "./Player.model.js";
5
+ export class PlaybackController {
6
+ currentPlayingAttempt = null;
7
+ shouldPreventPlayback = false;
8
+ constructor(deps) {
9
+ this.collection = deps.collection;
10
+ this.player = deps.player;
11
+ this.downloader = deps.downloader;
12
+ this.player.playbackFinished.watch(() => this.clearCurrentAttempt());
13
+ }
14
+ togglePlayPause = attemptNumber => {
15
+ const playerState = this.player.$playerState.getState();
16
+ if (this.currentPlayingAttempt === attemptNumber && playerState === PlayerState.PLAYING) {
17
+ this.player.pause();
18
+ } else {
19
+ this.handlePlayAttempt(attemptNumber);
20
+ }
21
+ };
22
+ preloadAudio = createEffect(async attemptNumber => {
23
+ const item = this.collection.get(attemptNumber);
24
+ if (!item) return;
25
+ if (this.collection.hasAudio(attemptNumber)) {
26
+ this.primePlayerIfIdle(attemptNumber);
27
+ return;
28
+ }
29
+ if (item.audioDownloadPromise) {
30
+ try {
31
+ await item.audioDownloadPromise;
32
+ } catch {}
33
+ this.primePlayerIfIdle(attemptNumber);
34
+ return;
35
+ }
36
+ try {
37
+ await this.downloadAudio(attemptNumber);
38
+ this.primePlayerIfIdle(attemptNumber);
39
+ } catch (error) {
40
+ if (error instanceof Error && error.name === 'AbortError') return;
41
+ console.error('Audio preload error:', error);
42
+ }
43
+ });
44
+ primePlayerIfIdle(attemptNumber) {
45
+ if (this.player.$playerState.getState() !== PlayerState.IDLE) return;
46
+ if (this.currentPlayingAttempt !== null) return;
47
+ const audioUri = this.collection.get(attemptNumber)?.audioUri;
48
+ if (!audioUri) return;
49
+ this.player.prime(audioUri);
50
+ }
51
+ halt() {
52
+ this.shouldPreventPlayback = true;
53
+ this.abortAllDownloads();
54
+ this.player.stop();
55
+ this.clearCurrentAttempt();
56
+ }
57
+ releaseResources() {
58
+ this.collection.getAll().forEach(item => {
59
+ if (item.controller) {
60
+ this.downloader.abortDownload(item.controller);
61
+ }
62
+ if (item.audioUri?.startsWith('blob:')) {
63
+ try {
64
+ URL.revokeObjectURL(item.audioUri);
65
+ } catch (e) {}
66
+ }
67
+ });
68
+ }
69
+ clearCurrentAttempt() {
70
+ this.currentPlayingAttempt = null;
71
+ }
72
+ abortAllDownloads() {
73
+ this.collection.getAll().forEach(item => {
74
+ if (item.controller && item.audioLoading) {
75
+ this.downloader.abortDownload(item.controller);
76
+ this.collection.update(item.attemptNumber, {
77
+ audioLoading: false,
78
+ controller: undefined,
79
+ audioDownloadPromise: undefined
80
+ });
81
+ }
82
+ });
83
+ }
84
+ async downloadAudio(attemptNumber) {
85
+ const item = this.collection.get(attemptNumber);
86
+ if (!item) return;
87
+ const {
88
+ collectionItem,
89
+ downloadPromise
90
+ } = await this.downloader.download({
91
+ audioFileId: item.audioFileId,
92
+ attemptNumber
93
+ });
94
+ this.collection.update(attemptNumber, collectionItem);
95
+ try {
96
+ const result = await downloadPromise;
97
+ this.collection.update(attemptNumber, {
98
+ audioUri: result.uri,
99
+ audioLoading: false,
100
+ audioError: undefined,
101
+ controller: undefined,
102
+ audioDownloadPromise: undefined
103
+ });
104
+ } catch (error) {
105
+ const isAbort = error instanceof Error && error.name === 'AbortError';
106
+ this.collection.update(attemptNumber, {
107
+ audioLoading: false,
108
+ audioError: isAbort ? undefined : error instanceof Error ? error.message : 'Failed to download audio',
109
+ controller: undefined,
110
+ audioDownloadPromise: undefined
111
+ });
112
+ throw error;
113
+ }
114
+ }
115
+ handlePlayAttempt = createEffect(async attemptNumber => {
116
+ this.shouldPreventPlayback = false;
117
+ const item = this.collection.get(attemptNumber);
118
+ if (!item) return;
119
+ if (this.currentPlayingAttempt !== null && this.currentPlayingAttempt !== attemptNumber) {
120
+ this.abortAllDownloads();
121
+ }
122
+ if (this.collection.hasAudio(attemptNumber)) {
123
+ this.playAudioFx(attemptNumber);
124
+ return;
125
+ }
126
+ try {
127
+ this.player.setPlayerState(PlayerState.LOADING);
128
+ if (item.audioDownloadPromise) {
129
+ await item.audioDownloadPromise;
130
+ } else {
131
+ await this.downloadAudio(attemptNumber);
132
+ }
133
+ if (this.shouldPreventPlayback) {
134
+ this.player.setPlayerState(PlayerState.IDLE);
135
+ return;
136
+ }
137
+ this.player.setPlayerState(PlayerState.IDLE);
138
+ this.playAudioFx(attemptNumber);
139
+ } catch (error) {
140
+ if (error instanceof Error && error.name === 'AbortError') {
141
+ this.player.setPlayerState(PlayerState.IDLE);
142
+ return;
143
+ }
144
+ console.error('Audio download error:', error);
145
+ this.player.setPlayerState(PlayerState.IDLE);
146
+ }
147
+ });
148
+ playAudioFx = createEffect(async attemptNumber => {
149
+ if (this.shouldPreventPlayback) return;
150
+ const item = this.collection.get(attemptNumber);
151
+ if (!item?.audioUri) {
152
+ console.warn('No audio URI available for attempt:', attemptNumber);
153
+ return;
154
+ }
155
+ try {
156
+ if (this.currentPlayingAttempt !== null && this.currentPlayingAttempt !== attemptNumber) {
157
+ this.player.player?.remove();
158
+ }
159
+ if (this.currentPlayingAttempt === attemptNumber && this.player.player?.playing) {
160
+ this.player.pause();
161
+ return;
162
+ }
163
+ if (this.currentPlayingAttempt === attemptNumber && !this.player.player?.playing) {
164
+ this.player.resume();
165
+ return;
166
+ }
167
+ this.currentPlayingAttempt = attemptNumber;
168
+ await this.player.play(item.audioUri);
169
+ } catch (error) {
170
+ console.error('Error playing audio:', error);
171
+ this.player.setPlayerState(PlayerState.IDLE);
172
+ this.collection.update(attemptNumber, {
173
+ audioError: error instanceof Error ? error.message : 'Failed to play audio'
174
+ });
175
+ }
176
+ });
177
+ }
178
+ //# sourceMappingURL=PlaybackController.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["createEffect","PlayerState","PlaybackController","currentPlayingAttempt","shouldPreventPlayback","constructor","deps","collection","player","downloader","playbackFinished","watch","clearCurrentAttempt","togglePlayPause","attemptNumber","playerState","$playerState","getState","PLAYING","pause","handlePlayAttempt","preloadAudio","item","get","hasAudio","primePlayerIfIdle","audioDownloadPromise","downloadAudio","error","Error","name","console","IDLE","audioUri","prime","halt","abortAllDownloads","stop","releaseResources","getAll","forEach","controller","abortDownload","startsWith","URL","revokeObjectURL","e","audioLoading","update","undefined","collectionItem","downloadPromise","download","audioFileId","result","uri","audioError","isAbort","message","playAudioFx","setPlayerState","LOADING","warn","remove","playing","resume","play"],"sourceRoot":"../../../../../../src","sources":["features/voice/playing/model/PlaybackController.ts"],"mappings":"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","ignoreList":[]}
@@ -12,6 +12,7 @@ export let PlayerState = /*#__PURE__*/function (PlayerState) {
12
12
  export class PlayerModel {
13
13
  player = createAudioPlayer();
14
14
  stopped = false;
15
+ primedUri = null;
15
16
  reset = createEvent();
16
17
  setPlayerState = createEvent();
17
18
  playbackFinished = createEvent();
@@ -35,11 +36,29 @@ export class PlayerModel {
35
36
  this.stopped = true;
36
37
  if (this.player) {
37
38
  this.player.replace('');
39
+ this.primedUri = null;
38
40
  this.setPlayerState(PlayerState.IDLE);
39
41
  } else {
40
42
  console.warn('Cannot stop: audio player not initialized');
41
43
  }
42
44
  });
45
+ prime = createEffect(uri => {
46
+ if (!this.player) return;
47
+ if (this.primedUri === uri) return;
48
+ this.primedUri = uri;
49
+ this.player.replace(uri);
50
+ });
51
+ seek = createEffect(async seconds => {
52
+ if (!this.player) {
53
+ console.warn('Cannot seek: audio player not initialized');
54
+ return;
55
+ }
56
+ if (!this.player.isLoaded) {
57
+ console.warn('Cannot seek: audio player not loaded');
58
+ return;
59
+ }
60
+ await this.player.seekTo(seconds);
61
+ });
43
62
  resume = createEffect(() => {
44
63
  if (this.player) {
45
64
  this.player.play();
@@ -54,7 +73,10 @@ export class PlayerModel {
54
73
  return;
55
74
  }
56
75
  this.stopped = false;
57
- this.player.replace(uri);
76
+ if (this.primedUri !== uri) {
77
+ this.player.replace(uri);
78
+ this.primedUri = uri;
79
+ }
58
80
  const waitForLoad = () => {
59
81
  if (this.stopped) return;
60
82
  if (this.player && this.player.isLoaded) {
@@ -87,6 +109,7 @@ export class PlayerModel {
87
109
  this.player.release();
88
110
  this.player = null;
89
111
  }
112
+ this.primedUri = null;
90
113
  this.reset();
91
114
  }
92
115
  }
@@ -1 +1 @@
1
- {"version":3,"names":["createEffect","createEvent","restore","createAudioPlayer","setAudioModeAsync","PlayerState","PlayerModel","player","stopped","reset","setPlayerState","playbackFinished","$playerState","IDLE","setupAudioMode","playsInSilentMode","shouldPlayInBackground","interruptionMode","pause","PAUSED","console","warn","stop","replace","resume","play","PLAYING","uri","waitForLoad","isLoaded","unsubscribe","addListener","status","didJustFinish","remove","setTimeout","reinitialize","release","error"],"sourceRoot":"../../../../../../src","sources":["features/voice/playing/model/Player.model.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["createEffect","createEvent","restore","createAudioPlayer","setAudioModeAsync","PlayerState","PlayerModel","player","stopped","primedUri","reset","setPlayerState","playbackFinished","$playerState","IDLE","setupAudioMode","playsInSilentMode","shouldPlayInBackground","interruptionMode","pause","PAUSED","console","warn","stop","replace","prime","uri","seek","seconds","isLoaded","seekTo","resume","play","PLAYING","waitForLoad","unsubscribe","addListener","status","didJustFinish","remove","setTimeout","reinitialize","release","error"],"sourceRoot":"../../../../../../src","sources":["features/voice/playing/model/Player.model.ts"],"mappings":"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","ignoreList":[]}
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- export class VoiceTranscriptionsCollection {
3
+ export class TranscriptionsCollection {
4
4
  collection = new Map();
5
5
  add(attemptNumber, item) {
6
6
  this.collection.set(attemptNumber, item);
@@ -33,4 +33,4 @@ export class VoiceTranscriptionsCollection {
33
33
  return !!item?.audioUri;
34
34
  }
35
35
  }
36
- //# sourceMappingURL=VoiceTranscriptionsCollection.js.map
36
+ //# sourceMappingURL=TranscriptionsCollection.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["TranscriptionsCollection","collection","Map","add","attemptNumber","item","set","update","existingItem","get","delete","getAll","Array","from","values","clear","hasTranscript","transcript","hasAudio","audioUri"],"sourceRoot":"../../../../../../src","sources":["features/voice/playing/model/TranscriptionsCollection.ts"],"mappings":";;AAEA,OAAO,MAAMA,wBAAwB,CAAC;EACpBC,UAAU,GAAwC,IAAIC,GAAG,CAAC,CAAC;EAEpEC,GAAGA,CAACC,aAAqB,EAAEC,IAA4B,EAAE;IAC9D,IAAI,CAACJ,UAAU,CAACK,GAAG,CAACF,aAAa,EAAEC,IAAI,CAAC;EAC1C;EAEOE,MAAMA,CAACH,aAAqB,EAAEC,IAAqC,EAAE;IAC1E,MAAMG,YAAY,GAAG,IAAI,CAACP,UAAU,CAACQ,GAAG,CAACL,aAAa,CAAC,IAAK,CAAC,CAA4B;IACzF,IAAI,CAACH,UAAU,CAACK,GAAG,CAACF,aAAa,EAAE;MAAE,GAAGI,YAAY;MAAE,GAAGH;IAAK,CAAC,CAAC;EAClE;EAEOK,MAAMA,CAACN,aAAqB,EAAE;IACnC,IAAI,CAACH,UAAU,CAACS,MAAM,CAACN,aAAa,CAAC;EACvC;EAEOK,GAAGA,CAACL,aAAqB,EAAE;IAChC,OAAO,IAAI,CAACH,UAAU,CAACQ,GAAG,CAACL,aAAa,CAAC;EAC3C;EAEOO,MAAMA,CAAA,EAAG;IACd,OAAOC,KAAK,CAACC,IAAI,CAAC,IAAI,CAACZ,UAAU,CAACa,MAAM,CAAC,CAAC,CAAC;EAC7C;EAEOC,KAAKA,CAAA,EAAG;IACb,IAAI,CAACd,UAAU,CAACc,KAAK,CAAC,CAAC;EACzB;EAEOC,aAAaA,CAACZ,aAAqB,EAAE;IAC1C,MAAMC,IAAI,GAAG,IAAI,CAACJ,UAAU,CAACQ,GAAG,CAACL,aAAa,CAAC;IAC/C,OAAO,CAAC,CAACC,IAAI,EAAEY,UAAU;EAC3B;EAEOC,QAAQA,CAACd,aAAqB,EAAE;IACrC,MAAMC,IAAI,GAAG,IAAI,CAACJ,UAAU,CAACQ,GAAG,CAACL,aAAa,CAAC;IAC/C,OAAO,CAAC,CAACC,IAAI,EAAEc,QAAQ;EACzB;AACF","ignoreList":[]}
@@ -0,0 +1,77 @@
1
+ "use strict";
2
+
3
+ import { createEffect } from 'effector';
4
+ import { NO_AUDIO_BE_MESSAGE, TRANSCRIPT_MAX_RETRIES, TRANSCRIPT_RETRY_INTERVAL_MS } from "../../constants.js";
5
+ export class TranscriptionsDownloaderModel {
6
+ inflightFetches = new Map();
7
+ transcriptCache = new Map();
8
+ constructor(collection, api) {
9
+ this.collection = collection;
10
+ this.api = api;
11
+ }
12
+ fetchTranscriptWithRetry(audioFileId) {
13
+ const cached = this.transcriptCache.get(audioFileId);
14
+ if (cached) return Promise.resolve(cached);
15
+ const existing = this.inflightFetches.get(audioFileId);
16
+ if (existing) return existing;
17
+ const promise = this.runFetchWithRetry(audioFileId).then(result => {
18
+ this.transcriptCache.set(audioFileId, result);
19
+ return result;
20
+ }).finally(() => {
21
+ this.inflightFetches.delete(audioFileId);
22
+ });
23
+ this.inflightFetches.set(audioFileId, promise);
24
+ return promise;
25
+ }
26
+ async runFetchWithRetry(audioFileId) {
27
+ for (let attempt = 0; attempt < TRANSCRIPT_MAX_RETRIES; attempt++) {
28
+ const response = await this.api.getAudioFileTranscript(audioFileId);
29
+ if (response.status === 'completed') {
30
+ return {
31
+ text: response.text,
32
+ language: response.language
33
+ };
34
+ }
35
+ if (response.status === 'failed') {
36
+ return {
37
+ text: NO_AUDIO_BE_MESSAGE
38
+ };
39
+ }
40
+ if (attempt < TRANSCRIPT_MAX_RETRIES - 1) {
41
+ await new Promise(resolve => setTimeout(resolve, TRANSCRIPT_RETRY_INTERVAL_MS));
42
+ }
43
+ }
44
+ return {
45
+ text: NO_AUDIO_BE_MESSAGE
46
+ };
47
+ }
48
+ loadTranscriptForAttempt = createEffect(async attemptNumber => {
49
+ const item = this.collection.get(attemptNumber);
50
+ if (!item?.audioFileId) return;
51
+ if (item.transcript || item.transcriptLoading) return;
52
+ this.collection.update(attemptNumber, {
53
+ transcriptLoading: true
54
+ });
55
+ try {
56
+ const {
57
+ text,
58
+ language
59
+ } = await this.fetchTranscriptWithRetry(item.audioFileId);
60
+ this.collection.update(attemptNumber, {
61
+ transcript: text,
62
+ transcriptLanguage: language,
63
+ transcriptLoading: false,
64
+ transcriptError: undefined
65
+ });
66
+ } catch (error) {
67
+ this.collection.update(attemptNumber, {
68
+ transcriptLoading: false,
69
+ transcriptError: error instanceof Error ? error.message : 'Failed to load transcript'
70
+ });
71
+ }
72
+ });
73
+ getCachedTranscript(audioFileId) {
74
+ return this.transcriptCache.get(audioFileId);
75
+ }
76
+ }
77
+ //# sourceMappingURL=TranscriptionsDownloader.model.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["createEffect","NO_AUDIO_BE_MESSAGE","TRANSCRIPT_MAX_RETRIES","TRANSCRIPT_RETRY_INTERVAL_MS","TranscriptionsDownloaderModel","inflightFetches","Map","transcriptCache","constructor","collection","api","fetchTranscriptWithRetry","audioFileId","cached","get","Promise","resolve","existing","promise","runFetchWithRetry","then","result","set","finally","delete","attempt","response","getAudioFileTranscript","status","text","language","setTimeout","loadTranscriptForAttempt","attemptNumber","item","transcript","transcriptLoading","update","transcriptLanguage","transcriptError","undefined","error","Error","message","getCachedTranscript"],"sourceRoot":"../../../../../../src","sources":["features/voice/playing/model/TranscriptionsDownloader.model.ts"],"mappings":";;AAAA,SAASA,YAAY,QAAQ,UAAU;AAGvC,SACEC,mBAAmB,EACnBC,sBAAsB,EACtBC,4BAA4B,QACvB,oBAAiB;AAIxB,OAAO,MAAMC,6BAA6B,CAAC;EAGxBC,eAAe,GAAG,IAAIC,GAAG,CAAoC,CAAC;EAC9DC,eAAe,GAAG,IAAID,GAAG,CAA2B,CAAC;EAEtEE,WAAWA,CAACC,UAAoC,EAAEC,GAAmB,EAAE;IACrE,IAAI,CAACD,UAAU,GAAGA,UAAU;IAC5B,IAAI,CAACC,GAAG,GAAGA,GAAG;EAChB;EAEQC,wBAAwBA,CAACC,WAAmB,EAA6B;IAC/E,MAAMC,MAAM,GAAG,IAAI,CAACN,eAAe,CAACO,GAAG,CAACF,WAAW,CAAC;IACpD,IAAIC,MAAM,EAAE,OAAOE,OAAO,CAACC,OAAO,CAACH,MAAM,CAAC;IAE1C,MAAMI,QAAQ,GAAG,IAAI,CAACZ,eAAe,CAACS,GAAG,CAACF,WAAW,CAAC;IACtD,IAAIK,QAAQ,EAAE,OAAOA,QAAQ;IAE7B,MAAMC,OAAO,GAAG,IAAI,CAACC,iBAAiB,CAACP,WAAW,CAAC,CAChDQ,IAAI,CAAEC,MAAM,IAAK;MAChB,IAAI,CAACd,eAAe,CAACe,GAAG,CAACV,WAAW,EAAES,MAAM,CAAC;MAC7C,OAAOA,MAAM;IACf,CAAC,CAAC,CACDE,OAAO,CAAC,MAAM;MACb,IAAI,CAAClB,eAAe,CAACmB,MAAM,CAACZ,WAAW,CAAC;IAC1C,CAAC,CAAC;IACJ,IAAI,CAACP,eAAe,CAACiB,GAAG,CAACV,WAAW,EAAEM,OAAO,CAAC;IAC9C,OAAOA,OAAO;EAChB;EAEA,MAAcC,iBAAiBA,CAACP,WAAmB,EAA6B;IAC9E,KAAK,IAAIa,OAAO,GAAG,CAAC,EAAEA,OAAO,GAAGvB,sBAAsB,EAAEuB,OAAO,EAAE,EAAE;MACjE,MAAMC,QAAQ,GAAG,MAAM,IAAI,CAAChB,GAAG,CAACiB,sBAAsB,CAACf,WAAW,CAAC;MAEnE,IAAIc,QAAQ,CAACE,MAAM,KAAK,WAAW,EAAE;QACnC,OAAO;UAAEC,IAAI,EAAEH,QAAQ,CAACG,IAAI;UAAEC,QAAQ,EAAEJ,QAAQ,CAACI;QAAS,CAAC;MAC7D;MAEA,IAAIJ,QAAQ,CAACE,MAAM,KAAK,QAAQ,EAAE;QAChC,OAAO;UAAEC,IAAI,EAAE5B;QAAoB,CAAC;MACtC;MAEA,IAAIwB,OAAO,GAAGvB,sBAAsB,GAAG,CAAC,EAAE;QACxC,MAAM,IAAIa,OAAO,CAAEC,OAAO,IAAKe,UAAU,CAACf,OAAO,EAAEb,4BAA4B,CAAC,CAAC;MACnF;IACF;IACA,OAAO;MAAE0B,IAAI,EAAE5B;IAAoB,CAAC;EACtC;EAEgB+B,wBAAwB,GAAGhC,YAAY,CAAC,MAAOiC,aAAqB,IAAK;IACvF,MAAMC,IAAI,GAAG,IAAI,CAACzB,UAAU,CAACK,GAAG,CAACmB,aAAa,CAAC;IAC/C,IAAI,CAACC,IAAI,EAAEtB,WAAW,EAAE;IACxB,IAAIsB,IAAI,CAACC,UAAU,IAAID,IAAI,CAACE,iBAAiB,EAAE;IAE/C,IAAI,CAAC3B,UAAU,CAAC4B,MAAM,CAACJ,aAAa,EAAE;MAAEG,iBAAiB,EAAE;IAAK,CAAC,CAAC;IAElE,IAAI;MACF,MAAM;QAAEP,IAAI;QAAEC;MAAS,CAAC,GAAG,MAAM,IAAI,CAACnB,wBAAwB,CAACuB,IAAI,CAACtB,WAAW,CAAC;MAEhF,IAAI,CAACH,UAAU,CAAC4B,MAAM,CAACJ,aAAa,EAAE;QACpCE,UAAU,EAAEN,IAAI;QAChBS,kBAAkB,EAAER,QAAQ;QAC5BM,iBAAiB,EAAE,KAAK;QACxBG,eAAe,EAAEC;MACnB,CAAC,CAAC;IACJ,CAAC,CAAC,OAAOC,KAAK,EAAE;MACd,IAAI,CAAChC,UAAU,CAAC4B,MAAM,CAACJ,aAAa,EAAE;QACpCG,iBAAiB,EAAE,KAAK;QACxBG,eAAe,EAAEE,KAAK,YAAYC,KAAK,GAAGD,KAAK,CAACE,OAAO,GAAG;MAC5D,CAAC,CAAC;IACJ;EACF,CAAC,CAAC;EAEKC,mBAAmBA,CAAChC,WAAmB,EAAgC;IAC5E,OAAO,IAAI,CAACL,eAAe,CAACO,GAAG,CAACF,WAAW,CAAC;EAC9C;AACF","ignoreList":[]}
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+
3
+ import { createEffect, createEvent, createStore, restore } from 'effector';
4
+ import { TranslationService } from "../../../translation/model/TranslationService.js";
5
+ import { GoogleTranslationProvider } from "../../../translation/providers/google/GoogleTranslationProvider.js";
6
+ import { preservedWordsReplacers, wordsToPreserve } from "../../../translation/preserve/wordsToPreserve.js";
7
+ export class TranslationModel {
8
+ toggle = createEvent();
9
+ setActive = createEvent();
10
+ clearCache = createEvent();
11
+ reset = createEvent();
12
+ $isActive = restore(this.setActive, false).on(this.toggle, state => !state).reset(this.reset);
13
+ translate = createEffect(async ({
14
+ attemptNumber,
15
+ targetLanguage
16
+ }) => {
17
+ const item = this.collection.get(attemptNumber);
18
+ if (!item?.transcript) return null;
19
+ const text = await this.service.translate(item.transcript, {
20
+ targetLang: targetLanguage,
21
+ sourceLang: item.transcriptLanguage,
22
+ cacheKey: `voice::${attemptNumber}::${targetLanguage}`
23
+ });
24
+ if (!text) return null;
25
+ return {
26
+ attemptNumber,
27
+ text
28
+ };
29
+ });
30
+ $translations = createStore({}).on(this.translate.doneData, (state, result) => {
31
+ if (!result) return state;
32
+ return {
33
+ ...state,
34
+ [result.attemptNumber]: result.text
35
+ };
36
+ }).reset(this.reset, this.clearCache);
37
+ constructor(collection, api) {
38
+ this.collection = collection;
39
+ this.service = new TranslationService({
40
+ preserve: {
41
+ map: wordsToPreserve,
42
+ replacers: preservedWordsReplacers
43
+ },
44
+ providers: [new GoogleTranslationProvider({
45
+ api: {
46
+ translateRequest: api.translateText
47
+ }
48
+ })]
49
+ });
50
+ this.clearCache.watch(() => this.service.reset());
51
+ this.reset.watch(() => this.service.reset());
52
+ }
53
+ getTranslation(attemptNumber) {
54
+ return this.$translations.getState()[attemptNumber];
55
+ }
56
+ }
57
+ //# sourceMappingURL=Translation.model.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["createEffect","createEvent","createStore","restore","TranslationService","GoogleTranslationProvider","preservedWordsReplacers","wordsToPreserve","TranslationModel","toggle","setActive","clearCache","reset","$isActive","on","state","translate","attemptNumber","targetLanguage","item","collection","get","transcript","text","service","targetLang","sourceLang","transcriptLanguage","cacheKey","$translations","doneData","result","constructor","api","preserve","map","replacers","providers","translateRequest","translateText","watch","getTranslation","getState"],"sourceRoot":"../../../../../../src","sources":["features/voice/playing/model/Translation.model.ts"],"mappings":";;AAAA,SAASA,YAAY,EAAEC,WAAW,EAAEC,WAAW,EAAEC,OAAO,QAAQ,UAAU;AAG1E,SAASC,kBAAkB,QAAQ,kDAA+C;AAClF,SAASC,yBAAyB,QAAQ,oEAAiE;AAC3G,SACEC,uBAAuB,EACvBC,eAAe,QACV,kDAA+C;AAYtD,OAAO,MAAMC,gBAAgB,CAAC;EAIZC,MAAM,GAAGR,WAAW,CAAC,CAAC;EACtBS,SAAS,GAAGT,WAAW,CAAU,CAAC;EAClCU,UAAU,GAAGV,WAAW,CAAC,CAAC;EAC1BW,KAAK,GAAGX,WAAW,CAAC,CAAC;EAErBY,SAAS,GAAGV,OAAO,CAAC,IAAI,CAACO,SAAS,EAAE,KAAK,CAAC,CACvDI,EAAE,CAAC,IAAI,CAACL,MAAM,EAAGM,KAAK,IAAK,CAACA,KAAK,CAAC,CAClCH,KAAK,CAAC,IAAI,CAACA,KAAK,CAAC;EAEJI,SAAS,GAAGhB,YAAY,CACtC,OAAO;IAAEiB,aAAa;IAAEC;EAAe,CAAC,KAAK;IAC3C,MAAMC,IAAI,GAAG,IAAI,CAACC,UAAU,CAACC,GAAG,CAACJ,aAAa,CAAC;IAC/C,IAAI,CAACE,IAAI,EAAEG,UAAU,EAAE,OAAO,IAAI;IAElC,MAAMC,IAAI,GAAG,MAAM,IAAI,CAACC,OAAO,CAACR,SAAS,CAACG,IAAI,CAACG,UAAU,EAAE;MACzDG,UAAU,EAAEP,cAAc;MAC1BQ,UAAU,EAAEP,IAAI,CAACQ,kBAAkB;MACnCC,QAAQ,EAAE,UAAUX,aAAa,KAAKC,cAAc;IACtD,CAAC,CAAC;IAEF,IAAI,CAACK,IAAI,EAAE,OAAO,IAAI;IAEtB,OAAO;MAAEN,aAAa;MAAEM;IAAK,CAAC;EAChC,CACF,CAAC;EAEeM,aAAa,GAAG3B,WAAW,CAAyB,CAAC,CAAC,CAAC,CACpEY,EAAE,CAAC,IAAI,CAACE,SAAS,CAACc,QAAQ,EAAE,CAACf,KAAK,EAAEgB,MAAM,KAAK;IAC9C,IAAI,CAACA,MAAM,EAAE,OAAOhB,KAAK;IACzB,OAAO;MAAE,GAAGA,KAAK;MAAE,CAACgB,MAAM,CAACd,aAAa,GAAGc,MAAM,CAACR;IAAK,CAAC;EAC1D,CAAC,CAAC,CACDX,KAAK,CAAC,IAAI,CAACA,KAAK,EAAE,IAAI,CAACD,UAAU,CAAC;EAErCqB,WAAWA,CAACZ,UAAoC,EAAEa,GAAmB,EAAE;IACrE,IAAI,CAACb,UAAU,GAAGA,UAAU;IAC5B,IAAI,CAACI,OAAO,GAAG,IAAIpB,kBAAkB,CAAC;MACpC8B,QAAQ,EAAE;QACRC,GAAG,EAAE5B,eAAe;QACpB6B,SAAS,EAAE9B;MACb,CAAC;MACD+B,SAAS,EAAE,CAAC,IAAIhC,yBAAyB,CAAC;QAAE4B,GAAG,EAAE;UAAEK,gBAAgB,EAAEL,GAAG,CAACM;QAAc;MAAE,CAAC,CAAC;IAC7F,CAAC,CAAC;IAEF,IAAI,CAAC5B,UAAU,CAAC6B,KAAK,CAAC,MAAM,IAAI,CAAChB,OAAO,CAACZ,KAAK,CAAC,CAAC,CAAC;IACjD,IAAI,CAACA,KAAK,CAAC4B,KAAK,CAAC,MAAM,IAAI,CAAChB,OAAO,CAACZ,KAAK,CAAC,CAAC,CAAC;EAC9C;EAEO6B,cAAcA,CAACxB,aAAqB,EAAsB;IAC/D,OAAO,IAAI,CAACY,aAAa,CAACa,QAAQ,CAAC,CAAC,CAACzB,aAAa,CAAC;EACrD;AACF","ignoreList":[]}
@@ -3,9 +3,9 @@
3
3
  import { createEffect } from 'effector';
4
4
  import { downloadAudioFileRequestGenerator } from "../../helpers.js";
5
5
  export class VoiceFileDownloaderModel {
6
- setApi = api => {
6
+ constructor(api) {
7
7
  this.api = api;
8
- };
8
+ }
9
9
  download = createEffect(async ({
10
10
  audioFileId,
11
11
  attemptNumber
@@ -1 +1 @@
1
- {"version":3,"names":["createEffect","downloadAudioFileRequestGenerator","VoiceFileDownloaderModel","setApi","api","download","audioFileId","attemptNumber","downloadAudio","controller","downloadPromise","collectionItem","audioLoading","audioDownloadPromise","abortDownload","abort"],"sourceRoot":"../../../../../../src","sources":["features/voice/playing/model/VoiceFileDownloader.model.ts"],"mappings":";;AAAA,SAASA,YAAY,QAAQ,UAAU;AAEvC,SAASC,iCAAiC,QAAQ,kBAAe;AAYjE,OAAO,MAAMC,wBAAwB,CAAC;EAGpBC,MAAM,GAAIC,GAAmB,IAAK;IAChD,IAAI,CAACA,GAAG,GAAGA,GAAG;EAChB,CAAC;EAEeC,QAAQ,GAAGL,YAAY,CACrC,OAAO;IAAEM,WAAW;IAAEC;EAA8B,CAAC,KAA8B;IACjF,MAAM;MAAEC,aAAa;MAAEC;IAAW,CAAC,GAAGR,iCAAiC,CAACK,WAAW,EAAE,IAAI,CAACF,GAAG,CAAC;IAC9F,MAAMM,eAAe,GAAGF,aAAa,CAAC,CAAC;IAEvC,MAAMG,cAA+C,GAAG;MACtDJ,aAAa;MACbD,WAAW;MACXM,YAAY,EAAE,IAAI;MAClBC,oBAAoB,EAAEH,eAAe;MACrCD;IACF,CAAC;IAED,OAAO;MAAEE,cAAc;MAAED;IAAgB,CAAC;EAC5C,CACF,CAAC;EAEeI,aAAa,GAAIL,UAA4B,IAAK;IAChEA,UAAU,EAAEM,KAAK,CAAC,CAAC;EACrB,CAAC;AACH","ignoreList":[]}
1
+ {"version":3,"names":["createEffect","downloadAudioFileRequestGenerator","VoiceFileDownloaderModel","constructor","api","download","audioFileId","attemptNumber","downloadAudio","controller","downloadPromise","collectionItem","audioLoading","audioDownloadPromise","abortDownload","abort"],"sourceRoot":"../../../../../../src","sources":["features/voice/playing/model/VoiceFileDownloader.model.ts"],"mappings":";;AAAA,SAASA,YAAY,QAAQ,UAAU;AAEvC,SAASC,iCAAiC,QAAQ,kBAAe;AAYjE,OAAO,MAAMC,wBAAwB,CAAC;EAGpCC,WAAWA,CAACC,GAAmB,EAAE;IAC/B,IAAI,CAACA,GAAG,GAAGA,GAAG;EAChB;EAEgBC,QAAQ,GAAGL,YAAY,CACrC,OAAO;IAAEM,WAAW;IAAEC;EAA8B,CAAC,KAA8B;IACjF,MAAM;MAAEC,aAAa;MAAEC;IAAW,CAAC,GAAGR,iCAAiC,CAACK,WAAW,EAAE,IAAI,CAACF,GAAG,CAAC;IAC9F,MAAMM,eAAe,GAAGF,aAAa,CAAC,CAAC;IAEvC,MAAMG,cAA+C,GAAG;MACtDJ,aAAa;MACbD,WAAW;MACXM,YAAY,EAAE,IAAI;MAClBC,oBAAoB,EAAEH,eAAe;MACrCD;IACF,CAAC;IAED,OAAO;MAAEE,cAAc;MAAED;IAAgB,CAAC;EAC5C,CACF,CAAC;EAEeI,aAAa,GAAIL,UAA4B,IAAK;IAChEA,UAAU,EAAEM,KAAK,CAAC,CAAC;EACrB,CAAC;AACH","ignoreList":[]}