catchup-library-web 2.5.16 → 2.5.18

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/index.mjs CHANGED
@@ -4424,10 +4424,10 @@ var DropdownActivityMaterialContent = ({
4424
4424
  }
4425
4425
  return "INCORRECT";
4426
4426
  };
4427
- return /* @__PURE__ */ jsxs17("div", { className: "flex flex-row flex-wrap items-center", children: [
4428
- /* @__PURE__ */ jsx26("div", { className: "hidden md:block", children: /* @__PURE__ */ jsx26("span", { className: "font-semibold text-xl opacity-60", children: i18n_default.t("please_select_dropdown_text") }) }),
4429
- /* @__PURE__ */ jsx26("div", { className: "hidden md:contents", children: /* @__PURE__ */ jsx26(DividerLine_default, {}) }),
4430
- /* @__PURE__ */ jsx26("div", { className: "w-full flex flex-row flex-wrap", children: Object.keys(displayAnswerMap).map(
4427
+ return /* @__PURE__ */ jsxs17("div", { className: "flex flex-col h-full", children: [
4428
+ /* @__PURE__ */ jsx26("div", { className: "hidden md:block flex-shrink-0", children: /* @__PURE__ */ jsx26("span", { className: "font-semibold text-xl opacity-60", children: i18n_default.t("please_select_dropdown_text") }) }),
4429
+ /* @__PURE__ */ jsx26("div", { className: "hidden md:block flex-shrink-0", children: /* @__PURE__ */ jsx26(DividerLine_default, {}) }),
4430
+ /* @__PURE__ */ jsx26("div", { className: "flex-1 min-h-0 overflow-y-auto", children: /* @__PURE__ */ jsx26("div", { className: "w-full flex flex-row flex-wrap", children: Object.keys(displayAnswerMap).map(
4431
4431
  (materialKey, index) => {
4432
4432
  const answerKey = Object.keys(materialMap[materialKey])[0];
4433
4433
  const learnerAnswerState = checkAnswerState(
@@ -4534,7 +4534,7 @@ var DropdownActivityMaterialContent = ({
4534
4534
  ] })
4535
4535
  ] }) }) }, index);
4536
4536
  }
4537
- ) })
4537
+ ) }) })
4538
4538
  ] });
4539
4539
  };
4540
4540
  var DropdownActivityMaterialContent_default = DropdownActivityMaterialContent;
@@ -4753,12 +4753,12 @@ var FillInTheBlanksActivityMaterialContent = ({
4753
4753
  return /* @__PURE__ */ jsxs19(
4754
4754
  "div",
4755
4755
  {
4756
- className: "flex flex-row flex-wrap items-center",
4756
+ className: "flex flex-col h-full",
4757
4757
  onMouseMove: handleMouseMove,
4758
4758
  onMouseUp: handleMouseUp,
4759
4759
  children: [
4760
- /* @__PURE__ */ jsx29("div", { className: "hidden md:block", children: /* @__PURE__ */ jsx29("span", { className: "font-semibold text-xl opacity-60", children: i18n_default.t("please_select_fill_in_the_blanks_text") }) }),
4761
- /* @__PURE__ */ jsx29("div", { className: "hidden md:contents", children: /* @__PURE__ */ jsx29(DividerLine_default, {}) }),
4760
+ /* @__PURE__ */ jsx29("div", { className: "hidden md:block flex-shrink-0", children: /* @__PURE__ */ jsx29("span", { className: "font-semibold text-xl opacity-60", children: i18n_default.t("please_select_fill_in_the_blanks_text") }) }),
4761
+ /* @__PURE__ */ jsx29("div", { className: "hidden md:block flex-shrink-0", children: /* @__PURE__ */ jsx29(DividerLine_default, {}) }),
4762
4762
  draggedOption && mousePosition.x > 0 && /* @__PURE__ */ jsx29(
4763
4763
  "div",
4764
4764
  {
@@ -4811,148 +4811,150 @@ var FillInTheBlanksActivityMaterialContent = ({
4811
4811
  ) })
4812
4812
  }
4813
4813
  ),
4814
- /* @__PURE__ */ jsx29("div", { className: "w-full flex flex-row flex-wrap gap-x-2 gap-y-2 my-2", children: shuffleOptionList.map(
4815
- (option, index) => checkAnswerProvided(displayAnswerMap, option) ? /* @__PURE__ */ jsx29(
4816
- ShowMaterialMediaByContentType_default,
4817
- {
4818
- contentType: contentMap.type,
4819
- src: option,
4820
- canFullScreen: true
4821
- },
4822
- `${uniqueValue}-${index}`
4823
- ) : /* @__PURE__ */ jsx29(
4824
- "div",
4825
- {
4826
- ref: draggedOption === option ? dragElementRef : null,
4827
- className: `${draggedOption === option ? "opacity-40" : selectedOption === option ? "ring-2 ring-blue-500" : "opacity-100"} transition-all duration-200`,
4828
- onMouseDown: (e) => handleMouseDown(e, option),
4829
- onTouchStart: (e) => handleTouchStart(e, option, e.currentTarget),
4830
- onTouchMove: handleTouchMove,
4831
- onTouchEnd: handleTouchEnd,
4832
- children: contentMap.type === "TEXT" ? /* @__PURE__ */ jsx29(
4833
- "div",
4834
- {
4835
- className: "border-catchup-blue border-2 px-2 rounded-catchup-xlarge cursor-pointer select-none",
4836
- onClick: () => handleSelectOption(option),
4837
- children: /* @__PURE__ */ jsx29("p", { className: "italic whitespace-pre-wrap", children: /* @__PURE__ */ jsx29(
4838
- InputWithSpecialExpression_default,
4839
- {
4840
- value: option,
4841
- showSpecialOnly: false
4842
- }
4843
- ) })
4844
- }
4845
- ) : /* @__PURE__ */ jsx29(
4846
- "div",
4847
- {
4848
- className: "border-catchup-blue border-2 px-2 py-1 rounded-catchup-xlarge cursor-pointer select-none",
4849
- onClick: () => handleSelectOption(option),
4850
- children: /* @__PURE__ */ jsx29(
4851
- ShowMaterialMediaByContentType_default,
4852
- {
4853
- contentType: contentMap.type,
4854
- src: option,
4855
- canFullScreen: true
4856
- },
4857
- `${uniqueValue}-${index}`
4858
- )
4859
- }
4860
- )
4861
- },
4862
- index
4863
- )
4864
- ) }),
4865
- /* @__PURE__ */ jsx29("div", { className: "w-full flex flex-row flex-wrap", children: Object.keys(displayAnswerMap).map((materialKey, index) => {
4866
- const learnerAnswerState = checkAnswerState(
4867
- JSON.parse(materialMap[materialKey]),
4868
- displayAnswerMap[materialKey]
4869
- );
4870
- return /* @__PURE__ */ jsx29("div", { className: "w-full md:w-1/2", children: /* @__PURE__ */ jsx29("div", { className: "mx-2", children: /* @__PURE__ */ jsx29(
4871
- "div",
4872
- {
4873
- "data-drop-zone": materialKey,
4874
- onMouseEnter: () => draggedOption && setDropTargetIndex(materialKey),
4875
- onMouseLeave: () => setDropTargetIndex(null),
4876
- onClick: () => handleDropZoneClick(materialKey),
4877
- className: `${dropTargetIndex === materialKey ? "ring-2 ring-blue-400 bg-blue-50" : ""} transition-all duration-200 rounded-lg`,
4878
- children: /* @__PURE__ */ jsxs19("div", { className: "w-full flex flex-row my-2 gap-x-2", children: [
4879
- /* @__PURE__ */ jsx29("div", { className: "my-auto", children: /* @__PURE__ */ jsxs19("p", { className: "text-xl", children: [
4880
- parseFloat(materialKey) + 1,
4881
- "."
4882
- ] }) }),
4883
- /* @__PURE__ */ jsx29("div", { className: "flex-1", children: checkCanAnswerQuestion() ? contentMap.type === "TEXT" ? /* @__PURE__ */ jsxs19("div", { className: "relative", children: [
4884
- /* @__PURE__ */ jsx29("div", { className: "flex-1", children: /* @__PURE__ */ jsx29(
4885
- "div",
4886
- {
4887
- className: `w-full min-h-[44px] border rounded-lg ${displayAnswerMap[materialKey] ? "border-catchup-blue-400 px-2 cursor-pointer" : "bg-catchup-gray-50 border-catchup-gray-200 border-dashed py-2 px-4"}`,
4888
- onClick: (e) => {
4889
- if (displayAnswerMap[materialKey]) {
4890
- e.stopPropagation();
4891
- onChange(answerMap, materialKey, "");
4892
- }
4893
- },
4894
- children: displayAnswerMap[materialKey] ? /* @__PURE__ */ jsx29(
4895
- InputWithSpecialExpression_default,
4896
- {
4897
- value: displayAnswerMap[materialKey],
4898
- showSpecialOnly: false
4899
- }
4900
- ) : null
4901
- }
4902
- ) }),
4903
- learnerAnswerState === "CORRECT" ? /* @__PURE__ */ jsx29("div", { className: "absolute -top-[10px] right-4 bg-catchup-white", children: /* @__PURE__ */ jsx29(
4904
- BaseImage_default,
4905
- {
4906
- src: "/icons/checkbox.webp",
4907
- alt: "checkbox",
4908
- size: "small"
4909
- }
4910
- ) }) : learnerAnswerState === "INCORRECT" ? /* @__PURE__ */ jsx29("div", { className: "absolute -top-[10px] right-4 bg-catchup-white", children: /* @__PURE__ */ jsx29(
4911
- BaseImage_default,
4912
- {
4913
- src: "/icons/cross-red.webp",
4914
- alt: "cross-red",
4915
- size: "small"
4916
- }
4917
- ) }) : null
4918
- ] }) : displayAnswerMap[materialKey] === "" ? /* @__PURE__ */ jsx29(
4814
+ /* @__PURE__ */ jsxs19("div", { className: "flex-1 min-h-0 overflow-y-auto", children: [
4815
+ /* @__PURE__ */ jsx29("div", { className: "w-full flex flex-row flex-wrap gap-x-2 gap-y-2 my-2", children: shuffleOptionList.map(
4816
+ (option, index) => checkAnswerProvided(displayAnswerMap, option) ? /* @__PURE__ */ jsx29(
4817
+ ShowMaterialMediaByContentType_default,
4818
+ {
4819
+ contentType: contentMap.type,
4820
+ src: option,
4821
+ canFullScreen: true
4822
+ },
4823
+ `${uniqueValue}-${index}`
4824
+ ) : /* @__PURE__ */ jsx29(
4825
+ "div",
4826
+ {
4827
+ ref: draggedOption === option ? dragElementRef : null,
4828
+ className: `${draggedOption === option ? "opacity-40" : selectedOption === option ? "ring-2 ring-blue-500" : "opacity-100"} transition-all duration-200`,
4829
+ onMouseDown: (e) => handleMouseDown(e, option),
4830
+ onTouchStart: (e) => handleTouchStart(e, option, e.currentTarget),
4831
+ onTouchMove: handleTouchMove,
4832
+ onTouchEnd: handleTouchEnd,
4833
+ children: contentMap.type === "TEXT" ? /* @__PURE__ */ jsx29(
4919
4834
  "div",
4920
4835
  {
4921
- className: `w-catchup-activity-media-box-item h-catchup-activity-media-box-item border rounded-catchup-xlarge border-dashed ${learnerAnswerState === "CORRECT" ? "border-catchup-green" : learnerAnswerState === "INCORRECT" ? "border-catchup-red" : "border-catchup-blue"}`,
4922
- children: /* @__PURE__ */ jsx29("div", { className: "h-full flex flex-col items-center justify-center px-4 py-2", children: /* @__PURE__ */ jsx29("span", { className: "italic", children: i18n_default.t("please_drop_here") }) })
4836
+ className: "border-catchup-blue border-2 px-2 rounded-catchup-xlarge cursor-pointer select-none",
4837
+ onClick: () => handleSelectOption(option),
4838
+ children: /* @__PURE__ */ jsx29("p", { className: "italic whitespace-pre-wrap", children: /* @__PURE__ */ jsx29(
4839
+ InputWithSpecialExpression_default,
4840
+ {
4841
+ value: option,
4842
+ showSpecialOnly: false
4843
+ }
4844
+ ) })
4923
4845
  }
4924
4846
  ) : /* @__PURE__ */ jsx29(
4925
4847
  "div",
4926
4848
  {
4927
- className: "flex-1 cursor-pointer",
4928
- onClick: (e) => {
4929
- e.stopPropagation();
4930
- onChange(answerMap, materialKey, "");
4931
- },
4849
+ className: "border-catchup-blue border-2 px-2 py-1 rounded-catchup-xlarge cursor-pointer select-none",
4850
+ onClick: () => handleSelectOption(option),
4932
4851
  children: /* @__PURE__ */ jsx29(
4933
4852
  ShowMaterialMediaByContentType_default,
4934
4853
  {
4935
4854
  contentType: contentMap.type,
4936
- src: displayAnswerMap[materialKey],
4855
+ src: option,
4937
4856
  canFullScreen: true
4938
4857
  },
4939
4858
  `${uniqueValue}-${index}`
4940
4859
  )
4941
4860
  }
4942
- ) : /* @__PURE__ */ jsx29("p", { className: "text-xl", children: constructInputWithSpecialExpressionList(
4943
- displayAnswerMap[materialKey]
4944
- ).map((inputPart, index2) => /* @__PURE__ */ jsx29(
4945
- "span",
4946
- {
4947
- className: `${inputPart.isBold ? "font-bold" : ""} ${inputPart.isUnderline ? "underline" : ""}`,
4948
- children: inputPart.isEquation ? /* @__PURE__ */ jsx29("span", { className: "text-xl", children: /* @__PURE__ */ jsx29(InlineMath4, { math: inputPart.value }) }) : inputPart.value
4949
- },
4950
- index2
4951
- )) }, materialKey) })
4952
- ] })
4953
- }
4954
- ) }) }, index);
4955
- }) })
4861
+ )
4862
+ },
4863
+ index
4864
+ )
4865
+ ) }),
4866
+ /* @__PURE__ */ jsx29("div", { className: "w-full flex flex-row flex-wrap", children: Object.keys(displayAnswerMap).map((materialKey, index) => {
4867
+ const learnerAnswerState = checkAnswerState(
4868
+ JSON.parse(materialMap[materialKey]),
4869
+ displayAnswerMap[materialKey]
4870
+ );
4871
+ return /* @__PURE__ */ jsx29("div", { className: "w-full md:w-1/2", children: /* @__PURE__ */ jsx29("div", { className: "mx-2", children: /* @__PURE__ */ jsx29(
4872
+ "div",
4873
+ {
4874
+ "data-drop-zone": materialKey,
4875
+ onMouseEnter: () => draggedOption && setDropTargetIndex(materialKey),
4876
+ onMouseLeave: () => setDropTargetIndex(null),
4877
+ onClick: () => handleDropZoneClick(materialKey),
4878
+ className: `${dropTargetIndex === materialKey ? "ring-2 ring-blue-400 bg-blue-50" : ""} transition-all duration-200 rounded-lg`,
4879
+ children: /* @__PURE__ */ jsxs19("div", { className: "w-full flex flex-row my-2 gap-x-2", children: [
4880
+ /* @__PURE__ */ jsx29("div", { className: "my-auto", children: /* @__PURE__ */ jsxs19("p", { className: "text-xl", children: [
4881
+ parseFloat(materialKey) + 1,
4882
+ "."
4883
+ ] }) }),
4884
+ /* @__PURE__ */ jsx29("div", { className: "flex-1", children: checkCanAnswerQuestion() ? contentMap.type === "TEXT" ? /* @__PURE__ */ jsxs19("div", { className: "relative", children: [
4885
+ /* @__PURE__ */ jsx29("div", { className: "flex-1", children: /* @__PURE__ */ jsx29(
4886
+ "div",
4887
+ {
4888
+ className: `w-full min-h-[44px] border rounded-lg ${displayAnswerMap[materialKey] ? "border-catchup-blue-400 px-2 cursor-pointer" : "bg-catchup-gray-50 border-catchup-gray-200 border-dashed py-2 px-4"}`,
4889
+ onClick: (e) => {
4890
+ if (displayAnswerMap[materialKey]) {
4891
+ e.stopPropagation();
4892
+ onChange(answerMap, materialKey, "");
4893
+ }
4894
+ },
4895
+ children: displayAnswerMap[materialKey] ? /* @__PURE__ */ jsx29(
4896
+ InputWithSpecialExpression_default,
4897
+ {
4898
+ value: displayAnswerMap[materialKey],
4899
+ showSpecialOnly: false
4900
+ }
4901
+ ) : null
4902
+ }
4903
+ ) }),
4904
+ learnerAnswerState === "CORRECT" ? /* @__PURE__ */ jsx29("div", { className: "absolute -top-[10px] right-4 bg-catchup-white", children: /* @__PURE__ */ jsx29(
4905
+ BaseImage_default,
4906
+ {
4907
+ src: "/icons/checkbox.webp",
4908
+ alt: "checkbox",
4909
+ size: "small"
4910
+ }
4911
+ ) }) : learnerAnswerState === "INCORRECT" ? /* @__PURE__ */ jsx29("div", { className: "absolute -top-[10px] right-4 bg-catchup-white", children: /* @__PURE__ */ jsx29(
4912
+ BaseImage_default,
4913
+ {
4914
+ src: "/icons/cross-red.webp",
4915
+ alt: "cross-red",
4916
+ size: "small"
4917
+ }
4918
+ ) }) : null
4919
+ ] }) : displayAnswerMap[materialKey] === "" ? /* @__PURE__ */ jsx29(
4920
+ "div",
4921
+ {
4922
+ className: `w-catchup-activity-media-box-item h-catchup-activity-media-box-item border rounded-catchup-xlarge border-dashed ${learnerAnswerState === "CORRECT" ? "border-catchup-green" : learnerAnswerState === "INCORRECT" ? "border-catchup-red" : "border-catchup-blue"}`,
4923
+ children: /* @__PURE__ */ jsx29("div", { className: "h-full flex flex-col items-center justify-center px-4 py-2", children: /* @__PURE__ */ jsx29("span", { className: "italic", children: i18n_default.t("please_drop_here") }) })
4924
+ }
4925
+ ) : /* @__PURE__ */ jsx29(
4926
+ "div",
4927
+ {
4928
+ className: "flex-1 cursor-pointer",
4929
+ onClick: (e) => {
4930
+ e.stopPropagation();
4931
+ onChange(answerMap, materialKey, "");
4932
+ },
4933
+ children: /* @__PURE__ */ jsx29(
4934
+ ShowMaterialMediaByContentType_default,
4935
+ {
4936
+ contentType: contentMap.type,
4937
+ src: displayAnswerMap[materialKey],
4938
+ canFullScreen: true
4939
+ },
4940
+ `${uniqueValue}-${index}`
4941
+ )
4942
+ }
4943
+ ) : /* @__PURE__ */ jsx29("p", { className: "text-xl", children: constructInputWithSpecialExpressionList(
4944
+ displayAnswerMap[materialKey]
4945
+ ).map((inputPart, index2) => /* @__PURE__ */ jsx29(
4946
+ "span",
4947
+ {
4948
+ className: `${inputPart.isBold ? "font-bold" : ""} ${inputPart.isUnderline ? "underline" : ""}`,
4949
+ children: inputPart.isEquation ? /* @__PURE__ */ jsx29("span", { className: "text-xl", children: /* @__PURE__ */ jsx29(InlineMath4, { math: inputPart.value }) }) : inputPart.value
4950
+ },
4951
+ index2
4952
+ )) }, materialKey) })
4953
+ ] })
4954
+ }
4955
+ ) }) }, index);
4956
+ }) })
4957
+ ] })
4956
4958
  ]
4957
4959
  }
4958
4960
  );
@@ -5238,7 +5240,7 @@ var GroupingActivityMaterialContent = ({
5238
5240
  }
5239
5241
  };
5240
5242
  const filteredMaterialList = retrieveFilteredMaterialList(displayAnswerMap);
5241
- return /* @__PURE__ */ jsxs21("div", { onMouseMove: handleMouseMove, onMouseUp: handleMouseUp, children: [
5243
+ return /* @__PURE__ */ jsxs21("div", { className: "flex flex-col h-full", onMouseMove: handleMouseMove, onMouseUp: handleMouseUp, children: [
5242
5244
  draggedValue && mousePosition.x > 0 && /* @__PURE__ */ jsx31(
5243
5245
  "div",
5244
5246
  {
@@ -5298,7 +5300,7 @@ var GroupingActivityMaterialContent = ({
5298
5300
  }
5299
5301
  ),
5300
5302
  filteredMaterialList.length > 0 ? /* @__PURE__ */ jsxs21(Fragment3, { children: [
5301
- /* @__PURE__ */ jsx31("div", { className: "flex-1 flex flex-row gap-x-4 overflow-x-auto py-2", children: filteredMaterialList.map((materialValue, index) => {
5303
+ /* @__PURE__ */ jsx31("div", { className: "flex-shrink-0 flex flex-row gap-x-4 overflow-x-auto py-2", children: filteredMaterialList.map((materialValue, index) => {
5302
5304
  return /* @__PURE__ */ jsx31(
5303
5305
  "div",
5304
5306
  {
@@ -5337,9 +5339,9 @@ var GroupingActivityMaterialContent = ({
5337
5339
  index
5338
5340
  );
5339
5341
  }) }),
5340
- /* @__PURE__ */ jsx31(DividerLine_default, {})
5342
+ /* @__PURE__ */ jsx31("div", { className: "flex-shrink-0", children: /* @__PURE__ */ jsx31(DividerLine_default, {}) })
5341
5343
  ] }) : null,
5342
- Object.keys(displayAnswerMap).map((answerMapKey, index) => /* @__PURE__ */ jsxs21("div", { className: "flex flex-row w-full", children: [
5344
+ /* @__PURE__ */ jsx31("div", { className: "flex-1 min-h-0 overflow-y-auto", children: Object.keys(displayAnswerMap).map((answerMapKey, index) => /* @__PURE__ */ jsxs21("div", { className: "flex flex-row w-full", children: [
5343
5345
  /* @__PURE__ */ jsx31("div", { className: "w-1/3", children: /* @__PURE__ */ jsx31(
5344
5346
  "div",
5345
5347
  {
@@ -5423,7 +5425,7 @@ var GroupingActivityMaterialContent = ({
5423
5425
  ) }) })
5424
5426
  }
5425
5427
  ) }) })
5426
- ] }, index))
5428
+ ] }, index)) })
5427
5429
  ] });
5428
5430
  };
5429
5431
  var GroupingActivityMaterialContent_default = GroupingActivityMaterialContent;
@@ -5452,28 +5454,40 @@ var GroupingActivityContent = ({
5452
5454
  changeAnswer(answerMap2);
5453
5455
  };
5454
5456
  return /* @__PURE__ */ jsxs22("div", { className: "flex flex-row flex-wrap h-full", children: [
5455
- /* @__PURE__ */ jsx32("div", { className: `${isFullScreen ? "w-full" : "w-full md:w-[30%] md:overflow-y-auto"}`, children: /* @__PURE__ */ jsx32(
5456
- ActivityBodyContent_default,
5457
+ /* @__PURE__ */ jsx32(
5458
+ "div",
5457
5459
  {
5458
- bodyMap: groupingBodyMap,
5459
- templateType: "GROUPING"
5460
+ className: `${isFullScreen ? "w-full" : "w-full md:w-[40%] md:overflow-y-auto"}`,
5461
+ children: /* @__PURE__ */ jsx32(
5462
+ ActivityBodyContent_default,
5463
+ {
5464
+ bodyMap: groupingBodyMap,
5465
+ templateType: "GROUPING"
5466
+ }
5467
+ )
5460
5468
  }
5461
- ) }),
5469
+ ),
5462
5470
  /* @__PURE__ */ jsx32("div", { className: `${isFullScreen ? "contents" : "contents md:hidden"}`, children: /* @__PURE__ */ jsx32(DividerLine_default, {}) }),
5463
5471
  /* @__PURE__ */ jsx32("div", { className: `${isFullScreen ? "hidden" : "hidden md:block"}`, children: /* @__PURE__ */ jsx32(VerticalDividerLine_default, {}) }),
5464
- /* @__PURE__ */ jsx32("div", { className: `${isFullScreen ? "w-full" : "w-full md:flex-1 md:overflow-y-auto"}`, children: /* @__PURE__ */ jsx32(
5465
- GroupingActivityMaterialContent_default,
5472
+ /* @__PURE__ */ jsx32(
5473
+ "div",
5466
5474
  {
5467
- uniqueValue: JSON.stringify(data.contentMap),
5468
- answerMap,
5469
- materialMap: groupingMaterialMap,
5470
- contentMap,
5471
- checkCanAnswerQuestion: canAnswerQuestion,
5472
- onChange: handleGroupingAnswerOnChange,
5473
- isPreview,
5474
- showCorrectAnswer
5475
+ className: `${isFullScreen ? "w-full" : "w-full md:flex-1 md:overflow-y-auto"}`,
5476
+ children: /* @__PURE__ */ jsx32(
5477
+ GroupingActivityMaterialContent_default,
5478
+ {
5479
+ uniqueValue: JSON.stringify(data.contentMap),
5480
+ answerMap,
5481
+ materialMap: groupingMaterialMap,
5482
+ contentMap,
5483
+ checkCanAnswerQuestion: canAnswerQuestion,
5484
+ onChange: handleGroupingAnswerOnChange,
5485
+ isPreview,
5486
+ showCorrectAnswer
5487
+ }
5488
+ )
5475
5489
  }
5476
- ) })
5490
+ )
5477
5491
  ] });
5478
5492
  };
5479
5493
  var GroupingActivityContent_default = GroupingActivityContent;
@@ -5669,7 +5683,7 @@ var MatchingActivityMaterialContent = ({
5669
5683
  }
5670
5684
  };
5671
5685
  const filteredMaterialList = retrieveFilteredMaterialList(displayAnswerMap);
5672
- return /* @__PURE__ */ jsxs23("div", { onMouseMove: handleMouseMove, onMouseUp: handleMouseUp, children: [
5686
+ return /* @__PURE__ */ jsxs23("div", { className: "flex flex-col h-full", onMouseMove: handleMouseMove, onMouseUp: handleMouseUp, children: [
5673
5687
  draggedValue && mousePosition.x > 0 && /* @__PURE__ */ jsx33(
5674
5688
  "div",
5675
5689
  {
@@ -5775,7 +5789,7 @@ var MatchingActivityMaterialContent = ({
5775
5789
  ),
5776
5790
  /* @__PURE__ */ jsx33("div", { className: "flex-shrink-0", children: /* @__PURE__ */ jsx33(DividerLine_default, {}) })
5777
5791
  ] }) : null,
5778
- Object.keys(displayAnswerMap).map((answerMapKey, index) => {
5792
+ /* @__PURE__ */ jsx33("div", { className: "flex-1 min-h-0 overflow-y-auto", children: Object.keys(displayAnswerMap).map((answerMapKey, index) => {
5779
5793
  const learnerAnswerState = checkAnswerState(
5780
5794
  materialMap[answerMapKey],
5781
5795
  displayAnswerMap[answerMapKey]
@@ -5841,7 +5855,7 @@ var MatchingActivityMaterialContent = ({
5841
5855
  }
5842
5856
  ) })
5843
5857
  ] }, index);
5844
- })
5858
+ }) })
5845
5859
  ] });
5846
5860
  };
5847
5861
  var MatchingActivityMaterialContent_default = MatchingActivityMaterialContent;
@@ -5866,28 +5880,40 @@ var MatchingActivityContent = ({
5866
5880
  changeAnswer(answerMap2);
5867
5881
  };
5868
5882
  return /* @__PURE__ */ jsxs24("div", { className: "flex flex-row flex-wrap h-full", children: [
5869
- /* @__PURE__ */ jsx34("div", { className: `${isFullScreen ? "w-full" : "w-full md:w-[30%] md:overflow-y-auto"}`, children: /* @__PURE__ */ jsx34(
5870
- ActivityBodyContent_default,
5883
+ /* @__PURE__ */ jsx34(
5884
+ "div",
5871
5885
  {
5872
- bodyMap: matchingBodyMap,
5873
- templateType: "MATCHING"
5886
+ className: `${isFullScreen ? "w-full" : "w-full md:w-[40%] md:overflow-y-auto"}`,
5887
+ children: /* @__PURE__ */ jsx34(
5888
+ ActivityBodyContent_default,
5889
+ {
5890
+ bodyMap: matchingBodyMap,
5891
+ templateType: "MATCHING"
5892
+ }
5893
+ )
5874
5894
  }
5875
- ) }),
5895
+ ),
5876
5896
  /* @__PURE__ */ jsx34("div", { className: `${isFullScreen ? "contents" : "contents md:hidden"}`, children: /* @__PURE__ */ jsx34(DividerLine_default, {}) }),
5877
5897
  /* @__PURE__ */ jsx34("div", { className: `${isFullScreen ? "hidden" : "hidden md:block"}`, children: /* @__PURE__ */ jsx34(VerticalDividerLine_default, {}) }),
5878
- /* @__PURE__ */ jsx34("div", { className: `${isFullScreen ? "w-full" : "w-full md:flex-1 md:overflow-y-auto"}`, children: /* @__PURE__ */ jsx34(
5879
- MatchingActivityMaterialContent_default,
5898
+ /* @__PURE__ */ jsx34(
5899
+ "div",
5880
5900
  {
5881
- uniqueValue: JSON.stringify(data.contentMap),
5882
- answerMap,
5883
- materialMap: matchingMaterialMap,
5884
- contentMap,
5885
- checkCanAnswerQuestion: canAnswerQuestion,
5886
- onChange: handleMatchingAnswerOnChange,
5887
- isPreview,
5888
- showCorrectAnswer
5901
+ className: `${isFullScreen ? "w-full" : "w-full md:flex-1 md:overflow-y-auto"}`,
5902
+ children: /* @__PURE__ */ jsx34(
5903
+ MatchingActivityMaterialContent_default,
5904
+ {
5905
+ uniqueValue: JSON.stringify(data.contentMap),
5906
+ answerMap,
5907
+ materialMap: matchingMaterialMap,
5908
+ contentMap,
5909
+ checkCanAnswerQuestion: canAnswerQuestion,
5910
+ onChange: handleMatchingAnswerOnChange,
5911
+ isPreview,
5912
+ showCorrectAnswer
5913
+ }
5914
+ )
5889
5915
  }
5890
- ) })
5916
+ )
5891
5917
  ] });
5892
5918
  };
5893
5919
  var MatchingActivityContent_default = MatchingActivityContent;
@@ -5933,11 +5959,11 @@ var MCMAActivityMaterialContent = ({
5933
5959
  return "INCORRECT";
5934
5960
  };
5935
5961
  const correctAnswerList = retrieveCorrectAnswerList();
5936
- return Object.keys(materialMap).map((materialKey, index) => {
5937
- return /* @__PURE__ */ jsx35("div", { className: "flex flex-row items-center my-1", children: /* @__PURE__ */ jsxs25("div", { className: "flex-1 flex flex-col justify-center border-catchup-lighter-gray rounded-catchup-xlarge px-5 md:px-0", children: [
5938
- /* @__PURE__ */ jsx35("div", { className: "hidden md:block", children: /* @__PURE__ */ jsx35("span", { className: "font-semibold text-xl opacity-60", children: i18n_default.t("please_select_mcma_text") }) }),
5939
- /* @__PURE__ */ jsx35("div", { className: "hidden md:contents", children: /* @__PURE__ */ jsx35(DividerLine_default, {}) }),
5940
- checkCanAnswerQuestion() ? /* @__PURE__ */ jsx35("div", { className: "flex flex-row w-full flex-wrap ", children: materialMap[materialKey].map(
5962
+ return /* @__PURE__ */ jsx35("div", { className: "flex flex-col h-full", children: Object.keys(materialMap).map((materialKey, index) => {
5963
+ return /* @__PURE__ */ jsx35("div", { className: "flex flex-col flex-1 min-h-0", children: /* @__PURE__ */ jsxs25("div", { className: "flex-1 flex flex-col border-catchup-lighter-gray rounded-catchup-xlarge px-5 md:px-0 min-h-0", children: [
5964
+ /* @__PURE__ */ jsx35("div", { className: "hidden md:block flex-shrink-0", children: /* @__PURE__ */ jsx35("span", { className: "font-semibold text-xl opacity-60", children: i18n_default.t("please_select_mcma_text") }) }),
5965
+ /* @__PURE__ */ jsx35("div", { className: "hidden md:block flex-shrink-0", children: /* @__PURE__ */ jsx35(DividerLine_default, {}) }),
5966
+ /* @__PURE__ */ jsx35("div", { className: "flex-1 min-h-0 overflow-y-auto", children: checkCanAnswerQuestion() ? /* @__PURE__ */ jsx35("div", { className: "flex flex-row w-full flex-wrap ", children: materialMap[materialKey].map(
5941
5967
  (materialSubKey, index2) => {
5942
5968
  const foundAnswer = displayAnswerMap[materialKey].find(
5943
5969
  (learnerAnswer) => learnerAnswer === materialSubKey
@@ -6000,9 +6026,9 @@ var MCMAActivityMaterialContent = ({
6000
6026
  children: inputPart.isEquation ? /* @__PURE__ */ jsx35("span", { className: "text-xl", children: /* @__PURE__ */ jsx35(InlineMath7, { math: inputPart.value }) }) : inputPart.value
6001
6027
  },
6002
6028
  index2
6003
- )) }, materialKey)
6029
+ )) }, materialKey) })
6004
6030
  ] }) }, index);
6005
- });
6031
+ }) });
6006
6032
  };
6007
6033
  var MCMAActivityMaterialContent_default = MCMAActivityMaterialContent;
6008
6034
 
@@ -6088,11 +6114,11 @@ var MCSAActivityMaterialContent = ({
6088
6114
  return "INCORRECT";
6089
6115
  };
6090
6116
  const correctAnswer = retrieveCorrectAnswer();
6091
- return Object.keys(materialMap).map((materialKey, index) => {
6092
- return /* @__PURE__ */ jsx37("div", { className: "flex flex-row items-center my-1", children: /* @__PURE__ */ jsxs27("div", { className: "flex-1 flex flex-col justify-center border-catchup-lighter-gray rounded-catchup-xlarge px-5 md:px-0", children: [
6093
- /* @__PURE__ */ jsx37("div", { className: "hidden md:block", children: /* @__PURE__ */ jsx37("span", { className: "font-semibold text-xl opacity-60", children: i18n_default.t("please_select_mcsa_text") }) }),
6094
- /* @__PURE__ */ jsx37("div", { className: "hidden md:contents", children: /* @__PURE__ */ jsx37(DividerLine_default, {}) }),
6095
- checkCanAnswerQuestion() ? /* @__PURE__ */ jsx37(
6117
+ return /* @__PURE__ */ jsx37("div", { className: "flex flex-col h-full", children: Object.keys(materialMap).map((materialKey, index) => {
6118
+ return /* @__PURE__ */ jsx37("div", { className: "flex flex-col flex-1 min-h-0", children: /* @__PURE__ */ jsxs27("div", { className: "flex-1 flex flex-col border-catchup-lighter-gray rounded-catchup-xlarge px-5 md:px-0 min-h-0", children: [
6119
+ /* @__PURE__ */ jsx37("div", { className: "hidden md:block flex-shrink-0", children: /* @__PURE__ */ jsx37("span", { className: "font-semibold text-xl opacity-60", children: i18n_default.t("please_select_mcsa_text") }) }),
6120
+ /* @__PURE__ */ jsx37("div", { className: "hidden md:block flex-shrink-0", children: /* @__PURE__ */ jsx37(DividerLine_default, {}) }),
6121
+ /* @__PURE__ */ jsx37("div", { className: "flex-1 min-h-0 overflow-y-auto", children: checkCanAnswerQuestion() ? /* @__PURE__ */ jsx37(
6096
6122
  "div",
6097
6123
  {
6098
6124
  className: `flex flex-row w-full ${Object.keys(materialMap[materialKey]).length <= 4 ? "justify-center" : ""} flex-wrap`,
@@ -6155,9 +6181,9 @@ var MCSAActivityMaterialContent = ({
6155
6181
  children: inputPart.isEquation ? /* @__PURE__ */ jsx37("span", { className: "text-xl", children: /* @__PURE__ */ jsx37(InlineMath8, { math: inputPart.value }) }) : inputPart.value
6156
6182
  },
6157
6183
  index2
6158
- )) })
6184
+ )) }) })
6159
6185
  ] }) }, index);
6160
- });
6186
+ }) });
6161
6187
  };
6162
6188
  var MCSAActivityMaterialContent_default = MCSAActivityMaterialContent;
6163
6189
 
@@ -6371,11 +6397,11 @@ var OpenEndedActivityMaterialContent = ({
6371
6397
  }
6372
6398
  ) });
6373
6399
  };
6374
- return /* @__PURE__ */ jsx39(Fragment5, { children: /* @__PURE__ */ jsxs29("div", { className: "", children: [
6375
- /* @__PURE__ */ jsx39("div", { className: "hidden md:block", children: /* @__PURE__ */ jsx39("span", { className: "font-semibold text-xl opacity-60", children: i18n_default.t("please_select_open_ended_text") }) }),
6376
- /* @__PURE__ */ jsx39("div", { className: "hidden md:contents", children: /* @__PURE__ */ jsx39(DividerLine_default, {}) }),
6377
- contentMap.type === "TEXT" ? RenderTextContent(answerMap) : contentMap.type === "IMAGE" ? RenderImageContent(answerMap) : contentMap.type === "AUDIO" ? RenderAudioContent(answerMap) : null
6378
- ] }) });
6400
+ return /* @__PURE__ */ jsxs29("div", { className: "flex flex-col h-full", children: [
6401
+ /* @__PURE__ */ jsx39("div", { className: "hidden md:block flex-shrink-0", children: /* @__PURE__ */ jsx39("span", { className: "font-semibold text-xl opacity-60", children: i18n_default.t("please_select_open_ended_text") }) }),
6402
+ /* @__PURE__ */ jsx39("div", { className: "hidden md:block flex-shrink-0", children: /* @__PURE__ */ jsx39(DividerLine_default, {}) }),
6403
+ /* @__PURE__ */ jsx39("div", { className: "flex-1 min-h-0 overflow-y-auto", children: contentMap.type === "TEXT" ? RenderTextContent(answerMap) : contentMap.type === "IMAGE" ? RenderImageContent(answerMap) : contentMap.type === "AUDIO" ? RenderAudioContent(answerMap) : null })
6404
+ ] });
6379
6405
  };
6380
6406
  var OpenEndedActivityMaterialContent_default = OpenEndedActivityMaterialContent;
6381
6407
 
@@ -6557,7 +6583,7 @@ var OrderingActivityMaterialContent = ({
6557
6583
  return /* @__PURE__ */ jsxs31(
6558
6584
  "div",
6559
6585
  {
6560
- className: "flex flex-row flex-wrap",
6586
+ className: "flex flex-col h-full",
6561
6587
  onMouseMove: handleMouseMove,
6562
6588
  onMouseUp: handleMouseUp,
6563
6589
  children: [
@@ -6619,7 +6645,7 @@ var OrderingActivityMaterialContent = ({
6619
6645
  ) })
6620
6646
  }
6621
6647
  ),
6622
- Object.keys(displayAnswerMap).map((materialKey, index) => {
6648
+ /* @__PURE__ */ jsx41("div", { className: "flex-1 min-h-0 overflow-y-auto", children: Object.keys(displayAnswerMap).map((materialKey, index) => {
6623
6649
  const learnerAnswerState = checkAnswerState(
6624
6650
  displayAnswerMap[materialKey] + "",
6625
6651
  index + ""
@@ -6678,7 +6704,7 @@ var OrderingActivityMaterialContent = ({
6678
6704
  ]
6679
6705
  }
6680
6706
  ) }, index);
6681
- })
6707
+ }) })
6682
6708
  ]
6683
6709
  }
6684
6710
  );
@@ -6707,28 +6733,40 @@ var OrderingActivityContent = ({
6707
6733
  changeAnswer(answerMap2);
6708
6734
  };
6709
6735
  return /* @__PURE__ */ jsxs32("div", { className: "flex flex-row flex-wrap h-full", children: [
6710
- /* @__PURE__ */ jsx42("div", { className: `${isFullScreen ? "w-full" : "w-full md:w-[30%] md:overflow-y-auto"}`, children: /* @__PURE__ */ jsx42(
6711
- ActivityBodyContent_default,
6736
+ /* @__PURE__ */ jsx42(
6737
+ "div",
6712
6738
  {
6713
- bodyMap: orderingBodyMap,
6714
- templateType: "ORDERING"
6739
+ className: `${isFullScreen ? "w-full" : "w-full md:w-[40%] md:overflow-y-auto"}`,
6740
+ children: /* @__PURE__ */ jsx42(
6741
+ ActivityBodyContent_default,
6742
+ {
6743
+ bodyMap: orderingBodyMap,
6744
+ templateType: "ORDERING"
6745
+ }
6746
+ )
6715
6747
  }
6716
- ) }),
6748
+ ),
6717
6749
  /* @__PURE__ */ jsx42("div", { className: `${isFullScreen ? "contents" : "contents md:hidden"}`, children: /* @__PURE__ */ jsx42(DividerLine_default, {}) }),
6718
6750
  /* @__PURE__ */ jsx42("div", { className: `${isFullScreen ? "hidden" : "hidden md:block"}`, children: /* @__PURE__ */ jsx42(VerticalDividerLine_default, {}) }),
6719
- /* @__PURE__ */ jsx42("div", { className: `${isFullScreen ? "w-full" : "w-full md:flex-1 md:overflow-y-auto"}`, children: /* @__PURE__ */ jsx42(
6720
- OrderingActivityMaterialContent_default,
6751
+ /* @__PURE__ */ jsx42(
6752
+ "div",
6721
6753
  {
6722
- uniqueValue: JSON.stringify(data.contentMap),
6723
- answerMap,
6724
- materialMap: orderingMaterialMap,
6725
- contentMap,
6726
- checkCanAnswerQuestion: canAnswerQuestion,
6727
- onChange: handleOrderingAnswerOnChange,
6728
- isPreview,
6729
- showCorrectAnswer
6754
+ className: `${isFullScreen ? "w-full" : "w-full md:flex-1 md:overflow-y-auto"}`,
6755
+ children: /* @__PURE__ */ jsx42(
6756
+ OrderingActivityMaterialContent_default,
6757
+ {
6758
+ uniqueValue: JSON.stringify(data.contentMap),
6759
+ answerMap,
6760
+ materialMap: orderingMaterialMap,
6761
+ contentMap,
6762
+ checkCanAnswerQuestion: canAnswerQuestion,
6763
+ onChange: handleOrderingAnswerOnChange,
6764
+ isPreview,
6765
+ showCorrectAnswer
6766
+ }
6767
+ )
6730
6768
  }
6731
- ) })
6769
+ )
6732
6770
  ] });
6733
6771
  };
6734
6772
  var OrderingActivityContent_default = OrderingActivityContent;
@@ -6773,14 +6811,14 @@ var TrueFalseActivityMaterialContent = ({
6773
6811
  }
6774
6812
  return "INCORRECT";
6775
6813
  };
6776
- return /* @__PURE__ */ jsxs33("div", { className: "", children: [
6777
- /* @__PURE__ */ jsx43("div", { className: "hidden md:block", children: /* @__PURE__ */ jsx43("span", { className: "font-semibold text-xl opacity-60", children: i18n_default.t("please_select_true_false_text") }) }),
6778
- /* @__PURE__ */ jsx43("div", { className: "hidden md:contents", children: /* @__PURE__ */ jsx43(DividerLine_default, {}) }),
6779
- /* @__PURE__ */ jsxs33("div", { className: "flex flex-row justify-end items-center gap-x-2", children: [
6814
+ return /* @__PURE__ */ jsxs33("div", { className: "flex flex-col h-full", children: [
6815
+ /* @__PURE__ */ jsx43("div", { className: "hidden md:block flex-shrink-0", children: /* @__PURE__ */ jsx43("span", { className: "font-semibold text-xl opacity-60", children: i18n_default.t("please_select_true_false_text") }) }),
6816
+ /* @__PURE__ */ jsx43("div", { className: "hidden md:block flex-shrink-0", children: /* @__PURE__ */ jsx43(DividerLine_default, {}) }),
6817
+ /* @__PURE__ */ jsxs33("div", { className: "flex flex-row justify-end items-center gap-x-2 flex-shrink-0", children: [
6780
6818
  /* @__PURE__ */ jsx43("div", { className: "w-[50px]", children: /* @__PURE__ */ jsx43("p", { className: "font-bold text-lg", children: i18n_default.t("true") }) }),
6781
6819
  /* @__PURE__ */ jsx43("div", { className: "w-[50px]", children: /* @__PURE__ */ jsx43("p", { className: "font-bold text-lg", children: i18n_default.t("false") }) })
6782
6820
  ] }),
6783
- checkCanAnswerQuestion() ? /* @__PURE__ */ jsx43("div", { className: `flex flex-row w-full justify-center flex-wrap`, children: shuffleOptionList.map((shuffleOption, index) => {
6821
+ /* @__PURE__ */ jsx43("div", { className: "flex-1 min-h-0 overflow-y-auto", children: checkCanAnswerQuestion() ? /* @__PURE__ */ jsx43("div", { className: `flex flex-row w-full justify-center flex-wrap`, children: shuffleOptionList.map((shuffleOption, index) => {
6784
6822
  const correctAnswer = materialMap.trueList.find(
6785
6823
  (trueItem) => trueItem === shuffleOption
6786
6824
  ) !== void 0 ? "TRUE" : "FALSE";
@@ -6851,7 +6889,7 @@ var TrueFalseActivityMaterialContent = ({
6851
6889
  /* @__PURE__ */ jsx43("div", { className: "flex-1", children: /* @__PURE__ */ jsx43("p", { children: item }) }),
6852
6890
  /* @__PURE__ */ jsx43("div", { className: "w-[50px]", children: /* @__PURE__ */ jsx43("p", { className: "underline", children: i18n_default.t("false") }) })
6853
6891
  ] }))
6854
- ] })
6892
+ ] }) })
6855
6893
  ] });
6856
6894
  };
6857
6895
  var TrueFalseActivityMaterialContent_default = TrueFalseActivityMaterialContent;