@instructure/quiz-core 20.28.1-snapshot.0 → 20.28.1-snapshot.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/es/common/actions/analyses.js +25 -1
  2. package/es/common/reducers/analyses.js +14 -2
  3. package/es/common/selectors/analyses.js +13 -0
  4. package/es/index.js +1 -0
  5. package/es/reporting/api/fetchStudentAnalyses.js +30 -0
  6. package/es/reporting/api/getAnalysesExport.js +7 -4
  7. package/es/reporting/api/getAnalysesStatus.js +7 -4
  8. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisMetric/presenter.js +1 -1
  9. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisPopoverMetric/presenter.js +1 -1
  10. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/AggregationType/presenter.js +1 -1
  11. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ChoiceType/presenter.js +1 -1
  12. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/presenter.js +1 -1
  13. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/CategorizationType.js +1 -1
  14. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingType.js +1 -1
  15. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/presenter.js +1 -1
  16. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/OrderingType.js +1 -1
  17. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/ChoiceTypeWithInfo/presenter.js +1 -1
  18. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/presenter.js +1 -1
  19. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/ChoiceGroupTypeTable/presenter.js +1 -1
  20. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/presenter.js +1 -1
  21. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/Table/index.js +1 -1
  22. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/index.js +1 -1
  23. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/presenter.js +1 -1
  24. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/presenter.js +1 -1
  25. package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/presenter.js +1 -1
  26. package/es/reporting/components/resources/NewQuizAndItemAnalysis/ExportButton/index.js +6 -1
  27. package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/presenter.js +1 -1
  28. package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/presenter.js +1 -1
  29. package/es/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/presenter.js +2 -2
  30. package/es/reporting/components/resources/NewQuizAndItemAnalysis/fetchReports.js +1 -1
  31. package/es/reporting/components/resources/NewQuizAndItemAnalysis/fetchReportsStatus.js +1 -1
  32. package/es/reporting/components/resources/NewQuizAndItemAnalysis/presenter.js +3 -3
  33. package/es/reporting/components/resources/NewQuizAndItemAnalysis/withAnalysisState.js +2 -2
  34. package/es/reporting/components/resources/NewQuizAndItemAnalysis/withAnalysisStatePresenter.js +5 -5
  35. package/es/reporting/components/resources/StudentAnalysis/ReportCard/index.js +3 -0
  36. package/es/reporting/components/resources/StudentAnalysis/ReportCard/presenter.js +164 -0
  37. package/es/reporting/components/resources/StudentAnalysis/ReportCard/styles.js +41 -0
  38. package/es/reporting/components/resources/StudentAnalysis/ReportCard/theme.js +12 -0
  39. package/es/reporting/components/resources/StudentAnalysis/fetchReport.js +48 -0
  40. package/es/reporting/components/resources/StudentAnalysis/fetchReportStatus.js +42 -0
  41. package/es/reporting/components/resources/StudentAnalysis/withStudentAnalysisReportState.js +39 -0
  42. package/es/reporting/components/resources/StudentAnalysis/withStudentAnalysisReportStatePresenter.js +222 -0
  43. package/es/reporting/components/resources/common/ExportButton/index.js +24 -0
  44. package/es/reporting/components/resources/{NewQuizAndItemAnalysis → common}/errorCodes.js +2 -2
  45. package/es/reporting/components/resources/{NewQuizAndItemAnalysis → common}/errorMessages.js +1 -1
  46. package/es/reporting/components/resources/{NewQuizAndItemAnalysis → common}/exportReports.js +4 -3
  47. package/es/reporting/components/resources/{NewQuizAndItemAnalysis → common}/propTypes.js +3 -0
  48. package/lib/common/actions/analyses.js +28 -0
  49. package/lib/common/reducers/analyses.js +18 -2
  50. package/lib/common/selectors/analyses.js +18 -1
  51. package/lib/index.js +106 -98
  52. package/lib/reporting/api/fetchStudentAnalyses.js +38 -0
  53. package/lib/reporting/api/getAnalysesExport.js +7 -4
  54. package/lib/reporting/api/getAnalysesStatus.js +7 -4
  55. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisMetric/presenter.js +1 -1
  56. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisPopoverMetric/presenter.js +1 -1
  57. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/AggregationType/presenter.js +1 -1
  58. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ChoiceType/presenter.js +1 -1
  59. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/presenter.js +1 -1
  60. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/CategorizationType.js +1 -1
  61. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingType.js +1 -1
  62. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/presenter.js +1 -1
  63. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/OrderingType.js +1 -1
  64. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/ChoiceTypeWithInfo/presenter.js +1 -1
  65. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/NumericType/presenter.js +1 -1
  66. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/ChoiceGroupTypeTable/presenter.js +1 -1
  67. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/RichFillBlankType/presenter.js +1 -1
  68. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/Table/index.js +1 -1
  69. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/ScoreDistributionType/index.js +1 -1
  70. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/presenter.js +1 -1
  71. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/presenter.js +1 -1
  72. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/presenter.js +1 -1
  73. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/ExportButton/index.js +5 -1
  74. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewItemAnalysis/presenter.js +1 -1
  75. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/presenter.js +1 -1
  76. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/ReportCard/presenter.js +2 -2
  77. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/fetchReports.js +1 -1
  78. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/fetchReportsStatus.js +1 -1
  79. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/presenter.js +3 -3
  80. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/withAnalysisState.js +2 -3
  81. package/lib/reporting/components/resources/NewQuizAndItemAnalysis/withAnalysisStatePresenter.js +5 -5
  82. package/lib/reporting/components/resources/StudentAnalysis/ReportCard/index.js +11 -0
  83. package/lib/reporting/components/resources/StudentAnalysis/ReportCard/presenter.js +172 -0
  84. package/lib/reporting/components/resources/StudentAnalysis/ReportCard/styles.js +49 -0
  85. package/lib/reporting/components/resources/StudentAnalysis/ReportCard/theme.js +19 -0
  86. package/lib/reporting/components/resources/StudentAnalysis/fetchReport.js +56 -0
  87. package/lib/reporting/components/resources/StudentAnalysis/fetchReportStatus.js +50 -0
  88. package/lib/reporting/components/resources/StudentAnalysis/withStudentAnalysisReportState.js +46 -0
  89. package/lib/reporting/components/resources/StudentAnalysis/withStudentAnalysisReportStatePresenter.js +231 -0
  90. package/lib/reporting/components/resources/common/ExportButton/index.js +32 -0
  91. package/lib/reporting/components/resources/{NewQuizAndItemAnalysis → common}/errorCodes.js +1 -1
  92. package/lib/reporting/components/resources/{NewQuizAndItemAnalysis → common}/errorMessages.js +3 -3
  93. package/lib/reporting/components/resources/{NewQuizAndItemAnalysis → common}/exportReports.js +4 -3
  94. package/lib/reporting/components/resources/{NewQuizAndItemAnalysis → common}/propTypes.js +5 -1
  95. package/package.json +9 -9
  96. /package/es/reporting/components/resources/{NewQuizAndItemAnalysis → common}/AnalysisUpdateDate/index.js +0 -0
  97. /package/es/reporting/components/resources/{NewQuizAndItemAnalysis → common}/generateReports.js +0 -0
  98. /package/es/reporting/components/resources/{NewQuizAndItemAnalysis → common}/utils.js +0 -0
  99. /package/lib/reporting/components/resources/{NewQuizAndItemAnalysis → common}/AnalysisUpdateDate/index.js +0 -0
  100. /package/lib/reporting/components/resources/{NewQuizAndItemAnalysis → common}/generateReports.js +0 -0
  101. /package/lib/reporting/components/resources/{NewQuizAndItemAnalysis → common}/utils.js +0 -0
@@ -5,9 +5,13 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.setQuizAnalysis = setQuizAnalysis;
7
7
  exports.setItemAnalyses = setItemAnalyses;
8
+ exports.setStudentAnalyses = setStudentAnalyses;
8
9
  exports.setFetchInProgress = setFetchInProgress;
10
+ exports.setStudentAnalysisFetchInProgress = setStudentAnalysisFetchInProgress;
9
11
  exports.setStatusPollingInProgress = setStatusPollingInProgress;
12
+ exports.setStudentAnalysisStatusPollingInProgress = setStudentAnalysisStatusPollingInProgress;
10
13
  exports.setGenerationInProgress = setGenerationInProgress;
14
+ exports.setStudentAnalysesGenerationInProgress = setStudentAnalysesGenerationInProgress;
11
15
  exports.setAnalysisError = setAnalysisError;
12
16
  var _quizCommon = require("@instructure/quiz-common");
13
17
  function setQuizAnalysis(quizAnalysis) {
@@ -22,24 +26,48 @@ function setItemAnalyses(itemAnalyses) {
22
26
  payload: itemAnalyses
23
27
  };
24
28
  }
29
+ function setStudentAnalyses(studentAnalyses) {
30
+ return {
31
+ type: _quizCommon.SET_STUDENT_ANALYSES,
32
+ payload: studentAnalyses
33
+ };
34
+ }
25
35
  function setFetchInProgress(inProgress) {
26
36
  return {
27
37
  type: _quizCommon.SET_ANALYSIS_FETCH_IN_PROGRESS,
28
38
  payload: inProgress
29
39
  };
30
40
  }
41
+ function setStudentAnalysisFetchInProgress(inProgress) {
42
+ return {
43
+ type: _quizCommon.SET_STUDENT_ANALYSIS_FETCH_IN_PROGRESS,
44
+ payload: inProgress
45
+ };
46
+ }
31
47
  function setStatusPollingInProgress(inProgress) {
32
48
  return {
33
49
  type: _quizCommon.SET_STATUS_POLLING_IN_PROGRESS,
34
50
  payload: inProgress
35
51
  };
36
52
  }
53
+ function setStudentAnalysisStatusPollingInProgress(inProgress) {
54
+ return {
55
+ type: _quizCommon.SET_STUDENT_ANALYSIS_STATUS_POLLING_IN_PROGRESS,
56
+ payload: inProgress
57
+ };
58
+ }
37
59
  function setGenerationInProgress(inProgress) {
38
60
  return {
39
61
  type: _quizCommon.SET_ANALYSIS_GENERATION_IN_PROGRESS,
40
62
  payload: inProgress
41
63
  };
42
64
  }
65
+ function setStudentAnalysesGenerationInProgress(inProgress) {
66
+ return {
67
+ type: _quizCommon.SET_STUDENT_ANALYSIS_REPORT_GENERATION_IN_PROGRESS,
68
+ payload: inProgress
69
+ };
70
+ }
43
71
  function setAnalysisError(error) {
44
72
  return {
45
73
  type: _quizCommon.SET_ANALYSIS_ERROR,
@@ -4,7 +4,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
4
4
  Object.defineProperty(exports, "__esModule", {
5
5
  value: true
6
6
  });
7
- exports.default = exports.defaultState = exports.errorKey = exports.statusPollingInProgressKey = exports.generationInProgressKey = exports.fetchInProgressKey = exports.itemAnalysesKey = exports.quizAnalysisKey = void 0;
7
+ exports.default = exports.defaultState = exports.errorKey = exports.studentAnalysisStatusPollingInProgressKey = exports.statusPollingInProgressKey = exports.studentAnalysisGenerationInProgressKey = exports.generationInProgressKey = exports.studentAnalysisFetchInProgressKey = exports.fetchInProgressKey = exports.studentAnalysesKey = exports.itemAnalysesKey = exports.quizAnalysisKey = void 0;
8
8
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
9
9
  var _immutable = require("immutable");
10
10
  var _quizCommon = require("@instructure/quiz-common");
@@ -13,15 +13,23 @@ var quizAnalysisKey = 'quizAnalysis';
13
13
  exports.quizAnalysisKey = quizAnalysisKey;
14
14
  var itemAnalysesKey = 'itemAnalyses';
15
15
  exports.itemAnalysesKey = itemAnalysesKey;
16
+ var studentAnalysesKey = 'studentAnalyses';
17
+ exports.studentAnalysesKey = studentAnalysesKey;
16
18
  var fetchInProgressKey = 'fetchInProgress';
17
19
  exports.fetchInProgressKey = fetchInProgressKey;
20
+ var studentAnalysisFetchInProgressKey = 'studentAnalysisFetchInProgress';
21
+ exports.studentAnalysisFetchInProgressKey = studentAnalysisFetchInProgressKey;
18
22
  var generationInProgressKey = 'generationInProgress';
19
23
  exports.generationInProgressKey = generationInProgressKey;
24
+ var studentAnalysisGenerationInProgressKey = 'studentAnalysisGenerationInProgress';
25
+ exports.studentAnalysisGenerationInProgressKey = studentAnalysisGenerationInProgressKey;
20
26
  var statusPollingInProgressKey = 'statusPollingInProgress';
21
27
  exports.statusPollingInProgressKey = statusPollingInProgressKey;
28
+ var studentAnalysisStatusPollingInProgressKey = 'studentAnalysisStatusPollingInProgress';
29
+ exports.studentAnalysisStatusPollingInProgressKey = studentAnalysisStatusPollingInProgressKey;
22
30
  var errorKey = 'analysisError';
23
31
  exports.errorKey = errorKey;
24
- var defaultState = (0, _immutable.fromJS)((_fromJS = {}, (0, _defineProperty2.default)(_fromJS, quizAnalysisKey, void 0), (0, _defineProperty2.default)(_fromJS, itemAnalysesKey, void 0), (0, _defineProperty2.default)(_fromJS, fetchInProgressKey, true), (0, _defineProperty2.default)(_fromJS, generationInProgressKey, false), (0, _defineProperty2.default)(_fromJS, statusPollingInProgressKey, false), (0, _defineProperty2.default)(_fromJS, errorKey, void 0), _fromJS));
32
+ var defaultState = (0, _immutable.fromJS)((_fromJS = {}, (0, _defineProperty2.default)(_fromJS, quizAnalysisKey, void 0), (0, _defineProperty2.default)(_fromJS, itemAnalysesKey, void 0), (0, _defineProperty2.default)(_fromJS, studentAnalysesKey, void 0), (0, _defineProperty2.default)(_fromJS, fetchInProgressKey, true), (0, _defineProperty2.default)(_fromJS, studentAnalysisFetchInProgressKey, false), (0, _defineProperty2.default)(_fromJS, generationInProgressKey, false), (0, _defineProperty2.default)(_fromJS, studentAnalysisGenerationInProgressKey, false), (0, _defineProperty2.default)(_fromJS, statusPollingInProgressKey, false), (0, _defineProperty2.default)(_fromJS, studentAnalysisStatusPollingInProgressKey, false), (0, _defineProperty2.default)(_fromJS, errorKey, void 0), _fromJS));
25
33
  exports.defaultState = defaultState;
26
34
  var _default = function _default() {
27
35
  var state = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : defaultState;
@@ -31,12 +39,20 @@ var _default = function _default() {
31
39
  return state.set(quizAnalysisKey, (0, _immutable.fromJS)(action.payload));
32
40
  case _quizCommon.SET_ITEM_ANALYSES:
33
41
  return state.set(itemAnalysesKey, (0, _immutable.fromJS)(action.payload));
42
+ case _quizCommon.SET_STUDENT_ANALYSES:
43
+ return state.set(studentAnalysesKey, (0, _immutable.fromJS)(action.payload));
34
44
  case _quizCommon.SET_ANALYSIS_FETCH_IN_PROGRESS:
35
45
  return state.set(fetchInProgressKey, action.payload);
46
+ case _quizCommon.SET_STUDENT_ANALYSIS_FETCH_IN_PROGRESS:
47
+ return state.set(studentAnalysisFetchInProgressKey, action.payload);
36
48
  case _quizCommon.SET_ANALYSIS_GENERATION_IN_PROGRESS:
37
49
  return state.set(generationInProgressKey, action.payload);
50
+ case _quizCommon.SET_STUDENT_ANALYSIS_REPORT_GENERATION_IN_PROGRESS:
51
+ return state.set(studentAnalysisGenerationInProgressKey, action.payload);
38
52
  case _quizCommon.SET_STATUS_POLLING_IN_PROGRESS:
39
53
  return state.set(statusPollingInProgressKey, action.payload);
54
+ case _quizCommon.SET_STUDENT_ANALYSIS_STATUS_POLLING_IN_PROGRESS:
55
+ return state.set(studentAnalysisStatusPollingInProgressKey, action.payload);
40
56
  case _quizCommon.SET_ANALYSIS_ERROR:
41
57
  return state.set(errorKey, action.payload);
42
58
  default:
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.getAnalysisError = exports.getGenerationInProgress = exports.getStatusPollingInProgress = exports.getFetchInProgress = exports.getItemAnalyses = exports.getQuizAnalysis = void 0;
6
+ exports.getAnalysisError = exports.getStudentAnalysisGenerationInProgress = exports.getGenerationInProgress = exports.getStudentAnalysisStatusPollingInProgress = exports.getStatusPollingInProgress = exports.getStudentAnalysisFetchInProgress = exports.getFetchInProgress = exports.getStudentAnalyses = exports.getItemAnalyses = exports.getQuizAnalysis = void 0;
7
7
  var path = 'analyses';
8
8
  var getQuizAnalysis = function getQuizAnalysis(state) {
9
9
  var _state$getIn;
@@ -15,18 +15,35 @@ var getItemAnalyses = function getItemAnalyses(state) {
15
15
  return (_state$getIn2 = state.getIn([path, 'itemAnalyses'])) === null || _state$getIn2 === void 0 ? void 0 : _state$getIn2.toJS();
16
16
  };
17
17
  exports.getItemAnalyses = getItemAnalyses;
18
+ var getStudentAnalyses = function getStudentAnalyses(state) {
19
+ var _state$getIn3;
20
+ return (_state$getIn3 = state.getIn([path, 'studentAnalyses'])) === null || _state$getIn3 === void 0 ? void 0 : _state$getIn3.toJS();
21
+ };
22
+ exports.getStudentAnalyses = getStudentAnalyses;
18
23
  var getFetchInProgress = function getFetchInProgress(state) {
19
24
  return state.getIn([path, 'fetchInProgress'], false);
20
25
  };
21
26
  exports.getFetchInProgress = getFetchInProgress;
27
+ var getStudentAnalysisFetchInProgress = function getStudentAnalysisFetchInProgress(state) {
28
+ return state.getIn([path, 'studentAnalysisFetchInProgress'], false);
29
+ };
30
+ exports.getStudentAnalysisFetchInProgress = getStudentAnalysisFetchInProgress;
22
31
  var getStatusPollingInProgress = function getStatusPollingInProgress(state) {
23
32
  return state.getIn([path, 'statusPollingInProgress'], false);
24
33
  };
25
34
  exports.getStatusPollingInProgress = getStatusPollingInProgress;
35
+ var getStudentAnalysisStatusPollingInProgress = function getStudentAnalysisStatusPollingInProgress(state) {
36
+ return state.getIn([path, 'studentAnalysisStatusPollingInProgress'], false);
37
+ };
38
+ exports.getStudentAnalysisStatusPollingInProgress = getStudentAnalysisStatusPollingInProgress;
26
39
  var getGenerationInProgress = function getGenerationInProgress(state) {
27
40
  return state.getIn([path, 'generationInProgress'], false);
28
41
  };
29
42
  exports.getGenerationInProgress = getGenerationInProgress;
43
+ var getStudentAnalysisGenerationInProgress = function getStudentAnalysisGenerationInProgress(state) {
44
+ return state.getIn([path, 'studentAnalysisGenerationInProgress'], false);
45
+ };
46
+ exports.getStudentAnalysisGenerationInProgress = getStudentAnalysisGenerationInProgress;
30
47
  var getAnalysisError = function getAnalysisError(state) {
31
48
  return state.getIn([path, 'analysisError']);
32
49
  };