@tinyweb_dev/oe-exam-sdk 0.1.1 → 0.1.3
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.
- package/dist/api/exam-create.js +1 -179
- package/dist/api/exam-create.types.js +1 -1
- package/dist/api/exam-questions.d.ts +1 -1
- package/dist/api/exam-questions.js +1 -98
- package/dist/api/exam-questions.types.d.ts +45 -1
- package/dist/api/exam-questions.types.js +1 -1
- package/dist/api/exam-taking.js +1 -73
- package/dist/api/exam-taking.types.js +1 -1
- package/dist/api/index.js +1 -6
- package/dist/api/result-review.js +1 -50
- package/dist/api/result-review.types.js +1 -1
- package/dist/components/CueCardEditor.js +1 -58
- package/dist/components/common/ResolvedImage.js +1 -15
- package/dist/components/exams/CompletionDialog.d.ts +8 -0
- package/dist/components/exams/CompletionDialog.js +1 -0
- package/dist/components/exams/CreateExamInfoForm.d.ts +4 -1
- package/dist/components/exams/CreateExamInfoForm.js +1 -35
- package/dist/components/exams/CreateExamPageContainer.d.ts +3 -0
- package/dist/components/exams/CreateExamPageContainer.js +1 -103
- package/dist/components/exams/ExamCreator.d.ts +9 -3
- package/dist/components/exams/ExamCreator.js +1 -89
- package/dist/components/exams/ExamPartTabs.d.ts +1 -1
- package/dist/components/exams/ExamPartTabs.js +1 -40
- package/dist/components/exams/ExamPreviewDialog.d.ts +20 -0
- package/dist/components/exams/ExamPreviewDialog.js +1 -0
- package/dist/components/exams/ExamQuestionGrid.d.ts +1 -1
- package/dist/components/exams/ExamQuestionGrid.js +1 -18
- package/dist/components/exams/ExamQuestionsPageContainer.d.ts +3 -0
- package/dist/components/exams/ExamQuestionsPageContainer.js +1 -90
- package/dist/components/exams/ExamViewDialog.d.ts +24 -0
- package/dist/components/exams/ExamViewDialog.js +1 -0
- package/dist/components/exams/PartAudioUploader.js +1 -9
- package/dist/components/exams/TemplateSelector.js +1 -66
- package/dist/components/exams/UnsavedChangesDialog.d.ts +8 -0
- package/dist/components/exams/UnsavedChangesDialog.js +1 -0
- package/dist/components/exams/api.d.ts +1 -1
- package/dist/components/exams/api.js +1 -3
- package/dist/components/exams/create-exam.texts.d.ts +58 -0
- package/dist/components/exams/create-exam.texts.js +1 -0
- package/dist/components/exams/create-exam.validation.js +1 -18
- package/dist/components/exams/exam-question-status.d.ts +9 -0
- package/dist/components/exams/exam-question-status.js +1 -0
- package/dist/components/exams/exam-template.utils.js +1 -18
- package/dist/components/exams/index.d.ts +11 -1
- package/dist/components/exams/index.js +1 -10
- package/dist/components/exams/take/ExamTakingPageContainer.js +1 -153
- package/dist/components/exams/take/GenericQuestionRenderer.js +1 -14
- package/dist/components/exams/take/exam-taking.utils.js +1 -88
- package/dist/components/exams/take/hooks/useSpeakingRecorder.js +1 -24
- package/dist/components/exams/take/index.js +1 -2
- package/dist/components/exams/take/types.js +1 -1
- package/dist/components/index.js +1 -42
- package/dist/components/questions/_shared/config/question-types.config.js +1 -333
- package/dist/components/questions/_shared/constants/color-palette.js +1 -21
- package/dist/components/questions/_shared/hooks/useAnswerGroupQuestionGroup.js +1 -105
- package/dist/components/questions/_shared/hooks/useBasicQuestionGroup.js +1 -222
- package/dist/components/questions/_shared/hooks/useCompareImagesGroup.js +1 -140
- package/dist/components/questions/_shared/hooks/useImageQuestionGroup.js +1 -123
- package/dist/components/questions/_shared/hooks/useInfoExchangeGroup.js +1 -50
- package/dist/components/questions/_shared/hooks/useQuestionFormState.js +1 -54
- package/dist/components/questions/_shared/hooks/useQuestionInitialization.js +1 -123
- package/dist/components/questions/_shared/hooks/useQuestionListGroup.js +1 -121
- package/dist/components/questions/_shared/hooks/useQuestionOnChange.js +1 -70
- package/dist/components/questions/_shared/hooks/useSceneQuestionGroup.js +1 -194
- package/dist/components/questions/_shared/index.js +1 -7
- package/dist/components/questions/_shared/types/answer-the-question.type.js +1 -1
- package/dist/components/questions/_shared/types/arrange-letters-into-words.type.js +1 -1
- package/dist/components/questions/_shared/types/choose-correct-adjective.type.js +1 -3
- package/dist/components/questions/_shared/types/color-region.config.js +1 -1
- package/dist/components/questions/_shared/types/fill-in-blank.type.js +1 -1
- package/dist/components/questions/_shared/types/fill-missing-words-in-grid.type.js +1 -1
- package/dist/components/questions/_shared/types/gn-speaking-interview.type.js +1 -1
- package/dist/components/questions/_shared/types/index.js +1 -12
- package/dist/components/questions/_shared/types/label-the-picture.type.js +1 -1
- package/dist/components/questions/_shared/types/listen-and-choose-from-answer-group.type.js +1 -1
- package/dist/components/questions/_shared/types/listen-and-choose-objects-in-scene.type.js +1 -1
- package/dist/components/questions/_shared/types/listen-and-drag-objects-into-scene.type.js +1 -1
- package/dist/components/questions/_shared/types/listen-and-speak-answer.type.js +1 -1
- package/dist/components/questions/_shared/types/listen-and-speak-compare-images.type.js +1 -1
- package/dist/components/questions/_shared/types/listen-and-speak-image-group.type.js +1 -1
- package/dist/components/questions/_shared/types/listen-and-speak-info-exchange.type.js +1 -1
- package/dist/components/questions/_shared/types/listen-and-speak-odd-one-out.type.js +1 -3
- package/dist/components/questions/_shared/types/listen-and-speak-question-list.type.js +1 -1
- package/dist/components/questions/_shared/types/listen-and-speak-with-story-images.type.js +1 -3
- package/dist/components/questions/_shared/types/listen-and-tick-answer.type.js +1 -1
- package/dist/components/questions/_shared/types/listening-drawline.type.js +1 -1
- package/dist/components/questions/_shared/types/look-and-choose-answer.type.js +1 -1
- package/dist/components/questions/_shared/types/look-picture-fill-word-hint.type.js +1 -1
- package/dist/components/questions/_shared/types/match-by-writing-answer.type.js +1 -1
- package/dist/components/questions/_shared/types/multiple-choice.type.js +1 -1
- package/dist/components/questions/_shared/types/question-group.type.js +1 -11
- package/dist/components/questions/_shared/types/read-and-color-objects.type.js +1 -1
- package/dist/components/questions/_shared/types/read-displayed-content.type.js +1 -1
- package/dist/components/questions/_shared/types/read-passage-and-answer-questions.type.js +1 -1
- package/dist/components/questions/_shared/types/speaking-describe-image.type.js +1 -1
- package/dist/components/questions/_shared/types/spontaneous-qa.type.js +1 -1
- package/dist/components/questions/_shared/types/word-fill-paragraph-with-options.type.js +1 -1
- package/dist/components/questions/_shared/types/word-fill-paragraph.type.js +1 -1
- package/dist/components/questions/_shared/types/word-fill-structured-form.type.js +1 -1
- package/dist/components/questions/_shared/types/word-ordering.type.js +1 -1
- package/dist/components/questions/_shared/types/write-a-short-letter.type.js +1 -1
- package/dist/components/questions/_shared/types/write-correct-verb-form.type.js +1 -3
- package/dist/components/questions/_shared/types/write-sentences.type.js +1 -1
- package/dist/components/questions/_shared/types/write-short-paragraph.type.js +1 -1
- package/dist/components/questions/_shared/utils/answer-builder.js +1 -79
- package/dist/components/questions/_shared/utils/createColorRegionRegistration.js +1 -39
- package/dist/components/questions/_shared/utils/id-generator.js +1 -3
- package/dist/components/questions/_shared/utils/question-validation.js +1 -21
- package/dist/components/questions/components/ColorNode.js +1 -85
- package/dist/components/questions/components/ColorRegionClient.js +1 -545
- package/dist/components/questions/components/ColorRegionCreator.js +1 -420
- package/dist/components/questions/components/ColorRegionNode.js +1 -59
- package/dist/components/questions/components/CreatorGuide.js +1 -103
- package/dist/components/questions/components/NameNode.js +1 -26
- package/dist/components/questions/components/QuestionBankOption.js +1 -46
- package/dist/components/questions/components/QuestionBasicInfoForm.js +1 -9
- package/dist/components/questions/components/QuestionCommonFields.js +1 -33
- package/dist/components/questions/components/QuestionSearchDropdown.js +1 -258
- package/dist/components/questions/components/QuestionTypeSelector.js +1 -32
- package/dist/components/questions/components/QuestionTypeSpecificForms.js +1 -6
- package/dist/components/questions/components/RegionNode.js +1 -94
- package/dist/components/questions/components/index.js +1 -14
- package/dist/components/questions/creator/QuestionCreator.js +1 -90
- package/dist/components/questions/creator/QuestionGroupCreator.js +1 -119
- package/dist/components/questions/creator/dedicated-component-router.js +1 -79
- package/dist/components/questions/creator/index.js +1 -3
- package/dist/components/questions/creator/question-type-registry.js +1 -80
- package/dist/components/questions/groups/ArticlesGroupCard.js +1 -121
- package/dist/components/questions/groups/BasicQuestionGroupCard.js +1 -50
- package/dist/components/questions/groups/DocumentGroupCard.js +1 -114
- package/dist/components/questions/groups/MatchAnswerGroupCard.js +1 -25
- package/dist/components/questions/index.js +1 -10
- package/dist/components/questions/types/answer-the-question/AnswerTheQuestionClient.js +1 -37
- package/dist/components/questions/types/answer-the-question/AnswerTheQuestionCreator.js +1 -351
- package/dist/components/questions/types/answer-the-question/register.js +1 -67
- package/dist/components/questions/types/answer-the-question/transform.js +1 -36
- package/dist/components/questions/types/arrange-letters-into-words/ArrangeLettersIntoWordsClient.js +1 -141
- package/dist/components/questions/types/arrange-letters-into-words/ArrangeLettersIntoWordsCreator.js +1 -118
- package/dist/components/questions/types/arrange-letters-into-words/index.js +1 -2
- package/dist/components/questions/types/arrange-letters-into-words/register.js +1 -4
- package/dist/components/questions/types/arrange-letters-into-words/transform.js +1 -24
- package/dist/components/questions/types/choose-correct-adjective/ChooseCorrectAdjectiveClient.js +1 -64
- package/dist/components/questions/types/choose-correct-adjective/ChooseCorrectAdjectiveCreator.js +1 -169
- package/dist/components/questions/types/choose-correct-adjective/index.js +1 -2
- package/dist/components/questions/types/choose-correct-adjective/register.js +1 -55
- package/dist/components/questions/types/choose-correct-adjective/transform.js +1 -16
- package/dist/components/questions/types/choose-the-correct-answer/ChooseTheCorrectAnswerClient.js +1 -131
- package/dist/components/questions/types/choose-the-correct-answer/ChooseTheCorrectAnswerCreator.js +1 -581
- package/dist/components/questions/types/choose-the-correct-answer/index.js +1 -2
- package/dist/components/questions/types/choose-the-correct-answer/register.js +1 -101
- package/dist/components/questions/types/choose-the-correct-answer/transform.js +1 -43
- package/dist/components/questions/types/fill-in-blank/FillInBlankClient.js +1 -275
- package/dist/components/questions/types/fill-in-blank/FillInBlankCreator.js +1 -448
- package/dist/components/questions/types/fill-in-blank/index.js +1 -2
- package/dist/components/questions/types/fill-in-blank/register.js +1 -138
- package/dist/components/questions/types/fill-in-blank/transform.js +1 -59
- package/dist/components/questions/types/fill-missing-words-in-grid/FillMissingWordsInGridClient.js +1 -117
- package/dist/components/questions/types/fill-missing-words-in-grid/FillMissingWordsInGridCreator.js +1 -671
- package/dist/components/questions/types/fill-missing-words-in-grid/index.js +1 -2
- package/dist/components/questions/types/fill-missing-words-in-grid/register.js +1 -37
- package/dist/components/questions/types/fill-missing-words-in-grid/transform.js +1 -15
- package/dist/components/questions/types/gn-speaking-interview/GNSpeakingInterviewCreator.js +1 -262
- package/dist/components/questions/types/gn-speaking-interview/register.js +1 -121
- package/dist/components/questions/types/gn-speaking-interview/transform.js +1 -48
- package/dist/components/questions/types/image-object-matching/ImageObjectMatchingClient.js +1 -16
- package/dist/components/questions/types/image-object-matching/ImageObjectMatchingCreator.js +1 -27
- package/dist/components/questions/types/image-object-matching/index.js +1 -2
- package/dist/components/questions/types/image-object-matching/register.js +1 -3
- package/dist/components/questions/types/image-object-matching/transform.js +1 -2
- package/dist/components/questions/types/label-the-picture/LabelThePictureClient.js +1 -102
- package/dist/components/questions/types/label-the-picture/LabelThePictureCreator.js +1 -344
- package/dist/components/questions/types/label-the-picture/index.js +1 -2
- package/dist/components/questions/types/label-the-picture/register.js +1 -54
- package/dist/components/questions/types/label-the-picture/transform.js +1 -28
- package/dist/components/questions/types/listen-and-choose-from-answer-group/ListenAndChooseFromAnswerGroupClient.js +1 -78
- package/dist/components/questions/types/listen-and-choose-from-answer-group/ListenAndChooseFromAnswerGroupCreator.js +1 -232
- package/dist/components/questions/types/listen-and-choose-from-answer-group/index.js +1 -2
- package/dist/components/questions/types/listen-and-choose-from-answer-group/register.js +1 -82
- package/dist/components/questions/types/listen-and-choose-from-answer-group/transform.js +1 -27
- package/dist/components/questions/types/listen-and-choose-objects-in-scene/ListenAndChooseObjectsInSceneClient.js +1 -70
- package/dist/components/questions/types/listen-and-choose-objects-in-scene/ListenAndChooseObjectsInSceneCreator.js +1 -386
- package/dist/components/questions/types/listen-and-choose-objects-in-scene/index.js +1 -2
- package/dist/components/questions/types/listen-and-choose-objects-in-scene/register.js +1 -100
- package/dist/components/questions/types/listen-and-choose-objects-in-scene/transform.js +1 -33
- package/dist/components/questions/types/listen-and-drag-objects-into-scene/ListenAndDragObjectsIntoSceneClient.js +1 -106
- package/dist/components/questions/types/listen-and-drag-objects-into-scene/ListenAndDragObjectsIntoSceneCreator.js +1 -457
- package/dist/components/questions/types/listen-and-drag-objects-into-scene/index.js +1 -2
- package/dist/components/questions/types/listen-and-drag-objects-into-scene/register.js +1 -110
- package/dist/components/questions/types/listen-and-drag-objects-into-scene/transform.js +1 -35
- package/dist/components/questions/types/listen-and-speak-answer/ArrowIndicator.js +1 -8
- package/dist/components/questions/types/listen-and-speak-answer/ListenAndSpeakAnswerClient.js +1 -22
- package/dist/components/questions/types/listen-and-speak-answer/ListenAndSpeakAnswerCreator.js +1 -291
- package/dist/components/questions/types/listen-and-speak-answer/index.js +1 -2
- package/dist/components/questions/types/listen-and-speak-answer/register.js +1 -84
- package/dist/components/questions/types/listen-and-speak-answer/transform.js +1 -27
- package/dist/components/questions/types/listen-and-speak-compare-images/ListenAndSpeakCompareImagesClient.js +1 -32
- package/dist/components/questions/types/listen-and-speak-compare-images/ListenAndSpeakCompareImagesCreator.js +1 -295
- package/dist/components/questions/types/listen-and-speak-compare-images/register.js +1 -79
- package/dist/components/questions/types/listen-and-speak-compare-images/transform.js +1 -27
- package/dist/components/questions/types/listen-and-speak-image-group/ListenAndSpeakImageGroupClient.js +1 -34
- package/dist/components/questions/types/listen-and-speak-image-group/ListenAndSpeakImageGroupCreator.js +1 -285
- package/dist/components/questions/types/listen-and-speak-image-group/register.js +1 -81
- package/dist/components/questions/types/listen-and-speak-image-group/transform.js +1 -26
- package/dist/components/questions/types/listen-and-speak-info-exchange/ListenAndSpeakInfoExchangeClient.js +1 -38
- package/dist/components/questions/types/listen-and-speak-info-exchange/ListenAndSpeakInfoExchangeCreator.js +1 -385
- package/dist/components/questions/types/listen-and-speak-info-exchange/register.js +1 -87
- package/dist/components/questions/types/listen-and-speak-info-exchange/transform.js +1 -32
- package/dist/components/questions/types/listen-and-speak-odd-one-out/ListenAndSpeakOddOneOutClient.js +1 -26
- package/dist/components/questions/types/listen-and-speak-odd-one-out/ListenAndSpeakOddOneOutCreator.js +1 -247
- package/dist/components/questions/types/listen-and-speak-odd-one-out/register.js +1 -59
- package/dist/components/questions/types/listen-and-speak-odd-one-out/transform.js +1 -18
- package/dist/components/questions/types/listen-and-speak-question-list/ListenAndSpeakQuestionListClient.js +1 -26
- package/dist/components/questions/types/listen-and-speak-question-list/ListenAndSpeakQuestionListCreator.js +1 -256
- package/dist/components/questions/types/listen-and-speak-question-list/register.js +1 -81
- package/dist/components/questions/types/listen-and-speak-question-list/transform.js +1 -26
- package/dist/components/questions/types/listen-and-speak-with-story-images/ListenAndSpeakWithStoryImagesClient.js +1 -26
- package/dist/components/questions/types/listen-and-speak-with-story-images/ListenAndSpeakWithStoryImagesCreator.js +1 -230
- package/dist/components/questions/types/listen-and-speak-with-story-images/register.js +1 -56
- package/dist/components/questions/types/listen-and-speak-with-story-images/transform.js +1 -16
- package/dist/components/questions/types/look-picture-choose-correct-answer/LookPictureChooseCorrectAnswerClient.js +1 -72
- package/dist/components/questions/types/look-picture-choose-correct-answer/LookPictureChooseCorrectAnswerCreator.js +1 -230
- package/dist/components/questions/types/look-picture-choose-correct-answer/index.js +1 -1
- package/dist/components/questions/types/look-picture-choose-correct-answer/register.js +1 -66
- package/dist/components/questions/types/look-picture-choose-correct-answer/transform.js +1 -42
- package/dist/components/questions/types/look-picture-fill-blank-choose-answer/LookPictureFillBlankChooseAnswerClient.js +1 -96
- package/dist/components/questions/types/look-picture-fill-blank-choose-answer/LookPictureFillBlankChooseAnswerCreator.js +1 -238
- package/dist/components/questions/types/look-picture-fill-blank-choose-answer/index.js +1 -2
- package/dist/components/questions/types/look-picture-fill-blank-choose-answer/register.js +1 -76
- package/dist/components/questions/types/look-picture-fill-blank-choose-answer/transform.js +1 -19
- package/dist/components/questions/types/look-picture-fill-word-hint/LookPictureFillWordHintClient.js +1 -134
- package/dist/components/questions/types/look-picture-fill-word-hint/LookPictureFillWordHintCreator.js +1 -617
- package/dist/components/questions/types/look-picture-fill-word-hint/index.js +1 -2
- package/dist/components/questions/types/look-picture-fill-word-hint/register.js +1 -82
- package/dist/components/questions/types/look-picture-fill-word-hint/transform.js +1 -29
- package/dist/components/questions/types/match-by-writing-answer/MatchByWritingAnswerClient.js +1 -38
- package/dist/components/questions/types/match-by-writing-answer/MatchByWritingAnswerCreator.js +1 -359
- package/dist/components/questions/types/match-by-writing-answer/index.js +1 -3
- package/dist/components/questions/types/match-by-writing-answer/register.js +1 -58
- package/dist/components/questions/types/match-by-writing-answer/transform.js +1 -61
- package/dist/components/questions/types/read-and-color-objects/ReadAndColorObjectsClient.js +1 -16
- package/dist/components/questions/types/read-and-color-objects/ReadAndColorObjectsCreator.js +1 -23
- package/dist/components/questions/types/read-and-color-objects/index.js +1 -2
- package/dist/components/questions/types/read-and-color-objects/register.js +1 -3
- package/dist/components/questions/types/read-and-color-objects/transform.js +1 -36
- package/dist/components/questions/types/read-displayed-content/ReadDisplayedContentCreator.js +1 -125
- package/dist/components/questions/types/read-displayed-content/register.js +1 -64
- package/dist/components/questions/types/read-displayed-content/transform.js +1 -12
- package/dist/components/questions/types/read-passage-and-answer-questions/ReadPassageAndAnswerQuestionsClient.js +1 -64
- package/dist/components/questions/types/read-passage-and-answer-questions/ReadPassageAndAnswerQuestionsCreator.js +1 -511
- package/dist/components/questions/types/read-passage-and-answer-questions/index.js +1 -2
- package/dist/components/questions/types/read-passage-and-answer-questions/register.js +1 -58
- package/dist/components/questions/types/read-passage-and-answer-questions/transform.js +1 -28
- package/dist/components/questions/types/speaking-conversation/SpeakingConversationCreator.js +1 -373
- package/dist/components/questions/types/speaking-conversation/SpeakingConversationPreviewClient.js +1 -41
- package/dist/components/questions/types/speaking-conversation/register.js +1 -110
- package/dist/components/questions/types/speaking-conversation/transform.js +1 -34
- package/dist/components/questions/types/speaking-cue-card/SpeakingCueCardCreator.js +1 -74
- package/dist/components/questions/types/speaking-cue-card/register.js +1 -52
- package/dist/components/questions/types/speaking-cue-card/transform.js +1 -12
- package/dist/components/questions/types/speaking-describe-image/SpeakingDescribeImageClient.js +1 -10
- package/dist/components/questions/types/speaking-describe-image/SpeakingDescribeImageCreator.js +1 -161
- package/dist/components/questions/types/speaking-describe-image/index.js +1 -2
- package/dist/components/questions/types/speaking-describe-image/register.js +1 -69
- package/dist/components/questions/types/speaking-describe-image/transform.js +1 -16
- package/dist/components/questions/types/spontaneous-qa/SpontaneousQACreator.js +1 -234
- package/dist/components/questions/types/spontaneous-qa/register.js +1 -93
- package/dist/components/questions/types/spontaneous-qa/transform.js +1 -34
- package/dist/components/questions/types/true-false/TrueFalseClient.js +1 -75
- package/dist/components/questions/types/true-false/TrueFalseCreator.js +1 -244
- package/dist/components/questions/types/true-false/index.js +1 -2
- package/dist/components/questions/types/true-false/register.js +1 -77
- package/dist/components/questions/types/true-false/transform.js +1 -32
- package/dist/components/questions/types/word-fill-paragraph/WordFillParagraphClient.js +1 -233
- package/dist/components/questions/types/word-fill-paragraph/WordFillParagraphCreator.js +1 -631
- package/dist/components/questions/types/word-fill-paragraph/WordFillParagraphWrapper.js +1 -28
- package/dist/components/questions/types/word-fill-paragraph/index.js +1 -2
- package/dist/components/questions/types/word-fill-paragraph/register.js +1 -136
- package/dist/components/questions/types/word-fill-paragraph/transform.js +1 -56
- package/dist/components/questions/types/word-fill-structured-form/WordFillStructuredFormClient.js +1 -138
- package/dist/components/questions/types/word-fill-structured-form/WordFillStructuredFormCreator.js +1 -261
- package/dist/components/questions/types/word-fill-structured-form/index.js +1 -2
- package/dist/components/questions/types/word-fill-structured-form/register.js +1 -67
- package/dist/components/questions/types/word-fill-structured-form/transform.js +1 -40
- package/dist/components/questions/types/word-ordering/WordOrderingClient.js +1 -84
- package/dist/components/questions/types/word-ordering/WordOrderingCreator.js +1 -192
- package/dist/components/questions/types/word-ordering/index.js +1 -2
- package/dist/components/questions/types/word-ordering/register.js +1 -46
- package/dist/components/questions/types/word-ordering/transform.js +1 -24
- package/dist/components/questions/types/write-a-short-letter/WriteAShortLetterClient.js +1 -98
- package/dist/components/questions/types/write-a-short-letter/WriteAShortLetterCreator.js +1 -320
- package/dist/components/questions/types/write-a-short-letter/index.js +1 -2
- package/dist/components/questions/types/write-a-short-letter/register.js +1 -68
- package/dist/components/questions/types/write-a-short-letter/transform.js +1 -25
- package/dist/components/questions/types/write-correct-verb-form/WriteCorrectVerbFormClient.js +1 -61
- package/dist/components/questions/types/write-correct-verb-form/WriteCorrectVerbFormCreator.js +1 -196
- package/dist/components/questions/types/write-correct-verb-form/index.js +1 -2
- package/dist/components/questions/types/write-correct-verb-form/register.js +1 -62
- package/dist/components/questions/types/write-correct-verb-form/transform.js +1 -17
- package/dist/components/questions/types/write-sentences/WriteSentencesClient.js +1 -22
- package/dist/components/questions/types/write-sentences/WriteSentencesCreator.js +1 -174
- package/dist/components/questions/types/write-sentences/index.js +1 -2
- package/dist/components/questions/types/write-sentences/register.js +1 -58
- package/dist/components/questions/types/write-sentences/transform.js +1 -28
- package/dist/components/questions/types/write-short-paragraph/WriteShortParagraphClient.js +1 -96
- package/dist/components/questions/types/write-short-paragraph/WriteShortParagraphCreator.js +1 -161
- package/dist/components/questions/types/write-short-paragraph/index.js +1 -2
- package/dist/components/questions/types/write-short-paragraph/register.js +1 -4
- package/dist/components/questions/types/write-short-paragraph/transform.js +1 -21
- package/dist/components/questions/viewer/QuestionGroupViewer.js +1 -36
- package/dist/components/questions/viewer/QuestionViewer.js +1 -446
- package/dist/components/questions/viewer/index.js +1 -2
- package/dist/components/results/ResultReviewPageContainer.js +1 -98
- package/dist/components/results/ReviewQuestionRenderer.js +1 -72
- package/dist/components/results/index.js +1 -2
- package/dist/components/results/result-review.utils.js +1 -6
- package/dist/components/results/review-data.js +1 -150
- package/dist/components/results/review-renderer.utils.js +1 -97
- package/dist/components/results/review-types.js +1 -1
- package/dist/components/themes/cambridge-yle/CambridgeYleAudioPlayer.js +1 -138
- package/dist/components/themes/cambridge-yle/CambridgeYleBottomNav.js +1 -12
- package/dist/components/themes/cambridge-yle/CambridgeYleExamLayout.js +1 -18
- package/dist/components/themes/cambridge-yle/CambridgeYleExampleText.js +1 -11
- package/dist/components/themes/cambridge-yle/CambridgeYleHeader.js +1 -11
- package/dist/components/themes/cambridge-yle/CambridgeYleInstructionBanner.js +1 -9
- package/dist/components/themes/cambridge-yle/CambridgeYleNavButton.js +1 -13
- package/dist/components/themes/cambridge-yle/CambridgeYlePartBanner.js +1 -8
- package/dist/components/themes/cambridge-yle/CambridgeYleProgressBar.js +1 -6
- package/dist/components/themes/cambridge-yle/CambridgeYleQuestionCard.js +1 -5
- package/dist/components/themes/cambridge-yle/CambridgeYleQuestionCardFullWidth.js +1 -9
- package/dist/components/themes/cambridge-yle/CambridgeYleSidebar.js +1 -41
- package/dist/components/themes/cambridge-yle/CambridgeYleTimer.js +1 -25
- package/dist/components/themes/cambridge-yle/index.js +1 -13
- package/dist/components/themes/english-certification/EcAnswerTheQuestion.js +1 -24
- package/dist/components/themes/english-certification/EcMatchByWritingAnswer.js +1 -88
- package/dist/components/themes/english-certification/EcWordFillParagraph.js +1 -55
- package/dist/components/themes/english-certification/EcWordFillStructuredForm.js +1 -156
- package/dist/components/themes/english-certification/EcWritingTask.js +1 -34
- package/dist/components/themes/english-certification/EnglishCertificationAudioPlayer.js +1 -114
- package/dist/components/themes/english-certification/EnglishCertificationBrand.js +1 -11
- package/dist/components/themes/english-certification/EnglishCertificationExamLayout.js +1 -21
- package/dist/components/themes/english-certification/EnglishCertificationFlagButton.js +1 -15
- package/dist/components/themes/english-certification/EnglishCertificationFooterBar.js +1 -19
- package/dist/components/themes/english-certification/EnglishCertificationGroupedQuestion.js +1 -148
- package/dist/components/themes/english-certification/EnglishCertificationHeader.js +1 -31
- package/dist/components/themes/english-certification/EnglishCertificationNavigationPanel.js +1 -71
- package/dist/components/themes/english-certification/EnglishCertificationOptionSelector.js +1 -33
- package/dist/components/themes/english-certification/EnglishCertificationPassagePanel.js +1 -16
- package/dist/components/themes/english-certification/EnglishCertificationQuestionCard.js +1 -22
- package/dist/components/themes/english-certification/EnglishCertificationQuestionItem.js +1 -37
- package/dist/components/themes/english-certification/EnglishCertificationQuestionRenderer.js +1 -72
- package/dist/components/themes/english-certification/EnglishCertificationReadingSection.js +1 -90
- package/dist/components/themes/english-certification/EnglishCertificationSingleQuestion.js +1 -18
- package/dist/components/themes/english-certification/EnglishCertificationSingleQuestionList.js +1 -29
- package/dist/components/themes/english-certification/english-certification-theme.js +1 -58
- package/dist/components/themes/english-certification/grouped-question-utils.js +1 -218
- package/dist/components/themes/english-certification/index.js +1 -21
- package/dist/components/themes/index.js +1 -6
- package/dist/components/themes/summer-sky/SummerSkyAudioPlayer.js +1 -170
- package/dist/components/themes/summer-sky/SummerSkyLayout.js +1 -221
- package/dist/components/themes/summer-sky/SummerSkySubmitModal.js +1 -18
- package/dist/components/themes/summer-sky/SummerSkyWaitingRoom.js +1 -194
- package/dist/components/themes/types.js +1 -1
- package/dist/components/ui/alert-dialog.js +1 -26
- package/dist/components/ui/alert.js +1 -22
- package/dist/components/ui/avatar.js +1 -12
- package/dist/components/ui/badge.js +1 -38
- package/dist/components/ui/button.js +1 -35
- package/dist/components/ui/calendar.js +1 -76
- package/dist/components/ui/card.js +1 -16
- package/dist/components/ui/carousel.js +1 -91
- package/dist/components/ui/checkbox.js +1 -9
- package/dist/components/ui/collapsible.js +1 -13
- package/dist/components/ui/command.js +1 -34
- package/dist/components/ui/confirm-dialog.js +1 -49
- package/dist/components/ui/dialog.js +1 -23
- package/dist/components/ui/drawer.js +1 -35
- package/dist/components/ui/dropdown-menu.js +1 -33
- package/dist/components/ui/file-upload.js +1 -155
- package/dist/components/ui/form.js +1 -62
- package/dist/components/ui/hover-card.js +1 -10
- package/dist/components/ui/image-preview.js +1 -29
- package/dist/components/ui/input.js +1 -8
- package/dist/components/ui/label.js +1 -9
- package/dist/components/ui/language-switcher.js +1 -15
- package/dist/components/ui/multi-select.js +1 -90
- package/dist/components/ui/points-input.js +1 -33
- package/dist/components/ui/popover.js +1 -26
- package/dist/components/ui/progress.js +1 -16
- package/dist/components/ui/radio-group.js +1 -12
- package/dist/components/ui/scroll-area.js +1 -11
- package/dist/components/ui/select.js +1 -38
- package/dist/components/ui/separator.js +1 -8
- package/dist/components/ui/sheet.js +1 -40
- package/dist/components/ui/single-select.js +1 -76
- package/dist/components/ui/skeleton.js +1 -6
- package/dist/components/ui/switch.js +1 -8
- package/dist/components/ui/table.js +1 -20
- package/dist/components/ui/tabs.js +1 -17
- package/dist/components/ui/textarea.js +1 -8
- package/dist/components/ui/tooltip.js +1 -11
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -19
- package/dist/mcp/config.js +1 -32
- package/dist/mcp/http-client.js +1 -48
- package/dist/mcp/index.js +1 -29
- package/dist/mcp/tools/_helpers.js +1 -25
- package/dist/mcp/tools/exams.js +1 -439
- package/dist/mcp/tools/index.js +1 -6
- package/dist/mcp/tools/results.js +1 -19
- package/dist/shared/constants/ApiConstant.js +1 -276
- package/dist/shared/constants/QueryKeyConstant.js +1 -112
- package/dist/shared/constants/exam-level.enum.js +1 -41
- package/dist/shared/constants/landings/placement-test.constants.js +1 -431
- package/dist/shared/constants/question-skills.js +1 -267
- package/dist/shared/constants/routes.js +1 -81
- package/dist/shared/index.d.ts +3 -0
- package/dist/shared/index.js +1 -7
- package/dist/shared/lib/hooks/index.js +1 -10
- package/dist/shared/lib/hooks/useAlertDialog.js +1 -57
- package/dist/shared/lib/hooks/useAudioPlayCounter.js +1 -30
- package/dist/shared/lib/hooks/useAudioPreview.js +1 -81
- package/dist/shared/lib/hooks/useAudioUpload.js +1 -24
- package/dist/shared/lib/hooks/useConfirmDialog.js +1 -89
- package/dist/shared/lib/hooks/useDebouncedCallback.js +1 -32
- package/dist/shared/lib/hooks/useDelayedAutoPlay.js +1 -12
- package/dist/shared/lib/hooks/useFileUpload.js +1 -24
- package/dist/shared/lib/hooks/useImageUrl.js +1 -5
- package/dist/shared/lib/hooks/usePresignedFileUrl.js +1 -10
- package/dist/shared/lib/hooks/useReactHookForm.js +1 -31
- package/dist/shared/lib/hooks/useToast.js +1 -62
- package/dist/shared/lib/i18n/index.js +1 -54
- package/dist/shared/lib/i18n/messages/en/admin.js +1 -2104
- package/dist/shared/lib/i18n/messages/en/auth.js +1 -86
- package/dist/shared/lib/i18n/messages/en/common.js +1 -140
- package/dist/shared/lib/i18n/messages/en/file-upload.js +1 -18
- package/dist/shared/lib/i18n/messages/en/student.js +1 -133
- package/dist/shared/lib/i18n/messages/en/terms.js +1 -37
- package/dist/shared/lib/i18n/messages/en.js +1 -15
- package/dist/shared/lib/i18n/messages/vi/admin.js +1 -2104
- package/dist/shared/lib/i18n/messages/vi/auth.js +1 -86
- package/dist/shared/lib/i18n/messages/vi/common.js +1 -140
- package/dist/shared/lib/i18n/messages/vi/file-upload.js +1 -18
- package/dist/shared/lib/i18n/messages/vi/student.js +1 -133
- package/dist/shared/lib/i18n/messages/vi/terms.js +1 -37
- package/dist/shared/lib/i18n/messages/vi.js +1 -15
- package/dist/shared/lib/i18n/types.js +1 -1
- package/dist/shared/lib/stores/examQuestionStore.js +1 -212
- package/dist/shared/lib/stores/localeStore.js +1 -10
- package/dist/shared/lib/utils/public-page.js +1 -44
- package/dist/shared/lib/utils/question-reverse-transform.d.ts +6 -0
- package/dist/shared/lib/utils/question-reverse-transform.js +1 -0
- package/dist/shared/lib/utils/question-transform-types.js +1 -1
- package/dist/shared/lib/utils/question-transform-validation.d.ts +6 -0
- package/dist/shared/lib/utils/question-transform-validation.js +1 -0
- package/dist/shared/lib/utils/question-transform.d.ts +6 -2
- package/dist/shared/lib/utils/question-transform.js +1 -174
- package/dist/shared/lib/utils.js +1 -168
- package/dist/shared/lib/validation/choose-correct-answer.validation.js +1 -111
- package/dist/shared/lib/validation/label-the-picture.validation.js +1 -19
- package/dist/shared/lib/validation/listen-and-choose-from-answer-group.validation.js +1 -46
- package/dist/shared/lib/validation/listen-and-choose-objects-in-scene.validation.js +1 -21
- package/dist/shared/lib/validation/listen-and-drag-objects-into-scene.validation.js +1 -34
- package/dist/shared/lib/validation/listen-and-speak-answer.validation.js +1 -40
- package/dist/shared/lib/validation/listen-and-speak-compare-images.validation.js +1 -45
- package/dist/shared/lib/validation/listen-and-speak-image-group.validation.js +1 -19
- package/dist/shared/lib/validation/listen-and-speak-info-exchange.validation.js +1 -39
- package/dist/shared/lib/validation/listen-and-speak-odd-one-out.validation.js +1 -32
- package/dist/shared/lib/validation/listen-and-speak-question-list.validation.js +1 -19
- package/dist/shared/lib/validation/listen-and-speak-with-story-images.validation.js +1 -28
- package/dist/shared/lib/validation/look-picture-choose-correct-answer.validation.js +1 -12
- package/dist/shared/lib/validation/look-picture-fill-blank-choose-answer.validation.js +1 -47
- package/dist/shared/lib/validation/read-and-color-objects.validation.js +1 -29
- package/dist/shared/lib/validation/read-displayed-content.validation.js +1 -28
- package/dist/shared/lib/validation/speaking-conversation.validation.js +1 -75
- package/dist/shared/lib/validation/speaking-describe-image.validation.js +1 -31
- package/dist/shared/lib/validation/spontaneous-qa.validation.js +1 -48
- package/dist/shared/lib/validation/word-fill-paragraph-default.validation.js +1 -38
- package/dist/shared/lib/validation/word-fill-paragraph-with-options.validation.js +1 -39
- package/dist/shared/lib/validation/word-fill-paragraph.validation.js +1 -43
- package/dist/shared/lib/validation/word-ordering.validation.js +1 -33
- package/dist/shared/types/branch.types.js +1 -6
- package/dist/shared/types/common.types.js +1 -50
- package/dist/shared/types/entities/exam-schedule.types.js +1 -5
- package/dist/shared/types/entities/exam.types.js +1 -1
- package/dist/shared/types/entities/question.types.js +1 -4
- package/dist/shared/types/entities/result.types.js +1 -4
- package/dist/shared/types/entities/user.types.js +1 -4
- package/dist/shared/types/exam-taking.types.js +1 -2
- package/dist/shared/types/history.types.js +1 -34
- package/dist/shared/types/index.js +1 -1
- package/dist/shared/types/questions/choose-correct-adjective.js +1 -4
- package/dist/shared/types/questions/choose-the-correct-answer.js +1 -9
- package/dist/shared/types/questions/fill-missing-words-in-grid.js +1 -11
- package/dist/shared/types/questions/index.js +1 -40
- package/dist/shared/types/questions/listen-and-speak-answer.js +1 -1
- package/dist/shared/types/questions/listen-and-speak-compare-images.js +1 -1
- package/dist/shared/types/questions/listen-and-speak-image-group.js +1 -1
- package/dist/shared/types/questions/listen-and-speak-info-exchange.js +1 -3
- package/dist/shared/types/questions/listen-and-speak-odd-one-out.js +1 -3
- package/dist/shared/types/questions/listen-and-speak-question-list.js +1 -1
- package/dist/shared/types/questions/listen-and-speak-with-story-images.js +1 -3
- package/dist/shared/types/questions/look-picture-choose-correct-answer.js +1 -5
- package/dist/shared/types/questions/look-picture-fill-blank-choose-answer.js +1 -9
- package/dist/shared/types/questions/look-picture-fill-word-hint.js +1 -7
- package/dist/shared/types/questions/read-displayed-content.js +1 -1
- package/dist/shared/types/questions/speaking-conversation.js +1 -7
- package/dist/shared/types/questions/speaking-describe-image.js +1 -1
- package/dist/shared/types/questions/spontaneous-qa.js +1 -1
- package/dist/shared/types/questions/write-correct-verb-form.js +1 -12
- package/dist/shared/types/role.types.js +1 -1
- package/dist/shared/types/structure-management.js +1 -28
- package/dist/shared/types/student.types.js +1 -54
- package/dist/shared/types/teacher-dashboard-rooms.js +1 -2
- package/package.json +12 -3
|
@@ -1,221 +1 @@
|
|
|
1
|
-
|
|
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
|
+
"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,18 +1 @@
|
|
|
1
|
-
|
|
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
|
+
"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,194 +1 @@
|
|
|
1
|
-
|
|
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 { SummerSkyLayout } from './SummerSkyLayout';
|
|
6
|
-
import { useSpeakingRecorder } from '../../../components/exams/take/hooks/useSpeakingRecorder';
|
|
7
|
-
import styles from './assets/styles/SummerSkyWaitingRoom.module.css';
|
|
8
|
-
import instructionStepImg from './assets/images/instruction-step.png';
|
|
9
|
-
import mascotImg from './assets/images/oceanedu-mascot.png';
|
|
10
|
-
import radioCheckImg from './assets/images/radio-check.png';
|
|
11
|
-
import nextBtnImg from './assets/images/next-btn.png';
|
|
12
|
-
import startExamImg from './assets/images/start-exam.png';
|
|
13
|
-
import checkMicBtnImg from './assets/images/check-mic-btn.png';
|
|
14
|
-
import stopMicImg from './assets/images/stop-mic.png';
|
|
15
|
-
import micIconImg from './assets/images/mic-icon.png';
|
|
16
|
-
import audioIconImg from './assets/images/audio-icon.png';
|
|
17
|
-
const INSTRUCTION_VIDEO_SRC = '/speaking/video/instruction.webm';
|
|
18
|
-
const CHECK_MICROPHONE_VIDEO_SRC = '/speaking/video/check_microphone.webm';
|
|
19
|
-
const TEACHER_VIDEO_PLAYBACK_RATE = 1.25;
|
|
20
|
-
export function SummerSkyWaitingRoom({ room, onStart, isStarting, onExit }) {
|
|
21
|
-
const [step, setStep] = useState('instructions');
|
|
22
|
-
const [progressMs, setProgressMs] = useState(0);
|
|
23
|
-
// Playback state for after recording
|
|
24
|
-
const audioRef = useRef(null);
|
|
25
|
-
const [isPlaying, setIsPlaying] = useState(false);
|
|
26
|
-
const [playProgress, setPlayProgress] = useState(0);
|
|
27
|
-
const [totalDurationSec, setTotalDurationSec] = useState(null);
|
|
28
|
-
// Teacher video
|
|
29
|
-
const teacherVideoRef = useRef(null);
|
|
30
|
-
const [teacherVideoEnded, setTeacherVideoEnded] = useState(false);
|
|
31
|
-
const skipWaitingRoomAudio = process.env.NEXT_PUBLIC_SKIP_WAITING_ROOM_AUDIO === 'true';
|
|
32
|
-
const canProceed = teacherVideoEnded || skipWaitingRoomAudio;
|
|
33
|
-
useEffect(() => {
|
|
34
|
-
const video = teacherVideoRef.current;
|
|
35
|
-
if (!video)
|
|
36
|
-
return;
|
|
37
|
-
video.muted = false;
|
|
38
|
-
video.playbackRate = TEACHER_VIDEO_PLAYBACK_RATE;
|
|
39
|
-
const playPromise = video.play();
|
|
40
|
-
if (playPromise !== undefined) {
|
|
41
|
-
playPromise.catch(() => {
|
|
42
|
-
// Autoplay with sound blocked by browser — mute and retry.
|
|
43
|
-
if (teacherVideoRef.current) {
|
|
44
|
-
teacherVideoRef.current.muted = true;
|
|
45
|
-
teacherVideoRef.current.playbackRate = TEACHER_VIDEO_PLAYBACK_RATE;
|
|
46
|
-
// Guard the retry: if the source is still unplayable (e.g. unsupported
|
|
47
|
-
// codec), play() rejects again — swallow it so it never surfaces as an
|
|
48
|
-
// unhandledrejection. The <video> onError handler lets the user proceed.
|
|
49
|
-
const retryPromise = teacherVideoRef.current.play();
|
|
50
|
-
if (retryPromise !== undefined) {
|
|
51
|
-
retryPromise.catch(() => {
|
|
52
|
-
setTeacherVideoEnded(true);
|
|
53
|
-
});
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
});
|
|
57
|
-
}
|
|
58
|
-
}, [step]);
|
|
59
|
-
// Reset video state when switching steps so new video plays
|
|
60
|
-
useEffect(() => {
|
|
61
|
-
setTeacherVideoEnded(false);
|
|
62
|
-
if (teacherVideoRef.current) {
|
|
63
|
-
teacherVideoRef.current.currentTime = 0;
|
|
64
|
-
teacherVideoRef.current.playbackRate = TEACHER_VIDEO_PLAYBACK_RATE;
|
|
65
|
-
}
|
|
66
|
-
}, [step]);
|
|
67
|
-
const recorder = useSpeakingRecorder({
|
|
68
|
-
attemptId: 'mock-attempt-speaking',
|
|
69
|
-
questionId: 'mock-question',
|
|
70
|
-
maxDurationMs: 10000,
|
|
71
|
-
onRecordingComplete: () => { },
|
|
72
|
-
});
|
|
73
|
-
useEffect(() => {
|
|
74
|
-
let interval;
|
|
75
|
-
if (recorder.status === 'recording') {
|
|
76
|
-
const startTime = Date.now();
|
|
77
|
-
interval = setInterval(() => {
|
|
78
|
-
setProgressMs(Date.now() - startTime);
|
|
79
|
-
}, 50);
|
|
80
|
-
}
|
|
81
|
-
else {
|
|
82
|
-
setProgressMs(0);
|
|
83
|
-
}
|
|
84
|
-
return () => clearInterval(interval);
|
|
85
|
-
}, [recorder.status]);
|
|
86
|
-
const examName = room.exam?.name || 'BÀI THI NÓI';
|
|
87
|
-
const formatTime = (ms) => {
|
|
88
|
-
const totalSec = Math.floor(ms / 1000);
|
|
89
|
-
const min = Math.floor(totalSec / 60);
|
|
90
|
-
const sec = totalSec % 60;
|
|
91
|
-
return `${min}:${sec.toString().padStart(2, '0')} / 0:10`;
|
|
92
|
-
};
|
|
93
|
-
const togglePlayback = (e) => {
|
|
94
|
-
e.stopPropagation();
|
|
95
|
-
if (!audioRef.current)
|
|
96
|
-
return;
|
|
97
|
-
if (isPlaying) {
|
|
98
|
-
audioRef.current.pause();
|
|
99
|
-
setIsPlaying(false);
|
|
100
|
-
}
|
|
101
|
-
else {
|
|
102
|
-
audioRef.current.play().catch(() => {
|
|
103
|
-
// Source unplayable — keep UI consistent instead of throwing.
|
|
104
|
-
setIsPlaying(false);
|
|
105
|
-
});
|
|
106
|
-
setIsPlaying(true);
|
|
107
|
-
}
|
|
108
|
-
};
|
|
109
|
-
const handleAudioTimeUpdate = () => {
|
|
110
|
-
if (audioRef.current && audioRef.current.duration) {
|
|
111
|
-
setPlayProgress((audioRef.current.currentTime / audioRef.current.duration) * 100);
|
|
112
|
-
}
|
|
113
|
-
};
|
|
114
|
-
const handleAudioEnded = () => {
|
|
115
|
-
setIsPlaying(false);
|
|
116
|
-
setPlayProgress(0);
|
|
117
|
-
};
|
|
118
|
-
return (_jsx(SummerSkyLayout, { onExit: onExit, partName: examName, instruction: "", audioUrl: "", canGoPrev: false, canGoNext: false, onPrev: () => {
|
|
119
|
-
if (step === 'mic-test')
|
|
120
|
-
setStep('instructions');
|
|
121
|
-
}, onNext: () => {
|
|
122
|
-
if (step === 'instructions')
|
|
123
|
-
setStep('mic-test');
|
|
124
|
-
}, 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: () => {
|
|
125
|
-
// If the video source fails to load/decode, treat it as ended so
|
|
126
|
-
// the student is never stuck in the waiting room.
|
|
127
|
-
setTeacherVideoEnded(true);
|
|
128
|
-
}, style: {
|
|
129
|
-
opacity: teacherVideoEnded ? 0 : 1,
|
|
130
|
-
transition: 'opacity 0.6s ease-in-out',
|
|
131
|
-
} }), _jsx("img", { className: styles.teacherVideo, src: "/speaking/image/teacher_ai_smile.png", alt: "AI Teacher", style: {
|
|
132
|
-
position: 'absolute',
|
|
133
|
-
top: 0,
|
|
134
|
-
left: 0,
|
|
135
|
-
opacity: teacherVideoEnded ? 1 : 0,
|
|
136
|
-
transition: 'opacity 0.6s ease-in-out',
|
|
137
|
-
} })] })] }), 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: () => {
|
|
138
|
-
if (!canProceed)
|
|
139
|
-
return;
|
|
140
|
-
setStep('mic-test');
|
|
141
|
-
}, 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: {
|
|
142
|
-
color: '#2C38B6',
|
|
143
|
-
fontFamily: '"SVN-Volte Rounded", sans-serif',
|
|
144
|
-
fontSize: '28px',
|
|
145
|
-
fontWeight: 700,
|
|
146
|
-
lineHeight: '1.5',
|
|
147
|
-
textTransform: 'uppercase',
|
|
148
|
-
marginBottom: '24px',
|
|
149
|
-
letterSpacing: '-0.01em'
|
|
150
|
-
}, children: "H\u01AF\u1EDANG D\u1EAAN" }), _jsxs("ul", { style: {
|
|
151
|
-
listStyle: 'none',
|
|
152
|
-
padding: 0,
|
|
153
|
-
margin: 0,
|
|
154
|
-
color: '#343A40',
|
|
155
|
-
fontFamily: '"SVN-Volte Rounded", sans-serif',
|
|
156
|
-
fontSize: '20px',
|
|
157
|
-
fontWeight: 600,
|
|
158
|
-
lineHeight: '1.8',
|
|
159
|
-
letterSpacing: '-0.01em'
|
|
160
|
-
}, 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 hover:scale-[1.02] active:scale-[0.98] ${recorder.status === 'recording' ? 'animate-pulse' : ''}`, style: {
|
|
161
|
-
background: '#044E96',
|
|
162
|
-
borderRadius: '28px',
|
|
163
|
-
width: '700px',
|
|
164
|
-
height: '56px',
|
|
165
|
-
display: 'flex',
|
|
166
|
-
alignItems: 'center',
|
|
167
|
-
cursor: 'pointer',
|
|
168
|
-
padding: '0 24px 0 2px',
|
|
169
|
-
gap: '16px',
|
|
170
|
-
margin: '0 auto'
|
|
171
|
-
}, onClick: (e) => {
|
|
172
|
-
if (recorder.previewUrl) {
|
|
173
|
-
togglePlayback(e);
|
|
174
|
-
}
|
|
175
|
-
else {
|
|
176
|
-
recorder.status === 'recording' ? recorder.stopRecording() : recorder.startRecording();
|
|
177
|
-
}
|
|
178
|
-
}, children: [recorder.previewUrl && (_jsx("audio", { ref: audioRef, src: recorder.previewUrl, onTimeUpdate: handleAudioTimeUpdate, onEnded: handleAudioEnded, onLoadedMetadata: (e) => {
|
|
179
|
-
setTotalDurationSec(Math.round(e.target.duration));
|
|
180
|
-
}, 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: {
|
|
181
|
-
height: '100%',
|
|
182
|
-
background: '#7DB5FA',
|
|
183
|
-
width: recorder.previewUrl ? `${playProgress}%` : `${Math.min((progressMs / 10000) * 100, 100)}%`,
|
|
184
|
-
transition: 'width 0.1s linear'
|
|
185
|
-
} }) }), _jsxs("div", { style: {
|
|
186
|
-
color: '#FFF',
|
|
187
|
-
fontSize: '20px',
|
|
188
|
-
fontWeight: 600,
|
|
189
|
-
fontFamily: '"SVN-Volte Rounded", sans-serif',
|
|
190
|
-
width: '60px',
|
|
191
|
-
textAlign: 'right',
|
|
192
|
-
letterSpacing: '1px'
|
|
193
|
-
}, 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' } }) })) })] }))] }) }));
|
|
194
|
-
}
|
|
1
|
+
"use client";import{jsx as t,jsxs as e}from"react/jsx-runtime";import{useState as i,useEffect as n,useRef as r}from"react";import a from"next/image";import{SummerSkyLayout as o}from"./SummerSkyLayout";import{useSpeakingRecorder as s}from"../../../components/exams/take/hooks/useSpeakingRecorder";import c from"./assets/styles/SummerSkyWaitingRoom.module.css";import l from"./assets/images/instruction-step.png";import d from"./assets/images/oceanedu-mascot.png";import m from"./assets/images/radio-check.png";import h from"./assets/images/next-btn.png";import p from"./assets/images/start-exam.png";import u from"./assets/images/check-mic-btn.png";import g from"./assets/images/stop-mic.png";import y from"./assets/images/mic-icon.png";import v from"./assets/images/audio-icon.png";const x=1.25;export function SummerSkyWaitingRoom({room:f,onStart:N,isStarting:w,onExit:k}){const[b,I]=i("instructions"),[R,S]=i(0),B=r(null),[C,F]=i(!1),[T,A]=i(0),[M,U]=i(null),E=r(null),[j,D]=i(!1),P="true"===process.env.NEXT_PUBLIC_SKIP_WAITING_ROOM_AUDIO,V=j||P;n(()=>{const t=E.current;if(!t)return;t.muted=!1,t.playbackRate=x;const e=t.play();void 0!==e&&e.catch(()=>{if(E.current){E.current.muted=!0,E.current.playbackRate=x;const t=E.current.play();void 0!==t&&t.catch(()=>{D(!0)})}})},[b]),n(()=>{D(!1),E.current&&(E.current.currentTime=0,E.current.playbackRate=x)},[b]);const W=s({attemptId:"mock-attempt-speaking",questionId:"mock-question",maxDurationMs:1e4,onRecordingComplete:()=>{}});n(()=>{let t;if("recording"===W.status){const e=Date.now();t=setInterval(()=>{S(Date.now()-e)},50)}else S(0);return()=>clearInterval(t)},[W.status]);const _=f.exam?.name||"BÀI THI NÓI";return t(o,{onExit:k,partName:_,instruction:"",audioUrl:"",canGoPrev:!1,canGoNext:!1,onPrev:()=>{"mic-test"===b&&I("instructions")},onNext:()=>{"instructions"===b&&I("mic-test")},hideAudioBar:!0,hideFooterTitle:!0,questionNumber:1,recorder:null,headerRight:null,children:e("div",{className:c.waitingRoomContainer,children:[e("div",{className:c.teacherFloating,children:[t("div",{className:c.teacherGlow}),e("div",{style:{position:"relative"},children:[t("video",{ref:E,className:c.teacherVideo,src:"mic-test"===b?"/speaking/video/check_microphone.webm":"/speaking/video/instruction.webm",autoPlay:!0,muted:!0,playsInline:!0,onEnded:()=>D(!0),onError:()=>{D(!0)},style:{opacity:j?0:1,transition:"opacity 0.6s ease-in-out"}}),t("img",{className:c.teacherVideo,src:"/speaking/image/teacher_ai_smile.png",alt:"AI Teacher",style:{position:"absolute",top:0,left:0,opacity:j?1:0,transition:"opacity 0.6s ease-in-out"}})]})]}),"instructions"===b&&e("div",{className:c.introBoard,children:[t("h2",{className:c.title,children:"Hướng dẫn chung"}),t("div",{className:c.instructionIconsWrap,style:{display:"flex",justifyContent:"center",width:"100%",marginBottom:"48px",marginTop:"5%"},children:t(a,{src:l,alt:"Hướng dẫn các bước",style:{width:"75%",height:"auto",objectFit:"contain"}})}),e("div",{className:c.aiBanner,children:[t("div",{className:c.aiBannerIcon,children:t(a,{src:d,alt:"OceanEdu Mascot",width:100,height:100,style:{borderRadius:"50%",objectFit:"cover"}})}),e("div",{className:c.aiBannerContent,children:[t("p",{className:c.aiBannerTitle,children:"Yêu cầu Ocean Edu AI Chấm điểm"}),t("p",{className:c.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:c.aiBannerRadio,children:t(a,{src:m,alt:"Radio Check",width:56,height:56})})]}),t("div",{className:c.stepButtonContainer,children:t("div",{className:"transition-transform "+(V?"cursor-pointer hover:scale-[1.02] active:scale-[0.98]":"cursor-not-allowed opacity-50 grayscale"),tabIndex:V?0:-1,onClick:()=>{V&&I("mic-test")},children:t(a,{src:h,alt:"Bước tiếp theo",style:{width:"280px",height:"auto"}})})}),t("div",{className:c.spacer})]}),"mic-test"===b&&e("div",{className:c.introBoard,children:[t("h2",{className:c.title,style:{marginBottom:"40px"},children:"KIỂM TRA MIC"}),e("div",{className:c.micTestContainer,children:[e("div",{className:c.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 hover:scale-[1.02] active:scale-[0.98] "+("recording"===W.status?"animate-pulse":""),style:{background:"#044E96",borderRadius:"28px",width:"700px",height:"56px",display:"flex",alignItems:"center",cursor:"pointer",padding:"0 24px 0 2px",gap:"16px",margin:"0 auto"},onClick:t=>{W.previewUrl?(t=>{t.stopPropagation(),B.current&&(C?(B.current.pause(),F(!1)):(B.current.play().catch(()=>{F(!1)}),F(!0)))})(t):"recording"===W.status?W.stopRecording():W.startRecording()},children:[W.previewUrl&&t("audio",{ref:B,src:W.previewUrl,onTimeUpdate:()=>{B.current&&B.current.duration&&A(B.current.currentTime/B.current.duration*100)},onEnded:()=>{F(!1),A(0)},onLoadedMetadata:t=>{U(Math.round(t.target.duration))},style:{display:"none"}}),W.previewUrl?t(a,{src:v,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:W.previewUrl?`${T}%`:`${Math.min(R/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:",(W.previewUrl?M||0:Math.min(Math.floor(R/1e3),10)).toString().padStart(2,"0")]})]})]}),t("div",{className:c.stepButtonContainer,children:W.previewUrl?t("div",{className:"transition-transform "+(!w&&V?"cursor-pointer hover:scale-[1.02] active:scale-[0.98]":"cursor-not-allowed opacity-70 grayscale"),tabIndex:!w&&V?0:-1,onClick:!w&&V?N:void 0,children:t(a,{src:p,alt:"Bắt đầu bài thi",style:{width:"280px",height:"auto"}})}):t("div",{className:"transition-transform "+(V?"cursor-pointer hover:scale-[1.02] active:scale-[0.98]":"cursor-not-allowed opacity-70 grayscale"),tabIndex:V?0:-1,onClick:V?"recording"===W.status?W.stopRecording:W.startRecording:void 0,children:t(a,{src:"recording"===W.status?g:u,alt:"recording"===W.status?"Dừng kiểm tra":"Kiểm tra mic",style:{width:"280px",height:"auto"}})})})]})]})})}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export{};
|
|
@@ -1,26 +1 @@
|
|
|
1
|
-
|
|
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
|
+
"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,22 +1 @@
|
|
|
1
|
-
import
|
|
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
|
+
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,12 +1 @@
|
|
|
1
|
-
|
|
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 };
|
|
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};
|