@tinyweb_dev/oe-exam-sdk 0.1.28 → 0.1.30

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 (796) hide show
  1. package/README.md +4 -4
  2. package/dist/api/contest-rooms.js +54 -1
  3. package/dist/api/contest-rooms.types.js +1 -1
  4. package/dist/api/exam-create.js +179 -1
  5. package/dist/api/exam-create.types.js +1 -1
  6. package/dist/api/exam-entry.js +68 -1
  7. package/dist/api/exam-entry.types.js +1 -1
  8. package/dist/api/exam-questions.js +149 -1
  9. package/dist/api/exam-questions.types.js +1 -1
  10. package/dist/api/exam-taking.js +84 -1
  11. package/dist/api/exam-taking.types.d.ts +7 -0
  12. package/dist/api/exam-taking.types.js +1 -1
  13. package/dist/api/index.js +8 -1
  14. package/dist/api/result-review.js +62 -1
  15. package/dist/api/result-review.types.js +16 -1
  16. package/dist/components/CueCardEditor.js +58 -1
  17. package/dist/components/common/ResolvedImage.js +15 -1
  18. package/dist/components/exams/CompletionDialog.js +8 -1
  19. package/dist/components/exams/CreateExamInfoForm.js +84 -1
  20. package/dist/components/exams/CreateExamPageContainer.js +110 -1
  21. package/dist/components/exams/ExamCreator.js +287 -1
  22. package/dist/components/exams/ExamPartTabs.js +138 -1
  23. package/dist/components/exams/ExamPreviewDialog.d.ts +6 -7
  24. package/dist/components/exams/ExamPreviewDialog.js +121 -1
  25. package/dist/components/exams/ExamPreviewPartContent.d.ts +18 -0
  26. package/dist/components/exams/ExamPreviewPartContent.js +27 -0
  27. package/dist/components/exams/ExamPreviewSidebar.d.ts +17 -0
  28. package/dist/components/exams/ExamPreviewSidebar.js +37 -0
  29. package/dist/components/exams/ExamQuestionGrid.js +37 -1
  30. package/dist/components/exams/ExamQuestionsPageContainer.js +112 -1
  31. package/dist/components/exams/ExamViewDialog.js +61 -1
  32. package/dist/components/exams/PartAudioUploader.js +9 -1
  33. package/dist/components/exams/TemplateSelector.js +76 -1
  34. package/dist/components/exams/UnsavedChangesDialog.js +7 -1
  35. package/dist/components/exams/api.js +3 -1
  36. package/dist/components/exams/create-exam.texts.js +1 -1
  37. package/dist/components/exams/create-exam.validation.js +18 -1
  38. package/dist/components/exams/entry/EntryRestartDialog.js +11 -1
  39. package/dist/components/exams/entry/StudentExamEntryPageContainer.js +358 -1
  40. package/dist/components/exams/entry/exam-entry.states.js +26 -1
  41. package/dist/components/exams/entry/exam-entry.utils.js +55 -1
  42. package/dist/components/exams/entry/fullscreen-loading.js +18 -1
  43. package/dist/components/exams/entry/index.js +4 -1
  44. package/dist/components/exams/exam-preview.types.d.ts +30 -0
  45. package/dist/components/exams/exam-preview.types.js +62 -0
  46. package/dist/components/exams/exam-question-status.js +45 -1
  47. package/dist/components/exams/exam-template.utils.js +18 -1
  48. package/dist/components/exams/index.d.ts +1 -0
  49. package/dist/components/exams/index.js +19 -1
  50. package/dist/components/exams/rooms/StudentContestRoomsPageContainer.js +183 -1
  51. package/dist/components/exams/rooms/contest-rooms.utils.js +93 -1
  52. package/dist/components/exams/rooms/index.js +2 -1
  53. package/dist/components/exams/take/ExamTakingApiContext.js +25 -1
  54. package/dist/components/exams/take/ExamTakingPageContainer.js +955 -1
  55. package/dist/components/exams/take/GenericQuestionRenderer.js +14 -1
  56. package/dist/components/exams/take/components/QuestionRenderer.js +207 -1
  57. package/dist/components/exams/take/components/index.js +11 -1
  58. package/dist/components/exams/take/components/question-renderers/ArticlesViewer.js +8 -1
  59. package/dist/components/exams/take/components/question-renderers/MoversAnswerTheQuestionRenderer.js +30 -1
  60. package/dist/components/exams/take/components/question-renderers/MoversChooseAdjectiveRenderer.js +63 -1
  61. package/dist/components/exams/take/components/question-renderers/MoversChooseBestAnswerRenderer.js +136 -1
  62. package/dist/components/exams/take/components/question-renderers/MoversColoringRenderer.js +379 -1
  63. package/dist/components/exams/take/components/question-renderers/MoversCrossOutWordGroupRenderer.d.ts +20 -0
  64. package/dist/components/exams/take/components/question-renderers/MoversCrossOutWordGroupRenderer.js +141 -0
  65. package/dist/components/exams/take/components/question-renderers/MoversFillWordHintRenderer.js +131 -1
  66. package/dist/components/exams/take/components/question-renderers/MoversGridFillRenderer.js +76 -1
  67. package/dist/components/exams/take/components/question-renderers/MoversLabelThePictureRenderer.js +68 -1
  68. package/dist/components/exams/take/components/question-renderers/MoversListenAndWriteRenderer.js +42 -1
  69. package/dist/components/exams/take/components/question-renderers/MoversMatchByWritingAnswerRenderer.js +131 -1
  70. package/dist/components/exams/take/components/question-renderers/MoversPictureChooseRenderer.js +76 -1
  71. package/dist/components/exams/take/components/question-renderers/MoversPictureFillBlankChooseRenderer.js +68 -1
  72. package/dist/components/exams/take/components/question-renderers/MoversReadingPassageRenderer.js +62 -1
  73. package/dist/components/exams/take/components/question-renderers/MoversTrueFalseRenderer.d.ts +1 -1
  74. package/dist/components/exams/take/components/question-renderers/MoversTrueFalseRenderer.js +51 -1
  75. package/dist/components/exams/take/components/question-renderers/MoversWordFillParagraphRenderer.js +171 -1
  76. package/dist/components/exams/take/components/question-renderers/MoversWordFillStructuredFormRenderer.js +198 -1
  77. package/dist/components/exams/take/components/question-renderers/MoversWordOrderAndMatchGroupRenderer.d.ts +15 -0
  78. package/dist/components/exams/take/components/question-renderers/MoversWordOrderAndMatchGroupRenderer.js +36 -0
  79. package/dist/components/exams/take/components/question-renderers/MoversWordOrderingRenderer.js +92 -1
  80. package/dist/components/exams/take/components/question-renderers/MoversWriteSentencesRenderer.js +11 -1
  81. package/dist/components/exams/take/components/question-renderers/MoversWritingRenderer.js +56 -1
  82. package/dist/components/exams/take/components/question-renderers/index.d.ts +2 -0
  83. package/dist/components/exams/take/components/question-renderers/index.js +25 -1
  84. package/dist/components/exams/take/components/speaking/SpeakingAudioPlayer.js +85 -1
  85. package/dist/components/exams/take/components/speaking/SpeakingContentFrame.js +10 -1
  86. package/dist/components/exams/take/components/speaking/SpeakingExamLayout.js +15 -1
  87. package/dist/components/exams/take/components/speaking/SpeakingHeader.js +6 -1
  88. package/dist/components/exams/take/components/speaking/SpeakingInstructionBar.js +8 -1
  89. package/dist/components/exams/take/components/speaking/SpeakingMicButton.js +59 -1
  90. package/dist/components/exams/take/components/speaking/SpeakingNavButton.js +7 -1
  91. package/dist/components/exams/take/components/speaking/SpeakingPartBadge.js +5 -1
  92. package/dist/components/exams/take/components/speaking/SpeakingReadDisplayedContent.module.css +120 -0
  93. package/dist/components/exams/take/components/speaking/SpeakingRecordingPreview.js +73 -1
  94. package/dist/components/exams/take/components/speaking/SpeakingReportErrorButton.js +8 -1
  95. package/dist/components/exams/take/components/speaking/SpeakingSpontaneousQA.module.css +344 -0
  96. package/dist/components/exams/take/components/speaking/SpeakingVideoIntro.js +32 -1
  97. package/dist/components/exams/take/components/speaking/index.js +1 -1
  98. package/dist/components/exams/take/components/speaking/renderers/SpeakingChooseAnswerGroupRenderer.js +63 -1
  99. package/dist/components/exams/take/components/speaking/renderers/SpeakingChooseObjectsRenderer.js +95 -1
  100. package/dist/components/exams/take/components/speaking/renderers/SpeakingCompareImagesRenderer.js +35 -1
  101. package/dist/components/exams/take/components/speaking/renderers/SpeakingConversationRenderer.js +147 -1
  102. package/dist/components/exams/take/components/speaking/renderers/SpeakingCueCardRenderer.js +232 -1
  103. package/dist/components/exams/take/components/speaking/renderers/SpeakingDescribeImageRenderer.js +193 -1
  104. package/dist/components/exams/take/components/speaking/renderers/SpeakingDragObjectsRenderer.js +155 -1
  105. package/dist/components/exams/take/components/speaking/renderers/SpeakingGNInterviewRenderer.js +212 -1
  106. package/dist/components/exams/take/components/speaking/renderers/SpeakingInfoExchangeRenderer.js +77 -1
  107. package/dist/components/exams/take/components/speaking/renderers/SpeakingListenAndSpeakAnswerRenderer.js +64 -1
  108. package/dist/components/exams/take/components/speaking/renderers/SpeakingOddOneOutRenderer.js +69 -1
  109. package/dist/components/exams/take/components/speaking/renderers/SpeakingQuestionListRenderer.js +64 -1
  110. package/dist/components/exams/take/components/speaking/renderers/SpeakingQuestionRenderer.js +92 -1
  111. package/dist/components/exams/take/components/speaking/renderers/SpeakingReadDisplayedContentRenderer.js +202 -1
  112. package/dist/components/exams/take/components/speaking/renderers/SpeakingSpontaneousQARenderer.js +339 -1
  113. package/dist/components/exams/take/components/speaking/renderers/SpeakingSpontaneousQaGroupRenderer.d.ts +19 -0
  114. package/dist/components/exams/take/components/speaking/renderers/SpeakingSpontaneousQaGroupRenderer.js +76 -0
  115. package/dist/components/exams/take/components/speaking/renderers/SpeakingStoryImagesRenderer.js +56 -1
  116. package/dist/components/exams/take/components/speaking/renderers/SpontaneousQACambridgeLayout.d.ts +24 -0
  117. package/dist/components/exams/take/components/speaking/renderers/SpontaneousQACambridgeLayout.js +120 -0
  118. package/dist/components/exams/take/components/speaking/renderers/SpontaneousQAInlineAudioPlayer.d.ts +8 -0
  119. package/dist/components/exams/take/components/speaking/renderers/SpontaneousQAInlineAudioPlayer.js +94 -0
  120. package/dist/components/exams/take/components/speaking/renderers/SpontaneousQASummerSkyAudioPlayer.d.ts +8 -0
  121. package/dist/components/exams/take/components/speaking/renderers/SpontaneousQASummerSkyAudioPlayer.js +101 -0
  122. package/dist/components/exams/take/components/speaking/renderers/index.d.ts +1 -0
  123. package/dist/components/exams/take/components/speaking/renderers/index.js +14 -1
  124. package/dist/components/exams/take/exam-taking.utils.d.ts +13 -0
  125. package/dist/components/exams/take/exam-taking.utils.js +203 -1
  126. package/dist/components/exams/take/hooks/index.js +2 -1
  127. package/dist/components/exams/take/hooks/useAnswerAutosave.js +71 -1
  128. package/dist/components/exams/take/hooks/useAttemptSubmit.js +38 -1
  129. package/dist/components/exams/take/hooks/useAutoSave.js +83 -1
  130. package/dist/components/exams/take/hooks/useExamCountdown.js +35 -1
  131. package/dist/components/exams/take/hooks/useExamTimer.js +97 -1
  132. package/dist/components/exams/take/hooks/useProctoringCamera.js +118 -1
  133. package/dist/components/exams/take/hooks/useProctoringSnapshot.js +76 -1
  134. package/dist/components/exams/take/hooks/useSpeakingConversationAudio.js +178 -1
  135. package/dist/components/exams/take/hooks/useSpeakingNavigation.js +51 -1
  136. package/dist/components/exams/take/hooks/useSpeakingRecorder.js +406 -1
  137. package/dist/components/exams/take/hooks/useSpeakingRendererSetup.js +136 -1
  138. package/dist/components/exams/take/hooks/useSpontaneousQaGroupRecorder.d.ts +11 -0
  139. package/dist/components/exams/take/hooks/useSpontaneousQaGroupRecorder.js +352 -0
  140. package/dist/components/exams/take/hooks/useSpontaneousQaGroupRendererSetup.d.ts +42 -0
  141. package/dist/components/exams/take/hooks/useSpontaneousQaGroupRendererSetup.js +166 -0
  142. package/dist/components/exams/take/hooks/useToeicAudio.js +35 -1
  143. package/dist/components/exams/take/index.js +6 -1
  144. package/dist/components/exams/take/types/speaking-cue-card.types.js +1 -1
  145. package/dist/components/exams/take/types/speaking.types.js +7 -1
  146. package/dist/components/exams/take/types.js +4 -1
  147. package/dist/components/exams/take/utils/answer-transformers.js +452 -1
  148. package/dist/components/exams/take/utils/cambridge-yle-inline-speaking.d.ts +21 -0
  149. package/dist/components/exams/take/utils/cambridge-yle-inline-speaking.js +44 -0
  150. package/dist/components/exams/take/utils/coloring-assignments.js +40 -1
  151. package/dist/components/exams/take/utils/cross-out-word-group.transformer.d.ts +21 -0
  152. package/dist/components/exams/take/utils/cross-out-word-group.transformer.js +83 -0
  153. package/dist/components/exams/take/utils/question-transformers.d.ts +43 -2
  154. package/dist/components/exams/take/utils/question-transformers.js +1137 -1
  155. package/dist/components/features/exam-entry/entry-state-cards.js +19 -1
  156. package/dist/components/features/exam-entry/index.js +2 -1
  157. package/dist/components/features/exam-entry/themed/CambridgeYleWaitingRoom.js +121 -1
  158. package/dist/components/features/exam-entry/themed/ThemedWaitingRoom.js +37 -1
  159. package/dist/components/features/exam-entry/themed/ToeicWaitingRoom.js +15 -1
  160. package/dist/components/features/exam-entry/themed/cambridge-yle-waiting-parts.js +80 -1
  161. package/dist/components/features/exam-entry/themed/components/CloseButton.js +6 -1
  162. package/dist/components/features/exam-entry/themed/components/ExamInfoPanel.js +17 -1
  163. package/dist/components/features/exam-entry/themed/components/ModeSelector.js +6 -1
  164. package/dist/components/features/exam-entry/themed/components/StartButton.js +12 -1
  165. package/dist/components/features/exam-entry/themed/components/index.js +4 -1
  166. package/dist/components/features/exam-entry/themed/index.js +3 -1
  167. package/dist/components/index.d.ts +1 -0
  168. package/dist/components/index.js +43 -1
  169. package/dist/components/questions/_shared/config/question-types.config.js +362 -1
  170. package/dist/components/questions/_shared/constants/color-palette.js +21 -1
  171. package/dist/components/questions/_shared/hooks/useAnswerGroupQuestionGroup.js +105 -1
  172. package/dist/components/questions/_shared/hooks/useBasicQuestionGroup.js +222 -1
  173. package/dist/components/questions/_shared/hooks/useCompareImagesGroup.js +140 -1
  174. package/dist/components/questions/_shared/hooks/useImageQuestionGroup.js +123 -1
  175. package/dist/components/questions/_shared/hooks/useInfoExchangeGroup.js +50 -1
  176. package/dist/components/questions/_shared/hooks/useQuestionFormState.js +54 -1
  177. package/dist/components/questions/_shared/hooks/useQuestionInitialization.js +123 -1
  178. package/dist/components/questions/_shared/hooks/useQuestionListGroup.js +121 -1
  179. package/dist/components/questions/_shared/hooks/useQuestionOnChange.js +70 -1
  180. package/dist/components/questions/_shared/hooks/useSceneQuestionGroup.js +194 -1
  181. package/dist/components/questions/_shared/index.js +7 -1
  182. package/dist/components/questions/_shared/types/answer-the-question.type.js +1 -1
  183. package/dist/components/questions/_shared/types/arrange-letters-into-words.type.js +1 -1
  184. package/dist/components/questions/_shared/types/choose-correct-adjective.type.js +3 -1
  185. package/dist/components/questions/_shared/types/choose-the-correct-answer-group.type.d.ts +1 -0
  186. package/dist/components/questions/_shared/types/choose-the-correct-answer-group.type.js +1 -1
  187. package/dist/components/questions/_shared/types/color-region.config.js +1 -1
  188. package/dist/components/questions/_shared/types/cross-out-word-group.type.d.ts +2 -0
  189. package/dist/components/questions/_shared/types/cross-out-word-group.type.js +1 -1
  190. package/dist/components/questions/_shared/types/fill-in-blank.type.js +1 -1
  191. package/dist/components/questions/_shared/types/fill-missing-words-in-grid.type.js +1 -1
  192. package/dist/components/questions/_shared/types/gn-speaking-interview.type.js +1 -1
  193. package/dist/components/questions/_shared/types/index.d.ts +1 -0
  194. package/dist/components/questions/_shared/types/index.js +14 -1
  195. package/dist/components/questions/_shared/types/label-the-picture.type.js +1 -1
  196. package/dist/components/questions/_shared/types/listen-and-choose-from-answer-group.type.js +1 -1
  197. package/dist/components/questions/_shared/types/listen-and-choose-objects-in-scene.type.js +1 -1
  198. package/dist/components/questions/_shared/types/listen-and-drag-objects-into-scene.type.js +1 -1
  199. package/dist/components/questions/_shared/types/listen-and-speak-answer.type.js +1 -1
  200. package/dist/components/questions/_shared/types/listen-and-speak-compare-images.type.js +1 -1
  201. package/dist/components/questions/_shared/types/listen-and-speak-image-group.type.js +1 -1
  202. package/dist/components/questions/_shared/types/listen-and-speak-info-exchange.type.js +1 -1
  203. package/dist/components/questions/_shared/types/listen-and-speak-odd-one-out.type.js +3 -1
  204. package/dist/components/questions/_shared/types/listen-and-speak-question-list.type.js +1 -1
  205. package/dist/components/questions/_shared/types/listen-and-speak-with-story-images.type.js +3 -1
  206. package/dist/components/questions/_shared/types/listen-and-tick-answer.type.js +1 -1
  207. package/dist/components/questions/_shared/types/listening-drawline.type.js +1 -1
  208. package/dist/components/questions/_shared/types/look-and-choose-answer.type.js +1 -1
  209. package/dist/components/questions/_shared/types/look-picture-fill-word-hint.type.js +1 -1
  210. package/dist/components/questions/_shared/types/match-by-writing-answer.type.js +1 -1
  211. package/dist/components/questions/_shared/types/multiple-choice.type.d.ts +5 -0
  212. package/dist/components/questions/_shared/types/multiple-choice.type.js +1 -1
  213. package/dist/components/questions/_shared/types/question-group.type.js +11 -1
  214. package/dist/components/questions/_shared/types/read-and-color-objects.type.js +1 -1
  215. package/dist/components/questions/_shared/types/read-displayed-content.type.js +1 -1
  216. package/dist/components/questions/_shared/types/read-passage-and-answer-questions.type.js +1 -1
  217. package/dist/components/questions/_shared/types/speaking-describe-image.type.js +1 -1
  218. package/dist/components/questions/_shared/types/spontaneous-qa-group.type.d.ts +37 -0
  219. package/dist/components/questions/_shared/types/spontaneous-qa-group.type.js +1 -0
  220. package/dist/components/questions/_shared/types/spontaneous-qa.type.js +1 -1
  221. package/dist/components/questions/_shared/types/true-false-group.type.js +1 -1
  222. package/dist/components/questions/_shared/types/word-fill-paragraph-with-options.type.js +1 -1
  223. package/dist/components/questions/_shared/types/word-fill-paragraph.type.js +1 -1
  224. package/dist/components/questions/_shared/types/word-fill-structured-form.type.d.ts +20 -11
  225. package/dist/components/questions/_shared/types/word-fill-structured-form.type.js +1 -1
  226. package/dist/components/questions/_shared/types/word-order-and-match-group.type.d.ts +38 -0
  227. package/dist/components/questions/_shared/types/word-order-and-match-group.type.js +1 -0
  228. package/dist/components/questions/_shared/types/word-ordering.type.js +1 -1
  229. package/dist/components/questions/_shared/types/write-a-short-letter.type.js +1 -1
  230. package/dist/components/questions/_shared/types/write-correct-verb-form.type.js +3 -1
  231. package/dist/components/questions/_shared/types/write-sentences.type.js +1 -1
  232. package/dist/components/questions/_shared/types/write-short-paragraph.type.js +1 -1
  233. package/dist/components/questions/_shared/utils/answer-builder.js +79 -1
  234. package/dist/components/questions/_shared/utils/createColorRegionRegistration.js +39 -1
  235. package/dist/components/questions/_shared/utils/id-generator.js +3 -1
  236. package/dist/components/questions/_shared/utils/parseFillBlankStem.d.ts +30 -0
  237. package/dist/components/questions/_shared/utils/parseFillBlankStem.js +69 -0
  238. package/dist/components/questions/_shared/utils/question-validation.js +21 -1
  239. package/dist/components/questions/components/ColorNode.js +85 -1
  240. package/dist/components/questions/components/ColorRegionClient.js +545 -1
  241. package/dist/components/questions/components/ColorRegionCreator.js +420 -1
  242. package/dist/components/questions/components/ColorRegionNode.js +59 -1
  243. package/dist/components/questions/components/CreatorGuide.js +103 -1
  244. package/dist/components/questions/components/NameNode.js +26 -1
  245. package/dist/components/questions/components/QuestionBankOption.js +46 -1
  246. package/dist/components/questions/components/QuestionBasicInfoForm.js +9 -1
  247. package/dist/components/questions/components/QuestionCommonFields.js +33 -1
  248. package/dist/components/questions/components/QuestionSearchDropdown.js +258 -1
  249. package/dist/components/questions/components/QuestionTypeSelector.js +32 -1
  250. package/dist/components/questions/components/QuestionTypeSpecificForms.js +6 -1
  251. package/dist/components/questions/components/RegionNode.js +94 -1
  252. package/dist/components/questions/components/index.js +14 -1
  253. package/dist/components/questions/creator/QuestionCreator.js +90 -1
  254. package/dist/components/questions/creator/QuestionGroupCreator.js +119 -1
  255. package/dist/components/questions/creator/dedicated-component-router.js +79 -1
  256. package/dist/components/questions/creator/index.js +3 -1
  257. package/dist/components/questions/creator/question-type-registry.js +90 -1
  258. package/dist/components/questions/groups/ArticlesGroupCard.js +121 -1
  259. package/dist/components/questions/groups/BasicQuestionGroupCard.js +50 -1
  260. package/dist/components/questions/groups/DocumentGroupCard.js +114 -1
  261. package/dist/components/questions/groups/MatchAnswerGroupCard.js +25 -1
  262. package/dist/components/questions/index.d.ts +1 -0
  263. package/dist/components/questions/index.js +11 -1
  264. package/dist/components/questions/question-bank/EditQuestionBankDialog.d.ts +2 -0
  265. package/dist/components/questions/question-bank/EditQuestionBankDialog.js +114 -0
  266. package/dist/components/questions/question-bank/QuestionEditorRenderer.d.ts +23 -0
  267. package/dist/components/questions/question-bank/QuestionEditorRenderer.js +75 -0
  268. package/dist/components/questions/question-bank/difficulty.d.ts +15 -0
  269. package/dist/components/questions/question-bank/difficulty.js +33 -0
  270. package/dist/components/questions/question-bank/editor-adapters/choice-adapters.d.ts +5 -0
  271. package/dist/components/questions/question-bank/editor-adapters/choice-adapters.js +101 -0
  272. package/dist/components/questions/question-bank/editor-adapters/index.d.ts +5 -0
  273. package/dist/components/questions/question-bank/editor-adapters/index.js +4 -0
  274. package/dist/components/questions/question-bank/editor-adapters/media-adapters.d.ts +6 -0
  275. package/dist/components/questions/question-bank/editor-adapters/media-adapters.js +140 -0
  276. package/dist/components/questions/question-bank/editor-adapters/types.d.ts +1 -0
  277. package/dist/components/questions/question-bank/editor-adapters/types.js +1 -0
  278. package/dist/components/questions/question-bank/editor-adapters/unsupported-fallback.d.ts +8 -0
  279. package/dist/components/questions/question-bank/editor-adapters/unsupported-fallback.js +6 -0
  280. package/dist/components/questions/question-bank/editor-adapters/writing-adapters.d.ts +5 -0
  281. package/dist/components/questions/question-bank/editor-adapters/writing-adapters.js +114 -0
  282. package/dist/components/questions/question-bank/index.d.ts +4 -0
  283. package/dist/components/questions/question-bank/index.js +3 -0
  284. package/dist/components/questions/question-bank/types.d.ts +59 -0
  285. package/dist/components/questions/question-bank/types.js +1 -0
  286. package/dist/components/questions/types/answer-the-question/AnswerTheQuestionClient.js +37 -1
  287. package/dist/components/questions/types/answer-the-question/AnswerTheQuestionCreator.js +351 -1
  288. package/dist/components/questions/types/answer-the-question/register.js +67 -1
  289. package/dist/components/questions/types/answer-the-question/transform.js +36 -1
  290. package/dist/components/questions/types/arrange-letters-into-words/ArrangeLettersIntoWordsClient.js +141 -1
  291. package/dist/components/questions/types/arrange-letters-into-words/ArrangeLettersIntoWordsCreator.js +118 -1
  292. package/dist/components/questions/types/arrange-letters-into-words/index.js +2 -1
  293. package/dist/components/questions/types/arrange-letters-into-words/register.js +4 -1
  294. package/dist/components/questions/types/arrange-letters-into-words/transform.js +24 -1
  295. package/dist/components/questions/types/choose-correct-adjective/ChooseCorrectAdjectiveClient.js +74 -1
  296. package/dist/components/questions/types/choose-correct-adjective/ChooseCorrectAdjectiveCreator.js +169 -1
  297. package/dist/components/questions/types/choose-correct-adjective/index.js +2 -1
  298. package/dist/components/questions/types/choose-correct-adjective/register.js +55 -1
  299. package/dist/components/questions/types/choose-correct-adjective/transform.js +16 -1
  300. package/dist/components/questions/types/choose-the-correct-answer/ChooseTheCorrectAnswerClient.js +149 -1
  301. package/dist/components/questions/types/choose-the-correct-answer/ChooseTheCorrectAnswerCreator.js +568 -1
  302. package/dist/components/questions/types/choose-the-correct-answer/index.js +3 -1
  303. package/dist/components/questions/types/choose-the-correct-answer/normalize.d.ts +9 -0
  304. package/dist/components/questions/types/choose-the-correct-answer/normalize.js +88 -1
  305. package/dist/components/questions/types/choose-the-correct-answer/register.js +99 -1
  306. package/dist/components/questions/types/choose-the-correct-answer/transform.js +70 -1
  307. package/dist/components/questions/types/choose-the-correct-answer-group/ChooseTheCorrectAnswerGroupClient.js +22 -1
  308. package/dist/components/questions/types/choose-the-correct-answer-group/ChooseTheCorrectAnswerGroupCreator.js +163 -1
  309. package/dist/components/questions/types/choose-the-correct-answer-group/index.js +3 -1
  310. package/dist/components/questions/types/choose-the-correct-answer-group/map-choose-the-correct-answer-group-data.js +94 -1
  311. package/dist/components/questions/types/choose-the-correct-answer-group/register.js +36 -1
  312. package/dist/components/questions/types/choose-the-correct-answer-group/transform.js +55 -1
  313. package/dist/components/questions/types/cross-out-word-group/CrossOutWordGroupClient.js +27 -1
  314. package/dist/components/questions/types/cross-out-word-group/CrossOutWordGroupCreator.js +231 -1
  315. package/dist/components/questions/types/cross-out-word-group/index.js +5 -1
  316. package/dist/components/questions/types/cross-out-word-group/map-cross-out-word-group-data.d.ts +1 -1
  317. package/dist/components/questions/types/cross-out-word-group/map-cross-out-word-group-data.js +110 -1
  318. package/dist/components/questions/types/cross-out-word-group/register.js +36 -1
  319. package/dist/components/questions/types/cross-out-word-group/transform.js +67 -1
  320. package/dist/components/questions/types/fill-in-blank/FillInBlankClient.js +275 -1
  321. package/dist/components/questions/types/fill-in-blank/FillInBlankCreator.js +464 -1
  322. package/dist/components/questions/types/fill-in-blank/index.js +2 -1
  323. package/dist/components/questions/types/fill-in-blank/register.js +148 -1
  324. package/dist/components/questions/types/fill-in-blank/transform.js +88 -1
  325. package/dist/components/questions/types/fill-missing-words-in-grid/FillMissingWordsInGridClient.js +117 -1
  326. package/dist/components/questions/types/fill-missing-words-in-grid/FillMissingWordsInGridCreator.js +671 -1
  327. package/dist/components/questions/types/fill-missing-words-in-grid/index.js +2 -1
  328. package/dist/components/questions/types/fill-missing-words-in-grid/register.js +37 -1
  329. package/dist/components/questions/types/fill-missing-words-in-grid/transform.js +15 -1
  330. package/dist/components/questions/types/gn-speaking-interview/GNSpeakingInterviewCreator.js +262 -1
  331. package/dist/components/questions/types/gn-speaking-interview/register.js +121 -1
  332. package/dist/components/questions/types/gn-speaking-interview/transform.js +48 -1
  333. package/dist/components/questions/types/image-object-matching/ImageObjectMatchingClient.js +16 -1
  334. package/dist/components/questions/types/image-object-matching/ImageObjectMatchingCreator.js +27 -1
  335. package/dist/components/questions/types/image-object-matching/index.js +2 -1
  336. package/dist/components/questions/types/image-object-matching/register.js +3 -1
  337. package/dist/components/questions/types/image-object-matching/transform.js +2 -1
  338. package/dist/components/questions/types/label-the-picture/LabelThePictureClient.js +102 -1
  339. package/dist/components/questions/types/label-the-picture/LabelThePictureCreator.js +344 -1
  340. package/dist/components/questions/types/label-the-picture/index.js +2 -1
  341. package/dist/components/questions/types/label-the-picture/register.js +54 -1
  342. package/dist/components/questions/types/label-the-picture/transform.js +28 -1
  343. package/dist/components/questions/types/listen-and-choose-from-answer-group/ListenAndChooseFromAnswerGroupClient.js +78 -1
  344. package/dist/components/questions/types/listen-and-choose-from-answer-group/ListenAndChooseFromAnswerGroupCreator.js +232 -1
  345. package/dist/components/questions/types/listen-and-choose-from-answer-group/index.js +2 -1
  346. package/dist/components/questions/types/listen-and-choose-from-answer-group/register.js +82 -1
  347. package/dist/components/questions/types/listen-and-choose-from-answer-group/transform.js +27 -1
  348. package/dist/components/questions/types/listen-and-choose-objects-in-scene/ListenAndChooseObjectsInSceneClient.js +70 -1
  349. package/dist/components/questions/types/listen-and-choose-objects-in-scene/ListenAndChooseObjectsInSceneCreator.js +386 -1
  350. package/dist/components/questions/types/listen-and-choose-objects-in-scene/index.js +2 -1
  351. package/dist/components/questions/types/listen-and-choose-objects-in-scene/register.js +100 -1
  352. package/dist/components/questions/types/listen-and-choose-objects-in-scene/transform.js +33 -1
  353. package/dist/components/questions/types/listen-and-drag-objects-into-scene/ListenAndDragObjectsIntoSceneClient.js +106 -1
  354. package/dist/components/questions/types/listen-and-drag-objects-into-scene/ListenAndDragObjectsIntoSceneCreator.js +457 -1
  355. package/dist/components/questions/types/listen-and-drag-objects-into-scene/index.js +2 -1
  356. package/dist/components/questions/types/listen-and-drag-objects-into-scene/register.js +110 -1
  357. package/dist/components/questions/types/listen-and-drag-objects-into-scene/transform.js +35 -1
  358. package/dist/components/questions/types/listen-and-speak-answer/ArrowIndicator.js +8 -1
  359. package/dist/components/questions/types/listen-and-speak-answer/ListenAndSpeakAnswerClient.js +22 -1
  360. package/dist/components/questions/types/listen-and-speak-answer/ListenAndSpeakAnswerCreator.js +291 -1
  361. package/dist/components/questions/types/listen-and-speak-answer/index.js +2 -1
  362. package/dist/components/questions/types/listen-and-speak-answer/register.js +84 -1
  363. package/dist/components/questions/types/listen-and-speak-answer/transform.js +27 -1
  364. package/dist/components/questions/types/listen-and-speak-compare-images/ListenAndSpeakCompareImagesClient.js +32 -1
  365. package/dist/components/questions/types/listen-and-speak-compare-images/ListenAndSpeakCompareImagesCreator.js +295 -1
  366. package/dist/components/questions/types/listen-and-speak-compare-images/register.js +79 -1
  367. package/dist/components/questions/types/listen-and-speak-compare-images/transform.js +27 -1
  368. package/dist/components/questions/types/listen-and-speak-image-group/ListenAndSpeakImageGroupClient.js +34 -1
  369. package/dist/components/questions/types/listen-and-speak-image-group/ListenAndSpeakImageGroupCreator.js +285 -1
  370. package/dist/components/questions/types/listen-and-speak-image-group/register.js +81 -1
  371. package/dist/components/questions/types/listen-and-speak-image-group/transform.js +26 -1
  372. package/dist/components/questions/types/listen-and-speak-info-exchange/ListenAndSpeakInfoExchangeClient.js +38 -1
  373. package/dist/components/questions/types/listen-and-speak-info-exchange/ListenAndSpeakInfoExchangeCreator.js +385 -1
  374. package/dist/components/questions/types/listen-and-speak-info-exchange/register.js +87 -1
  375. package/dist/components/questions/types/listen-and-speak-info-exchange/transform.js +32 -1
  376. package/dist/components/questions/types/listen-and-speak-odd-one-out/ListenAndSpeakOddOneOutClient.js +26 -1
  377. package/dist/components/questions/types/listen-and-speak-odd-one-out/ListenAndSpeakOddOneOutCreator.js +247 -1
  378. package/dist/components/questions/types/listen-and-speak-odd-one-out/register.js +59 -1
  379. package/dist/components/questions/types/listen-and-speak-odd-one-out/transform.js +18 -1
  380. package/dist/components/questions/types/listen-and-speak-question-list/ListenAndSpeakQuestionListClient.js +26 -1
  381. package/dist/components/questions/types/listen-and-speak-question-list/ListenAndSpeakQuestionListCreator.js +256 -1
  382. package/dist/components/questions/types/listen-and-speak-question-list/register.js +81 -1
  383. package/dist/components/questions/types/listen-and-speak-question-list/transform.js +26 -1
  384. package/dist/components/questions/types/listen-and-speak-with-story-images/ListenAndSpeakWithStoryImagesClient.js +26 -1
  385. package/dist/components/questions/types/listen-and-speak-with-story-images/ListenAndSpeakWithStoryImagesCreator.js +230 -1
  386. package/dist/components/questions/types/listen-and-speak-with-story-images/register.js +56 -1
  387. package/dist/components/questions/types/listen-and-speak-with-story-images/transform.js +16 -1
  388. package/dist/components/questions/types/look-picture-choose-correct-answer/LookPictureChooseCorrectAnswerClient.js +72 -1
  389. package/dist/components/questions/types/look-picture-choose-correct-answer/LookPictureChooseCorrectAnswerCreator.js +230 -1
  390. package/dist/components/questions/types/look-picture-choose-correct-answer/index.js +1 -1
  391. package/dist/components/questions/types/look-picture-choose-correct-answer/register.js +66 -1
  392. package/dist/components/questions/types/look-picture-choose-correct-answer/transform.js +42 -1
  393. package/dist/components/questions/types/look-picture-fill-blank-choose-answer/LookPictureFillBlankChooseAnswerClient.js +96 -1
  394. package/dist/components/questions/types/look-picture-fill-blank-choose-answer/LookPictureFillBlankChooseAnswerCreator.js +238 -1
  395. package/dist/components/questions/types/look-picture-fill-blank-choose-answer/index.js +2 -1
  396. package/dist/components/questions/types/look-picture-fill-blank-choose-answer/register.js +76 -1
  397. package/dist/components/questions/types/look-picture-fill-blank-choose-answer/transform.js +19 -1
  398. package/dist/components/questions/types/look-picture-fill-word-hint/LookPictureFillWordHintClient.js +134 -1
  399. package/dist/components/questions/types/look-picture-fill-word-hint/LookPictureFillWordHintCreator.js +617 -1
  400. package/dist/components/questions/types/look-picture-fill-word-hint/index.js +2 -1
  401. package/dist/components/questions/types/look-picture-fill-word-hint/register.js +82 -1
  402. package/dist/components/questions/types/look-picture-fill-word-hint/transform.js +29 -1
  403. package/dist/components/questions/types/match-by-writing-answer/MatchByWritingAnswerClient.js +38 -1
  404. package/dist/components/questions/types/match-by-writing-answer/MatchByWritingAnswerCreator.js +359 -1
  405. package/dist/components/questions/types/match-by-writing-answer/index.js +3 -1
  406. package/dist/components/questions/types/match-by-writing-answer/register.js +58 -1
  407. package/dist/components/questions/types/match-by-writing-answer/transform.js +61 -1
  408. package/dist/components/questions/types/read-and-color-objects/ReadAndColorObjectsClient.js +16 -1
  409. package/dist/components/questions/types/read-and-color-objects/ReadAndColorObjectsCreator.js +23 -1
  410. package/dist/components/questions/types/read-and-color-objects/index.js +2 -1
  411. package/dist/components/questions/types/read-and-color-objects/register.js +3 -1
  412. package/dist/components/questions/types/read-and-color-objects/transform.js +36 -1
  413. package/dist/components/questions/types/read-displayed-content/ReadDisplayedContentCreator.js +125 -1
  414. package/dist/components/questions/types/read-displayed-content/register.js +64 -1
  415. package/dist/components/questions/types/read-displayed-content/transform.js +12 -1
  416. package/dist/components/questions/types/read-passage-and-answer-questions/ReadPassageAndAnswerQuestionsClient.js +65 -1
  417. package/dist/components/questions/types/read-passage-and-answer-questions/ReadPassageAndAnswerQuestionsCreator.js +511 -1
  418. package/dist/components/questions/types/read-passage-and-answer-questions/index.js +2 -1
  419. package/dist/components/questions/types/read-passage-and-answer-questions/register.js +58 -1
  420. package/dist/components/questions/types/read-passage-and-answer-questions/transform.js +28 -1
  421. package/dist/components/questions/types/speaking-conversation/SpeakingConversationCreator.js +373 -1
  422. package/dist/components/questions/types/speaking-conversation/SpeakingConversationPreviewClient.js +41 -1
  423. package/dist/components/questions/types/speaking-conversation/register.js +110 -1
  424. package/dist/components/questions/types/speaking-conversation/transform.js +34 -1
  425. package/dist/components/questions/types/speaking-cue-card/SpeakingCueCardCreator.js +74 -1
  426. package/dist/components/questions/types/speaking-cue-card/register.js +52 -1
  427. package/dist/components/questions/types/speaking-cue-card/transform.js +12 -1
  428. package/dist/components/questions/types/speaking-describe-image/SpeakingDescribeImageClient.js +10 -1
  429. package/dist/components/questions/types/speaking-describe-image/SpeakingDescribeImageCreator.js +161 -1
  430. package/dist/components/questions/types/speaking-describe-image/index.js +2 -1
  431. package/dist/components/questions/types/speaking-describe-image/register.js +69 -1
  432. package/dist/components/questions/types/speaking-describe-image/transform.js +16 -1
  433. package/dist/components/questions/types/spontaneous-qa/SpontaneousQACreator.js +234 -1
  434. package/dist/components/questions/types/spontaneous-qa/register.js +93 -1
  435. package/dist/components/questions/types/spontaneous-qa/transform.js +34 -1
  436. package/dist/components/questions/types/spontaneous-qa-group/SpontaneousQaGroupClient.d.ts +2 -0
  437. package/dist/components/questions/types/spontaneous-qa-group/SpontaneousQaGroupClient.js +9 -0
  438. package/dist/components/questions/types/spontaneous-qa-group/SpontaneousQaGroupCreator.d.ts +2 -0
  439. package/dist/components/questions/types/spontaneous-qa-group/SpontaneousQaGroupCreator.js +179 -0
  440. package/dist/components/questions/types/spontaneous-qa-group/creator-helpers.d.ts +5 -0
  441. package/dist/components/questions/types/spontaneous-qa-group/creator-helpers.js +43 -0
  442. package/dist/components/questions/types/spontaneous-qa-group/flatten.d.ts +14 -0
  443. package/dist/components/questions/types/spontaneous-qa-group/flatten.js +69 -0
  444. package/dist/components/questions/types/spontaneous-qa-group/index.d.ts +2 -0
  445. package/dist/components/questions/types/spontaneous-qa-group/index.js +2 -0
  446. package/dist/components/questions/types/spontaneous-qa-group/register.d.ts +2 -0
  447. package/dist/components/questions/types/spontaneous-qa-group/register.js +139 -0
  448. package/dist/components/questions/types/spontaneous-qa-group/transform.d.ts +2 -0
  449. package/dist/components/questions/types/spontaneous-qa-group/transform.js +52 -0
  450. package/dist/components/questions/types/true-false/TrueFalseClient.js +75 -1
  451. package/dist/components/questions/types/true-false/TrueFalseCreator.js +244 -1
  452. package/dist/components/questions/types/true-false/index.js +2 -1
  453. package/dist/components/questions/types/true-false/register.js +77 -1
  454. package/dist/components/questions/types/true-false/transform.js +32 -1
  455. package/dist/components/questions/types/true-false-group/TrueFalseGroupClient.js +25 -1
  456. package/dist/components/questions/types/true-false-group/TrueFalseGroupCreator.js +129 -1
  457. package/dist/components/questions/types/true-false-group/index.js +5 -1
  458. package/dist/components/questions/types/true-false-group/map-true-false-group-data.js +69 -1
  459. package/dist/components/questions/types/true-false-group/register.js +36 -1
  460. package/dist/components/questions/types/true-false-group/transform.js +43 -1
  461. package/dist/components/questions/types/word-fill-paragraph/WordFillParagraphClient.js +233 -1
  462. package/dist/components/questions/types/word-fill-paragraph/WordFillParagraphCreator.js +631 -1
  463. package/dist/components/questions/types/word-fill-paragraph/WordFillParagraphWrapper.js +28 -1
  464. package/dist/components/questions/types/word-fill-paragraph/index.js +2 -1
  465. package/dist/components/questions/types/word-fill-paragraph/register.js +136 -1
  466. package/dist/components/questions/types/word-fill-paragraph/transform.js +56 -1
  467. package/dist/components/questions/types/word-fill-structured-form/WfsfWordBankEditor.js +86 -1
  468. package/dist/components/questions/types/word-fill-structured-form/WordFillStructuredFormClient.js +246 -1
  469. package/dist/components/questions/types/word-fill-structured-form/WordFillStructuredFormCreator.d.ts +2 -0
  470. package/dist/components/questions/types/word-fill-structured-form/WordFillStructuredFormCreator.js +484 -1
  471. package/dist/components/questions/types/word-fill-structured-form/index.js +3 -1
  472. package/dist/components/questions/types/word-fill-structured-form/map-wfsf-question-data.js +113 -1
  473. package/dist/components/questions/types/word-fill-structured-form/register.js +36 -1
  474. package/dist/components/questions/types/word-fill-structured-form/transform.js +77 -1
  475. package/dist/components/questions/types/word-fill-structured-form/wfsf-word-bank.utils.js +110 -1
  476. package/dist/components/questions/types/word-order-and-match-group/WordOrderAndMatchGroupClient.d.ts +3 -0
  477. package/dist/components/questions/types/word-order-and-match-group/WordOrderAndMatchGroupClient.js +190 -0
  478. package/dist/components/questions/types/word-order-and-match-group/WordOrderAndMatchGroupCreator.d.ts +3 -0
  479. package/dist/components/questions/types/word-order-and-match-group/WordOrderAndMatchGroupCreator.js +182 -0
  480. package/dist/components/questions/types/word-order-and-match-group/index.d.ts +4 -0
  481. package/dist/components/questions/types/word-order-and-match-group/index.js +4 -0
  482. package/dist/components/questions/types/word-order-and-match-group/register.d.ts +2 -0
  483. package/dist/components/questions/types/word-order-and-match-group/register.js +121 -0
  484. package/dist/components/questions/types/word-order-and-match-group/transform.d.ts +2 -0
  485. package/dist/components/questions/types/word-order-and-match-group/transform.js +70 -0
  486. package/dist/components/questions/types/word-ordering/WordOrderingClient.js +84 -1
  487. package/dist/components/questions/types/word-ordering/WordOrderingCreator.js +192 -1
  488. package/dist/components/questions/types/word-ordering/index.js +2 -1
  489. package/dist/components/questions/types/word-ordering/register.js +46 -1
  490. package/dist/components/questions/types/word-ordering/transform.js +24 -1
  491. package/dist/components/questions/types/write-a-short-letter/WriteAShortLetterClient.js +99 -1
  492. package/dist/components/questions/types/write-a-short-letter/WriteAShortLetterCreator.js +320 -1
  493. package/dist/components/questions/types/write-a-short-letter/index.js +2 -1
  494. package/dist/components/questions/types/write-a-short-letter/register.js +68 -1
  495. package/dist/components/questions/types/write-a-short-letter/transform.js +25 -1
  496. package/dist/components/questions/types/write-correct-verb-form/WriteCorrectVerbFormClient.js +61 -1
  497. package/dist/components/questions/types/write-correct-verb-form/WriteCorrectVerbFormCreator.js +196 -1
  498. package/dist/components/questions/types/write-correct-verb-form/index.js +2 -1
  499. package/dist/components/questions/types/write-correct-verb-form/register.js +62 -1
  500. package/dist/components/questions/types/write-correct-verb-form/transform.js +17 -1
  501. package/dist/components/questions/types/write-sentences/WriteSentencesClient.js +22 -1
  502. package/dist/components/questions/types/write-sentences/WriteSentencesCreator.js +174 -1
  503. package/dist/components/questions/types/write-sentences/index.js +2 -1
  504. package/dist/components/questions/types/write-sentences/register.js +58 -1
  505. package/dist/components/questions/types/write-sentences/transform.js +28 -1
  506. package/dist/components/questions/types/write-short-paragraph/WriteShortParagraphClient.js +96 -1
  507. package/dist/components/questions/types/write-short-paragraph/WriteShortParagraphCreator.js +161 -1
  508. package/dist/components/questions/types/write-short-paragraph/index.js +2 -1
  509. package/dist/components/questions/types/write-short-paragraph/register.js +4 -1
  510. package/dist/components/questions/types/write-short-paragraph/transform.js +21 -1
  511. package/dist/components/questions/viewer/ChooseTheCorrectAnswerGroupViewer.js +11 -1
  512. package/dist/components/questions/viewer/CrossOutWordGroupViewer.js +8 -1
  513. package/dist/components/questions/viewer/QuestionGroupViewer.js +36 -1
  514. package/dist/components/questions/viewer/QuestionViewer.js +692 -1
  515. package/dist/components/questions/viewer/SpontaneousQaGroupViewer.d.ts +2 -1
  516. package/dist/components/questions/viewer/SpontaneousQaGroupViewer.js +82 -1
  517. package/dist/components/questions/viewer/TrueFalseGroupViewer.js +11 -1
  518. package/dist/components/questions/viewer/WordFillStructuredFormViewer.js +14 -1
  519. package/dist/components/questions/viewer/WordOrderAndMatchGroupViewer.d.ts +3 -1
  520. package/dist/components/questions/viewer/WordOrderAndMatchGroupViewer.js +95 -1
  521. package/dist/components/questions/viewer/index.js +8 -1
  522. package/dist/components/results/ResultReviewPageContainer.js +220 -1
  523. package/dist/components/results/ReviewQuestionRenderer.js +55 -1
  524. package/dist/components/results/hooks/useResultReviewPolling.js +76 -1
  525. package/dist/components/results/index.js +22 -1
  526. package/dist/components/results/renderers/QuestionExplanations.js +19 -1
  527. package/dist/components/results/renderers/ReviewChooseAdjectiveRenderer.js +94 -1
  528. package/dist/components/results/renderers/ReviewChooseBestAnswerRenderer.js +75 -1
  529. package/dist/components/results/renderers/ReviewColoringRenderer.js +110 -1
  530. package/dist/components/results/renderers/ReviewListenAndWriteRenderer.js +48 -1
  531. package/dist/components/results/renderers/ReviewListenChooseAnswerGroupRenderer.js +87 -1
  532. package/dist/components/results/renderers/ReviewListenChooseObjectsRenderer.js +104 -1
  533. package/dist/components/results/renderers/ReviewListenDragObjectsRenderer.js +123 -1
  534. package/dist/components/results/renderers/ReviewListeningHeader.js +104 -1
  535. package/dist/components/results/renderers/ReviewSpeakingAIPanel.js +116 -1
  536. package/dist/components/results/renderers/ReviewSpeakingMedia.js +48 -1
  537. package/dist/components/results/renderers/ReviewSpeakingQuestionItem.js +42 -1
  538. package/dist/components/results/renderers/ReviewSpeakingRenderer.js +12 -1
  539. package/dist/components/results/renderers/ReviewSpeakingRenderer.types.js +85 -1
  540. package/dist/components/results/renderers/review-question-body-dedicated.js +104 -1
  541. package/dist/components/results/renderers/review-question-body-movers.js +148 -1
  542. package/dist/components/results/renderers/review-speaking-map.js +226 -1
  543. package/dist/components/results/renderers/review-spontaneous-qa-group.d.ts +4 -0
  544. package/dist/components/results/renderers/review-spontaneous-qa-group.js +74 -0
  545. package/dist/components/results/report/BadgeTitle.js +5 -1
  546. package/dist/components/results/report/ExamSkillRow.js +20 -1
  547. package/dist/components/results/report/OceanEduExamReport.js +58 -1
  548. package/dist/components/results/report/OceanEduSpeakingReport.js +62 -1
  549. package/dist/components/results/report/OverallAssessmentSection.js +17 -1
  550. package/dist/components/results/report/ResultErrorState.js +18 -1
  551. package/dist/components/results/report/ResultLoadingState.js +10 -1
  552. package/dist/components/results/report/ResultNotPublicState.js +27 -1
  553. package/dist/components/results/report/SpeakingReportParts.js +14 -1
  554. package/dist/components/results/report/SpeakingReportShared.js +86 -1
  555. package/dist/components/results/report/SpeakingRubricSection.js +171 -1
  556. package/dist/components/results/report/speaking-report.utils.js +198 -1
  557. package/dist/components/results/result-review.utils.js +6 -1
  558. package/dist/components/results/review-data.js +222 -1
  559. package/dist/components/results/review-renderer.utils.js +97 -1
  560. package/dist/components/results/review-status.utils.js +36 -1
  561. package/dist/components/results/review-types.js +1 -1
  562. package/dist/components/results/speaking/SpeakingResultAudioPlayer.js +77 -1
  563. package/dist/components/results/speaking/SpeakingReviewResult.js +48 -1
  564. package/dist/components/results/utils/review-score.utils.js +72 -1
  565. package/dist/components/results/utils/speaking-summary.js +224 -1
  566. package/dist/components/results/utils/transform-speaking-review.js +183 -1
  567. package/dist/components/shared/RichTextEditor.d.ts +9 -0
  568. package/dist/components/shared/RichTextEditor.js +47 -0
  569. package/dist/components/shared/audio/SpeakingAudioPlayer.js +100 -1
  570. package/dist/components/themes/cambridge-yle/CambridgeYleAudioPlayer.js +140 -1
  571. package/dist/components/themes/cambridge-yle/CambridgeYleBottomNav.js +10 -1
  572. package/dist/components/themes/cambridge-yle/CambridgeYleExamLayout.d.ts +1 -1
  573. package/dist/components/themes/cambridge-yle/CambridgeYleExamLayout.js +18 -1
  574. package/dist/components/themes/cambridge-yle/CambridgeYleExampleText.js +11 -1
  575. package/dist/components/themes/cambridge-yle/CambridgeYleHeader.js +11 -1
  576. package/dist/components/themes/cambridge-yle/CambridgeYleInstructionBanner.d.ts +2 -1
  577. package/dist/components/themes/cambridge-yle/CambridgeYleInstructionBanner.js +19 -1
  578. package/dist/components/themes/cambridge-yle/CambridgeYleNavButton.js +13 -1
  579. package/dist/components/themes/cambridge-yle/CambridgeYlePartBanner.d.ts +1 -1
  580. package/dist/components/themes/cambridge-yle/CambridgeYlePartBanner.js +3 -1
  581. package/dist/components/themes/cambridge-yle/CambridgeYleProgressBar.js +6 -1
  582. package/dist/components/themes/cambridge-yle/CambridgeYleQuestionCard.js +5 -1
  583. package/dist/components/themes/cambridge-yle/CambridgeYleQuestionCardFullWidth.js +9 -1
  584. package/dist/components/themes/cambridge-yle/CambridgeYleSidebar.d.ts +2 -1
  585. package/dist/components/themes/cambridge-yle/CambridgeYleSidebar.js +61 -1
  586. package/dist/components/themes/cambridge-yle/CambridgeYleTimer.d.ts +1 -1
  587. package/dist/components/themes/cambridge-yle/CambridgeYleTimer.js +25 -1
  588. package/dist/components/themes/cambridge-yle/index.js +13 -1
  589. package/dist/components/themes/english-certification/EcAnswerTheQuestion.js +25 -1
  590. package/dist/components/themes/english-certification/EcMatchByWritingAnswer.js +89 -1
  591. package/dist/components/themes/english-certification/EcWordFillParagraph.js +56 -1
  592. package/dist/components/themes/english-certification/EcWordFillStructuredForm.js +192 -1
  593. package/dist/components/themes/english-certification/EcWritingTask.js +60 -1
  594. package/dist/components/themes/english-certification/EnglishCertificationAudioPlayer.js +108 -1
  595. package/dist/components/themes/english-certification/EnglishCertificationBrand.js +11 -1
  596. package/dist/components/themes/english-certification/EnglishCertificationExamLayout.js +34 -1
  597. package/dist/components/themes/english-certification/EnglishCertificationFlagButton.js +15 -1
  598. package/dist/components/themes/english-certification/EnglishCertificationFooterBar.js +19 -1
  599. package/dist/components/themes/english-certification/EnglishCertificationGroupedQuestion.js +166 -1
  600. package/dist/components/themes/english-certification/EnglishCertificationHeader.js +31 -1
  601. package/dist/components/themes/english-certification/EnglishCertificationInstructionBanner.js +79 -1
  602. package/dist/components/themes/english-certification/EnglishCertificationNavigationPanel.js +71 -1
  603. package/dist/components/themes/english-certification/EnglishCertificationOptionSelector.js +79 -1
  604. package/dist/components/themes/english-certification/EnglishCertificationPartHeader.js +47 -1
  605. package/dist/components/themes/english-certification/EnglishCertificationPassagePanel.js +77 -1
  606. package/dist/components/themes/english-certification/EnglishCertificationQuestionCard.js +25 -1
  607. package/dist/components/themes/english-certification/EnglishCertificationQuestionItem.js +36 -1
  608. package/dist/components/themes/english-certification/EnglishCertificationQuestionRenderer.js +81 -1
  609. package/dist/components/themes/english-certification/EnglishCertificationReadingSection.js +95 -1
  610. package/dist/components/themes/english-certification/EnglishCertificationSingleQuestion.js +18 -1
  611. package/dist/components/themes/english-certification/EnglishCertificationSingleQuestionList.js +32 -1
  612. package/dist/components/themes/english-certification/english-cert-scroll.js +163 -1
  613. package/dist/components/themes/english-certification/english-certification-theme.js +58 -1
  614. package/dist/components/themes/english-certification/grouped-question-utils.js +243 -1
  615. package/dist/components/themes/english-certification/index.js +24 -1
  616. package/dist/components/themes/index.js +25 -1
  617. package/dist/components/themes/summer-sky/SummerSkyAudioPlayer.js +170 -1
  618. package/dist/components/themes/summer-sky/SummerSkyExitModal.js +21 -1
  619. package/dist/components/themes/summer-sky/SummerSkyLayout.js +221 -1
  620. package/dist/components/themes/summer-sky/SummerSkySubmitModal.js +18 -1
  621. package/dist/components/themes/summer-sky/SummerSkyWaitingRoom.js +193 -1
  622. package/dist/components/themes/types.js +1 -1
  623. package/dist/components/ui/alert-dialog.js +26 -1
  624. package/dist/components/ui/alert.js +22 -1
  625. package/dist/components/ui/avatar.js +12 -1
  626. package/dist/components/ui/badge.js +38 -1
  627. package/dist/components/ui/button.js +35 -1
  628. package/dist/components/ui/calendar.js +76 -1
  629. package/dist/components/ui/card.js +16 -1
  630. package/dist/components/ui/carousel.js +91 -1
  631. package/dist/components/ui/checkbox.js +9 -1
  632. package/dist/components/ui/collapsible.js +13 -1
  633. package/dist/components/ui/command.js +34 -1
  634. package/dist/components/ui/confirm-dialog.js +49 -1
  635. package/dist/components/ui/dialog.js +23 -1
  636. package/dist/components/ui/drawer.js +35 -1
  637. package/dist/components/ui/dropdown-menu.js +33 -1
  638. package/dist/components/ui/file-upload.js +155 -1
  639. package/dist/components/ui/form.js +62 -1
  640. package/dist/components/ui/hover-card.js +10 -1
  641. package/dist/components/ui/image-preview.js +29 -1
  642. package/dist/components/ui/input.js +8 -1
  643. package/dist/components/ui/label.js +9 -1
  644. package/dist/components/ui/language-switcher.js +15 -1
  645. package/dist/components/ui/multi-select.js +90 -1
  646. package/dist/components/ui/points-input.js +33 -1
  647. package/dist/components/ui/popover.js +26 -1
  648. package/dist/components/ui/progress.js +16 -1
  649. package/dist/components/ui/radio-group.js +12 -1
  650. package/dist/components/ui/scroll-area.js +11 -1
  651. package/dist/components/ui/select.js +38 -1
  652. package/dist/components/ui/separator.js +8 -1
  653. package/dist/components/ui/sheet.js +40 -1
  654. package/dist/components/ui/single-select.js +76 -1
  655. package/dist/components/ui/skeleton.js +6 -1
  656. package/dist/components/ui/switch.js +8 -1
  657. package/dist/components/ui/table.js +20 -1
  658. package/dist/components/ui/tabs.js +17 -1
  659. package/dist/components/ui/textarea.js +8 -1
  660. package/dist/components/ui/tooltip.js +11 -1
  661. package/dist/index.d.ts +3 -0
  662. package/dist/index.js +24 -1
  663. package/dist/shared/constants/ApiConstant.d.ts +1 -0
  664. package/dist/shared/constants/ApiConstant.js +278 -1
  665. package/dist/shared/constants/QueryKeyConstant.js +112 -1
  666. package/dist/shared/constants/exam-level.enum.js +41 -1
  667. package/dist/shared/constants/landings/placement-test.constants.js +431 -1
  668. package/dist/shared/constants/question-skills.js +277 -1
  669. package/dist/shared/constants/routes.js +81 -1
  670. package/dist/shared/index.js +10 -1
  671. package/dist/shared/lib/hooks/index.js +10 -1
  672. package/dist/shared/lib/hooks/useAlertDialog.js +57 -1
  673. package/dist/shared/lib/hooks/useAudioPlayCounter.js +30 -1
  674. package/dist/shared/lib/hooks/useAudioPreview.js +81 -1
  675. package/dist/shared/lib/hooks/useAudioUpload.js +24 -1
  676. package/dist/shared/lib/hooks/useConfirmDialog.js +89 -1
  677. package/dist/shared/lib/hooks/useDebouncedCallback.js +32 -1
  678. package/dist/shared/lib/hooks/useDelayedAutoPlay.js +12 -1
  679. package/dist/shared/lib/hooks/useFileUpload.js +24 -1
  680. package/dist/shared/lib/hooks/useImageUrl.js +5 -1
  681. package/dist/shared/lib/hooks/usePresignedFileUrl.js +108 -1
  682. package/dist/shared/lib/hooks/useReactHookForm.js +31 -1
  683. package/dist/shared/lib/hooks/useToast.js +62 -1
  684. package/dist/shared/lib/html-content.js +22 -1
  685. package/dist/shared/lib/i18n/index.js +54 -1
  686. package/dist/shared/lib/i18n/messages/en/admin.d.ts +11 -4
  687. package/dist/shared/lib/i18n/messages/en/admin.js +2111 -1
  688. package/dist/shared/lib/i18n/messages/en/auth.js +86 -1
  689. package/dist/shared/lib/i18n/messages/en/common.js +140 -1
  690. package/dist/shared/lib/i18n/messages/en/file-upload.js +18 -1
  691. package/dist/shared/lib/i18n/messages/en/student.js +133 -1
  692. package/dist/shared/lib/i18n/messages/en/terms.js +37 -1
  693. package/dist/shared/lib/i18n/messages/en.d.ts +11 -4
  694. package/dist/shared/lib/i18n/messages/en.js +15 -1
  695. package/dist/shared/lib/i18n/messages/vi/admin.d.ts +11 -4
  696. package/dist/shared/lib/i18n/messages/vi/admin.js +2111 -1
  697. package/dist/shared/lib/i18n/messages/vi/auth.js +86 -1
  698. package/dist/shared/lib/i18n/messages/vi/common.js +140 -1
  699. package/dist/shared/lib/i18n/messages/vi/file-upload.js +18 -1
  700. package/dist/shared/lib/i18n/messages/vi/student.js +133 -1
  701. package/dist/shared/lib/i18n/messages/vi/terms.js +37 -1
  702. package/dist/shared/lib/i18n/messages/vi.d.ts +11 -4
  703. package/dist/shared/lib/i18n/messages/vi.js +15 -1
  704. package/dist/shared/lib/i18n/types.js +1 -1
  705. package/dist/shared/lib/stores/examQuestionStore.js +212 -1
  706. package/dist/shared/lib/stores/examTakingStore.js +240 -1
  707. package/dist/shared/lib/stores/gradingTransientStore.js +39 -1
  708. package/dist/shared/lib/stores/localeStore.js +10 -1
  709. package/dist/shared/lib/themes/config/starters.config.js +71 -1
  710. package/dist/shared/lib/themes/index.js +49 -1
  711. package/dist/shared/lib/themes/types.js +2 -1
  712. package/dist/shared/lib/toast.js +43 -1
  713. package/dist/shared/lib/utils/public-page.js +44 -1
  714. package/dist/shared/lib/utils/question-reverse-transform.js +438 -1
  715. package/dist/shared/lib/utils/question-transform-types.js +1 -1
  716. package/dist/shared/lib/utils/question-transform-validation.js +194 -1
  717. package/dist/shared/lib/utils/question-transform.js +199 -1
  718. package/dist/shared/lib/utils.js +168 -1
  719. package/dist/shared/lib/validation/choose-correct-answer.validation.js +111 -1
  720. package/dist/shared/lib/validation/label-the-picture.validation.js +19 -1
  721. package/dist/shared/lib/validation/listen-and-choose-from-answer-group.validation.js +46 -1
  722. package/dist/shared/lib/validation/listen-and-choose-objects-in-scene.validation.js +21 -1
  723. package/dist/shared/lib/validation/listen-and-drag-objects-into-scene.validation.js +34 -1
  724. package/dist/shared/lib/validation/listen-and-speak-answer.validation.js +40 -1
  725. package/dist/shared/lib/validation/listen-and-speak-compare-images.validation.js +45 -1
  726. package/dist/shared/lib/validation/listen-and-speak-image-group.validation.js +19 -1
  727. package/dist/shared/lib/validation/listen-and-speak-info-exchange.validation.js +39 -1
  728. package/dist/shared/lib/validation/listen-and-speak-odd-one-out.validation.js +32 -1
  729. package/dist/shared/lib/validation/listen-and-speak-question-list.validation.js +19 -1
  730. package/dist/shared/lib/validation/listen-and-speak-with-story-images.validation.js +28 -1
  731. package/dist/shared/lib/validation/look-picture-choose-correct-answer.validation.js +12 -1
  732. package/dist/shared/lib/validation/look-picture-fill-blank-choose-answer.validation.js +47 -1
  733. package/dist/shared/lib/validation/read-and-color-objects.validation.js +29 -1
  734. package/dist/shared/lib/validation/read-displayed-content.validation.js +28 -1
  735. package/dist/shared/lib/validation/speaking-conversation.validation.js +75 -1
  736. package/dist/shared/lib/validation/speaking-describe-image.validation.js +31 -1
  737. package/dist/shared/lib/validation/spontaneous-qa.validation.js +48 -1
  738. package/dist/shared/lib/validation/word-fill-paragraph-default.validation.js +38 -1
  739. package/dist/shared/lib/validation/word-fill-paragraph-with-options.validation.js +39 -1
  740. package/dist/shared/lib/validation/word-fill-paragraph.validation.js +43 -1
  741. package/dist/shared/lib/validation/word-ordering.validation.js +33 -1
  742. package/dist/shared/types/branch.types.js +6 -1
  743. package/dist/shared/types/common.types.js +49 -1
  744. package/dist/shared/types/entities/exam-schedule.types.js +5 -1
  745. package/dist/shared/types/entities/exam.types.js +1 -1
  746. package/dist/shared/types/entities/question.types.js +4 -1
  747. package/dist/shared/types/entities/result.types.js +4 -1
  748. package/dist/shared/types/entities/user.types.js +4 -1
  749. package/dist/shared/types/exam-taking.types.js +2 -1
  750. package/dist/shared/types/history.types.js +34 -1
  751. package/dist/shared/types/index.js +1 -1
  752. package/dist/shared/types/questions/choose-correct-adjective.js +4 -1
  753. package/dist/shared/types/questions/choose-the-correct-answer-group.d.ts +1 -0
  754. package/dist/shared/types/questions/choose-the-correct-answer-group.js +1 -1
  755. package/dist/shared/types/questions/choose-the-correct-answer.js +9 -1
  756. package/dist/shared/types/questions/cross-out-word-group.d.ts +2 -0
  757. package/dist/shared/types/questions/cross-out-word-group.js +1 -1
  758. package/dist/shared/types/questions/fill-missing-words-in-grid.js +11 -1
  759. package/dist/shared/types/questions/index.d.ts +1 -0
  760. package/dist/shared/types/questions/index.js +46 -1
  761. package/dist/shared/types/questions/listen-and-speak-answer.js +1 -1
  762. package/dist/shared/types/questions/listen-and-speak-compare-images.js +1 -1
  763. package/dist/shared/types/questions/listen-and-speak-image-group.js +1 -1
  764. package/dist/shared/types/questions/listen-and-speak-info-exchange.js +3 -1
  765. package/dist/shared/types/questions/listen-and-speak-odd-one-out.js +3 -1
  766. package/dist/shared/types/questions/listen-and-speak-question-list.js +1 -1
  767. package/dist/shared/types/questions/listen-and-speak-with-story-images.js +3 -1
  768. package/dist/shared/types/questions/look-picture-choose-correct-answer.js +5 -1
  769. package/dist/shared/types/questions/look-picture-fill-blank-choose-answer.js +9 -1
  770. package/dist/shared/types/questions/look-picture-fill-word-hint.js +7 -1
  771. package/dist/shared/types/questions/read-displayed-content.js +1 -1
  772. package/dist/shared/types/questions/speaking-conversation.js +7 -1
  773. package/dist/shared/types/questions/speaking-describe-image.js +1 -1
  774. package/dist/shared/types/questions/spontaneous-qa.js +1 -1
  775. package/dist/shared/types/questions/word-order-and-match-group.d.ts +33 -0
  776. package/dist/shared/types/questions/word-order-and-match-group.js +1 -0
  777. package/dist/shared/types/questions/write-correct-verb-form.js +12 -1
  778. package/dist/shared/types/role.types.js +1 -1
  779. package/dist/shared/types/structure-management.js +28 -1
  780. package/dist/shared/types/student.types.js +57 -1
  781. package/dist/shared/types/teacher-dashboard-rooms.js +2 -1
  782. package/package.json +184 -166
  783. package/dist/mcp/config.d.ts +0 -12
  784. package/dist/mcp/config.js +0 -1
  785. package/dist/mcp/http-client.d.ts +0 -6
  786. package/dist/mcp/http-client.js +0 -1
  787. package/dist/mcp/index.d.ts +0 -6
  788. package/dist/mcp/index.js +0 -2
  789. package/dist/mcp/tools/_helpers.d.ts +0 -4
  790. package/dist/mcp/tools/_helpers.js +0 -1
  791. package/dist/mcp/tools/exams.d.ts +0 -2
  792. package/dist/mcp/tools/exams.js +0 -1
  793. package/dist/mcp/tools/index.d.ts +0 -2
  794. package/dist/mcp/tools/index.js +0 -1
  795. package/dist/mcp/tools/results.d.ts +0 -2
  796. package/dist/mcp/tools/results.js +0 -1
@@ -1 +1,221 @@
1
- "use client";import{jsx as e,jsxs as t}from"react/jsx-runtime";import{useRef as i,useState as a,useEffect as r,useCallback as n}from"react";import o from"next/image";import s from"./assets/styles/SummerSkyLayout.module.css";import{SummerSkyAudioPlayer as l}from"./SummerSkyAudioPlayer";import d from"./assets/images/prev-question-btn.png";import c from"./assets/images/next-question-btn.png";import p from"./assets/images/arrow-left.png";import u from"./assets/images/title-logo.png";import m from"./assets/images/mic_ver2_icon.png";import h from"./assets/images/stop_audio_ver2_icon.png";import g from"./assets/images/audio_ver2_icon.png";import v from"./assets/images/pause_audio_ver2_icon.png";import x from"./assets/images/lock_mic_ver2_icon.png";import f from"./assets/images/rope_v3.png";const y=new Set(["/speaking/video/read_displayed_content.webm","/speaking/video/speaking_describe_image.webm","/speaking/video/spontaneous_qa.webm"]);export function SummerSkyLayout({onExit:w,partName:b,instruction:N,headerRight:k,onPrev:_,onNext:S,showPrev:E,showNext:C,canGoPrev:L,canGoNext:F,audioUrl:z,questionNumber:T,onAudioEnded:I,recorder:j,showExistingBadge:A,children:M,contentClassName:P="",hideAudioBar:U,hideFooterTitle:q,teacherVideoUrl:Q,waitForTeacherVideo:R,onTeacherVideoEnded:W,skipTeacherVideo:B,showTeacherImage:D,isMicLockedOverride:$,micLockedText:H,onAudioPlayingChange:V}){const G=i(null),K=i(null),[X,O]=a(!!B),[J,Y]=a(!1),[Z,ee]=a(0),[te,ie]=a(0);r(()=>{const e=G.current;if(!e)return;const t=()=>{Y(!0),V?.(!0)},i=()=>{Y(!1),V?.(!1)},a=()=>{Y(!1),ee(0),V?.(!1)},r=()=>{ee(e.currentTime),e.duration&&isFinite(e.duration)&&ie(e.duration)},n=()=>{e.duration&&isFinite(e.duration)&&ie(e.duration)};return e.addEventListener("play",t),e.addEventListener("pause",i),e.addEventListener("ended",a),e.addEventListener("timeupdate",r),e.addEventListener("loadedmetadata",n),e.addEventListener("durationchange",n),()=>{e.removeEventListener("play",t),e.removeEventListener("pause",i),e.removeEventListener("ended",a),e.removeEventListener("timeupdate",r),e.removeEventListener("loadedmetadata",n),e.removeEventListener("durationchange",n)}},[j?.previewUrl]),r(()=>{const e=K.current;e&&Q&&(e.playbackRate=y.has(Q)?1.25:1)},[Q]),r(()=>{O(!!B)},[Q,B]);const ae=n(e=>{if(!isFinite(e)||isNaN(e))return"00:00";const t=Math.floor(e/60),i=Math.floor(e%60);return`${t.toString().padStart(2,"0")}:${i.toString().padStart(2,"0")}`},[]),re=(j&&null!=j.previewUrl&&("recorded"===j.status||"uploading"===j.status||j.status),R&&!X||$),ne="recording"===j?.status||R&&!X,oe=E??L,se=C??F,le=!!Q||!!D,de=!!Q&&!X,ce=X||!!D;return t("div",{id:"exam-main-scroll-area",className:s.pageContainer,children:[e("div",{className:s.examContainer,children:t("div",{className:s.examMainBoard,style:{zIndex:1},children:[t("div",{className:"absolute w-full top-0 h-0",style:{zIndex:-1},children:[e(o,{src:f,alt:"rope",className:"absolute",style:{bottom:"-20px",left:"15%",transform:"translateX(-50%)",width:"37px",height:"172px"}}),e(o,{src:f,alt:"rope",className:"absolute",style:{bottom:"-20px",left:"85%",transform:"translateX(-50%)",width:"37px",height:"172px"}})]}),e("div",{className:s.headerTitleWrapper,onClick:w,style:{cursor:"pointer",zIndex:100},children:e(o,{src:p,alt:"Quay lại",style:{width:"80px"}})}),e("div",{className:"absolute w-full flex justify-center z-10 pointer-events-none",style:{top:"-23%"},children:e(o,{src:u,alt:"Title Logo",style:{width:"350px",height:"auto"}})}),oe&&e("div",{className:s.controlLeft,style:{zIndex:50},children:e("div",{className:["transition-transform",!L||ne?"cursor-not-allowed opacity-45 grayscale pointer-events-none":"cursor-pointer hover:scale-[1.05] active:scale-[0.95]"].join(" "),onClick:!L||ne?void 0:_,"aria-disabled":!L||ne,title:!L||ne?"Không thể chuyển câu khi đang ghi âm":void 0,children:e(o,{src:d,alt:"prev"})})}),t("div",{className:s.examContentMainContainer,children:[!q&&e(l,{audioUrl:z,partName:b,onEnded:I,hideAudio:U,onPlayingChange:V}),t("div",{className:s.examContentSpace,children:[k&&e("div",{className:"absolute top-2 right-6 z-50",children:k}),e("div",{className:`w-full h-full flex flex-col items-center justify-center ${P}`,children:M})]}),j&&t("div",{className:s.micWrapper,children:[e("div",{className:"bg-white rounded-[100px] shadow-[0_4px_10px_rgba(0,0,0,0.1)] whitespace-nowrap mb-3 flex items-center justify-center",style:{padding:"10px 30px",color:re?"#888":"recording"===j.status?"#FF4D4D":["recorded","uploading","uploaded"].includes(j.status)?"#16CA3B":"#343C55",fontSize:"20px",fontFamily:'"Quicksand", sans-serif',fontWeight:700,lineHeight:"100%",letterSpacing:"-0.01em"},children:re?H||"Hãy chờ giáo viên hoàn thành hướng dẫn":"recording"===j.status?"Ấn lần nữa để lưu kết quả":["recorded","uploading","uploaded"].includes(j.status)?"Câu trả lời đã được ghi nhận !":"Ấn biểu tượng Micro để trả lời"}),t("div",{className:"relative flex flex-col items-center",children:["recording"===j.status?t("div",{className:"relative flex flex-col justify-center items-center cursor-pointer drop-shadow-[0_0_15px_rgba(255,100,100,0.8)] transition-transform hover:scale-[1.05] active:scale-[0.95]",onClick:j.stopRecording,children:[e(o,{src:h,alt:"stop audio",className:"animate-pulse",style:{width:"120px",height:"120px"}}),t("span",{className:"absolute text-white text-[16px] font-bold font-['Quicksand']",style:{bottom:"30px"},children:[Math.floor(j.remainingSeconds/60),":",(j.remainingSeconds%60).toString().padStart(2,"0")]})]}):e(o,re?{src:x,alt:"micro locked",className:"opacity-80 cursor-not-allowed",style:{width:"120px",height:"120px"}}:{src:["recorded","uploading","uploaded"].includes(j.status)?J?v:g:m,alt:"micro",className:"transition-transform cursor-pointer hover:scale-[1.05] active:scale-[0.95]",style:{width:"120px",height:"120px"},onClick:()=>{re||("idle"===j.status||"error"===j.status?j.startRecording():["recorded","uploading","uploaded"].includes(j.status)&&G.current&&(J?G.current.pause():(G.current.currentTime=0,G.current.play().catch(console.error))))}}),j?.previewUrl&&e("audio",{ref:G,src:j.previewUrl}),"recording"===j.status&&e("div",{className:"absolute whitespace-nowrap text-center",style:{top:"100%",marginTop:"16px",color:"#FF4D4D",fontSize:"24px",fontFamily:'"Quicksand", sans-serif',fontWeight:700,lineHeight:"100%",letterSpacing:"-0.01em",textShadow:"0 1px 3px rgba(0,0,0,0.15)"},children:"Đang ghi âm câu hỏi . . ."}),["recorded","uploading","uploaded"].includes(j.status)&&e("div",{className:"absolute whitespace-nowrap text-center",style:{top:"100%",marginTop:"16px",color:"#343C55",fontSize:"24px",fontFamily:'"Quicksand", sans-serif',fontWeight:700,lineHeight:"100%",letterSpacing:"-0.01em"},children:J?`${ae(Z)}/${te?ae(te):"--:--"}`:"Nghe đáp án"})]})]})]}),se&&e("div",{className:s.controlRight,style:{zIndex:50},children:e("div",{className:["transition-transform",!F||ne?"cursor-not-allowed opacity-45 grayscale pointer-events-none":"cursor-pointer hover:scale-[1.05] active:scale-[0.95]"].join(" "),onClick:!F||ne?void 0:S,"aria-disabled":!F||ne,title:!F||ne?"Không thể chuyển câu khi đang ghi âm":void 0,children:e(o,{src:c,alt:"next"})})})]})}),le&&e("div",{style:{position:"fixed",bottom:0,left:"1%",zIndex:40,display:"flex",flexDirection:"column",alignItems:"flex-start"},children:t("div",{style:{position:"relative",width:"12vw"},children:[de&&e("button",{onClick:()=>{K.current&&K.current.pause(),O(!0),W?.()},style:{position:"absolute",top:"-40px",right:"0",zIndex:50,backgroundColor:"rgba(255, 255, 255, 0.9)",color:"#343C55",border:"1px solid #E2E8F0",borderRadius:"20px",padding:"4px 12px",fontSize:"14px",fontWeight:600,fontFamily:'"Quicksand", sans-serif',cursor:"pointer",boxShadow:"0 2px 8px rgba(0, 0, 0, 0.1)",display:"flex",alignItems:"center",gap:"6px",whiteSpace:"nowrap"},className:"hover:bg-white hover:scale-105 active:scale-95 transition-all outline-none",children:"Bỏ qua ⏭"}),Q&&e("video",{ref:K,src:Q,autoPlay:!B,playsInline:!0,onEnded:()=>{O(!0),W?.()},style:{width:"100%",height:"auto",display:"block",filter:"drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2))",pointerEvents:"none",opacity:de?1:0,transition:"opacity 0.6s ease-in-out"}}),e("img",{src:"/speaking/image/teacher_ai_smile.png",alt:"AI Teacher",style:{position:Q?"absolute":"relative",top:0,left:0,width:"100%",height:"auto",display:"block",filter:"drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2))",pointerEvents:"none",opacity:ce?1:0,transition:"opacity 0.6s ease-in-out"}})]})})]})}
1
+ 'use client';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ import { useRef, useState, useEffect, useCallback } from 'react';
4
+ import Image from 'next/image';
5
+ import layoutStyles from './assets/styles/SummerSkyLayout.module.css';
6
+ import { SummerSkyAudioPlayer } from './SummerSkyAudioPlayer';
7
+ import prevQuestionImg from './assets/images/prev-question-btn.png';
8
+ import nextQuestionImg from './assets/images/next-question-btn.png';
9
+ import arrowLeftImg from './assets/images/arrow-left.png';
10
+ import titleLogoImg from './assets/images/title-logo.png';
11
+ import microIcon from './assets/images/mic_ver2_icon.png';
12
+ import redCircleImg from './assets/images/stop_audio_ver2_icon.png';
13
+ import listenAudioImg from './assets/images/audio_ver2_icon.png';
14
+ import pauseAudioImg from './assets/images/pause_audio_ver2_icon.png';
15
+ import lockMicImg from './assets/images/lock_mic_ver2_icon.png';
16
+ import ropeImg from './assets/images/rope_v3.png';
17
+ const FAST_TEACHER_VIDEO_URLS = new Set([
18
+ '/speaking/video/read_displayed_content.webm',
19
+ '/speaking/video/speaking_describe_image.webm',
20
+ '/speaking/video/spontaneous_qa.webm',
21
+ ]);
22
+ const FAST_TEACHER_VIDEO_PLAYBACK_RATE = 1.25;
23
+ export function SummerSkyLayout({ onExit, partName, instruction, headerRight, onPrev, onNext, showPrev, showNext, canGoPrev, canGoNext, audioUrl, questionNumber, onAudioEnded, recorder, showExistingBadge, children, contentClassName = '', hideAudioBar, hideFooterTitle, teacherVideoUrl, waitForTeacherVideo, onTeacherVideoEnded, skipTeacherVideo, showTeacherImage, isMicLockedOverride, micLockedText, onAudioPlayingChange, }) {
24
+ const playbackAudioRef = useRef(null);
25
+ const teacherVideoRef = useRef(null);
26
+ const [teacherVideoEnded, setTeacherVideoEnded] = useState(!!skipTeacherVideo);
27
+ const [isPlayingBack, setIsPlayingBack] = useState(false);
28
+ const [playbackTime, setPlaybackTime] = useState(0);
29
+ const [playbackDuration, setPlaybackDuration] = useState(0);
30
+ // Track playback audio events
31
+ useEffect(() => {
32
+ const audio = playbackAudioRef.current;
33
+ if (!audio)
34
+ return;
35
+ const onPlay = () => { setIsPlayingBack(true); onAudioPlayingChange?.(true); };
36
+ const onPause = () => { setIsPlayingBack(false); onAudioPlayingChange?.(false); };
37
+ const onEnded = () => { setIsPlayingBack(false); setPlaybackTime(0); onAudioPlayingChange?.(false); };
38
+ const onTimeUpdate = () => {
39
+ setPlaybackTime(audio.currentTime);
40
+ // For blob URLs, duration may only become available during playback
41
+ if (audio.duration && isFinite(audio.duration)) {
42
+ setPlaybackDuration(audio.duration);
43
+ }
44
+ };
45
+ const onLoaded = () => {
46
+ if (audio.duration && isFinite(audio.duration)) {
47
+ setPlaybackDuration(audio.duration);
48
+ }
49
+ };
50
+ audio.addEventListener('play', onPlay);
51
+ audio.addEventListener('pause', onPause);
52
+ audio.addEventListener('ended', onEnded);
53
+ audio.addEventListener('timeupdate', onTimeUpdate);
54
+ audio.addEventListener('loadedmetadata', onLoaded);
55
+ audio.addEventListener('durationchange', onLoaded);
56
+ return () => {
57
+ audio.removeEventListener('play', onPlay);
58
+ audio.removeEventListener('pause', onPause);
59
+ audio.removeEventListener('ended', onEnded);
60
+ audio.removeEventListener('timeupdate', onTimeUpdate);
61
+ audio.removeEventListener('loadedmetadata', onLoaded);
62
+ audio.removeEventListener('durationchange', onLoaded);
63
+ };
64
+ }, [recorder?.previewUrl]);
65
+ useEffect(() => {
66
+ const teacherVideo = teacherVideoRef.current;
67
+ if (!teacherVideo || !teacherVideoUrl)
68
+ return;
69
+ teacherVideo.playbackRate = FAST_TEACHER_VIDEO_URLS.has(teacherVideoUrl)
70
+ ? FAST_TEACHER_VIDEO_PLAYBACK_RATE
71
+ : 1;
72
+ }, [teacherVideoUrl]);
73
+ useEffect(() => {
74
+ setTeacherVideoEnded(!!skipTeacherVideo);
75
+ }, [teacherVideoUrl, skipTeacherVideo]);
76
+ const formatPlaybackTime = useCallback((sec) => {
77
+ if (!isFinite(sec) || isNaN(sec))
78
+ return '00:00';
79
+ const m = Math.floor(sec / 60);
80
+ const s = Math.floor(sec % 60);
81
+ return `${m.toString().padStart(2, '0')}:${s.toString().padStart(2, '0')}`;
82
+ }, []);
83
+ const hasRecording = recorder &&
84
+ recorder.previewUrl != null &&
85
+ (recorder.status === 'recorded' ||
86
+ recorder.status === 'uploading' ||
87
+ recorder.status === 'uploaded');
88
+ const isMicLocked = (waitForTeacherVideo && !teacherVideoEnded) || isMicLockedOverride;
89
+ const isNavDisabled = recorder?.status === 'recording' || (waitForTeacherVideo && !teacherVideoEnded);
90
+ const shouldShowPrev = showPrev ?? canGoPrev;
91
+ const shouldShowNext = showNext ?? canGoNext;
92
+ const shouldRenderTeacherGuide = !!teacherVideoUrl || !!showTeacherImage;
93
+ const shouldShowTeacherVideo = !!teacherVideoUrl && !teacherVideoEnded;
94
+ const shouldShowTeacherSmileImage = teacherVideoEnded || !!showTeacherImage;
95
+ return (_jsxs("div", { id: "exam-main-scroll-area", className: layoutStyles.pageContainer, children: [_jsx("div", { className: layoutStyles.examContainer, children: _jsxs("div", { className: layoutStyles.examMainBoard, style: { zIndex: 1 }, children: [_jsxs("div", { className: "absolute w-full top-0 h-0", style: { zIndex: -1 }, children: [_jsx(Image, { src: ropeImg, alt: "rope", className: "absolute", style: { bottom: '-20px', left: '15%', transform: 'translateX(-50%)', width: '37px', height: '172px' } }), _jsx(Image, { src: ropeImg, alt: "rope", className: "absolute", style: { bottom: '-20px', left: '85%', transform: 'translateX(-50%)', width: '37px', height: '172px' } })] }), _jsx("div", { className: layoutStyles.headerTitleWrapper, onClick: onExit, style: { cursor: 'pointer', zIndex: 100 }, children: _jsx(Image, { src: arrowLeftImg, alt: "Quay l\u1EA1i", style: { width: '80px' } }) }), _jsx("div", { className: "absolute w-full flex justify-center z-10 pointer-events-none", style: { top: '-23%' }, children: _jsx(Image, { src: titleLogoImg, alt: "Title Logo", style: { width: '350px', height: 'auto' } }) }), shouldShowPrev && (_jsx("div", { className: layoutStyles.controlLeft, style: { zIndex: 50 }, children: _jsx("div", { className: [
96
+ 'transition-transform',
97
+ !canGoPrev || isNavDisabled
98
+ ? 'cursor-not-allowed opacity-45 grayscale pointer-events-none'
99
+ : 'cursor-pointer hover:scale-[1.05] active:scale-[0.95]',
100
+ ].join(' '), onClick: !canGoPrev || isNavDisabled ? undefined : onPrev, "aria-disabled": !canGoPrev || isNavDisabled, title: !canGoPrev || isNavDisabled ? 'Không thể chuyển câu khi đang ghi âm' : undefined, children: _jsx(Image, { src: prevQuestionImg, alt: "prev" }) }) })), _jsxs("div", { className: layoutStyles.examContentMainContainer, children: [!hideFooterTitle && (_jsx(SummerSkyAudioPlayer, { audioUrl: audioUrl, partName: partName, onEnded: onAudioEnded, hideAudio: hideAudioBar, onPlayingChange: onAudioPlayingChange })), _jsxs("div", { className: layoutStyles.examContentSpace, children: [headerRight && (_jsx("div", { className: "absolute top-2 right-6 z-50", children: headerRight })), _jsx("div", { className: `w-full h-full flex flex-col items-center justify-center ${contentClassName}`, children: children })] }), recorder && (_jsxs("div", { className: layoutStyles.micWrapper, children: [_jsx("div", { className: "bg-white rounded-[100px] shadow-[0_4px_10px_rgba(0,0,0,0.1)] whitespace-nowrap mb-3 flex items-center justify-center", style: {
101
+ padding: '10px 30px',
102
+ color: isMicLocked
103
+ ? '#888'
104
+ : recorder.status === 'recording'
105
+ ? '#FF4D4D'
106
+ : ['recorded', 'uploading', 'uploaded'].includes(recorder.status)
107
+ ? '#16CA3B'
108
+ : '#343C55',
109
+ fontSize: '20px',
110
+ fontFamily: '"Quicksand", sans-serif',
111
+ fontWeight: 700,
112
+ lineHeight: '100%',
113
+ letterSpacing: '-0.01em',
114
+ }, children: isMicLocked
115
+ ? (micLockedText || 'Hãy chờ giáo viên hoàn thành hướng dẫn')
116
+ : recorder.status === 'recording'
117
+ ? 'Ấn lần nữa để lưu kết quả'
118
+ : ['recorded', 'uploading', 'uploaded'].includes(recorder.status)
119
+ ? 'Câu trả lời đã được ghi nhận !'
120
+ : 'Ấn biểu tượng Micro để trả lời' }), _jsxs("div", { className: "relative flex flex-col items-center", children: [recorder.status === 'recording' ? (_jsxs("div", { className: "relative flex flex-col justify-center items-center cursor-pointer drop-shadow-[0_0_15px_rgba(255,100,100,0.8)] transition-transform hover:scale-[1.05] active:scale-[0.95]", onClick: recorder.stopRecording, children: [_jsx(Image, { src: redCircleImg, alt: "stop audio", className: "animate-pulse", style: { width: '120px', height: '120px' } }), _jsxs("span", { className: "absolute text-white text-[16px] font-bold font-['Quicksand']", style: { bottom: '30px' }, children: [Math.floor(recorder.remainingSeconds / 60), ":", (recorder.remainingSeconds % 60).toString().padStart(2, '0')] })] })) : isMicLocked ? (_jsx(Image, { src: lockMicImg, alt: "micro locked", className: "opacity-80 cursor-not-allowed", style: { width: '120px', height: '120px' } })) : (_jsx(Image, { src: ['recorded', 'uploading', 'uploaded'].includes(recorder.status)
121
+ ? (isPlayingBack ? pauseAudioImg : listenAudioImg)
122
+ : microIcon, alt: "micro", className: "transition-transform cursor-pointer hover:scale-[1.05] active:scale-[0.95]", style: { width: '120px', height: '120px' }, onClick: () => {
123
+ if (isMicLocked)
124
+ return;
125
+ if (recorder.status === 'idle' || recorder.status === 'error') {
126
+ recorder.startRecording();
127
+ }
128
+ else if (['recorded', 'uploading', 'uploaded'].includes(recorder.status)) {
129
+ if (playbackAudioRef.current) {
130
+ if (isPlayingBack) {
131
+ playbackAudioRef.current.pause();
132
+ }
133
+ else {
134
+ playbackAudioRef.current.currentTime = 0;
135
+ playbackAudioRef.current.play().catch(console.error);
136
+ }
137
+ }
138
+ }
139
+ } })), recorder?.previewUrl && (_jsx("audio", { ref: playbackAudioRef, src: recorder.previewUrl })), recorder.status === 'recording' && (_jsx("div", { className: "absolute whitespace-nowrap text-center", style: {
140
+ top: '100%',
141
+ marginTop: '16px',
142
+ color: '#FF4D4D',
143
+ fontSize: '24px',
144
+ fontFamily: '"Quicksand", sans-serif',
145
+ fontWeight: 700,
146
+ lineHeight: '100%',
147
+ letterSpacing: '-0.01em',
148
+ textShadow: '0 1px 3px rgba(0,0,0,0.15)',
149
+ }, children: "\u0110ang ghi \u00E2m c\u00E2u h\u1ECFi . . ." })), ['recorded', 'uploading', 'uploaded'].includes(recorder.status) && (_jsx("div", { className: "absolute whitespace-nowrap text-center", style: {
150
+ top: '100%',
151
+ marginTop: '16px',
152
+ color: '#343C55',
153
+ fontSize: '24px',
154
+ fontFamily: '"Quicksand", sans-serif',
155
+ fontWeight: 700,
156
+ lineHeight: '100%',
157
+ letterSpacing: '-0.01em'
158
+ }, children: isPlayingBack
159
+ ? `${formatPlaybackTime(playbackTime)}/${playbackDuration ? formatPlaybackTime(playbackDuration) : '--:--'}`
160
+ : 'Nghe đáp án' }))] })] }))] }), shouldShowNext && (_jsx("div", { className: layoutStyles.controlRight, style: { zIndex: 50 }, children: _jsx("div", { className: [
161
+ 'transition-transform',
162
+ !canGoNext || isNavDisabled
163
+ ? 'cursor-not-allowed opacity-45 grayscale pointer-events-none'
164
+ : 'cursor-pointer hover:scale-[1.05] active:scale-[0.95]',
165
+ ].join(' '), onClick: !canGoNext || isNavDisabled ? undefined : onNext, "aria-disabled": !canGoNext || isNavDisabled, title: !canGoNext || isNavDisabled ? 'Không thể chuyển câu khi đang ghi âm' : undefined, children: _jsx(Image, { src: nextQuestionImg, alt: "next" }) }) }))] }) }), shouldRenderTeacherGuide && (_jsx("div", { style: {
166
+ position: 'fixed',
167
+ bottom: 0,
168
+ left: '1%',
169
+ zIndex: 40,
170
+ display: 'flex',
171
+ flexDirection: 'column',
172
+ alignItems: 'flex-start',
173
+ }, children: _jsxs("div", { style: { position: 'relative', width: '12vw' }, children: [shouldShowTeacherVideo && (_jsx("button", { onClick: () => {
174
+ if (teacherVideoRef.current) {
175
+ teacherVideoRef.current.pause();
176
+ }
177
+ setTeacherVideoEnded(true);
178
+ onTeacherVideoEnded?.();
179
+ }, style: {
180
+ position: 'absolute',
181
+ top: '-40px',
182
+ right: '0',
183
+ zIndex: 50,
184
+ backgroundColor: 'rgba(255, 255, 255, 0.9)',
185
+ color: '#343C55',
186
+ border: '1px solid #E2E8F0',
187
+ borderRadius: '20px',
188
+ padding: '4px 12px',
189
+ fontSize: '14px',
190
+ fontWeight: 600,
191
+ fontFamily: '"Quicksand", sans-serif',
192
+ cursor: 'pointer',
193
+ boxShadow: '0 2px 8px rgba(0, 0, 0, 0.1)',
194
+ display: 'flex',
195
+ alignItems: 'center',
196
+ gap: '6px',
197
+ whiteSpace: 'nowrap',
198
+ }, className: "hover:bg-white hover:scale-105 active:scale-95 transition-all outline-none", children: "B\u1ECF qua \u23ED" })), teacherVideoUrl && (_jsx("video", { ref: teacherVideoRef, src: teacherVideoUrl, autoPlay: !skipTeacherVideo, playsInline: true, onEnded: () => {
199
+ setTeacherVideoEnded(true);
200
+ onTeacherVideoEnded?.();
201
+ }, style: {
202
+ width: '100%',
203
+ height: 'auto',
204
+ display: 'block',
205
+ filter: 'drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2))',
206
+ pointerEvents: 'none',
207
+ opacity: shouldShowTeacherVideo ? 1 : 0,
208
+ transition: 'opacity 0.6s ease-in-out',
209
+ } })), _jsx("img", { src: "/speaking/image/teacher_ai_smile.png", alt: "AI Teacher", style: {
210
+ position: teacherVideoUrl ? 'absolute' : 'relative',
211
+ top: 0,
212
+ left: 0,
213
+ width: '100%',
214
+ height: 'auto',
215
+ display: 'block',
216
+ filter: 'drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2))',
217
+ pointerEvents: 'none',
218
+ opacity: shouldShowTeacherSmileImage ? 1 : 0,
219
+ transition: 'opacity 0.6s ease-in-out',
220
+ } })] }) }))] }));
221
+ }
@@ -1 +1,18 @@
1
- "use client";import{jsx as e,jsxs as t}from"react/jsx-runtime";import s from"next/image";import a from"./assets/images/background-noticesubmit.png";import n from"./assets/images/btn-notisubmid.png";import r from"./assets/images/x-noticesubmit.png.png";import i from"./assets/images/ong.png";import o from"./assets/images/title-notisubmit.png";export function SummerSkySubmitModal({onClose:l,onSubmit:c,isSubmitting:m}){return e("div",{className:"fixed inset-0 z-[9999] flex items-center justify-center bg-black/60 backdrop-blur-sm",children:e("div",{className:"relative w-[450px] max-w-[85vw] flex flex-col items-center justify-center mt-6",children:t("div",{className:"relative w-full shadow-[0_15px_40px_rgba(0,0,0,0.4)] rounded-[20px]",children:[e(s,{src:a,alt:"Background",className:"w-full h-auto block rounded-[40px]"}),e("button",{onClick:l,className:"absolute top-[11%] right-[-9%] transition-transform hover:scale-110 active:scale-95 cursor-pointer z-50 border-none bg-transparent p-0",children:e(s,{src:r,alt:"Close",className:"w-[42px] h-auto object-contain drop-shadow-md"})}),e("div",{className:"absolute top-0 left-1/2 -translate-x-1/2 -translate-y-[40%] z-20 w-[55%] flex justify-center pointer-events-none",children:e(s,{src:o,alt:"Notice Title",className:"w-full h-auto"})}),e("div",{className:"absolute top-[-20%] left-[0%] z-30 pointer-events-none w-[15%]",children:e(s,{src:i,alt:"Bee Mascot",className:"w-full h-auto drop-shadow-xl"})}),e("div",{className:"absolute inset-0 flex flex-col items-center justify-center z-10 pt-[12%] pb-[10%] text-center ml-[8%] mr-[8%]",children:t("p",{className:"text-[#646464]",style:{fontFamily:'"SVN-Volte Rounded", sans-serif',fontWeight:600,fontSize:"18px",lineHeight:"24px",letterSpacing:"-0.01em",textAlign:"center"},children:["Bạn có chắc chắn muốn nộp bài không?",e("br",{}),"Sau khi nộp, bạn sẽ không thể thay đổi câu hỏi được nữa?"]})}),t("button",{onClick:c,disabled:m,className:"absolute bottom-[-8%] left-1/2 -translate-x-1/2 transition-transform hover:scale-105 active:scale-95 z-40 border-none bg-transparent p-0 w-[42%] flex items-center justify-center "+(m?"cursor-not-allowed opacity-70":"cursor-pointer"),children:[m?e("div",{className:"absolute inset-0 flex items-center justify-center z-50",children:e("div",{className:"h-8 w-8 animate-spin rounded-full border-4 border-white border-t-transparent"})}):null,e(s,{src:n,alt:"Submit Button",className:"w-full h-auto drop-shadow-xl"})]})]})})})}
1
+ 'use client';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ import Image from 'next/image';
4
+ import bgImg from './assets/images/background-noticesubmit.png';
5
+ import btnImg from './assets/images/btn-notisubmid.png';
6
+ import closeImg from './assets/images/x-noticesubmit.png.png';
7
+ import mascotImg from './assets/images/ong.png';
8
+ import titleImg from './assets/images/title-notisubmit.png';
9
+ export function SummerSkySubmitModal({ onClose, onSubmit, isSubmitting }) {
10
+ return (_jsx("div", { className: "fixed inset-0 z-[9999] flex items-center justify-center bg-black/60 backdrop-blur-sm", children: _jsx("div", { className: "relative w-[450px] max-w-[85vw] flex flex-col items-center justify-center mt-6", children: _jsxs("div", { className: "relative w-full shadow-[0_15px_40px_rgba(0,0,0,0.4)] rounded-[20px]", children: [_jsx(Image, { src: bgImg, alt: "Background", className: "w-full h-auto block rounded-[40px]" }), _jsx("button", { onClick: onClose, className: "absolute top-[11%] right-[-9%] transition-transform hover:scale-110 active:scale-95 cursor-pointer z-50 border-none bg-transparent p-0", children: _jsx(Image, { src: closeImg, alt: "Close", className: "w-[42px] h-auto object-contain drop-shadow-md" }) }), _jsx("div", { className: "absolute top-0 left-1/2 -translate-x-1/2 -translate-y-[40%] z-20 w-[55%] flex justify-center pointer-events-none", children: _jsx(Image, { src: titleImg, alt: "Notice Title", className: "w-full h-auto" }) }), _jsx("div", { className: "absolute top-[-20%] left-[0%] z-30 pointer-events-none w-[15%]", children: _jsx(Image, { src: mascotImg, alt: "Bee Mascot", className: "w-full h-auto drop-shadow-xl" }) }), _jsx("div", { className: "absolute inset-0 flex flex-col items-center justify-center z-10 pt-[12%] pb-[10%] text-center ml-[8%] mr-[8%]", children: _jsxs("p", { className: "text-[#646464]", style: {
11
+ fontFamily: '"SVN-Volte Rounded", sans-serif',
12
+ fontWeight: 600,
13
+ fontSize: '18px',
14
+ lineHeight: '24px',
15
+ letterSpacing: '-0.01em',
16
+ textAlign: 'center'
17
+ }, children: ["B\u1EA1n c\u00F3 ch\u1EAFc ch\u1EAFn mu\u1ED1n n\u1ED9p b\u00E0i kh\u00F4ng?", _jsx("br", {}), "Sau khi n\u1ED9p, b\u1EA1n s\u1EBD kh\u00F4ng th\u1EC3 thay \u0111\u1ED5i c\u00E2u h\u1ECFi \u0111\u01B0\u1EE3c n\u1EEFa?"] }) }), _jsxs("button", { onClick: onSubmit, disabled: isSubmitting, className: `absolute bottom-[-8%] left-1/2 -translate-x-1/2 transition-transform hover:scale-105 active:scale-95 z-40 border-none bg-transparent p-0 w-[42%] flex items-center justify-center ${isSubmitting ? 'cursor-not-allowed opacity-70' : 'cursor-pointer'}`, children: [isSubmitting ? (_jsx("div", { className: "absolute inset-0 flex items-center justify-center z-50", children: _jsx("div", { className: "h-8 w-8 animate-spin rounded-full border-4 border-white border-t-transparent" }) })) : null, _jsx(Image, { src: btnImg, alt: "Submit Button", className: "w-full h-auto drop-shadow-xl" })] })] }) }) }));
18
+ }
@@ -1 +1,193 @@
1
- "use client";import{jsx as t,jsxs as e}from"react/jsx-runtime";import{useState as i,useEffect as r,useRef as n}from"react";import a from"next/image";import{toast as o}from"sonner";import{SummerSkyLayout as s}from"./SummerSkyLayout";import{useSpeakingRecorder as c}from"../../../components/exams/take/hooks/useSpeakingRecorder";import l from"./assets/styles/SummerSkyWaitingRoom.module.css";import d from"./assets/images/instruction-step.png";import m from"./assets/images/oceanedu-mascot.png";import h from"./assets/images/radio-check.png";import p from"./assets/images/next-btn.png";import u from"./assets/images/start-exam.png";import g from"./assets/images/check-mic-btn.png";import v from"./assets/images/stop-mic.png";import y from"./assets/images/mic-icon.png";import f from"./assets/images/audio-icon.png";const x=1.25;export function SummerSkyWaitingRoom({room:N,onStart:w,isStarting:k,onExit:b}){const[I,S]=i("instructions"),[B,R]=i(0),C=n(null),[F,T]=i(!1),[U,A]=i(0),[M,E]=i(null),j=n(null),[D,P]=i(!1),V="true"===process.env.NEXT_PUBLIC_SKIP_WAITING_ROOM_AUDIO,W=D||V;r(()=>{const t=j.current;if(!t)return;t.muted=!1,t.playbackRate=x;const e=t.play();void 0!==e&&e.catch(()=>{if(j.current){j.current.muted=!0,j.current.playbackRate=x;const t=j.current.play();void 0!==t&&t.catch(()=>{P(!0)})}})},[I]),r(()=>{P(!1),j.current&&(j.current.currentTime=0,j.current.playbackRate=x)},[I]);const _=c({attemptId:"mock-attempt-speaking",questionId:"mock-question",maxDurationMs:1e4,onRecordingComplete:()=>{},onError:t=>o.error(t)});r(()=>{let t;if("recording"===_.status){const e=Date.now();t=setInterval(()=>{R(Date.now()-e)},50)}else R(0);return()=>clearInterval(t)},[_.status]);const H=N.exam?.name||"BÀI THI NÓI";return t(s,{onExit:b,partName:H,instruction:"",audioUrl:"",canGoPrev:!1,canGoNext:!1,onPrev:()=>{"mic-test"===I&&S("instructions")},onNext:()=>{"instructions"===I&&S("mic-test")},hideAudioBar:!0,hideFooterTitle:!0,questionNumber:1,recorder:null,headerRight:null,children:e("div",{className:l.waitingRoomContainer,children:[e("div",{className:l.teacherFloating,children:[t("div",{className:l.teacherGlow}),e("div",{style:{position:"relative"},children:[t("video",{ref:j,className:l.teacherVideo,src:"mic-test"===I?"/speaking/video/check_microphone.webm":"/speaking/video/instruction.webm",autoPlay:!0,muted:!0,playsInline:!0,onEnded:()=>P(!0),onError:()=>{P(!0)},style:{opacity:D?0:1,transition:"opacity 0.6s ease-in-out"}}),t("img",{className:l.teacherVideo,src:"/speaking/image/teacher_ai_smile.png",alt:"AI Teacher",style:{position:"absolute",top:0,left:0,opacity:D?1:0,transition:"opacity 0.6s ease-in-out"}})]})]}),"instructions"===I&&e("div",{className:l.introBoard,children:[t("h2",{className:l.title,children:"Hướng dẫn chung"}),t("div",{className:l.instructionIconsWrap,style:{display:"flex",justifyContent:"center",width:"100%",marginBottom:"48px",marginTop:"5%"},children:t(a,{src:d,alt:"Hướng dẫn các bước",style:{width:"75%",height:"auto",objectFit:"contain"}})}),e("div",{className:l.aiBanner,children:[t("div",{className:l.aiBannerIcon,children:t(a,{src:m,alt:"OceanEdu Mascot",width:100,height:100,style:{borderRadius:"50%",objectFit:"cover"}})}),e("div",{className:l.aiBannerContent,children:[t("p",{className:l.aiBannerTitle,children:"Yêu cầu Ocean Edu AI Chấm điểm"}),t("p",{className:l.aiBannerDesc,children:"Hệ thống AI chuyên gia sẽ tự động chấm điểm bài thi của bạn 1 cách chính xác và khách quan nhất."})]}),t("div",{className:l.aiBannerRadio,children:t(a,{src:h,alt:"Radio Check",width:56,height:56})})]}),t("div",{className:l.stepButtonContainer,children:t("div",{className:"transition-transform "+(W?"cursor-pointer hover:scale-[1.02] active:scale-[0.98]":"cursor-not-allowed opacity-50 grayscale"),tabIndex:W?0:-1,onClick:()=>{W&&S("mic-test")},children:t(a,{src:p,alt:"Bước tiếp theo",style:{width:"280px",height:"auto"}})})}),t("div",{className:l.spacer})]}),"mic-test"===I&&e("div",{className:l.introBoard,children:[t("h2",{className:l.title,style:{marginBottom:"40px"},children:"KIỂM TRA MIC"}),e("div",{className:l.micTestContainer,children:[e("div",{className:l.micTestInstructionWrap,style:{margin:"-100px auto 48px auto",width:"fit-content",textAlign:"left"},children:[t("h3",{style:{color:"#2C38B6",fontFamily:'"SVN-Volte Rounded", sans-serif',fontSize:"28px",fontWeight:700,lineHeight:"1.5",textTransform:"uppercase",marginBottom:"24px",letterSpacing:"-0.01em"},children:"HƯỚNG DẪN"}),e("ul",{style:{listStyle:"none",padding:0,margin:0,color:"#343A40",fontFamily:'"SVN-Volte Rounded", sans-serif',fontSize:"20px",fontWeight:600,lineHeight:"1.8",letterSpacing:"-0.01em"},children:[t("li",{children:"1. Nhấn nút Kiểm tra mic bên dưới"}),t("li",{children:"2. Chọn Cho Phép (Allow) khi trình duyệt yêu cầu quyền truy cập"}),t("li",{children:"3. Sau khi kiểm tra Micro thành công, nhấn nút Bắt đầu bài thi"})]})]}),e("div",{className:`transition-transform ${_.previewUrl?"cursor-pointer hover:scale-[1.02] active:scale-[0.98]":"cursor-default"} ${"recording"===_.status?"animate-pulse":""}`,style:{background:"#044E96",borderRadius:"28px",width:"700px",height:"56px",display:"flex",alignItems:"center",cursor:_.previewUrl?"pointer":"default",padding:"0 24px 0 2px",gap:"16px",margin:"0 auto"},onClick:t=>{_.previewUrl&&(t=>{t.stopPropagation(),C.current&&(F?(C.current.pause(),T(!1)):(C.current.play().catch(()=>{T(!1)}),T(!0)))})(t)},children:[_.previewUrl&&t("audio",{ref:C,src:_.previewUrl,onTimeUpdate:()=>{C.current&&C.current.duration&&A(C.current.currentTime/C.current.duration*100)},onEnded:()=>{T(!1),A(0)},onLoadedMetadata:t=>{E(Math.round(t.target.duration))},style:{display:"none"}}),_.previewUrl?t(a,{src:f,alt:"Phát âm thanh",style:{width:"72px",height:"72px",objectFit:"contain",marginLeft:"-16px"}}):t(a,{src:y,alt:"Microphone",style:{width:"72px",height:"72px",objectFit:"contain",marginLeft:"-16px"}}),t("div",{style:{flex:1,height:"12px",background:"#FFF",borderRadius:"6px",overflow:"hidden"},children:t("div",{style:{height:"100%",background:"#7DB5FA",width:_.previewUrl?`${U}%`:`${Math.min(B/1e4*100,100)}%`,transition:"width 0.1s linear"}})}),e("div",{style:{color:"#FFF",fontSize:"20px",fontWeight:600,fontFamily:'"SVN-Volte Rounded", sans-serif',width:"60px",textAlign:"right",letterSpacing:"1px"},children:["00:",(_.previewUrl?M||0:Math.min(Math.floor(B/1e3),10)).toString().padStart(2,"0")]})]})]}),t("div",{className:l.stepButtonContainer,children:_.previewUrl?t("div",{className:"transition-transform "+(!k&&W?"cursor-pointer hover:scale-[1.02] active:scale-[0.98]":"cursor-not-allowed opacity-70 grayscale"),tabIndex:!k&&W?0:-1,onClick:!k&&W?w:void 0,children:t(a,{src:u,alt:"Bắt đầu bài thi",style:{width:"280px",height:"auto"}})}):t("div",{className:"transition-transform "+(W?"cursor-pointer hover:scale-[1.02] active:scale-[0.98]":"cursor-not-allowed opacity-70 grayscale"),tabIndex:W?0:-1,onClick:W?"recording"===_.status?_.stopRecording:_.startRecording:void 0,children:t(a,{src:"recording"===_.status?v:g,alt:"recording"===_.status?"Dừng kiểm tra":"Kiểm tra mic",style:{width:"280px",height:"auto"}})})})]})]})})}
1
+ 'use client';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ import { useState, useEffect, useRef } from 'react';
4
+ import Image from 'next/image';
5
+ import { toast } from 'sonner';
6
+ import { SummerSkyLayout } from './SummerSkyLayout';
7
+ import { useSpeakingRecorder } from '../../../components/exams/take/hooks/useSpeakingRecorder';
8
+ import styles from './assets/styles/SummerSkyWaitingRoom.module.css';
9
+ import instructionStepImg from './assets/images/instruction-step.png';
10
+ import mascotImg from './assets/images/oceanedu-mascot.png';
11
+ import radioCheckImg from './assets/images/radio-check.png';
12
+ import nextBtnImg from './assets/images/next-btn.png';
13
+ import startExamImg from './assets/images/start-exam.png';
14
+ import checkMicBtnImg from './assets/images/check-mic-btn.png';
15
+ import stopMicImg from './assets/images/stop-mic.png';
16
+ import micIconImg from './assets/images/mic-icon.png';
17
+ import audioIconImg from './assets/images/audio-icon.png';
18
+ const INSTRUCTION_VIDEO_SRC = '/speaking/video/instruction.webm';
19
+ const CHECK_MICROPHONE_VIDEO_SRC = '/speaking/video/check_microphone.webm';
20
+ const TEACHER_VIDEO_PLAYBACK_RATE = 1.25;
21
+ export function SummerSkyWaitingRoom({ room, onStart, isStarting, onExit }) {
22
+ const [step, setStep] = useState('instructions');
23
+ const [progressMs, setProgressMs] = useState(0);
24
+ // Playback state for after recording
25
+ const audioRef = useRef(null);
26
+ const [isPlaying, setIsPlaying] = useState(false);
27
+ const [playProgress, setPlayProgress] = useState(0);
28
+ const [totalDurationSec, setTotalDurationSec] = useState(null);
29
+ // Teacher video
30
+ const teacherVideoRef = useRef(null);
31
+ const [teacherVideoEnded, setTeacherVideoEnded] = useState(false);
32
+ const skipWaitingRoomAudio = process.env.NEXT_PUBLIC_SKIP_WAITING_ROOM_AUDIO === 'true';
33
+ const canProceed = teacherVideoEnded || skipWaitingRoomAudio;
34
+ useEffect(() => {
35
+ const video = teacherVideoRef.current;
36
+ if (!video)
37
+ return;
38
+ video.muted = false;
39
+ video.playbackRate = TEACHER_VIDEO_PLAYBACK_RATE;
40
+ const playPromise = video.play();
41
+ if (playPromise !== undefined) {
42
+ playPromise.catch(() => {
43
+ // Autoplay with sound blocked by browser — mute and retry.
44
+ if (teacherVideoRef.current) {
45
+ teacherVideoRef.current.muted = true;
46
+ teacherVideoRef.current.playbackRate = TEACHER_VIDEO_PLAYBACK_RATE;
47
+ // Guard the retry: if the source is still unplayable (e.g. unsupported
48
+ // codec), play() rejects again — swallow it so it never surfaces as an
49
+ // unhandledrejection. The <video> onError handler lets the user proceed.
50
+ const retryPromise = teacherVideoRef.current.play();
51
+ if (retryPromise !== undefined) {
52
+ retryPromise.catch(() => {
53
+ setTeacherVideoEnded(true);
54
+ });
55
+ }
56
+ }
57
+ });
58
+ }
59
+ }, [step]);
60
+ // Reset video state when switching steps so new video plays
61
+ useEffect(() => {
62
+ setTeacherVideoEnded(false);
63
+ if (teacherVideoRef.current) {
64
+ teacherVideoRef.current.currentTime = 0;
65
+ teacherVideoRef.current.playbackRate = TEACHER_VIDEO_PLAYBACK_RATE;
66
+ }
67
+ }, [step]);
68
+ const recorder = useSpeakingRecorder({
69
+ attemptId: 'mock-attempt-speaking',
70
+ questionId: 'mock-question',
71
+ maxDurationMs: 10000,
72
+ onRecordingComplete: () => { },
73
+ onError: (msg) => toast.error(msg),
74
+ });
75
+ useEffect(() => {
76
+ let interval;
77
+ if (recorder.status === 'recording') {
78
+ const startTime = Date.now();
79
+ interval = setInterval(() => {
80
+ setProgressMs(Date.now() - startTime);
81
+ }, 50);
82
+ }
83
+ else {
84
+ setProgressMs(0);
85
+ }
86
+ return () => clearInterval(interval);
87
+ }, [recorder.status]);
88
+ const examName = room.exam?.name || 'BÀI THI NÓI';
89
+ const formatTime = (ms) => {
90
+ const totalSec = Math.floor(ms / 1000);
91
+ const min = Math.floor(totalSec / 60);
92
+ const sec = totalSec % 60;
93
+ return `${min}:${sec.toString().padStart(2, '0')} / 0:10`;
94
+ };
95
+ const togglePlayback = (e) => {
96
+ e.stopPropagation();
97
+ if (!audioRef.current)
98
+ return;
99
+ if (isPlaying) {
100
+ audioRef.current.pause();
101
+ setIsPlaying(false);
102
+ }
103
+ else {
104
+ audioRef.current.play().catch(() => {
105
+ // Source unplayable — keep UI consistent instead of throwing.
106
+ setIsPlaying(false);
107
+ });
108
+ setIsPlaying(true);
109
+ }
110
+ };
111
+ const handleAudioTimeUpdate = () => {
112
+ if (audioRef.current && audioRef.current.duration) {
113
+ setPlayProgress((audioRef.current.currentTime / audioRef.current.duration) * 100);
114
+ }
115
+ };
116
+ const handleAudioEnded = () => {
117
+ setIsPlaying(false);
118
+ setPlayProgress(0);
119
+ };
120
+ return (_jsx(SummerSkyLayout, { onExit: onExit, partName: examName, instruction: "", audioUrl: "", canGoPrev: false, canGoNext: false, onPrev: () => {
121
+ if (step === 'mic-test')
122
+ setStep('instructions');
123
+ }, onNext: () => {
124
+ if (step === 'instructions')
125
+ setStep('mic-test');
126
+ }, hideAudioBar: true, hideFooterTitle: true, questionNumber: 1, recorder: null, headerRight: null, children: _jsxs("div", { className: styles.waitingRoomContainer, children: [_jsxs("div", { className: styles.teacherFloating, children: [_jsx("div", { className: styles.teacherGlow }), _jsxs("div", { style: { position: 'relative' }, children: [_jsx("video", { ref: teacherVideoRef, className: styles.teacherVideo, src: step === 'mic-test' ? CHECK_MICROPHONE_VIDEO_SRC : INSTRUCTION_VIDEO_SRC, autoPlay: true, muted: true, playsInline: true, onEnded: () => setTeacherVideoEnded(true), onError: () => {
127
+ // If the video source fails to load/decode, treat it as ended so
128
+ // the student is never stuck in the waiting room.
129
+ setTeacherVideoEnded(true);
130
+ }, style: {
131
+ opacity: teacherVideoEnded ? 0 : 1,
132
+ transition: 'opacity 0.6s ease-in-out',
133
+ } }), _jsx("img", { className: styles.teacherVideo, src: "/speaking/image/teacher_ai_smile.png", alt: "AI Teacher", style: {
134
+ position: 'absolute',
135
+ top: 0,
136
+ left: 0,
137
+ opacity: teacherVideoEnded ? 1 : 0,
138
+ transition: 'opacity 0.6s ease-in-out',
139
+ } })] })] }), step === 'instructions' && (_jsxs("div", { className: styles.introBoard, children: [_jsx("h2", { className: styles.title, children: "H\u01B0\u1EDBng d\u1EABn chung" }), _jsx("div", { className: styles.instructionIconsWrap, style: { display: 'flex', justifyContent: 'center', width: '100%', marginBottom: '48px', marginTop: '5%' }, children: _jsx(Image, { src: instructionStepImg, alt: "H\u01B0\u1EDBng d\u1EABn c\u00E1c b\u01B0\u1EDBc", style: { width: '75%', height: 'auto', objectFit: 'contain' } }) }), _jsxs("div", { className: styles.aiBanner, children: [_jsx("div", { className: styles.aiBannerIcon, children: _jsx(Image, { src: mascotImg, alt: "OceanEdu Mascot", width: 100, height: 100, style: { borderRadius: '50%', objectFit: 'cover' } }) }), _jsxs("div", { className: styles.aiBannerContent, children: [_jsx("p", { className: styles.aiBannerTitle, children: "Y\u00EAu c\u1EA7u Ocean Edu AI Ch\u1EA5m \u0111i\u1EC3m" }), _jsx("p", { className: styles.aiBannerDesc, children: "H\u1EC7 th\u1ED1ng AI chuy\u00EAn gia s\u1EBD t\u1EF1 \u0111\u1ED9ng ch\u1EA5m \u0111i\u1EC3m b\u00E0i thi c\u1EE7a b\u1EA1n 1 c\u00E1ch ch\u00EDnh x\u00E1c v\u00E0 kh\u00E1ch quan nh\u1EA5t." })] }), _jsx("div", { className: styles.aiBannerRadio, children: _jsx(Image, { src: radioCheckImg, alt: "Radio Check", width: 56, height: 56 }) })] }), _jsx("div", { className: styles.stepButtonContainer, children: _jsx("div", { className: `transition-transform ${canProceed ? 'cursor-pointer hover:scale-[1.02] active:scale-[0.98]' : 'cursor-not-allowed opacity-50 grayscale'}`, tabIndex: canProceed ? 0 : -1, onClick: () => {
140
+ if (!canProceed)
141
+ return;
142
+ setStep('mic-test');
143
+ }, children: _jsx(Image, { src: nextBtnImg, alt: "B\u01B0\u1EDBc ti\u1EBFp theo", style: { width: '280px', height: 'auto' } }) }) }), _jsx("div", { className: styles.spacer })] })), step === 'mic-test' && (_jsxs("div", { className: styles.introBoard, children: [_jsx("h2", { className: styles.title, style: { marginBottom: '40px' }, children: "KI\u1EC2M TRA MIC" }), _jsxs("div", { className: styles.micTestContainer, children: [_jsxs("div", { className: styles.micTestInstructionWrap, style: { margin: '-100px auto 48px auto', width: 'fit-content', textAlign: 'left' }, children: [_jsx("h3", { style: {
144
+ color: '#2C38B6',
145
+ fontFamily: '"SVN-Volte Rounded", sans-serif',
146
+ fontSize: '28px',
147
+ fontWeight: 700,
148
+ lineHeight: '1.5',
149
+ textTransform: 'uppercase',
150
+ marginBottom: '24px',
151
+ letterSpacing: '-0.01em'
152
+ }, children: "H\u01AF\u1EDANG D\u1EAAN" }), _jsxs("ul", { style: {
153
+ listStyle: 'none',
154
+ padding: 0,
155
+ margin: 0,
156
+ color: '#343A40',
157
+ fontFamily: '"SVN-Volte Rounded", sans-serif',
158
+ fontSize: '20px',
159
+ fontWeight: 600,
160
+ lineHeight: '1.8',
161
+ letterSpacing: '-0.01em'
162
+ }, children: [_jsx("li", { children: "1. Nh\u1EA5n n\u00FAt Ki\u1EC3m tra mic b\u00EAn d\u01B0\u1EDBi" }), _jsx("li", { children: "2. Ch\u1ECDn Cho Ph\u00E9p (Allow) khi tr\u00ECnh duy\u1EC7t y\u00EAu c\u1EA7u quy\u1EC1n truy c\u1EADp" }), _jsx("li", { children: "3. Sau khi ki\u1EC3m tra Micro th\u00E0nh c\u00F4ng, nh\u1EA5n n\u00FAt B\u1EAFt \u0111\u1EA7u b\u00E0i thi" })] })] }), _jsxs("div", { className: `transition-transform ${recorder.previewUrl ? 'cursor-pointer hover:scale-[1.02] active:scale-[0.98]' : 'cursor-default'} ${recorder.status === 'recording' ? 'animate-pulse' : ''}`, style: {
163
+ background: '#044E96',
164
+ borderRadius: '28px',
165
+ width: '700px',
166
+ height: '56px',
167
+ display: 'flex',
168
+ alignItems: 'center',
169
+ cursor: recorder.previewUrl ? 'pointer' : 'default',
170
+ padding: '0 24px 0 2px',
171
+ gap: '16px',
172
+ margin: '0 auto'
173
+ }, onClick: (e) => {
174
+ if (recorder.previewUrl) {
175
+ togglePlayback(e);
176
+ }
177
+ }, children: [recorder.previewUrl && (_jsx("audio", { ref: audioRef, src: recorder.previewUrl, onTimeUpdate: handleAudioTimeUpdate, onEnded: handleAudioEnded, onLoadedMetadata: (e) => {
178
+ setTotalDurationSec(Math.round(e.target.duration));
179
+ }, style: { display: 'none' } })), recorder.previewUrl ? (_jsx(Image, { src: audioIconImg, alt: "Ph\u00E1t \u00E2m thanh", style: { width: '72px', height: '72px', objectFit: 'contain', marginLeft: '-16px' } })) : (_jsx(Image, { src: micIconImg, alt: "Microphone", style: { width: '72px', height: '72px', objectFit: 'contain', marginLeft: '-16px' } })), _jsx("div", { style: { flex: 1, height: '12px', background: '#FFF', borderRadius: '6px', overflow: 'hidden' }, children: _jsx("div", { style: {
180
+ height: '100%',
181
+ background: '#7DB5FA',
182
+ width: recorder.previewUrl ? `${playProgress}%` : `${Math.min((progressMs / 10000) * 100, 100)}%`,
183
+ transition: 'width 0.1s linear'
184
+ } }) }), _jsxs("div", { style: {
185
+ color: '#FFF',
186
+ fontSize: '20px',
187
+ fontWeight: 600,
188
+ fontFamily: '"SVN-Volte Rounded", sans-serif',
189
+ width: '60px',
190
+ textAlign: 'right',
191
+ letterSpacing: '1px'
192
+ }, children: ["00:", (recorder.previewUrl ? (totalDurationSec || 0) : Math.min(Math.floor(progressMs / 1000), 10)).toString().padStart(2, '0')] })] })] }), _jsx("div", { className: styles.stepButtonContainer, children: recorder.previewUrl ? (_jsx("div", { className: `transition-transform ${(!isStarting && canProceed) ? 'cursor-pointer hover:scale-[1.02] active:scale-[0.98]' : 'cursor-not-allowed opacity-70 grayscale'}`, tabIndex: (!isStarting && canProceed) ? 0 : -1, onClick: (!isStarting && canProceed) ? onStart : undefined, children: _jsx(Image, { src: startExamImg, alt: "B\u1EAFt \u0111\u1EA7u b\u00E0i thi", style: { width: '280px', height: 'auto' } }) })) : (_jsx("div", { className: `transition-transform ${canProceed ? 'cursor-pointer hover:scale-[1.02] active:scale-[0.98]' : 'cursor-not-allowed opacity-70 grayscale'}`, tabIndex: canProceed ? 0 : -1, onClick: canProceed ? (recorder.status === 'recording' ? recorder.stopRecording : recorder.startRecording) : undefined, children: _jsx(Image, { src: recorder.status === 'recording' ? stopMicImg : checkMicBtnImg, alt: recorder.status === 'recording' ? "Dừng kiểm tra" : "Kiểm tra mic", style: { width: '280px', height: 'auto' } }) })) })] }))] }) }));
193
+ }
@@ -1 +1 @@
1
- export{};
1
+ export {};
@@ -1 +1,26 @@
1
- "use client";import{jsx as a,jsxs as e}from"react/jsx-runtime";import*as t from"react";import*as s from"@radix-ui/react-alert-dialog";import{cn as o}from"../../shared/lib/utils";import{buttonVariants as l}from"../../components/ui/button";const d=s.Root,i=s.Trigger,r=s.Portal,m=t.forwardRef(({className:e,...t},l)=>a(s.Overlay,{className:o("data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80",e),...t,ref:l}));m.displayName=s.Overlay.displayName;const n=t.forwardRef(({className:t,...l},d)=>e(r,{children:[a(m,{}),a(s.Content,{ref:d,className:o("bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] fixed top-[50%] left-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border p-6 shadow-lg duration-200 sm:rounded-lg",t),...l})]}));n.displayName=s.Content.displayName;const c=({className:e,...t})=>a("div",{className:o("flex flex-col space-y-2 text-center sm:text-left",e),...t});c.displayName="AlertDialogHeader";const f=({className:e,...t})=>a("div",{className:o("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",e),...t});f.displayName="AlertDialogFooter";const p=t.forwardRef(({className:e,...t},l)=>a(s.Title,{ref:l,className:o("text-lg font-semibold",e),...t}));p.displayName=s.Title.displayName;const N=t.forwardRef(({className:e,...t},l)=>a(s.Description,{ref:l,className:o("text-muted-foreground text-sm",e),...t}));N.displayName=s.Description.displayName;const u=t.forwardRef(({className:e,...t},d)=>a(s.Action,{ref:d,className:o(l(),e),...t}));u.displayName=s.Action.displayName;const x=t.forwardRef(({className:e,...t},d)=>a(s.Cancel,{ref:d,className:o(l({variant:"outline"}),"mt-2 sm:mt-0",e),...t}));x.displayName=s.Cancel.displayName;export{d as AlertDialog,r as AlertDialogPortal,m as AlertDialogOverlay,i as AlertDialogTrigger,n as AlertDialogContent,c as AlertDialogHeader,f as AlertDialogFooter,p as AlertDialogTitle,N as AlertDialogDescription,u as AlertDialogAction,x as AlertDialogCancel};
1
+ 'use client';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ import * as React from 'react';
4
+ import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
5
+ import { cn } from '../../shared/lib/utils';
6
+ import { buttonVariants } from '../../components/ui/button';
7
+ const AlertDialog = AlertDialogPrimitive.Root;
8
+ const AlertDialogTrigger = AlertDialogPrimitive.Trigger;
9
+ const AlertDialogPortal = AlertDialogPrimitive.Portal;
10
+ const AlertDialogOverlay = React.forwardRef(({ className, ...props }, ref) => (_jsx(AlertDialogPrimitive.Overlay, { className: cn('data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80', className), ...props, ref: ref })));
11
+ AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName;
12
+ const AlertDialogContent = React.forwardRef(({ className, ...props }, ref) => (_jsxs(AlertDialogPortal, { children: [_jsx(AlertDialogOverlay, {}), _jsx(AlertDialogPrimitive.Content, { ref: ref, className: cn('bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] fixed top-[50%] left-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border p-6 shadow-lg duration-200 sm:rounded-lg', className), ...props })] })));
13
+ AlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName;
14
+ const AlertDialogHeader = ({ className, ...props }) => (_jsx("div", { className: cn('flex flex-col space-y-2 text-center sm:text-left', className), ...props }));
15
+ AlertDialogHeader.displayName = 'AlertDialogHeader';
16
+ const AlertDialogFooter = ({ className, ...props }) => (_jsx("div", { className: cn('flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2', className), ...props }));
17
+ AlertDialogFooter.displayName = 'AlertDialogFooter';
18
+ const AlertDialogTitle = React.forwardRef(({ className, ...props }, ref) => (_jsx(AlertDialogPrimitive.Title, { ref: ref, className: cn('text-lg font-semibold', className), ...props })));
19
+ AlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName;
20
+ const AlertDialogDescription = React.forwardRef(({ className, ...props }, ref) => (_jsx(AlertDialogPrimitive.Description, { ref: ref, className: cn('text-muted-foreground text-sm', className), ...props })));
21
+ AlertDialogDescription.displayName = AlertDialogPrimitive.Description.displayName;
22
+ const AlertDialogAction = React.forwardRef(({ className, ...props }, ref) => (_jsx(AlertDialogPrimitive.Action, { ref: ref, className: cn(buttonVariants(), className), ...props })));
23
+ AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName;
24
+ const AlertDialogCancel = React.forwardRef(({ className, ...props }, ref) => (_jsx(AlertDialogPrimitive.Cancel, { ref: ref, className: cn(buttonVariants({ variant: 'outline' }), 'mt-2 sm:mt-0', className), ...props })));
25
+ AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName;
26
+ export { AlertDialog, AlertDialogPortal, AlertDialogOverlay, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, };
@@ -1 +1,22 @@
1
- import{jsx as e}from"react/jsx-runtime";import*as t from"react";import{cva as r}from"class-variance-authority";import{cn as a}from"../../shared/lib/utils";const s=r("relative w-full rounded-lg border p-4 [&>svg~*]:pl-7 [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground",{variants:{variant:{default:"bg-background text-foreground",destructive:"border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive"}},defaultVariants:{variant:"default"}}),i=t.forwardRef(({className:t,variant:r,...i},l)=>e("div",{ref:l,role:"alert",className:a(s({variant:r}),t),...i}));i.displayName="Alert";const l=t.forwardRef(({className:t,...r},s)=>e("h5",{ref:s,className:a("mb-1 font-medium leading-none tracking-tight",t),...r}));l.displayName="AlertTitle";const d=t.forwardRef(({className:t,...r},s)=>e("div",{ref:s,className:a("text-sm [&_p]:leading-relaxed",t),...r}));d.displayName="AlertDescription";export{i as Alert,l as AlertTitle,d as AlertDescription};
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import * as React from "react";
3
+ import { cva } from "class-variance-authority";
4
+ import { cn } from "../../shared/lib/utils";
5
+ const alertVariants = cva("relative w-full rounded-lg border p-4 [&>svg~*]:pl-7 [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground", {
6
+ variants: {
7
+ variant: {
8
+ default: "bg-background text-foreground",
9
+ destructive: "border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive",
10
+ },
11
+ },
12
+ defaultVariants: {
13
+ variant: "default",
14
+ },
15
+ });
16
+ const Alert = React.forwardRef(({ className, variant, ...props }, ref) => (_jsx("div", { ref: ref, role: "alert", className: cn(alertVariants({ variant }), className), ...props })));
17
+ Alert.displayName = "Alert";
18
+ const AlertTitle = React.forwardRef(({ className, ...props }, ref) => (_jsx("h5", { ref: ref, className: cn("mb-1 font-medium leading-none tracking-tight", className), ...props })));
19
+ AlertTitle.displayName = "AlertTitle";
20
+ const AlertDescription = React.forwardRef(({ className, ...props }, ref) => (_jsx("div", { ref: ref, className: cn("text-sm [&_p]:leading-relaxed", className), ...props })));
21
+ AlertDescription.displayName = "AlertDescription";
22
+ export { Alert, AlertTitle, AlertDescription };
@@ -1 +1,12 @@
1
- "use client";import{jsx as a}from"react/jsx-runtime";import*as e from"react";import*as l from"@radix-ui/react-avatar";import{cn as s}from"../../shared/lib/utils";const r=e.forwardRef(({className:e,...r},m)=>a(l.Root,{ref:m,className:s("relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full",e),...r}));r.displayName=l.Root.displayName;const m=e.forwardRef(({className:e,...r},m)=>a(l.Image,{ref:m,className:s("aspect-square h-full w-full",e),...r}));m.displayName=l.Image.displayName;const t=e.forwardRef(({className:e,...r},m)=>a(l.Fallback,{ref:m,className:s("bg-muted flex h-full w-full items-center justify-center rounded-full",e),...r}));t.displayName=l.Fallback.displayName;export{r as Avatar,m as AvatarImage,t as AvatarFallback};
1
+ 'use client';
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ import * as React from 'react';
4
+ import * as AvatarPrimitive from '@radix-ui/react-avatar';
5
+ import { cn } from '../../shared/lib/utils';
6
+ const Avatar = React.forwardRef(({ className, ...props }, ref) => (_jsx(AvatarPrimitive.Root, { ref: ref, className: cn('relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full', className), ...props })));
7
+ Avatar.displayName = AvatarPrimitive.Root.displayName;
8
+ const AvatarImage = React.forwardRef(({ className, ...props }, ref) => (_jsx(AvatarPrimitive.Image, { ref: ref, className: cn('aspect-square h-full w-full', className), ...props })));
9
+ AvatarImage.displayName = AvatarPrimitive.Image.displayName;
10
+ const AvatarFallback = React.forwardRef(({ className, ...props }, ref) => (_jsx(AvatarPrimitive.Fallback, { ref: ref, className: cn('bg-muted flex h-full w-full items-center justify-center rounded-full', className), ...props })));
11
+ AvatarFallback.displayName = AvatarPrimitive.Fallback.displayName;
12
+ export { Avatar, AvatarImage, AvatarFallback };