analytica-frontend-lib 1.2.45 → 1.2.47

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 (55) hide show
  1. package/dist/ActivityCardQuestionBanks/index.css +20 -0
  2. package/dist/ActivityCardQuestionBanks/index.css.map +1 -1
  3. package/dist/ActivityCardQuestionPreview/index.css +20 -0
  4. package/dist/ActivityCardQuestionPreview/index.css.map +1 -1
  5. package/dist/ActivityDetails/index.css +20 -0
  6. package/dist/ActivityDetails/index.css.map +1 -1
  7. package/dist/ActivityFilters/index.css +20 -0
  8. package/dist/ActivityFilters/index.css.map +1 -1
  9. package/dist/ActivityPreview/index.css +20 -0
  10. package/dist/ActivityPreview/index.css.map +1 -1
  11. package/dist/AlertManager/index.css +20 -0
  12. package/dist/AlertManager/index.css.map +1 -1
  13. package/dist/RecommendedLessonsHistory/index.css +19327 -0
  14. package/dist/RecommendedLessonsHistory/index.css.map +1 -0
  15. package/dist/RecommendedLessonsHistory/index.d.ts +2 -0
  16. package/dist/RecommendedLessonsHistory/index.d.ts.map +1 -0
  17. package/dist/RecommendedLessonsHistory/index.js +6775 -0
  18. package/dist/RecommendedLessonsHistory/index.js.map +1 -0
  19. package/dist/RecommendedLessonsHistory/index.mjs +6815 -0
  20. package/dist/RecommendedLessonsHistory/index.mjs.map +1 -0
  21. package/dist/SendActivityModal/index.css +20 -0
  22. package/dist/SendActivityModal/index.css.map +1 -1
  23. package/dist/SendActivityModal/index.js +16 -1
  24. package/dist/SendActivityModal/index.js.map +1 -1
  25. package/dist/SendActivityModal/index.mjs +16 -1
  26. package/dist/SendActivityModal/index.mjs.map +1 -1
  27. package/dist/TableProvider/index.css +20 -0
  28. package/dist/TableProvider/index.css.map +1 -1
  29. package/dist/hooks/useRecommendedLessons/index.d.ts +355 -0
  30. package/dist/hooks/useRecommendedLessons/index.d.ts.map +1 -0
  31. package/dist/hooks/useRecommendedLessons/index.js +195 -0
  32. package/dist/hooks/useRecommendedLessons/index.js.map +1 -0
  33. package/dist/hooks/useRecommendedLessons/index.mjs +155 -0
  34. package/dist/hooks/useRecommendedLessons/index.mjs.map +1 -0
  35. package/dist/hooks/useRecommendedLessons.d.ts +355 -0
  36. package/dist/hooks/useRecommendedLessons.d.ts.map +1 -0
  37. package/dist/index.css +20 -0
  38. package/dist/index.css.map +1 -1
  39. package/dist/index.d.ts +7 -1
  40. package/dist/index.d.ts.map +1 -1
  41. package/dist/index.js +714 -1
  42. package/dist/index.js.map +1 -1
  43. package/dist/index.mjs +701 -1
  44. package/dist/index.mjs.map +1 -1
  45. package/dist/styles.css +20 -0
  46. package/dist/styles.css.map +1 -1
  47. package/dist/types/recommendedLessons/index.d.ts +182 -0
  48. package/dist/types/recommendedLessons/index.d.ts.map +1 -0
  49. package/dist/types/recommendedLessons/index.js +75 -0
  50. package/dist/types/recommendedLessons/index.js.map +1 -0
  51. package/dist/types/recommendedLessons/index.mjs +45 -0
  52. package/dist/types/recommendedLessons/index.mjs.map +1 -0
  53. package/dist/types/recommendedLessons.d.ts +182 -0
  54. package/dist/types/recommendedLessons.d.ts.map +1 -0
  55. package/package.json +2 -1
@@ -0,0 +1,182 @@
1
+ /**
2
+ * Recommended Lessons / Goals (Aulas Recomendadas) Type Definitions
3
+ * Based on /recommended-class/history endpoint
4
+ */
5
+ /**
6
+ * Goal status from backend API
7
+ */
8
+ export declare enum GoalApiStatus {
9
+ A_VENCER = "A_VENCER",
10
+ VENCIDA = "VENCIDA",
11
+ CONCLUIDA = "CONCLUIDA"
12
+ }
13
+ /**
14
+ * Goal status for display in UI (Badge component)
15
+ */
16
+ export declare enum GoalDisplayStatus {
17
+ ATIVA = "ATIVA",
18
+ VENCIDA = "VENCIDA",
19
+ CONCLUIDA = "CONCLU\u00CDDA"
20
+ }
21
+ /**
22
+ * Badge action types for goal status visualization
23
+ */
24
+ export declare enum GoalBadgeActionType {
25
+ SUCCESS = "success",
26
+ WARNING = "warning",
27
+ ERROR = "error"
28
+ }
29
+ /**
30
+ * Subject info from API response
31
+ */
32
+ export interface GoalSubject {
33
+ id: string;
34
+ name: string;
35
+ }
36
+ /**
37
+ * Creator info from API response
38
+ */
39
+ export interface GoalCreator {
40
+ id: string;
41
+ name: string;
42
+ }
43
+ /**
44
+ * Goal stats from API response
45
+ */
46
+ export interface GoalStats {
47
+ totalStudents: number;
48
+ completedCount: number;
49
+ completionPercentage: number;
50
+ }
51
+ /**
52
+ * Class breakdown info from API response
53
+ */
54
+ export interface GoalBreakdown {
55
+ classId: string;
56
+ className: string;
57
+ schoolId: string;
58
+ schoolName: string;
59
+ studentCount: number;
60
+ completedCount: number;
61
+ }
62
+ /**
63
+ * Goal data from API response
64
+ */
65
+ export interface GoalData {
66
+ id: string;
67
+ title: string;
68
+ startDate: string | null;
69
+ finalDate: string | null;
70
+ createdAt: string;
71
+ progress: number;
72
+ totalLessons: number;
73
+ }
74
+ /**
75
+ * Goal history item from /recommended-class/history endpoint
76
+ */
77
+ export interface GoalHistoryItem {
78
+ goal: GoalData;
79
+ subject: GoalSubject | null;
80
+ creator: GoalCreator | null;
81
+ stats: GoalStats;
82
+ breakdown: GoalBreakdown[];
83
+ }
84
+ /**
85
+ * Goal table item interface for goals list table
86
+ */
87
+ export interface GoalTableItem extends Record<string, unknown> {
88
+ id: string;
89
+ startDate: string | null;
90
+ deadline: string | null;
91
+ title: string;
92
+ school: string;
93
+ year: string;
94
+ subject: string;
95
+ class: string;
96
+ status: GoalDisplayStatus;
97
+ completionPercentage: number;
98
+ }
99
+ /**
100
+ * Goals history API complete response from /recommended-class/history
101
+ */
102
+ export interface GoalsHistoryApiResponse {
103
+ message: string;
104
+ data: {
105
+ goals: GoalHistoryItem[];
106
+ total: number;
107
+ };
108
+ }
109
+ /**
110
+ * Goal history filters for API query parameters
111
+ */
112
+ export interface GoalHistoryFilters {
113
+ page?: number;
114
+ limit?: number;
115
+ status?: GoalApiStatus;
116
+ search?: string;
117
+ startDate?: string;
118
+ finalDate?: string;
119
+ subjectId?: string;
120
+ schoolId?: string;
121
+ schoolIds?: string[];
122
+ classId?: string;
123
+ classIds?: string[];
124
+ studentIds?: string[];
125
+ sortBy?: 'createdAt' | 'finalDate' | 'title' | 'completionPercentage';
126
+ sortOrder?: 'asc' | 'desc';
127
+ }
128
+ /**
129
+ * Pagination info for goals history
130
+ */
131
+ export interface GoalHistoryPagination {
132
+ total: number;
133
+ page: number;
134
+ limit: number;
135
+ totalPages: number;
136
+ }
137
+ /**
138
+ * Filter option for dropdowns
139
+ * Extends with index signature to be compatible with CheckBoxGroup Item type
140
+ */
141
+ export interface GoalFilterOption {
142
+ id: string;
143
+ name: string;
144
+ [key: string]: unknown;
145
+ }
146
+ /**
147
+ * User data for filter options (schools, classes, subjects)
148
+ */
149
+ export interface GoalUserFilterData {
150
+ schools?: Array<{
151
+ id: string;
152
+ name: string;
153
+ }>;
154
+ classes?: Array<{
155
+ id: string;
156
+ name: string;
157
+ schoolId?: string;
158
+ }>;
159
+ subjects?: Array<{
160
+ id: string;
161
+ name: string;
162
+ }>;
163
+ schoolYears?: Array<{
164
+ id: string;
165
+ name: string;
166
+ }>;
167
+ }
168
+ /**
169
+ * Get status badge action based on goal display status
170
+ * @param status - Goal display status
171
+ * @returns Badge action type for styling
172
+ */
173
+ export declare const getGoalStatusBadgeAction: (status: GoalDisplayStatus) => GoalBadgeActionType;
174
+ /**
175
+ * Goal status options for filter (Vencida and Ativa)
176
+ */
177
+ export declare const GOAL_FILTER_STATUS_OPTIONS: GoalFilterOption[];
178
+ /**
179
+ * All goal status options
180
+ */
181
+ export declare const GOAL_STATUS_OPTIONS: GoalFilterOption[];
182
+ //# sourceMappingURL=recommendedLessons.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"recommendedLessons.d.ts","sourceRoot":"","sources":["../../src/types/recommendedLessons.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,75 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/types/recommendedLessons.ts
21
+ var recommendedLessons_exports = {};
22
+ __export(recommendedLessons_exports, {
23
+ GOAL_FILTER_STATUS_OPTIONS: () => GOAL_FILTER_STATUS_OPTIONS,
24
+ GOAL_STATUS_OPTIONS: () => GOAL_STATUS_OPTIONS,
25
+ GoalApiStatus: () => GoalApiStatus,
26
+ GoalBadgeActionType: () => GoalBadgeActionType,
27
+ GoalDisplayStatus: () => GoalDisplayStatus,
28
+ getGoalStatusBadgeAction: () => getGoalStatusBadgeAction
29
+ });
30
+ module.exports = __toCommonJS(recommendedLessons_exports);
31
+ var GoalApiStatus = /* @__PURE__ */ ((GoalApiStatus2) => {
32
+ GoalApiStatus2["A_VENCER"] = "A_VENCER";
33
+ GoalApiStatus2["VENCIDA"] = "VENCIDA";
34
+ GoalApiStatus2["CONCLUIDA"] = "CONCLUIDA";
35
+ return GoalApiStatus2;
36
+ })(GoalApiStatus || {});
37
+ var GoalDisplayStatus = /* @__PURE__ */ ((GoalDisplayStatus2) => {
38
+ GoalDisplayStatus2["ATIVA"] = "ATIVA";
39
+ GoalDisplayStatus2["VENCIDA"] = "VENCIDA";
40
+ GoalDisplayStatus2["CONCLUIDA"] = "CONCLU\xCDDA";
41
+ return GoalDisplayStatus2;
42
+ })(GoalDisplayStatus || {});
43
+ var GoalBadgeActionType = /* @__PURE__ */ ((GoalBadgeActionType2) => {
44
+ GoalBadgeActionType2["SUCCESS"] = "success";
45
+ GoalBadgeActionType2["WARNING"] = "warning";
46
+ GoalBadgeActionType2["ERROR"] = "error";
47
+ return GoalBadgeActionType2;
48
+ })(GoalBadgeActionType || {});
49
+ var getGoalStatusBadgeAction = (status) => {
50
+ const actionMap = {
51
+ ["CONCLU\xCDDA" /* CONCLUIDA */]: "success" /* SUCCESS */,
52
+ ["ATIVA" /* ATIVA */]: "warning" /* WARNING */,
53
+ ["VENCIDA" /* VENCIDA */]: "error" /* ERROR */
54
+ };
55
+ return actionMap[status] ?? "warning" /* WARNING */;
56
+ };
57
+ var GOAL_FILTER_STATUS_OPTIONS = [
58
+ { id: "VENCIDA" /* VENCIDA */, name: "Vencida" },
59
+ { id: "A_VENCER" /* A_VENCER */, name: "Ativa" }
60
+ ];
61
+ var GOAL_STATUS_OPTIONS = [
62
+ { id: "A_VENCER" /* A_VENCER */, name: "A Vencer" },
63
+ { id: "VENCIDA" /* VENCIDA */, name: "Vencida" },
64
+ { id: "CONCLUIDA" /* CONCLUIDA */, name: "Conclu\xEDda" }
65
+ ];
66
+ // Annotate the CommonJS export names for ESM import in node:
67
+ 0 && (module.exports = {
68
+ GOAL_FILTER_STATUS_OPTIONS,
69
+ GOAL_STATUS_OPTIONS,
70
+ GoalApiStatus,
71
+ GoalBadgeActionType,
72
+ GoalDisplayStatus,
73
+ getGoalStatusBadgeAction
74
+ });
75
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../src/types/recommendedLessons.ts"],"sourcesContent":["/**\n * Recommended Lessons / Goals (Aulas Recomendadas) Type Definitions\n * Based on /recommended-class/history endpoint\n */\n\n/**\n * Goal status from backend API\n */\nexport enum GoalApiStatus {\n A_VENCER = 'A_VENCER',\n VENCIDA = 'VENCIDA',\n CONCLUIDA = 'CONCLUIDA',\n}\n\n/**\n * Goal status for display in UI (Badge component)\n */\nexport enum GoalDisplayStatus {\n ATIVA = 'ATIVA',\n VENCIDA = 'VENCIDA',\n CONCLUIDA = 'CONCLUÍDA',\n}\n\n/**\n * Badge action types for goal status visualization\n */\nexport enum GoalBadgeActionType {\n SUCCESS = 'success',\n WARNING = 'warning',\n ERROR = 'error',\n}\n\n/**\n * Subject info from API response\n */\nexport interface GoalSubject {\n id: string;\n name: string;\n}\n\n/**\n * Creator info from API response\n */\nexport interface GoalCreator {\n id: string;\n name: string;\n}\n\n/**\n * Goal stats from API response\n */\nexport interface GoalStats {\n totalStudents: number;\n completedCount: number;\n completionPercentage: number;\n}\n\n/**\n * Class breakdown info from API response\n */\nexport interface GoalBreakdown {\n classId: string;\n className: string;\n schoolId: string;\n schoolName: string;\n studentCount: number;\n completedCount: number;\n}\n\n/**\n * Goal data from API response\n */\nexport interface GoalData {\n id: string;\n title: string;\n startDate: string | null;\n finalDate: string | null;\n createdAt: string;\n progress: number;\n totalLessons: number;\n}\n\n/**\n * Goal history item from /recommended-class/history endpoint\n */\nexport interface GoalHistoryItem {\n goal: GoalData;\n subject: GoalSubject | null;\n creator: GoalCreator | null;\n stats: GoalStats;\n breakdown: GoalBreakdown[];\n}\n\n/**\n * Goal table item interface for goals list table\n */\nexport interface GoalTableItem extends Record<string, unknown> {\n id: string;\n startDate: string | null;\n deadline: string | null;\n title: string;\n school: string;\n year: string;\n subject: string;\n class: string;\n status: GoalDisplayStatus;\n completionPercentage: number;\n}\n\n/**\n * Goals history API complete response from /recommended-class/history\n */\nexport interface GoalsHistoryApiResponse {\n message: string;\n data: {\n goals: GoalHistoryItem[];\n total: number;\n };\n}\n\n/**\n * Goal history filters for API query parameters\n */\nexport interface GoalHistoryFilters {\n page?: number;\n limit?: number;\n status?: GoalApiStatus;\n search?: string;\n startDate?: string;\n finalDate?: string;\n subjectId?: string;\n schoolId?: string;\n schoolIds?: string[];\n classId?: string;\n classIds?: string[];\n studentIds?: string[];\n sortBy?: 'createdAt' | 'finalDate' | 'title' | 'completionPercentage';\n sortOrder?: 'asc' | 'desc';\n}\n\n/**\n * Pagination info for goals history\n */\nexport interface GoalHistoryPagination {\n total: number;\n page: number;\n limit: number;\n totalPages: number;\n}\n\n/**\n * Filter option for dropdowns\n * Extends with index signature to be compatible with CheckBoxGroup Item type\n */\nexport interface GoalFilterOption {\n id: string;\n name: string;\n [key: string]: unknown;\n}\n\n/**\n * User data for filter options (schools, classes, subjects)\n */\nexport interface GoalUserFilterData {\n schools?: Array<{ id: string; name: string }>;\n classes?: Array<{ id: string; name: string; schoolId?: string }>;\n subjects?: Array<{ id: string; name: string }>;\n schoolYears?: Array<{ id: string; name: string }>;\n}\n\n/**\n * Get status badge action based on goal display status\n * @param status - Goal display status\n * @returns Badge action type for styling\n */\nexport const getGoalStatusBadgeAction = (\n status: GoalDisplayStatus\n): GoalBadgeActionType => {\n const actionMap: Record<GoalDisplayStatus, GoalBadgeActionType> = {\n [GoalDisplayStatus.CONCLUIDA]: GoalBadgeActionType.SUCCESS,\n [GoalDisplayStatus.ATIVA]: GoalBadgeActionType.WARNING,\n [GoalDisplayStatus.VENCIDA]: GoalBadgeActionType.ERROR,\n };\n return actionMap[status] ?? GoalBadgeActionType.WARNING;\n};\n\n/**\n * Goal status options for filter (Vencida and Ativa)\n */\nexport const GOAL_FILTER_STATUS_OPTIONS: GoalFilterOption[] = [\n { id: GoalApiStatus.VENCIDA, name: 'Vencida' },\n { id: GoalApiStatus.A_VENCER, name: 'Ativa' },\n];\n\n/**\n * All goal status options\n */\nexport const GOAL_STATUS_OPTIONS: GoalFilterOption[] = [\n { id: GoalApiStatus.A_VENCER, name: 'A Vencer' },\n { id: GoalApiStatus.VENCIDA, name: 'Vencida' },\n { id: GoalApiStatus.CONCLUIDA, name: 'Concluída' },\n];\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQO,IAAK,gBAAL,kBAAKA,mBAAL;AACL,EAAAA,eAAA,cAAW;AACX,EAAAA,eAAA,aAAU;AACV,EAAAA,eAAA,eAAY;AAHF,SAAAA;AAAA,GAAA;AASL,IAAK,oBAAL,kBAAKC,uBAAL;AACL,EAAAA,mBAAA,WAAQ;AACR,EAAAA,mBAAA,aAAU;AACV,EAAAA,mBAAA,eAAY;AAHF,SAAAA;AAAA,GAAA;AASL,IAAK,sBAAL,kBAAKC,yBAAL;AACL,EAAAA,qBAAA,aAAU;AACV,EAAAA,qBAAA,aAAU;AACV,EAAAA,qBAAA,WAAQ;AAHE,SAAAA;AAAA,GAAA;AAqJL,IAAM,2BAA2B,CACtC,WACwB;AACxB,QAAM,YAA4D;AAAA,IAChE,CAAC,8BAA2B,GAAG;AAAA,IAC/B,CAAC,mBAAuB,GAAG;AAAA,IAC3B,CAAC,uBAAyB,GAAG;AAAA,EAC/B;AACA,SAAO,UAAU,MAAM,KAAK;AAC9B;AAKO,IAAM,6BAAiD;AAAA,EAC5D,EAAE,IAAI,yBAAuB,MAAM,UAAU;AAAA,EAC7C,EAAE,IAAI,2BAAwB,MAAM,QAAQ;AAC9C;AAKO,IAAM,sBAA0C;AAAA,EACrD,EAAE,IAAI,2BAAwB,MAAM,WAAW;AAAA,EAC/C,EAAE,IAAI,yBAAuB,MAAM,UAAU;AAAA,EAC7C,EAAE,IAAI,6BAAyB,MAAM,eAAY;AACnD;","names":["GoalApiStatus","GoalDisplayStatus","GoalBadgeActionType"]}
@@ -0,0 +1,45 @@
1
+ // src/types/recommendedLessons.ts
2
+ var GoalApiStatus = /* @__PURE__ */ ((GoalApiStatus2) => {
3
+ GoalApiStatus2["A_VENCER"] = "A_VENCER";
4
+ GoalApiStatus2["VENCIDA"] = "VENCIDA";
5
+ GoalApiStatus2["CONCLUIDA"] = "CONCLUIDA";
6
+ return GoalApiStatus2;
7
+ })(GoalApiStatus || {});
8
+ var GoalDisplayStatus = /* @__PURE__ */ ((GoalDisplayStatus2) => {
9
+ GoalDisplayStatus2["ATIVA"] = "ATIVA";
10
+ GoalDisplayStatus2["VENCIDA"] = "VENCIDA";
11
+ GoalDisplayStatus2["CONCLUIDA"] = "CONCLU\xCDDA";
12
+ return GoalDisplayStatus2;
13
+ })(GoalDisplayStatus || {});
14
+ var GoalBadgeActionType = /* @__PURE__ */ ((GoalBadgeActionType2) => {
15
+ GoalBadgeActionType2["SUCCESS"] = "success";
16
+ GoalBadgeActionType2["WARNING"] = "warning";
17
+ GoalBadgeActionType2["ERROR"] = "error";
18
+ return GoalBadgeActionType2;
19
+ })(GoalBadgeActionType || {});
20
+ var getGoalStatusBadgeAction = (status) => {
21
+ const actionMap = {
22
+ ["CONCLU\xCDDA" /* CONCLUIDA */]: "success" /* SUCCESS */,
23
+ ["ATIVA" /* ATIVA */]: "warning" /* WARNING */,
24
+ ["VENCIDA" /* VENCIDA */]: "error" /* ERROR */
25
+ };
26
+ return actionMap[status] ?? "warning" /* WARNING */;
27
+ };
28
+ var GOAL_FILTER_STATUS_OPTIONS = [
29
+ { id: "VENCIDA" /* VENCIDA */, name: "Vencida" },
30
+ { id: "A_VENCER" /* A_VENCER */, name: "Ativa" }
31
+ ];
32
+ var GOAL_STATUS_OPTIONS = [
33
+ { id: "A_VENCER" /* A_VENCER */, name: "A Vencer" },
34
+ { id: "VENCIDA" /* VENCIDA */, name: "Vencida" },
35
+ { id: "CONCLUIDA" /* CONCLUIDA */, name: "Conclu\xEDda" }
36
+ ];
37
+ export {
38
+ GOAL_FILTER_STATUS_OPTIONS,
39
+ GOAL_STATUS_OPTIONS,
40
+ GoalApiStatus,
41
+ GoalBadgeActionType,
42
+ GoalDisplayStatus,
43
+ getGoalStatusBadgeAction
44
+ };
45
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../src/types/recommendedLessons.ts"],"sourcesContent":["/**\n * Recommended Lessons / Goals (Aulas Recomendadas) Type Definitions\n * Based on /recommended-class/history endpoint\n */\n\n/**\n * Goal status from backend API\n */\nexport enum GoalApiStatus {\n A_VENCER = 'A_VENCER',\n VENCIDA = 'VENCIDA',\n CONCLUIDA = 'CONCLUIDA',\n}\n\n/**\n * Goal status for display in UI (Badge component)\n */\nexport enum GoalDisplayStatus {\n ATIVA = 'ATIVA',\n VENCIDA = 'VENCIDA',\n CONCLUIDA = 'CONCLUÍDA',\n}\n\n/**\n * Badge action types for goal status visualization\n */\nexport enum GoalBadgeActionType {\n SUCCESS = 'success',\n WARNING = 'warning',\n ERROR = 'error',\n}\n\n/**\n * Subject info from API response\n */\nexport interface GoalSubject {\n id: string;\n name: string;\n}\n\n/**\n * Creator info from API response\n */\nexport interface GoalCreator {\n id: string;\n name: string;\n}\n\n/**\n * Goal stats from API response\n */\nexport interface GoalStats {\n totalStudents: number;\n completedCount: number;\n completionPercentage: number;\n}\n\n/**\n * Class breakdown info from API response\n */\nexport interface GoalBreakdown {\n classId: string;\n className: string;\n schoolId: string;\n schoolName: string;\n studentCount: number;\n completedCount: number;\n}\n\n/**\n * Goal data from API response\n */\nexport interface GoalData {\n id: string;\n title: string;\n startDate: string | null;\n finalDate: string | null;\n createdAt: string;\n progress: number;\n totalLessons: number;\n}\n\n/**\n * Goal history item from /recommended-class/history endpoint\n */\nexport interface GoalHistoryItem {\n goal: GoalData;\n subject: GoalSubject | null;\n creator: GoalCreator | null;\n stats: GoalStats;\n breakdown: GoalBreakdown[];\n}\n\n/**\n * Goal table item interface for goals list table\n */\nexport interface GoalTableItem extends Record<string, unknown> {\n id: string;\n startDate: string | null;\n deadline: string | null;\n title: string;\n school: string;\n year: string;\n subject: string;\n class: string;\n status: GoalDisplayStatus;\n completionPercentage: number;\n}\n\n/**\n * Goals history API complete response from /recommended-class/history\n */\nexport interface GoalsHistoryApiResponse {\n message: string;\n data: {\n goals: GoalHistoryItem[];\n total: number;\n };\n}\n\n/**\n * Goal history filters for API query parameters\n */\nexport interface GoalHistoryFilters {\n page?: number;\n limit?: number;\n status?: GoalApiStatus;\n search?: string;\n startDate?: string;\n finalDate?: string;\n subjectId?: string;\n schoolId?: string;\n schoolIds?: string[];\n classId?: string;\n classIds?: string[];\n studentIds?: string[];\n sortBy?: 'createdAt' | 'finalDate' | 'title' | 'completionPercentage';\n sortOrder?: 'asc' | 'desc';\n}\n\n/**\n * Pagination info for goals history\n */\nexport interface GoalHistoryPagination {\n total: number;\n page: number;\n limit: number;\n totalPages: number;\n}\n\n/**\n * Filter option for dropdowns\n * Extends with index signature to be compatible with CheckBoxGroup Item type\n */\nexport interface GoalFilterOption {\n id: string;\n name: string;\n [key: string]: unknown;\n}\n\n/**\n * User data for filter options (schools, classes, subjects)\n */\nexport interface GoalUserFilterData {\n schools?: Array<{ id: string; name: string }>;\n classes?: Array<{ id: string; name: string; schoolId?: string }>;\n subjects?: Array<{ id: string; name: string }>;\n schoolYears?: Array<{ id: string; name: string }>;\n}\n\n/**\n * Get status badge action based on goal display status\n * @param status - Goal display status\n * @returns Badge action type for styling\n */\nexport const getGoalStatusBadgeAction = (\n status: GoalDisplayStatus\n): GoalBadgeActionType => {\n const actionMap: Record<GoalDisplayStatus, GoalBadgeActionType> = {\n [GoalDisplayStatus.CONCLUIDA]: GoalBadgeActionType.SUCCESS,\n [GoalDisplayStatus.ATIVA]: GoalBadgeActionType.WARNING,\n [GoalDisplayStatus.VENCIDA]: GoalBadgeActionType.ERROR,\n };\n return actionMap[status] ?? GoalBadgeActionType.WARNING;\n};\n\n/**\n * Goal status options for filter (Vencida and Ativa)\n */\nexport const GOAL_FILTER_STATUS_OPTIONS: GoalFilterOption[] = [\n { id: GoalApiStatus.VENCIDA, name: 'Vencida' },\n { id: GoalApiStatus.A_VENCER, name: 'Ativa' },\n];\n\n/**\n * All goal status options\n */\nexport const GOAL_STATUS_OPTIONS: GoalFilterOption[] = [\n { id: GoalApiStatus.A_VENCER, name: 'A Vencer' },\n { id: GoalApiStatus.VENCIDA, name: 'Vencida' },\n { id: GoalApiStatus.CONCLUIDA, name: 'Concluída' },\n];\n"],"mappings":";AAQO,IAAK,gBAAL,kBAAKA,mBAAL;AACL,EAAAA,eAAA,cAAW;AACX,EAAAA,eAAA,aAAU;AACV,EAAAA,eAAA,eAAY;AAHF,SAAAA;AAAA,GAAA;AASL,IAAK,oBAAL,kBAAKC,uBAAL;AACL,EAAAA,mBAAA,WAAQ;AACR,EAAAA,mBAAA,aAAU;AACV,EAAAA,mBAAA,eAAY;AAHF,SAAAA;AAAA,GAAA;AASL,IAAK,sBAAL,kBAAKC,yBAAL;AACL,EAAAA,qBAAA,aAAU;AACV,EAAAA,qBAAA,aAAU;AACV,EAAAA,qBAAA,WAAQ;AAHE,SAAAA;AAAA,GAAA;AAqJL,IAAM,2BAA2B,CACtC,WACwB;AACxB,QAAM,YAA4D;AAAA,IAChE,CAAC,8BAA2B,GAAG;AAAA,IAC/B,CAAC,mBAAuB,GAAG;AAAA,IAC3B,CAAC,uBAAyB,GAAG;AAAA,EAC/B;AACA,SAAO,UAAU,MAAM,KAAK;AAC9B;AAKO,IAAM,6BAAiD;AAAA,EAC5D,EAAE,IAAI,yBAAuB,MAAM,UAAU;AAAA,EAC7C,EAAE,IAAI,2BAAwB,MAAM,QAAQ;AAC9C;AAKO,IAAM,sBAA0C;AAAA,EACrD,EAAE,IAAI,2BAAwB,MAAM,WAAW;AAAA,EAC/C,EAAE,IAAI,yBAAuB,MAAM,UAAU;AAAA,EAC7C,EAAE,IAAI,6BAAyB,MAAM,eAAY;AACnD;","names":["GoalApiStatus","GoalDisplayStatus","GoalBadgeActionType"]}
@@ -0,0 +1,182 @@
1
+ /**
2
+ * Recommended Lessons / Goals (Aulas Recomendadas) Type Definitions
3
+ * Based on /recommended-class/history endpoint
4
+ */
5
+ /**
6
+ * Goal status from backend API
7
+ */
8
+ export declare enum GoalApiStatus {
9
+ A_VENCER = "A_VENCER",
10
+ VENCIDA = "VENCIDA",
11
+ CONCLUIDA = "CONCLUIDA"
12
+ }
13
+ /**
14
+ * Goal status for display in UI (Badge component)
15
+ */
16
+ export declare enum GoalDisplayStatus {
17
+ ATIVA = "ATIVA",
18
+ VENCIDA = "VENCIDA",
19
+ CONCLUIDA = "CONCLU\u00CDDA"
20
+ }
21
+ /**
22
+ * Badge action types for goal status visualization
23
+ */
24
+ export declare enum GoalBadgeActionType {
25
+ SUCCESS = "success",
26
+ WARNING = "warning",
27
+ ERROR = "error"
28
+ }
29
+ /**
30
+ * Subject info from API response
31
+ */
32
+ export interface GoalSubject {
33
+ id: string;
34
+ name: string;
35
+ }
36
+ /**
37
+ * Creator info from API response
38
+ */
39
+ export interface GoalCreator {
40
+ id: string;
41
+ name: string;
42
+ }
43
+ /**
44
+ * Goal stats from API response
45
+ */
46
+ export interface GoalStats {
47
+ totalStudents: number;
48
+ completedCount: number;
49
+ completionPercentage: number;
50
+ }
51
+ /**
52
+ * Class breakdown info from API response
53
+ */
54
+ export interface GoalBreakdown {
55
+ classId: string;
56
+ className: string;
57
+ schoolId: string;
58
+ schoolName: string;
59
+ studentCount: number;
60
+ completedCount: number;
61
+ }
62
+ /**
63
+ * Goal data from API response
64
+ */
65
+ export interface GoalData {
66
+ id: string;
67
+ title: string;
68
+ startDate: string | null;
69
+ finalDate: string | null;
70
+ createdAt: string;
71
+ progress: number;
72
+ totalLessons: number;
73
+ }
74
+ /**
75
+ * Goal history item from /recommended-class/history endpoint
76
+ */
77
+ export interface GoalHistoryItem {
78
+ goal: GoalData;
79
+ subject: GoalSubject | null;
80
+ creator: GoalCreator | null;
81
+ stats: GoalStats;
82
+ breakdown: GoalBreakdown[];
83
+ }
84
+ /**
85
+ * Goal table item interface for goals list table
86
+ */
87
+ export interface GoalTableItem extends Record<string, unknown> {
88
+ id: string;
89
+ startDate: string | null;
90
+ deadline: string | null;
91
+ title: string;
92
+ school: string;
93
+ year: string;
94
+ subject: string;
95
+ class: string;
96
+ status: GoalDisplayStatus;
97
+ completionPercentage: number;
98
+ }
99
+ /**
100
+ * Goals history API complete response from /recommended-class/history
101
+ */
102
+ export interface GoalsHistoryApiResponse {
103
+ message: string;
104
+ data: {
105
+ goals: GoalHistoryItem[];
106
+ total: number;
107
+ };
108
+ }
109
+ /**
110
+ * Goal history filters for API query parameters
111
+ */
112
+ export interface GoalHistoryFilters {
113
+ page?: number;
114
+ limit?: number;
115
+ status?: GoalApiStatus;
116
+ search?: string;
117
+ startDate?: string;
118
+ finalDate?: string;
119
+ subjectId?: string;
120
+ schoolId?: string;
121
+ schoolIds?: string[];
122
+ classId?: string;
123
+ classIds?: string[];
124
+ studentIds?: string[];
125
+ sortBy?: 'createdAt' | 'finalDate' | 'title' | 'completionPercentage';
126
+ sortOrder?: 'asc' | 'desc';
127
+ }
128
+ /**
129
+ * Pagination info for goals history
130
+ */
131
+ export interface GoalHistoryPagination {
132
+ total: number;
133
+ page: number;
134
+ limit: number;
135
+ totalPages: number;
136
+ }
137
+ /**
138
+ * Filter option for dropdowns
139
+ * Extends with index signature to be compatible with CheckBoxGroup Item type
140
+ */
141
+ export interface GoalFilterOption {
142
+ id: string;
143
+ name: string;
144
+ [key: string]: unknown;
145
+ }
146
+ /**
147
+ * User data for filter options (schools, classes, subjects)
148
+ */
149
+ export interface GoalUserFilterData {
150
+ schools?: Array<{
151
+ id: string;
152
+ name: string;
153
+ }>;
154
+ classes?: Array<{
155
+ id: string;
156
+ name: string;
157
+ schoolId?: string;
158
+ }>;
159
+ subjects?: Array<{
160
+ id: string;
161
+ name: string;
162
+ }>;
163
+ schoolYears?: Array<{
164
+ id: string;
165
+ name: string;
166
+ }>;
167
+ }
168
+ /**
169
+ * Get status badge action based on goal display status
170
+ * @param status - Goal display status
171
+ * @returns Badge action type for styling
172
+ */
173
+ export declare const getGoalStatusBadgeAction: (status: GoalDisplayStatus) => GoalBadgeActionType;
174
+ /**
175
+ * Goal status options for filter (Vencida and Ativa)
176
+ */
177
+ export declare const GOAL_FILTER_STATUS_OPTIONS: GoalFilterOption[];
178
+ /**
179
+ * All goal status options
180
+ */
181
+ export declare const GOAL_STATUS_OPTIONS: GoalFilterOption[];
182
+ //# sourceMappingURL=recommendedLessons.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"recommendedLessons.d.ts","sourceRoot":"","sources":["../../src/types/recommendedLessons.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "analytica-frontend-lib",
3
- "version": "1.2.45",
3
+ "version": "1.2.47",
4
4
  "description": "Repositório público dos componentes utilizados nas plataformas da Analytica Ensino",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "./dist/index.js",
@@ -64,6 +64,7 @@
64
64
  "./questions-pdf-generator": "./dist/QuestionsPdfGenerator/index.js",
65
65
  "./quiz": "./dist/Quiz/index.js",
66
66
  "./radio": "./dist/Radio/index.js",
67
+ "./recommended-lessons-history": "./dist/RecommendedLessonsHistory/index.js",
67
68
  "./search": "./dist/Search/index.js",
68
69
  "./select": "./dist/Select/index.js",
69
70
  "./selection-button": "./dist/SelectionButton/index.js",