@magmamath/students-features 1.2.1-rc.4 → 1.2.1-rc.41
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/commonjs/features/chatbot/components/ChatInput/ChatInput.js +2 -1
- package/dist/commonjs/features/chatbot/components/ChatInput/ChatInput.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageContent.js +2 -1
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageContent.js.map +1 -1
- package/dist/commonjs/features/chatbot/errorSpotting/ErrorSpottingModel.js +1 -0
- package/dist/commonjs/features/chatbot/errorSpotting/ErrorSpottingModel.js.map +1 -1
- package/dist/commonjs/features/chatbot/helpers.js +3 -0
- package/dist/commonjs/features/chatbot/helpers.js.map +1 -1
- package/dist/commonjs/features/chatbot/model/ChatBotThreadManager.js +40 -8
- package/dist/commonjs/features/chatbot/model/ChatBotThreadManager.js.map +1 -1
- package/dist/commonjs/features/chatbot/model/ThreadItem.js +51 -13
- package/dist/commonjs/features/chatbot/model/ThreadItem.js.map +1 -1
- package/dist/commonjs/features/chatbot/types/model.types.js.map +1 -1
- package/dist/commonjs/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.js +1 -1
- package/dist/commonjs/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.js.map +1 -1
- package/dist/commonjs/features/openEnded/components/OpenEndedScoreLabel.js +3 -1
- package/dist/commonjs/features/openEnded/components/OpenEndedScoreLabel.js.map +1 -1
- package/dist/commonjs/features/pmProgress/PmProgress.js +42 -0
- package/dist/commonjs/features/pmProgress/PmProgress.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/chart/chart.helpers.js +24 -0
- package/dist/commonjs/features/pmProgress/components/chart/chart.helpers.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/chart/chart.types.js +2 -0
- package/dist/commonjs/features/pmProgress/components/chart/chart.types.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/chart/components/PracticeProgressPieChart.js +44 -0
- package/dist/commonjs/features/pmProgress/components/chart/components/PracticeProgressPieChart.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/chart/components/SlicesClipPaths.js +26 -0
- package/dist/commonjs/features/pmProgress/components/chart/components/SlicesClipPaths.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/chart/components/SlicesPaths.js +87 -0
- package/dist/commonjs/features/pmProgress/components/chart/components/SlicesPaths.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceArcPattern.js +38 -0
- package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceArcPattern.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.js +21 -0
- package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceFillColor.js +82 -0
- package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceFillColor.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/chart/model/ArcPatternGenerator.js +49 -0
- package/dist/commonjs/features/pmProgress/components/chart/model/ArcPatternGenerator.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/chart/model/PieChartManager.js +25 -0
- package/dist/commonjs/features/pmProgress/components/chart/model/PieChartManager.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/chart/model/SliceHighlight.js +20 -0
- package/dist/commonjs/features/pmProgress/components/chart/model/SliceHighlight.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/chart/model/SliceShapeGenerator.js +79 -0
- package/dist/commonjs/features/pmProgress/components/chart/model/SliceShapeGenerator.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/content/PmContent.js +50 -0
- package/dist/commonjs/features/pmProgress/components/content/PmContent.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/header/PmProgressHeader.js +234 -0
- package/dist/commonjs/features/pmProgress/components/header/PmProgressHeader.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/header/StartButton.js +114 -0
- package/dist/commonjs/features/pmProgress/components/header/StartButton.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/insights/PmInsights.js +70 -0
- package/dist/commonjs/features/pmProgress/components/insights/PmInsights.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/insights/PmTimeframeStats.js +99 -0
- package/dist/commonjs/features/pmProgress/components/insights/PmTimeframeStats.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/insights/StatsCard.js +72 -0
- package/dist/commonjs/features/pmProgress/components/insights/StatsCard.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/list/Fluency.js +80 -0
- package/dist/commonjs/features/pmProgress/components/list/Fluency.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/list/ListCard.js +197 -0
- package/dist/commonjs/features/pmProgress/components/list/ListCard.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/list/ListItem.js +140 -0
- package/dist/commonjs/features/pmProgress/components/list/ListItem.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/list/PmDomainList.js +96 -0
- package/dist/commonjs/features/pmProgress/components/list/PmDomainList.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/locked/PmStatusOverlay.js +101 -0
- package/dist/commonjs/features/pmProgress/components/locked/PmStatusOverlay.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/recs/PmTeacherRecs.js +134 -0
- package/dist/commonjs/features/pmProgress/components/recs/PmTeacherRecs.js.map +1 -0
- package/dist/commonjs/features/pmProgress/components/standard/StandardTag.js +203 -0
- package/dist/commonjs/features/pmProgress/components/standard/StandardTag.js.map +1 -0
- package/dist/commonjs/features/pmProgress/context/PmProgressContext.js +18 -0
- package/dist/commonjs/features/pmProgress/context/PmProgressContext.js.map +1 -0
- package/dist/commonjs/features/pmProgress/index.js +64 -0
- package/dist/commonjs/features/pmProgress/index.js.map +1 -0
- package/dist/commonjs/features/pmProgress/model/PmHighlightModel.js +15 -0
- package/dist/commonjs/features/pmProgress/model/PmHighlightModel.js.map +1 -0
- package/dist/commonjs/features/pmProgress/model/PmInsightsModel.js +22 -0
- package/dist/commonjs/features/pmProgress/model/PmInsightsModel.js.map +1 -0
- package/dist/commonjs/features/pmProgress/model/PmProgressApi.js +18 -0
- package/dist/commonjs/features/pmProgress/model/PmProgressApi.js.map +1 -0
- package/dist/commonjs/features/pmProgress/model/PmProgressModel.js +43 -0
- package/dist/commonjs/features/pmProgress/model/PmProgressModel.js.map +1 -0
- package/dist/commonjs/features/pmProgress/model/PmRecommendationsModel.js +47 -0
- package/dist/commonjs/features/pmProgress/model/PmRecommendationsModel.js.map +1 -0
- package/dist/commonjs/features/pmProgress/model/PmSolvingFlowModel.js +102 -0
- package/dist/commonjs/features/pmProgress/model/PmSolvingFlowModel.js.map +1 -0
- package/dist/commonjs/features/pmProgress/model/PmTreeModel.js +170 -0
- package/dist/commonjs/features/pmProgress/model/PmTreeModel.js.map +1 -0
- package/dist/commonjs/features/pmProgress/shared/TreeNormalizer.js +52 -0
- package/dist/commonjs/features/pmProgress/shared/TreeNormalizer.js.map +1 -0
- package/dist/commonjs/features/pmProgress/shared/pmProgress.constants.js +59 -0
- package/dist/commonjs/features/pmProgress/shared/pmProgress.constants.js.map +1 -0
- package/dist/commonjs/features/pmProgress/shared/pmProgress.helpers.js +217 -0
- package/dist/commonjs/features/pmProgress/shared/pmProgress.helpers.js.map +1 -0
- package/dist/commonjs/features/pmProgress/shared/pmProgress.types.js +12 -0
- package/dist/commonjs/features/pmProgress/shared/pmProgress.types.js.map +1 -0
- package/dist/commonjs/features/voice/constants.js +2 -8
- package/dist/commonjs/features/voice/constants.js.map +1 -1
- package/dist/commonjs/features/voice/recording/components/VoiceRecord.js +5 -16
- package/dist/commonjs/features/voice/recording/components/VoiceRecord.js.map +1 -1
- package/dist/commonjs/features/voice/recording/components/VoiceRecordButton.js +20 -68
- package/dist/commonjs/features/voice/recording/components/VoiceRecordButton.js.map +1 -1
- package/dist/commonjs/features/voice/recording/components/VoiceRecordDeleteButton.js +2 -2
- package/dist/commonjs/features/voice/recording/hooks/useVoiceRecorderAnimation.js +2 -2
- package/dist/commonjs/features/voice/recording/hooks/useVoiceRecorderAnimation.js.map +1 -1
- package/dist/commonjs/features/voice/recording/model/VoiceRecord.model.js +0 -5
- package/dist/commonjs/features/voice/recording/model/VoiceRecord.model.js.map +1 -1
- package/dist/commonjs/features/voice/types.js +0 -6
- package/dist/commonjs/features/voice/types.js.map +1 -1
- package/dist/commonjs/index.js +15 -3
- package/dist/commonjs/index.js.map +1 -1
- package/dist/commonjs/shared/icons/MenuIcon.js +30 -0
- package/dist/commonjs/shared/icons/MenuIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/PentagonIcon.js +32 -0
- package/dist/commonjs/shared/icons/PentagonIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/SketchArrowRight.js +33 -0
- package/dist/commonjs/shared/icons/SketchArrowRight.js.map +1 -0
- package/dist/commonjs/shared/icons/SliceDiamondIcon.js +32 -0
- package/dist/commonjs/shared/icons/SliceDiamondIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/StarIcon.js +32 -0
- package/dist/commonjs/shared/icons/StarIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/TimerIcon.js +35 -0
- package/dist/commonjs/shared/icons/TimerIcon.js.map +1 -0
- package/dist/commonjs/shared/translation/localization/ca.json +24 -0
- package/dist/commonjs/shared/translation/localization/de.json +24 -0
- package/dist/commonjs/shared/translation/localization/en.json +24 -0
- package/dist/commonjs/shared/translation/localization/gb.json +24 -0
- package/dist/commonjs/shared/translation/localization/sct.json +24 -0
- package/dist/commonjs/shared/translation/localization/sw.json +24 -0
- package/dist/module/features/chatbot/components/ChatInput/ChatInput.js +2 -1
- package/dist/module/features/chatbot/components/ChatInput/ChatInput.js.map +1 -1
- package/dist/module/features/chatbot/components/ChatMessage/MessageContent.js +2 -1
- package/dist/module/features/chatbot/components/ChatMessage/MessageContent.js.map +1 -1
- package/dist/module/features/chatbot/errorSpotting/ErrorSpottingModel.js +1 -0
- package/dist/module/features/chatbot/errorSpotting/ErrorSpottingModel.js.map +1 -1
- package/dist/module/features/chatbot/helpers.js +3 -0
- package/dist/module/features/chatbot/helpers.js.map +1 -1
- package/dist/module/features/chatbot/model/ChatBotThreadManager.js +40 -8
- package/dist/module/features/chatbot/model/ChatBotThreadManager.js.map +1 -1
- package/dist/module/features/chatbot/model/ThreadItem.js +51 -13
- package/dist/module/features/chatbot/model/ThreadItem.js.map +1 -1
- package/dist/module/features/chatbot/types/model.types.js.map +1 -1
- package/dist/module/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.js +2 -2
- package/dist/module/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.js.map +1 -1
- package/dist/module/features/openEnded/components/OpenEndedScoreLabel.js +3 -1
- package/dist/module/features/openEnded/components/OpenEndedScoreLabel.js.map +1 -1
- package/dist/module/features/pmProgress/PmProgress.js +36 -0
- package/dist/module/features/pmProgress/PmProgress.js.map +1 -0
- package/dist/module/features/pmProgress/components/chart/chart.helpers.js +17 -0
- package/dist/module/features/pmProgress/components/chart/chart.helpers.js.map +1 -0
- package/dist/module/features/pmProgress/components/chart/chart.types.js +2 -0
- package/dist/module/features/pmProgress/components/chart/chart.types.js.map +1 -0
- package/dist/module/features/pmProgress/components/chart/components/PracticeProgressPieChart.js +38 -0
- package/dist/module/features/pmProgress/components/chart/components/PracticeProgressPieChart.js.map +1 -0
- package/dist/module/features/pmProgress/components/chart/components/SlicesClipPaths.js +20 -0
- package/dist/module/features/pmProgress/components/chart/components/SlicesClipPaths.js.map +1 -0
- package/dist/module/features/pmProgress/components/chart/components/SlicesPaths.js +81 -0
- package/dist/module/features/pmProgress/components/chart/components/SlicesPaths.js.map +1 -0
- package/dist/module/features/pmProgress/components/chart/components/layers/SliceArcPattern.js +32 -0
- package/dist/module/features/pmProgress/components/chart/components/layers/SliceArcPattern.js.map +1 -0
- package/dist/module/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.js +15 -0
- package/dist/module/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.js.map +1 -0
- package/dist/module/features/pmProgress/components/chart/components/layers/SliceFillColor.js +76 -0
- package/dist/module/features/pmProgress/components/chart/components/layers/SliceFillColor.js.map +1 -0
- package/dist/module/features/pmProgress/components/chart/model/ArcPatternGenerator.js +44 -0
- package/dist/module/features/pmProgress/components/chart/model/ArcPatternGenerator.js.map +1 -0
- package/dist/module/features/pmProgress/components/chart/model/PieChartManager.js +20 -0
- package/dist/module/features/pmProgress/components/chart/model/PieChartManager.js.map +1 -0
- package/dist/module/features/pmProgress/components/chart/model/SliceHighlight.js +15 -0
- package/dist/module/features/pmProgress/components/chart/model/SliceHighlight.js.map +1 -0
- package/dist/module/features/pmProgress/components/chart/model/SliceShapeGenerator.js +74 -0
- package/dist/module/features/pmProgress/components/chart/model/SliceShapeGenerator.js.map +1 -0
- package/dist/module/features/pmProgress/components/content/PmContent.js +44 -0
- package/dist/module/features/pmProgress/components/content/PmContent.js.map +1 -0
- package/dist/module/features/pmProgress/components/header/PmProgressHeader.js +227 -0
- package/dist/module/features/pmProgress/components/header/PmProgressHeader.js.map +1 -0
- package/dist/module/features/pmProgress/components/header/StartButton.js +107 -0
- package/dist/module/features/pmProgress/components/header/StartButton.js.map +1 -0
- package/dist/module/features/pmProgress/components/insights/PmInsights.js +63 -0
- package/dist/module/features/pmProgress/components/insights/PmInsights.js.map +1 -0
- package/dist/module/features/pmProgress/components/insights/PmTimeframeStats.js +94 -0
- package/dist/module/features/pmProgress/components/insights/PmTimeframeStats.js.map +1 -0
- package/dist/module/features/pmProgress/components/insights/StatsCard.js +66 -0
- package/dist/module/features/pmProgress/components/insights/StatsCard.js.map +1 -0
- package/dist/module/features/pmProgress/components/list/Fluency.js +74 -0
- package/dist/module/features/pmProgress/components/list/Fluency.js.map +1 -0
- package/dist/module/features/pmProgress/components/list/ListCard.js +190 -0
- package/dist/module/features/pmProgress/components/list/ListCard.js.map +1 -0
- package/dist/module/features/pmProgress/components/list/ListItem.js +133 -0
- package/dist/module/features/pmProgress/components/list/ListItem.js.map +1 -0
- package/dist/module/features/pmProgress/components/list/PmDomainList.js +90 -0
- package/dist/module/features/pmProgress/components/list/PmDomainList.js.map +1 -0
- package/dist/module/features/pmProgress/components/locked/PmStatusOverlay.js +95 -0
- package/dist/module/features/pmProgress/components/locked/PmStatusOverlay.js.map +1 -0
- package/dist/module/features/pmProgress/components/recs/PmTeacherRecs.js +128 -0
- package/dist/module/features/pmProgress/components/recs/PmTeacherRecs.js.map +1 -0
- package/dist/module/features/pmProgress/components/standard/StandardTag.js +197 -0
- package/dist/module/features/pmProgress/components/standard/StandardTag.js.map +1 -0
- package/dist/module/features/pmProgress/context/PmProgressContext.js +13 -0
- package/dist/module/features/pmProgress/context/PmProgressContext.js.map +1 -0
- package/dist/module/features/pmProgress/index.js +9 -0
- package/dist/module/features/pmProgress/index.js.map +1 -0
- package/dist/module/features/pmProgress/model/PmHighlightModel.js +10 -0
- package/dist/module/features/pmProgress/model/PmHighlightModel.js.map +1 -0
- package/dist/module/features/pmProgress/model/PmInsightsModel.js +17 -0
- package/dist/module/features/pmProgress/model/PmInsightsModel.js.map +1 -0
- package/dist/module/features/pmProgress/model/PmProgressApi.js +13 -0
- package/dist/module/features/pmProgress/model/PmProgressApi.js.map +1 -0
- package/dist/module/features/pmProgress/model/PmProgressModel.js +38 -0
- package/dist/module/features/pmProgress/model/PmProgressModel.js.map +1 -0
- package/dist/module/features/pmProgress/model/PmRecommendationsModel.js +42 -0
- package/dist/module/features/pmProgress/model/PmRecommendationsModel.js.map +1 -0
- package/dist/module/features/pmProgress/model/PmSolvingFlowModel.js +97 -0
- package/dist/module/features/pmProgress/model/PmSolvingFlowModel.js.map +1 -0
- package/dist/module/features/pmProgress/model/PmTreeModel.js +165 -0
- package/dist/module/features/pmProgress/model/PmTreeModel.js.map +1 -0
- package/dist/module/features/pmProgress/shared/TreeNormalizer.js +47 -0
- package/dist/module/features/pmProgress/shared/TreeNormalizer.js.map +1 -0
- package/dist/module/features/pmProgress/shared/pmProgress.constants.js +56 -0
- package/dist/module/features/pmProgress/shared/pmProgress.constants.js.map +1 -0
- package/dist/module/features/pmProgress/shared/pmProgress.helpers.js +197 -0
- package/dist/module/features/pmProgress/shared/pmProgress.helpers.js.map +1 -0
- package/dist/module/features/pmProgress/shared/pmProgress.types.js +10 -0
- package/dist/module/features/pmProgress/shared/pmProgress.types.js.map +1 -0
- package/dist/module/features/voice/constants.js +2 -8
- package/dist/module/features/voice/constants.js.map +1 -1
- package/dist/module/features/voice/recording/components/VoiceRecord.js +6 -17
- package/dist/module/features/voice/recording/components/VoiceRecord.js.map +1 -1
- package/dist/module/features/voice/recording/components/VoiceRecordButton.js +21 -69
- package/dist/module/features/voice/recording/components/VoiceRecordButton.js.map +1 -1
- package/dist/module/features/voice/recording/components/VoiceRecordDeleteButton.js +2 -2
- package/dist/module/features/voice/recording/hooks/useVoiceRecorderAnimation.js +2 -2
- package/dist/module/features/voice/recording/hooks/useVoiceRecorderAnimation.js.map +1 -1
- package/dist/module/features/voice/recording/model/VoiceRecord.model.js +0 -5
- package/dist/module/features/voice/recording/model/VoiceRecord.model.js.map +1 -1
- package/dist/module/features/voice/types.js +1 -5
- package/dist/module/features/voice/types.js.map +1 -1
- package/dist/module/index.js +1 -0
- package/dist/module/index.js.map +1 -1
- package/dist/module/shared/icons/MenuIcon.js +22 -0
- package/dist/module/shared/icons/MenuIcon.js.map +1 -0
- package/dist/module/shared/icons/PentagonIcon.js +24 -0
- package/dist/module/shared/icons/PentagonIcon.js.map +1 -0
- package/dist/module/shared/icons/SketchArrowRight.js +25 -0
- package/dist/module/shared/icons/SketchArrowRight.js.map +1 -0
- package/dist/module/shared/icons/SliceDiamondIcon.js +24 -0
- package/dist/module/shared/icons/SliceDiamondIcon.js.map +1 -0
- package/dist/module/shared/icons/StarIcon.js +24 -0
- package/dist/module/shared/icons/StarIcon.js.map +1 -0
- package/dist/module/shared/icons/TimerIcon.js +27 -0
- package/dist/module/shared/icons/TimerIcon.js.map +1 -0
- package/dist/module/shared/translation/localization/ca.json +24 -0
- package/dist/module/shared/translation/localization/de.json +24 -0
- package/dist/module/shared/translation/localization/en.json +24 -0
- package/dist/module/shared/translation/localization/gb.json +24 -0
- package/dist/module/shared/translation/localization/sct.json +24 -0
- package/dist/module/shared/translation/localization/sw.json +24 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatInput/ChatInput.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/MessageContent.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/errorSpotting/ErrorSpottingModel.d.ts +2 -1
- package/dist/typescript/commonjs/features/chatbot/errorSpotting/ErrorSpottingModel.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/helpers.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/model/ChatBotThreadManager.d.ts +1 -0
- package/dist/typescript/commonjs/features/chatbot/model/ChatBotThreadManager.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/model/ThreadItem.d.ts +50 -12
- package/dist/typescript/commonjs/features/chatbot/model/ThreadItem.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/types/api.types.d.ts +10 -2
- package/dist/typescript/commonjs/features/chatbot/types/api.types.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/types/model.types.d.ts +5 -2
- package/dist/typescript/commonjs/features/chatbot/types/model.types.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/types/units.types.d.ts +22 -0
- package/dist/typescript/commonjs/features/chatbot/types/units.types.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/openEnded/components/OpenEndedScoreLabel.d.ts +2 -1
- package/dist/typescript/commonjs/features/openEnded/components/OpenEndedScoreLabel.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/pmProgress/PmProgress.d.ts +9 -0
- package/dist/typescript/commonjs/features/pmProgress/PmProgress.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/chart.helpers.d.ts +4 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/chart.helpers.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/chart.types.d.ts +36 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/chart.types.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/components/PracticeProgressPieChart.d.ts +9 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/components/PracticeProgressPieChart.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/components/SlicesClipPaths.d.ts +10 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/components/SlicesClipPaths.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/components/SlicesPaths.d.ts +11 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/components/SlicesPaths.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/components/layers/SliceArcPattern.d.ts +12 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/components/layers/SliceArcPattern.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.d.ts +8 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/components/layers/SliceFillColor.d.ts +14 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/components/layers/SliceFillColor.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/model/ArcPatternGenerator.d.ts +12 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/model/ArcPatternGenerator.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/model/PieChartManager.d.ts +16 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/model/PieChartManager.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/model/SliceHighlight.d.ts +10 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/model/SliceHighlight.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/model/SliceShapeGenerator.d.ts +17 -0
- package/dist/typescript/commonjs/features/pmProgress/components/chart/model/SliceShapeGenerator.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/content/PmContent.d.ts +3 -0
- package/dist/typescript/commonjs/features/pmProgress/components/content/PmContent.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/header/PmProgressHeader.d.ts +3 -0
- package/dist/typescript/commonjs/features/pmProgress/components/header/PmProgressHeader.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/header/StartButton.d.ts +11 -0
- package/dist/typescript/commonjs/features/pmProgress/components/header/StartButton.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/insights/PmInsights.d.ts +3 -0
- package/dist/typescript/commonjs/features/pmProgress/components/insights/PmInsights.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/insights/PmTimeframeStats.d.ts +3 -0
- package/dist/typescript/commonjs/features/pmProgress/components/insights/PmTimeframeStats.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/insights/StatsCard.d.ts +12 -0
- package/dist/typescript/commonjs/features/pmProgress/components/insights/StatsCard.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/list/Fluency.d.ts +8 -0
- package/dist/typescript/commonjs/features/pmProgress/components/list/Fluency.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/list/ListCard.d.ts +31 -0
- package/dist/typescript/commonjs/features/pmProgress/components/list/ListCard.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/list/ListItem.d.ts +12 -0
- package/dist/typescript/commonjs/features/pmProgress/components/list/ListItem.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/list/PmDomainList.d.ts +3 -0
- package/dist/typescript/commonjs/features/pmProgress/components/list/PmDomainList.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/locked/PmStatusOverlay.d.ts +8 -0
- package/dist/typescript/commonjs/features/pmProgress/components/locked/PmStatusOverlay.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/recs/PmTeacherRecs.d.ts +3 -0
- package/dist/typescript/commonjs/features/pmProgress/components/recs/PmTeacherRecs.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/components/standard/StandardTag.d.ts +9 -0
- package/dist/typescript/commonjs/features/pmProgress/components/standard/StandardTag.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/context/PmProgressContext.d.ts +15 -0
- package/dist/typescript/commonjs/features/pmProgress/context/PmProgressContext.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/index.d.ts +7 -0
- package/dist/typescript/commonjs/features/pmProgress/index.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/model/PmHighlightModel.d.ts +7 -0
- package/dist/typescript/commonjs/features/pmProgress/model/PmHighlightModel.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/model/PmInsightsModel.d.ts +14 -0
- package/dist/typescript/commonjs/features/pmProgress/model/PmInsightsModel.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/model/PmProgressApi.d.ts +17 -0
- package/dist/typescript/commonjs/features/pmProgress/model/PmProgressApi.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/model/PmProgressModel.d.ts +23 -0
- package/dist/typescript/commonjs/features/pmProgress/model/PmProgressModel.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/model/PmRecommendationsModel.d.ts +102 -0
- package/dist/typescript/commonjs/features/pmProgress/model/PmRecommendationsModel.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/model/PmSolvingFlowModel.d.ts +22 -0
- package/dist/typescript/commonjs/features/pmProgress/model/PmSolvingFlowModel.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/model/PmTreeModel.d.ts +25 -0
- package/dist/typescript/commonjs/features/pmProgress/model/PmTreeModel.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/shared/TreeNormalizer.d.ts +17 -0
- package/dist/typescript/commonjs/features/pmProgress/shared/TreeNormalizer.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/shared/pmProgress.constants.d.ts +44 -0
- package/dist/typescript/commonjs/features/pmProgress/shared/pmProgress.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/shared/pmProgress.helpers.d.ts +66 -0
- package/dist/typescript/commonjs/features/pmProgress/shared/pmProgress.helpers.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/pmProgress/shared/pmProgress.types.d.ts +193 -0
- package/dist/typescript/commonjs/features/pmProgress/shared/pmProgress.types.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/voice/constants.d.ts +2 -8
- package/dist/typescript/commonjs/features/voice/constants.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/voice/recording/components/VoiceRecord.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/voice/recording/components/VoiceRecordButton.d.ts +3 -1
- package/dist/typescript/commonjs/features/voice/recording/components/VoiceRecordButton.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/voice/recording/hooks/useVoiceRecorderAnimation.d.ts +1 -2
- package/dist/typescript/commonjs/features/voice/recording/hooks/useVoiceRecorderAnimation.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/voice/recording/model/VoiceRecord.model.d.ts +1 -3
- package/dist/typescript/commonjs/features/voice/recording/model/VoiceRecord.model.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/voice/types.d.ts +0 -4
- package/dist/typescript/commonjs/features/voice/types.d.ts.map +1 -1
- package/dist/typescript/commonjs/index.d.ts +1 -0
- package/dist/typescript/commonjs/index.d.ts.map +1 -1
- package/dist/typescript/commonjs/shared/icons/MenuIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/MenuIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/PentagonIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/PentagonIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/SketchArrowRight.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/SketchArrowRight.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/SliceDiamondIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/SliceDiamondIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/StarIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/StarIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/TimerIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/TimerIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/translation/constants.d.ts +144 -0
- package/dist/typescript/commonjs/shared/translation/constants.d.ts.map +1 -1
- package/dist/typescript/commonjs/shared/translation/model.d.ts +48 -0
- package/dist/typescript/commonjs/shared/translation/model.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/ChatInput/ChatInput.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/ChatMessage/MessageContent.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/errorSpotting/ErrorSpottingModel.d.ts +2 -1
- package/dist/typescript/module/features/chatbot/errorSpotting/ErrorSpottingModel.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/helpers.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/model/ChatBotThreadManager.d.ts +1 -0
- package/dist/typescript/module/features/chatbot/model/ChatBotThreadManager.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/model/ThreadItem.d.ts +50 -12
- package/dist/typescript/module/features/chatbot/model/ThreadItem.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/types/api.types.d.ts +10 -2
- package/dist/typescript/module/features/chatbot/types/api.types.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/types/model.types.d.ts +5 -2
- package/dist/typescript/module/features/chatbot/types/model.types.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/types/units.types.d.ts +22 -0
- package/dist/typescript/module/features/chatbot/types/units.types.d.ts.map +1 -1
- package/dist/typescript/module/features/openEnded/components/OpenEndedScoreLabel.d.ts +2 -1
- package/dist/typescript/module/features/openEnded/components/OpenEndedScoreLabel.d.ts.map +1 -1
- package/dist/typescript/module/features/pmProgress/PmProgress.d.ts +9 -0
- package/dist/typescript/module/features/pmProgress/PmProgress.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/chart/chart.helpers.d.ts +4 -0
- package/dist/typescript/module/features/pmProgress/components/chart/chart.helpers.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/chart/chart.types.d.ts +36 -0
- package/dist/typescript/module/features/pmProgress/components/chart/chart.types.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/chart/components/PracticeProgressPieChart.d.ts +9 -0
- package/dist/typescript/module/features/pmProgress/components/chart/components/PracticeProgressPieChart.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/chart/components/SlicesClipPaths.d.ts +10 -0
- package/dist/typescript/module/features/pmProgress/components/chart/components/SlicesClipPaths.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/chart/components/SlicesPaths.d.ts +11 -0
- package/dist/typescript/module/features/pmProgress/components/chart/components/SlicesPaths.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/chart/components/layers/SliceArcPattern.d.ts +12 -0
- package/dist/typescript/module/features/pmProgress/components/chart/components/layers/SliceArcPattern.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.d.ts +8 -0
- package/dist/typescript/module/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/chart/components/layers/SliceFillColor.d.ts +14 -0
- package/dist/typescript/module/features/pmProgress/components/chart/components/layers/SliceFillColor.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/chart/model/ArcPatternGenerator.d.ts +12 -0
- package/dist/typescript/module/features/pmProgress/components/chart/model/ArcPatternGenerator.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/chart/model/PieChartManager.d.ts +16 -0
- package/dist/typescript/module/features/pmProgress/components/chart/model/PieChartManager.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/chart/model/SliceHighlight.d.ts +10 -0
- package/dist/typescript/module/features/pmProgress/components/chart/model/SliceHighlight.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/chart/model/SliceShapeGenerator.d.ts +17 -0
- package/dist/typescript/module/features/pmProgress/components/chart/model/SliceShapeGenerator.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/content/PmContent.d.ts +3 -0
- package/dist/typescript/module/features/pmProgress/components/content/PmContent.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/header/PmProgressHeader.d.ts +3 -0
- package/dist/typescript/module/features/pmProgress/components/header/PmProgressHeader.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/header/StartButton.d.ts +11 -0
- package/dist/typescript/module/features/pmProgress/components/header/StartButton.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/insights/PmInsights.d.ts +3 -0
- package/dist/typescript/module/features/pmProgress/components/insights/PmInsights.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/insights/PmTimeframeStats.d.ts +3 -0
- package/dist/typescript/module/features/pmProgress/components/insights/PmTimeframeStats.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/insights/StatsCard.d.ts +12 -0
- package/dist/typescript/module/features/pmProgress/components/insights/StatsCard.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/list/Fluency.d.ts +8 -0
- package/dist/typescript/module/features/pmProgress/components/list/Fluency.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/list/ListCard.d.ts +31 -0
- package/dist/typescript/module/features/pmProgress/components/list/ListCard.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/list/ListItem.d.ts +12 -0
- package/dist/typescript/module/features/pmProgress/components/list/ListItem.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/list/PmDomainList.d.ts +3 -0
- package/dist/typescript/module/features/pmProgress/components/list/PmDomainList.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/locked/PmStatusOverlay.d.ts +8 -0
- package/dist/typescript/module/features/pmProgress/components/locked/PmStatusOverlay.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/recs/PmTeacherRecs.d.ts +3 -0
- package/dist/typescript/module/features/pmProgress/components/recs/PmTeacherRecs.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/components/standard/StandardTag.d.ts +9 -0
- package/dist/typescript/module/features/pmProgress/components/standard/StandardTag.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/context/PmProgressContext.d.ts +15 -0
- package/dist/typescript/module/features/pmProgress/context/PmProgressContext.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/index.d.ts +7 -0
- package/dist/typescript/module/features/pmProgress/index.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/model/PmHighlightModel.d.ts +7 -0
- package/dist/typescript/module/features/pmProgress/model/PmHighlightModel.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/model/PmInsightsModel.d.ts +14 -0
- package/dist/typescript/module/features/pmProgress/model/PmInsightsModel.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/model/PmProgressApi.d.ts +17 -0
- package/dist/typescript/module/features/pmProgress/model/PmProgressApi.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/model/PmProgressModel.d.ts +23 -0
- package/dist/typescript/module/features/pmProgress/model/PmProgressModel.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/model/PmRecommendationsModel.d.ts +102 -0
- package/dist/typescript/module/features/pmProgress/model/PmRecommendationsModel.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/model/PmSolvingFlowModel.d.ts +22 -0
- package/dist/typescript/module/features/pmProgress/model/PmSolvingFlowModel.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/model/PmTreeModel.d.ts +25 -0
- package/dist/typescript/module/features/pmProgress/model/PmTreeModel.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/shared/TreeNormalizer.d.ts +17 -0
- package/dist/typescript/module/features/pmProgress/shared/TreeNormalizer.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/shared/pmProgress.constants.d.ts +44 -0
- package/dist/typescript/module/features/pmProgress/shared/pmProgress.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/shared/pmProgress.helpers.d.ts +66 -0
- package/dist/typescript/module/features/pmProgress/shared/pmProgress.helpers.d.ts.map +1 -0
- package/dist/typescript/module/features/pmProgress/shared/pmProgress.types.d.ts +193 -0
- package/dist/typescript/module/features/pmProgress/shared/pmProgress.types.d.ts.map +1 -0
- package/dist/typescript/module/features/voice/constants.d.ts +2 -8
- package/dist/typescript/module/features/voice/constants.d.ts.map +1 -1
- package/dist/typescript/module/features/voice/recording/components/VoiceRecord.d.ts.map +1 -1
- package/dist/typescript/module/features/voice/recording/components/VoiceRecordButton.d.ts +3 -1
- package/dist/typescript/module/features/voice/recording/components/VoiceRecordButton.d.ts.map +1 -1
- package/dist/typescript/module/features/voice/recording/hooks/useVoiceRecorderAnimation.d.ts +1 -2
- package/dist/typescript/module/features/voice/recording/hooks/useVoiceRecorderAnimation.d.ts.map +1 -1
- package/dist/typescript/module/features/voice/recording/model/VoiceRecord.model.d.ts +1 -3
- package/dist/typescript/module/features/voice/recording/model/VoiceRecord.model.d.ts.map +1 -1
- package/dist/typescript/module/features/voice/types.d.ts +0 -4
- package/dist/typescript/module/features/voice/types.d.ts.map +1 -1
- package/dist/typescript/module/index.d.ts +1 -0
- package/dist/typescript/module/index.d.ts.map +1 -1
- package/dist/typescript/module/shared/icons/MenuIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/MenuIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/PentagonIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/PentagonIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/SketchArrowRight.d.ts +4 -0
- package/dist/typescript/module/shared/icons/SketchArrowRight.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/SliceDiamondIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/SliceDiamondIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/StarIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/StarIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/TimerIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/TimerIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/translation/constants.d.ts +144 -0
- package/dist/typescript/module/shared/translation/constants.d.ts.map +1 -1
- package/dist/typescript/module/shared/translation/model.d.ts +48 -0
- package/dist/typescript/module/shared/translation/model.d.ts.map +1 -1
- package/package.json +25 -13
- package/src/features/chatbot/components/ChatInput/ChatInput.tsx +2 -1
- package/src/features/chatbot/components/ChatMessage/MessageContent.tsx +2 -1
- package/src/features/chatbot/errorSpotting/ErrorSpottingModel.ts +3 -1
- package/src/features/chatbot/helpers.ts +1 -0
- package/src/features/chatbot/model/ChatBotThreadManager.ts +44 -9
- package/src/features/chatbot/model/ThreadItem.ts +68 -19
- package/src/features/chatbot/types/api.types.ts +17 -2
- package/src/features/chatbot/types/model.types.ts +12 -2
- package/src/features/chatbot/types/units.types.ts +26 -0
- package/src/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.tsx +2 -2
- package/src/features/openEnded/components/OpenEndedScoreLabel.tsx +3 -0
- package/src/features/pmProgress/PmProgress.tsx +30 -0
- package/src/features/pmProgress/__tests__/.keep +0 -0
- package/src/features/pmProgress/components/chart/chart.helpers.ts +16 -0
- package/src/features/pmProgress/components/chart/chart.types.ts +37 -0
- package/src/features/pmProgress/components/chart/components/PracticeProgressPieChart.tsx +32 -0
- package/src/features/pmProgress/components/chart/components/SlicesClipPaths.tsx +22 -0
- package/src/features/pmProgress/components/chart/components/SlicesPaths.tsx +90 -0
- package/src/features/pmProgress/components/chart/components/layers/SliceArcPattern.tsx +44 -0
- package/src/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.tsx +11 -0
- package/src/features/pmProgress/components/chart/components/layers/SliceFillColor.tsx +88 -0
- package/src/features/pmProgress/components/chart/model/ArcPatternGenerator.ts +48 -0
- package/src/features/pmProgress/components/chart/model/PieChartManager.ts +20 -0
- package/src/features/pmProgress/components/chart/model/SliceHighlight.ts +17 -0
- package/src/features/pmProgress/components/chart/model/SliceShapeGenerator.ts +90 -0
- package/src/features/pmProgress/components/content/PmContent.tsx +44 -0
- package/src/features/pmProgress/components/header/PmProgressHeader.tsx +237 -0
- package/src/features/pmProgress/components/header/StartButton.tsx +141 -0
- package/src/features/pmProgress/components/insights/PmInsights.tsx +65 -0
- package/src/features/pmProgress/components/insights/PmTimeframeStats.tsx +88 -0
- package/src/features/pmProgress/components/insights/StatsCard.tsx +54 -0
- package/src/features/pmProgress/components/list/Fluency.tsx +69 -0
- package/src/features/pmProgress/components/list/ListCard.tsx +230 -0
- package/src/features/pmProgress/components/list/ListItem.tsx +161 -0
- package/src/features/pmProgress/components/list/PmDomainList.tsx +76 -0
- package/src/features/pmProgress/components/locked/PmStatusOverlay.tsx +101 -0
- package/src/features/pmProgress/components/recs/PmTeacherRecs.tsx +127 -0
- package/src/features/pmProgress/components/standard/StandardTag.tsx +182 -0
- package/src/features/pmProgress/context/PmProgressContext.tsx +26 -0
- package/src/features/pmProgress/index.ts +6 -0
- package/src/features/pmProgress/model/PmHighlightModel.ts +11 -0
- package/src/features/pmProgress/model/PmInsightsModel.ts +23 -0
- package/src/features/pmProgress/model/PmProgressApi.ts +34 -0
- package/src/features/pmProgress/model/PmProgressModel.ts +48 -0
- package/src/features/pmProgress/model/PmRecommendationsModel.ts +47 -0
- package/src/features/pmProgress/model/PmSolvingFlowModel.ts +134 -0
- package/src/features/pmProgress/model/PmTreeModel.ts +163 -0
- package/src/features/pmProgress/shared/TreeNormalizer.ts +64 -0
- package/src/features/pmProgress/shared/pmProgress.constants.ts +98 -0
- package/src/features/pmProgress/shared/pmProgress.helpers.ts +273 -0
- package/src/features/pmProgress/shared/pmProgress.types.ts +218 -0
- package/src/features/voice/constants.ts +2 -8
- package/src/features/voice/recording/components/VoiceRecord.tsx +5 -26
- package/src/features/voice/recording/components/VoiceRecordButton.tsx +29 -91
- package/src/features/voice/recording/components/VoiceRecordDeleteButton.tsx +2 -2
- package/src/features/voice/recording/hooks/useVoiceRecorderAnimation.ts +3 -7
- package/src/features/voice/recording/model/VoiceRecord.model.ts +0 -7
- package/src/features/voice/types.ts +0 -5
- package/src/index.ts +1 -0
- package/src/shared/icons/MenuIcon.tsx +15 -0
- package/src/shared/icons/PentagonIcon.tsx +17 -0
- package/src/shared/icons/SketchArrowRight.tsx +18 -0
- package/src/shared/icons/SliceDiamondIcon.tsx +16 -0
- package/src/shared/icons/StarIcon.tsx +17 -0
- package/src/shared/icons/TimerIcon.tsx +21 -0
- package/src/shared/translation/localization/ca.json +24 -0
- package/src/shared/translation/localization/de.json +24 -0
- package/src/shared/translation/localization/en.json +24 -0
- package/src/shared/translation/localization/gb.json +24 -0
- package/src/shared/translation/localization/sct.json +24 -0
- package/src/shared/translation/localization/sw.json +24 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNativeSvg","_chartHelpers","_jsxRuntime","e","__esModule","default","SlicesClipPaths","slices","pieChartManager","jsx","Defs","children","map","slice","ClipPath","id","getSliceClipId","index","Path","d","shape","generateSlicePath","exports"],"sourceRoot":"../../../../../../../src","sources":["features/pmProgress/components/chart/components/SlicesClipPaths.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,eAAA,GAAAD,OAAA;AACA,IAAAE,aAAA,GAAAF,OAAA;AAAiD,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAD,uBAAAK,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAS1C,MAAMG,eAAe,GAAGA,CAAC;EAAEC,MAAM;EAAEC;AAAsC,CAAC,KAAK;EACpF,oBACE,IAAAN,WAAA,CAAAO,GAAA,EAACT,eAAA,CAAAU,IAAI;IAAAC,QAAA,EACFJ,MAAM,CAACK,GAAG,CAAEC,KAAK,iBAChB,IAAAX,WAAA,CAAAO,GAAA,EAACT,eAAA,CAAAc,QAAQ;MAAmBC,EAAE,EAAE,IAAAC,4BAAc,EAACH,KAAK,CAACI,KAAK,CAAE;MAAAN,QAAA,eAC1D,IAAAT,WAAA,CAAAO,GAAA,EAACT,eAAA,CAAAkB,IAAI;QAACC,CAAC,EAAEX,eAAe,CAACY,KAAK,CAACC,iBAAiB,CAACR,KAAK;MAAE,CAAE;IAAC,GAD9CA,KAAK,CAACI,KAEX,CACX;EAAC,CACE,CAAC;AAEX,CAAC;AAAAK,OAAA,CAAAhB,eAAA,GAAAA,eAAA","ignoreList":[]}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.SlicesPaths = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _reactNative = require("react-native");
|
|
9
|
+
var _reactNativeSvg = require("react-native-svg");
|
|
10
|
+
var _effectorReact = require("effector-react");
|
|
11
|
+
var _SliceBackgroundColor = require("./layers/SliceBackgroundColor.js");
|
|
12
|
+
var _SliceFillColor = require("./layers/SliceFillColor.js");
|
|
13
|
+
var _SliceArcPattern = require("./layers/SliceArcPattern.js");
|
|
14
|
+
var _PmProgressContext = require("../../../context/PmProgressContext.js");
|
|
15
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
16
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
17
|
+
const SlicesPaths = ({
|
|
18
|
+
slices,
|
|
19
|
+
pieChartManager,
|
|
20
|
+
config
|
|
21
|
+
}) => {
|
|
22
|
+
const {
|
|
23
|
+
model
|
|
24
|
+
} = (0, _PmProgressContext.usePmProgress)();
|
|
25
|
+
const [hoveredId, expandedId, domains] = (0, _effectorReact.useUnit)([model.highlight.$hoveredId, model.highlight.$expandedId, model.tree.$domains]);
|
|
26
|
+
const highlightedId = hoveredId ?? expandedId;
|
|
27
|
+
const highlightedIndex = highlightedId ? domains.findIndex(({
|
|
28
|
+
domainId
|
|
29
|
+
}) => domainId === highlightedId) : null;
|
|
30
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
|
|
31
|
+
children: slices.map(slice => {
|
|
32
|
+
const id = `${slice.index}`;
|
|
33
|
+
const shapeSvg = pieChartManager.shape.generateSlicePath(slice);
|
|
34
|
+
const fillSvg = pieChartManager.shape.generateFillPath(slice);
|
|
35
|
+
const fillBorderSvg = pieChartManager.shape.generateFillBorderPath(slice);
|
|
36
|
+
const isHighlighted = highlightedIndex === slice.index;
|
|
37
|
+
const translateY = pieChartManager.highlight.getTranslateY(isHighlighted);
|
|
38
|
+
const borderWidth = isHighlighted ? config.borderWidth : 0;
|
|
39
|
+
const domainId = domains[slice.index]?.domainId;
|
|
40
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.G, {
|
|
41
|
+
style: styles.container,
|
|
42
|
+
onPress: () => domainId && model.highlight.expand(domainId),
|
|
43
|
+
onMouseEnter: () => domainId && model.highlight.hover(domainId),
|
|
44
|
+
onMouseLeave: () => model.highlight.hover(null),
|
|
45
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
46
|
+
d: shapeSvg,
|
|
47
|
+
fill: "transparent"
|
|
48
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.G, {
|
|
49
|
+
style: styles.visual,
|
|
50
|
+
transform: `translate(0, ${translateY})`,
|
|
51
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_SliceBackgroundColor.SliceBackgroundColor, {
|
|
52
|
+
path: shapeSvg,
|
|
53
|
+
color: isHighlighted ? config.colors.highlightedBackground : slice.backgroundColor
|
|
54
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_SliceFillColor.SliceFillColor, {
|
|
55
|
+
clipPathId: id,
|
|
56
|
+
shapeSvg: shapeSvg,
|
|
57
|
+
fillSvg: fillSvg,
|
|
58
|
+
fillBorderSvg: fillBorderSvg,
|
|
59
|
+
color: slice.fillColor,
|
|
60
|
+
percent: slice.fillPercent,
|
|
61
|
+
borderColor: isHighlighted ? slice.borderColor : undefined,
|
|
62
|
+
borderWidth: borderWidth || undefined
|
|
63
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_SliceArcPattern.SliceArcPattern, {
|
|
64
|
+
clipPathId: id,
|
|
65
|
+
slice: slice,
|
|
66
|
+
config: config,
|
|
67
|
+
pieChartManager: pieChartManager
|
|
68
|
+
})]
|
|
69
|
+
})]
|
|
70
|
+
}, id);
|
|
71
|
+
})
|
|
72
|
+
});
|
|
73
|
+
};
|
|
74
|
+
exports.SlicesPaths = SlicesPaths;
|
|
75
|
+
const styles = _reactNative.StyleSheet.create({
|
|
76
|
+
container: {
|
|
77
|
+
cursor: 'pointer'
|
|
78
|
+
},
|
|
79
|
+
visual: {
|
|
80
|
+
..._reactNative.Platform.select({
|
|
81
|
+
web: {
|
|
82
|
+
transition: 'transform 0.1s ease-in-out'
|
|
83
|
+
}
|
|
84
|
+
})
|
|
85
|
+
}
|
|
86
|
+
});
|
|
87
|
+
//# sourceMappingURL=SlicesPaths.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_reactNativeSvg","_effectorReact","_SliceBackgroundColor","_SliceFillColor","_SliceArcPattern","_PmProgressContext","_jsxRuntime","e","__esModule","default","SlicesPaths","slices","pieChartManager","config","model","usePmProgress","hoveredId","expandedId","domains","useUnit","highlight","$hoveredId","$expandedId","tree","$domains","highlightedId","highlightedIndex","findIndex","domainId","jsx","Fragment","children","map","slice","id","index","shapeSvg","shape","generateSlicePath","fillSvg","generateFillPath","fillBorderSvg","generateFillBorderPath","isHighlighted","translateY","getTranslateY","borderWidth","jsxs","G","style","styles","container","onPress","expand","onMouseEnter","hover","onMouseLeave","Path","d","fill","visual","transform","SliceBackgroundColor","path","color","colors","highlightedBackground","backgroundColor","SliceFillColor","clipPathId","fillColor","percent","fillPercent","borderColor","undefined","SliceArcPattern","exports","StyleSheet","create","cursor","Platform","select","web","transition"],"sourceRoot":"../../../../../../../src","sources":["features/pmProgress/components/chart/components/SlicesPaths.tsx"],"mappings":"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","ignoreList":[]}
|
package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceArcPattern.js
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.SliceArcPattern = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _reactNativeSvg = require("react-native-svg");
|
|
9
|
+
var _chartHelpers = require("../../chart.helpers.js");
|
|
10
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
12
|
+
const SliceArcPattern = ({
|
|
13
|
+
clipPathId,
|
|
14
|
+
slice,
|
|
15
|
+
pieChartManager,
|
|
16
|
+
config
|
|
17
|
+
}) => {
|
|
18
|
+
const patternSizes = pieChartManager.pattern.getPatternTrackSizes();
|
|
19
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.G, {
|
|
20
|
+
clipPath: `url(#${(0, _chartHelpers.getSliceClipId)(clipPathId)})`,
|
|
21
|
+
children: patternSizes.map((radius, rowIndex) => {
|
|
22
|
+
const arcPath = pieChartManager.pattern.generateArcPath(slice, radius);
|
|
23
|
+
const dashWidth = pieChartManager.pattern.getDashWidthForRadius(radius);
|
|
24
|
+
const dashOffset = pieChartManager.pattern.getDashOffset(rowIndex, radius);
|
|
25
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
26
|
+
d: arcPath,
|
|
27
|
+
fill: "none",
|
|
28
|
+
stroke: config.outerArc.color,
|
|
29
|
+
strokeWidth: config.outerArc.strokeWidth,
|
|
30
|
+
strokeDasharray: [dashWidth, dashWidth],
|
|
31
|
+
strokeDashoffset: dashOffset,
|
|
32
|
+
strokeLinecap: "butt"
|
|
33
|
+
}, rowIndex);
|
|
34
|
+
})
|
|
35
|
+
});
|
|
36
|
+
};
|
|
37
|
+
exports.SliceArcPattern = SliceArcPattern;
|
|
38
|
+
//# sourceMappingURL=SliceArcPattern.js.map
|
package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceArcPattern.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNativeSvg","_chartHelpers","_jsxRuntime","e","__esModule","default","SliceArcPattern","clipPathId","slice","pieChartManager","config","patternSizes","pattern","getPatternTrackSizes","jsx","G","clipPath","getSliceClipId","children","map","radius","rowIndex","arcPath","generateArcPath","dashWidth","getDashWidthForRadius","dashOffset","getDashOffset","Path","d","fill","stroke","outerArc","color","strokeWidth","strokeDasharray","strokeDashoffset","strokeLinecap","exports"],"sourceRoot":"../../../../../../../../src","sources":["features/pmProgress/components/chart/components/layers/SliceArcPattern.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,eAAA,GAAAD,OAAA;AACA,IAAAE,aAAA,GAAAF,OAAA;AAAoD,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAD,uBAAAK,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAW7C,MAAMG,eAAe,GAAGA,CAAC;EAC9BC,UAAU;EACVC,KAAK;EACLC,eAAe;EACfC;AACoB,CAAC,KAAK;EAC1B,MAAMC,YAAY,GAAGF,eAAe,CAACG,OAAO,CAACC,oBAAoB,CAAC,CAAC;EAEnE,oBACE,IAAAX,WAAA,CAAAY,GAAA,EAACd,eAAA,CAAAe,CAAC;IAACC,QAAQ,EAAE,QAAQ,IAAAC,4BAAc,EAACV,UAAU,CAAC,GAAI;IAAAW,QAAA,EAChDP,YAAY,CAACQ,GAAG,CAAC,CAACC,MAAM,EAAEC,QAAQ,KAAK;MACtC,MAAMC,OAAO,GAAGb,eAAe,CAACG,OAAO,CAACW,eAAe,CAACf,KAAK,EAAEY,MAAM,CAAC;MACtE,MAAMI,SAAS,GAAGf,eAAe,CAACG,OAAO,CAACa,qBAAqB,CAACL,MAAM,CAAC;MACvE,MAAMM,UAAU,GAAGjB,eAAe,CAACG,OAAO,CAACe,aAAa,CAACN,QAAQ,EAAED,MAAM,CAAC;MAE1E,oBACE,IAAAlB,WAAA,CAAAY,GAAA,EAACd,eAAA,CAAA4B,IAAI;QAEHC,CAAC,EAAEP,OAAQ;QACXQ,IAAI,EAAC,MAAM;QACXC,MAAM,EAAErB,MAAM,CAACsB,QAAQ,CAACC,KAAM;QAC9BC,WAAW,EAAExB,MAAM,CAACsB,QAAQ,CAACE,WAAY;QACzCC,eAAe,EAAE,CAACX,SAAS,EAAEA,SAAS,CAAE;QACxCY,gBAAgB,EAAEV,UAAW;QAC7BW,aAAa,EAAC;MAAM,GAPfhB,QAQN,CAAC;IAEN,CAAC;EAAC,CACD,CAAC;AAER,CAAC;AAAAiB,OAAA,CAAAhC,eAAA,GAAAA,eAAA","ignoreList":[]}
|
package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.SliceBackgroundColor = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _reactNativeSvg = require("react-native-svg");
|
|
9
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
11
|
+
const SliceBackgroundColor = ({
|
|
12
|
+
path,
|
|
13
|
+
color
|
|
14
|
+
}) => {
|
|
15
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
16
|
+
d: path,
|
|
17
|
+
fill: color
|
|
18
|
+
});
|
|
19
|
+
};
|
|
20
|
+
exports.SliceBackgroundColor = SliceBackgroundColor;
|
|
21
|
+
//# sourceMappingURL=SliceBackgroundColor.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNativeSvg","_jsxRuntime","e","__esModule","default","SliceBackgroundColor","path","color","jsx","Path","d","fill","exports"],"sourceRoot":"../../../../../../../../src","sources":["features/pmProgress/components/chart/components/layers/SliceBackgroundColor.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,eAAA,GAAAD,OAAA;AAAuC,IAAAE,WAAA,GAAAF,OAAA;AAAA,SAAAD,uBAAAI,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAOhC,MAAMG,oBAAoB,GAAGA,CAAC;EAAEC,IAAI;EAAEC;AAA4B,CAAC,KAAK;EAC7E,oBAAO,IAAAN,WAAA,CAAAO,GAAA,EAACR,eAAA,CAAAS,IAAI;IAACC,CAAC,EAAEJ,IAAK;IAACK,IAAI,EAAEJ;EAAM,CAAE,CAAC;AACvC,CAAC;AAAAK,OAAA,CAAAP,oBAAA,GAAAA,oBAAA","ignoreList":[]}
|
package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceFillColor.js
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.SliceFillColor = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _reactNativeSvg = require("react-native-svg");
|
|
9
|
+
var _chartHelpers = require("../../chart.helpers.js");
|
|
10
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
12
|
+
const SliceFillColor = ({
|
|
13
|
+
clipPathId,
|
|
14
|
+
shapeSvg,
|
|
15
|
+
fillSvg,
|
|
16
|
+
fillBorderSvg,
|
|
17
|
+
color,
|
|
18
|
+
percent,
|
|
19
|
+
borderColor,
|
|
20
|
+
borderWidth
|
|
21
|
+
}) => {
|
|
22
|
+
const isFullyFilled = percent >= 100;
|
|
23
|
+
const isPartiallyFilled = percent > 0;
|
|
24
|
+
const hasBorder = borderColor != null && borderWidth != null && borderWidth > 0;
|
|
25
|
+
const sliceClipId = (0, _chartHelpers.getSliceClipId)(clipPathId);
|
|
26
|
+
const borderClipId = `${sliceClipId}-border`;
|
|
27
|
+
if (isFullyFilled) {
|
|
28
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
|
|
29
|
+
children: [hasBorder && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Defs, {
|
|
30
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.ClipPath, {
|
|
31
|
+
id: borderClipId,
|
|
32
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
33
|
+
d: fillBorderSvg
|
|
34
|
+
})
|
|
35
|
+
})
|
|
36
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.G, {
|
|
37
|
+
clipPath: `url(#${sliceClipId})`,
|
|
38
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
39
|
+
d: shapeSvg,
|
|
40
|
+
fill: color
|
|
41
|
+
}), hasBorder && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.G, {
|
|
42
|
+
clipPath: `url(#${borderClipId})`,
|
|
43
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
44
|
+
d: fillBorderSvg,
|
|
45
|
+
fill: "none",
|
|
46
|
+
stroke: borderColor,
|
|
47
|
+
strokeWidth: borderWidth * 2
|
|
48
|
+
})
|
|
49
|
+
})]
|
|
50
|
+
})]
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
if (isPartiallyFilled) {
|
|
54
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
|
|
55
|
+
children: [hasBorder && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Defs, {
|
|
56
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.ClipPath, {
|
|
57
|
+
id: borderClipId,
|
|
58
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
59
|
+
d: fillBorderSvg
|
|
60
|
+
})
|
|
61
|
+
})
|
|
62
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.G, {
|
|
63
|
+
clipPath: `url(#${sliceClipId})`,
|
|
64
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
65
|
+
d: fillSvg,
|
|
66
|
+
fill: color
|
|
67
|
+
}), hasBorder && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.G, {
|
|
68
|
+
clipPath: `url(#${borderClipId})`,
|
|
69
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
70
|
+
d: fillBorderSvg,
|
|
71
|
+
fill: "none",
|
|
72
|
+
stroke: borderColor,
|
|
73
|
+
strokeWidth: borderWidth * 2
|
|
74
|
+
})
|
|
75
|
+
})]
|
|
76
|
+
})]
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
return null;
|
|
80
|
+
};
|
|
81
|
+
exports.SliceFillColor = SliceFillColor;
|
|
82
|
+
//# sourceMappingURL=SliceFillColor.js.map
|
package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceFillColor.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNativeSvg","_chartHelpers","_jsxRuntime","e","__esModule","default","SliceFillColor","clipPathId","shapeSvg","fillSvg","fillBorderSvg","color","percent","borderColor","borderWidth","isFullyFilled","isPartiallyFilled","hasBorder","sliceClipId","getSliceClipId","borderClipId","jsxs","Fragment","children","jsx","Defs","ClipPath","id","Path","d","G","clipPath","fill","stroke","strokeWidth","exports"],"sourceRoot":"../../../../../../../../src","sources":["features/pmProgress/components/chart/components/layers/SliceFillColor.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.OuterArcPatternGenerator = void 0;
|
|
7
|
+
class OuterArcPatternGenerator {
|
|
8
|
+
constructor(config) {
|
|
9
|
+
this.config = config;
|
|
10
|
+
}
|
|
11
|
+
generateArcPath(slice, radius) {
|
|
12
|
+
const gapAngle = this.config.gapBetweenSlices / (2 * radius);
|
|
13
|
+
const startAngle = slice.startAngle + gapAngle;
|
|
14
|
+
const endAngle = slice.endAngle - gapAngle;
|
|
15
|
+
const startPoint = this.polarToCartesian(radius, startAngle);
|
|
16
|
+
const endPoint = this.polarToCartesian(radius, endAngle);
|
|
17
|
+
const largeArcFlag = endAngle - startAngle > Math.PI ? 1 : 0;
|
|
18
|
+
return `M ${startPoint.x} ${startPoint.y} A ${radius} ${radius} 0 ${largeArcFlag} 1 ${endPoint.x} ${endPoint.y}`;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/** Returns the sizes of the two rings where the checkerboard dashes are drawn. */
|
|
22
|
+
getPatternTrackSizes() {
|
|
23
|
+
const {
|
|
24
|
+
outerRadius,
|
|
25
|
+
outerArc
|
|
26
|
+
} = this.config;
|
|
27
|
+
return [outerRadius - outerArc.strokeWidth / 2, outerRadius - outerArc.strokeWidth * 1.5];
|
|
28
|
+
}
|
|
29
|
+
getDashWidthForRadius(radius) {
|
|
30
|
+
return this.config.outerArc.dashWidth * (radius / this.config.outerRadius);
|
|
31
|
+
}
|
|
32
|
+
getDashOffset(rowIndex, radius) {
|
|
33
|
+
const dashAngle = this.config.outerArc.dashWidth / this.config.outerRadius;
|
|
34
|
+
const dashWidthAtRadius = dashAngle * radius;
|
|
35
|
+
const baseOffset = dashWidthAtRadius / 2;
|
|
36
|
+
if (rowIndex === 1) {
|
|
37
|
+
return baseOffset - dashWidthAtRadius;
|
|
38
|
+
}
|
|
39
|
+
return baseOffset;
|
|
40
|
+
}
|
|
41
|
+
polarToCartesian(radius, angleInRadians) {
|
|
42
|
+
return {
|
|
43
|
+
x: radius * Math.sin(angleInRadians),
|
|
44
|
+
y: -radius * Math.cos(angleInRadians)
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
exports.OuterArcPatternGenerator = OuterArcPatternGenerator;
|
|
49
|
+
//# sourceMappingURL=ArcPatternGenerator.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["OuterArcPatternGenerator","constructor","config","generateArcPath","slice","radius","gapAngle","gapBetweenSlices","startAngle","endAngle","startPoint","polarToCartesian","endPoint","largeArcFlag","Math","PI","x","y","getPatternTrackSizes","outerRadius","outerArc","strokeWidth","getDashWidthForRadius","dashWidth","getDashOffset","rowIndex","dashAngle","dashWidthAtRadius","baseOffset","angleInRadians","sin","cos","exports"],"sourceRoot":"../../../../../../../src","sources":["features/pmProgress/components/chart/model/ArcPatternGenerator.ts"],"mappings":";;;;;;AAEO,MAAMA,wBAAwB,CAAC;EACpCC,WAAWA,CAAkBC,MAA6B,EAAE;IAAA,KAA/BA,MAA6B,GAA7BA,MAA6B;EAAG;EAEtDC,eAAeA,CAACC,KAAiB,EAAEC,MAAc,EAAE;IACxD,MAAMC,QAAQ,GAAG,IAAI,CAACJ,MAAM,CAACK,gBAAgB,IAAI,CAAC,GAAGF,MAAM,CAAC;IAC5D,MAAMG,UAAU,GAAGJ,KAAK,CAACI,UAAU,GAAGF,QAAQ;IAC9C,MAAMG,QAAQ,GAAGL,KAAK,CAACK,QAAQ,GAAGH,QAAQ;IAE1C,MAAMI,UAAU,GAAG,IAAI,CAACC,gBAAgB,CAACN,MAAM,EAAEG,UAAU,CAAC;IAC5D,MAAMI,QAAQ,GAAG,IAAI,CAACD,gBAAgB,CAACN,MAAM,EAAEI,QAAQ,CAAC;IACxD,MAAMI,YAAY,GAAGJ,QAAQ,GAAGD,UAAU,GAAGM,IAAI,CAACC,EAAE,GAAG,CAAC,GAAG,CAAC;IAE5D,OAAO,KAAKL,UAAU,CAACM,CAAC,IAAIN,UAAU,CAACO,CAAC,MAAMZ,MAAM,IAAIA,MAAM,MAAMQ,YAAY,MAAMD,QAAQ,CAACI,CAAC,IAAIJ,QAAQ,CAACK,CAAC,EAAE;EAClH;;EAEA;EACOC,oBAAoBA,CAAA,EAAqB;IAC9C,MAAM;MAAEC,WAAW;MAAEC;IAAS,CAAC,GAAG,IAAI,CAAClB,MAAM;IAC7C,OAAO,CACLiB,WAAW,GAAGC,QAAQ,CAACC,WAAW,GAAG,CAAC,EACtCF,WAAW,GAAGC,QAAQ,CAACC,WAAW,GAAG,GAAG,CACzC;EACH;EAEOC,qBAAqBA,CAACjB,MAAc,EAAE;IAC3C,OAAO,IAAI,CAACH,MAAM,CAACkB,QAAQ,CAACG,SAAS,IAAIlB,MAAM,GAAG,IAAI,CAACH,MAAM,CAACiB,WAAW,CAAC;EAC5E;EAEOK,aAAaA,CAACC,QAAgB,EAAEpB,MAAc,EAAE;IACrD,MAAMqB,SAAS,GAAG,IAAI,CAACxB,MAAM,CAACkB,QAAQ,CAACG,SAAS,GAAG,IAAI,CAACrB,MAAM,CAACiB,WAAW;IAC1E,MAAMQ,iBAAiB,GAAGD,SAAS,GAAGrB,MAAM;IAC5C,MAAMuB,UAAU,GAAGD,iBAAiB,GAAG,CAAC;IAExC,IAAIF,QAAQ,KAAK,CAAC,EAAE;MAClB,OAAOG,UAAU,GAAGD,iBAAiB;IACvC;IACA,OAAOC,UAAU;EACnB;EAEQjB,gBAAgBA,CAACN,MAAc,EAAEwB,cAAsB,EAAE;IAC/D,OAAO;MACLb,CAAC,EAAEX,MAAM,GAAGS,IAAI,CAACgB,GAAG,CAACD,cAAc,CAAC;MACpCZ,CAAC,EAAE,CAACZ,MAAM,GAAGS,IAAI,CAACiB,GAAG,CAACF,cAAc;IACtC,CAAC;EACH;AACF;AAACG,OAAA,CAAAhC,wBAAA,GAAAA,wBAAA","ignoreList":[]}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.PieChartManager = void 0;
|
|
7
|
+
var _SliceShapeGenerator = require("./SliceShapeGenerator.js");
|
|
8
|
+
var _ArcPatternGenerator = require("./ArcPatternGenerator.js");
|
|
9
|
+
var _SliceHighlight = require("./SliceHighlight.js");
|
|
10
|
+
class PieChartManager {
|
|
11
|
+
constructor(config) {
|
|
12
|
+
this.config = config;
|
|
13
|
+
this.shape = new _SliceShapeGenerator.SliceShapeGenerator(config);
|
|
14
|
+
this.pattern = new _ArcPatternGenerator.OuterArcPatternGenerator(config);
|
|
15
|
+
this.highlight = new _SliceHighlight.SliceHighlight(config);
|
|
16
|
+
}
|
|
17
|
+
getCenter() {
|
|
18
|
+
return {
|
|
19
|
+
x: this.config.size / 2,
|
|
20
|
+
y: this.config.size / 2
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
exports.PieChartManager = PieChartManager;
|
|
25
|
+
//# sourceMappingURL=PieChartManager.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_SliceShapeGenerator","require","_ArcPatternGenerator","_SliceHighlight","PieChartManager","constructor","config","shape","SliceShapeGenerator","pattern","OuterArcPatternGenerator","highlight","SliceHighlight","getCenter","x","size","y","exports"],"sourceRoot":"../../../../../../../src","sources":["features/pmProgress/components/chart/model/PieChartManager.ts"],"mappings":";;;;;;AAAA,IAAAA,oBAAA,GAAAC,OAAA;AACA,IAAAC,oBAAA,GAAAD,OAAA;AACA,IAAAE,eAAA,GAAAF,OAAA;AAGO,MAAMG,eAAe,CAAC;EAK3BC,WAAWA,CAAiBC,MAA6B,EAAE;IAAA,KAA/BA,MAA6B,GAA7BA,MAA6B;IACvD,IAAI,CAACC,KAAK,GAAG,IAAIC,wCAAmB,CAACF,MAAM,CAAC;IAC5C,IAAI,CAACG,OAAO,GAAG,IAAIC,6CAAwB,CAACJ,MAAM,CAAC;IACnD,IAAI,CAACK,SAAS,GAAG,IAAIC,8BAAc,CAACN,MAAM,CAAC;EAC7C;EAEOO,SAASA,CAAA,EAAG;IACjB,OAAO;MAAEC,CAAC,EAAE,IAAI,CAACR,MAAM,CAACS,IAAI,GAAG,CAAC;MAAEC,CAAC,EAAE,IAAI,CAACV,MAAM,CAACS,IAAI,GAAG;IAAE,CAAC;EAC7D;AACF;AAACE,OAAA,CAAAb,eAAA,GAAAA,eAAA","ignoreList":[]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.SliceHighlight = void 0;
|
|
7
|
+
var _effector = require("effector");
|
|
8
|
+
class SliceHighlight {
|
|
9
|
+
set = (0, _effector.createEvent)();
|
|
10
|
+
reset = (0, _effector.createEvent)();
|
|
11
|
+
$highlightedIndex = (0, _effector.createStore)(null).on(this.set, (_, index) => index).reset(this.reset);
|
|
12
|
+
constructor(config) {
|
|
13
|
+
this.config = config;
|
|
14
|
+
}
|
|
15
|
+
getTranslateY(isHighlighted) {
|
|
16
|
+
return isHighlighted ? -this.config.pressOffset : 0;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.SliceHighlight = SliceHighlight;
|
|
20
|
+
//# sourceMappingURL=SliceHighlight.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_effector","require","SliceHighlight","set","createEvent","reset","$highlightedIndex","createStore","on","_","index","constructor","config","getTranslateY","isHighlighted","pressOffset","exports"],"sourceRoot":"../../../../../../../src","sources":["features/pmProgress/components/chart/model/SliceHighlight.ts"],"mappings":";;;;;;AAAA,IAAAA,SAAA,GAAAC,OAAA;AAGO,MAAMC,cAAc,CAAC;EACVC,GAAG,GAAG,IAAAC,qBAAW,EAAS,CAAC;EAC3BC,KAAK,GAAG,IAAAD,qBAAW,EAAC,CAAC;EAErBE,iBAAiB,GAAG,IAAAC,qBAAW,EAAgB,IAAI,CAAC,CACjEC,EAAE,CAAC,IAAI,CAACL,GAAG,EAAE,CAACM,CAAC,EAAEC,KAAK,KAAKA,KAAK,CAAC,CACjCL,KAAK,CAAC,IAAI,CAACA,KAAK,CAAC;EAEpBM,WAAWA,CAAkBC,MAA6B,EAAE;IAAA,KAA/BA,MAA6B,GAA7BA,MAA6B;EAAG;EAEtDC,aAAaA,CAACC,aAAsB,EAAU;IACnD,OAAOA,aAAa,GAAG,CAAC,IAAI,CAACF,MAAM,CAACG,WAAW,GAAG,CAAC;EACrD;AACF;AAACC,OAAA,CAAAd,cAAA,GAAAA,cAAA","ignoreList":[]}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.SliceShapeGenerator = void 0;
|
|
7
|
+
var _d3Shape = require("d3-shape");
|
|
8
|
+
class SliceShapeGenerator {
|
|
9
|
+
innerRadius = 0;
|
|
10
|
+
d3Pie = (0, _d3Shape.pie)().value(({
|
|
11
|
+
value
|
|
12
|
+
}) => value).sort(null);
|
|
13
|
+
constructor(config) {
|
|
14
|
+
this.config = config;
|
|
15
|
+
}
|
|
16
|
+
generateSlices(data) {
|
|
17
|
+
this.innerRadius = this.getInnerRadius(data.length);
|
|
18
|
+
return this.d3Pie(data).map((datum, index) => ({
|
|
19
|
+
index,
|
|
20
|
+
startAngle: datum.startAngle,
|
|
21
|
+
endAngle: datum.endAngle,
|
|
22
|
+
fillPercent: datum.data.fillPercent ?? 0,
|
|
23
|
+
backgroundColor: datum.data.backgroundColor ?? this.config.colors.background,
|
|
24
|
+
fillColor: datum.data.fillColor,
|
|
25
|
+
borderColor: datum.data.borderColor,
|
|
26
|
+
data: datum.data
|
|
27
|
+
}));
|
|
28
|
+
}
|
|
29
|
+
generateSlicePath(slice) {
|
|
30
|
+
return this.buildArc(slice, this.config.outerRadius, this.getCornerRadius(100));
|
|
31
|
+
}
|
|
32
|
+
generateFillPath(slice) {
|
|
33
|
+
const fillRadius = this.getFillRadius(slice);
|
|
34
|
+
const cornerRadius = this.getCornerRadius(slice.fillPercent);
|
|
35
|
+
|
|
36
|
+
// Build with innerRadius 0 so d3 only rounds the outer corners.
|
|
37
|
+
// The slice clip path will cut the inner edge to the correct boundary.
|
|
38
|
+
return (0, _d3Shape.arc)().outerRadius(fillRadius).innerRadius(0).cornerRadius(cornerRadius).padAngle(this.padAngle).padRadius(this.config.outerRadius)({
|
|
39
|
+
startAngle: slice.startAngle,
|
|
40
|
+
endAngle: slice.endAngle,
|
|
41
|
+
innerRadius: 0,
|
|
42
|
+
outerRadius: fillRadius
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
generateFillBorderPath(slice) {
|
|
46
|
+
const fillRadius = this.getFillRadius(slice);
|
|
47
|
+
const cornerRadius = this.getCornerRadius(slice.fillPercent);
|
|
48
|
+
return this.buildArc(slice, fillRadius, cornerRadius);
|
|
49
|
+
}
|
|
50
|
+
getFillRadius(slice) {
|
|
51
|
+
return this.innerRadius + (this.config.outerRadius - this.innerRadius) * (slice.fillPercent / 100);
|
|
52
|
+
}
|
|
53
|
+
getInnerRadius(sliceCount) {
|
|
54
|
+
const {
|
|
55
|
+
innerRadius
|
|
56
|
+
} = this.config;
|
|
57
|
+
return typeof innerRadius === 'function' ? innerRadius(sliceCount) : innerRadius;
|
|
58
|
+
}
|
|
59
|
+
getCornerRadius(fillPercent) {
|
|
60
|
+
const {
|
|
61
|
+
cornerRadius
|
|
62
|
+
} = this.config;
|
|
63
|
+
return typeof cornerRadius === 'function' ? cornerRadius(fillPercent) : cornerRadius;
|
|
64
|
+
}
|
|
65
|
+
get padAngle() {
|
|
66
|
+
return this.config.gapBetweenSlices / this.config.outerRadius;
|
|
67
|
+
}
|
|
68
|
+
buildArc(slice, outerRadius, cornerRadius) {
|
|
69
|
+
const innerRadius = this.innerRadius;
|
|
70
|
+
return (0, _d3Shape.arc)().outerRadius(outerRadius).innerRadius(innerRadius).cornerRadius(cornerRadius).padAngle(this.padAngle).padRadius(this.config.outerRadius)({
|
|
71
|
+
startAngle: slice.startAngle,
|
|
72
|
+
endAngle: slice.endAngle,
|
|
73
|
+
innerRadius,
|
|
74
|
+
outerRadius
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
exports.SliceShapeGenerator = SliceShapeGenerator;
|
|
79
|
+
//# sourceMappingURL=SliceShapeGenerator.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_d3Shape","require","SliceShapeGenerator","innerRadius","d3Pie","pie","value","sort","constructor","config","generateSlices","data","getInnerRadius","length","map","datum","index","startAngle","endAngle","fillPercent","backgroundColor","colors","background","fillColor","borderColor","generateSlicePath","slice","buildArc","outerRadius","getCornerRadius","generateFillPath","fillRadius","getFillRadius","cornerRadius","arc","padAngle","padRadius","generateFillBorderPath","sliceCount","gapBetweenSlices","exports"],"sourceRoot":"../../../../../../../src","sources":["features/pmProgress/components/chart/model/SliceShapeGenerator.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.PmProgressContent = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _effectorReact = require("effector-react");
|
|
9
|
+
var _reactNative = require("react-native");
|
|
10
|
+
var _reactNativeUi = require("@magmamath/react-native-ui");
|
|
11
|
+
var _PmTeacherRecs = require("../recs/PmTeacherRecs.js");
|
|
12
|
+
var _PmDomainList = require("../list/PmDomainList.js");
|
|
13
|
+
var _PmInsights = require("../insights/PmInsights.js");
|
|
14
|
+
var _PmStatusOverlay = require("../locked/PmStatusOverlay.js");
|
|
15
|
+
var _PmProgressContext = require("../../context/PmProgressContext.js");
|
|
16
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
17
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
18
|
+
const PmProgressContent = () => {
|
|
19
|
+
const {
|
|
20
|
+
model
|
|
21
|
+
} = (0, _PmProgressContext.usePmProgress)();
|
|
22
|
+
const status = (0, _effectorReact.useUnit)(model.tree.$status);
|
|
23
|
+
if (status) {
|
|
24
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_PmStatusOverlay.PmStatusOverlay, {
|
|
25
|
+
status: status
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
29
|
+
style: styles.content,
|
|
30
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
31
|
+
style: styles.column,
|
|
32
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_PmTeacherRecs.PmTeacherRecs, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_PmDomainList.PmDomainList, {})]
|
|
33
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_PmInsights.PmInsights, {})]
|
|
34
|
+
});
|
|
35
|
+
};
|
|
36
|
+
exports.PmProgressContent = PmProgressContent;
|
|
37
|
+
const styles = _reactNative.StyleSheet.create({
|
|
38
|
+
content: {
|
|
39
|
+
flex: 1,
|
|
40
|
+
flexDirection: 'row',
|
|
41
|
+
overflow: 'hidden'
|
|
42
|
+
},
|
|
43
|
+
column: {
|
|
44
|
+
flex: 1,
|
|
45
|
+
overflow: 'hidden',
|
|
46
|
+
marginRight: _reactNativeUi.SPACING[500],
|
|
47
|
+
gap: _reactNativeUi.SPACING[200]
|
|
48
|
+
}
|
|
49
|
+
});
|
|
50
|
+
//# sourceMappingURL=PmContent.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireDefault","require","_effectorReact","_reactNative","_reactNativeUi","_PmTeacherRecs","_PmDomainList","_PmInsights","_PmStatusOverlay","_PmProgressContext","_jsxRuntime","e","__esModule","default","PmProgressContent","model","usePmProgress","status","useUnit","tree","$status","jsx","PmStatusOverlay","jsxs","View","style","styles","content","children","column","PmTeacherRecs","PmDomainList","PmInsights","exports","StyleSheet","create","flex","flexDirection","overflow","marginRight","SPACING","gap"],"sourceRoot":"../../../../../../src","sources":["features/pmProgress/components/content/PmContent.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,cAAA,GAAAD,OAAA;AACA,IAAAE,YAAA,GAAAF,OAAA;AACA,IAAAG,cAAA,GAAAH,OAAA;AACA,IAAAI,cAAA,GAAAJ,OAAA;AACA,IAAAK,aAAA,GAAAL,OAAA;AACA,IAAAM,WAAA,GAAAN,OAAA;AACA,IAAAO,gBAAA,GAAAP,OAAA;AACA,IAAAQ,kBAAA,GAAAR,OAAA;AAA+D,IAAAS,WAAA,GAAAT,OAAA;AAAA,SAAAD,uBAAAW,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAGxD,MAAMG,iBAAiB,GAAGA,CAAA,KAAM;EACrC,MAAM;IAAEC;EAAM,CAAC,GAAG,IAAAC,gCAAa,EAAC,CAAC;EACjC,MAAMC,MAAM,GAAG,IAAAC,sBAAO,EAACH,KAAK,CAACI,IAAI,CAACC,OAAO,CAAC;EAE1C,IAAIH,MAAM,EAAE;IACV,oBAAO,IAAAP,WAAA,CAAAW,GAAA,EAACb,gBAAA,CAAAc,eAAe;MAACL,MAAM,EAAEA;IAAO,CAAE,CAAC;EAC5C;EAEA,oBACE,IAAAP,WAAA,CAAAa,IAAA,EAACpB,YAAA,CAAAqB,IAAI;IAACC,KAAK,EAAEC,MAAM,CAACC,OAAQ;IAAAC,QAAA,gBAC1B,IAAAlB,WAAA,CAAAa,IAAA,EAACpB,YAAA,CAAAqB,IAAI;MAACC,KAAK,EAAEC,MAAM,CAACG,MAAO;MAAAD,QAAA,gBACzB,IAAAlB,WAAA,CAAAW,GAAA,EAAChB,cAAA,CAAAyB,aAAa,IAAE,CAAC,eACjB,IAAApB,WAAA,CAAAW,GAAA,EAACf,aAAA,CAAAyB,YAAY,IAAE,CAAC;IAAA,CACZ,CAAC,eAEP,IAAArB,WAAA,CAAAW,GAAA,EAACd,WAAA,CAAAyB,UAAU,IAAE,CAAC;EAAA,CACV,CAAC;AAEX,CAAC;AAAAC,OAAA,CAAAnB,iBAAA,GAAAA,iBAAA;AAED,MAAMY,MAAM,GAAGQ,uBAAU,CAACC,MAAM,CAAC;EAC/BR,OAAO,EAAE;IACPS,IAAI,EAAE,CAAC;IACPC,aAAa,EAAE,KAAK;IACpBC,QAAQ,EAAE;EACZ,CAAC;EACDT,MAAM,EAAE;IACNO,IAAI,EAAE,CAAC;IACPE,QAAQ,EAAE,QAAQ;IAClBC,WAAW,EAAEC,sBAAO,CAAC,GAAG,CAAC;IACzBC,GAAG,EAAED,sBAAO,CAAC,GAAG;EAClB;AACF,CAAC,CAAC","ignoreList":[]}
|