mario-education 2.4.39-admin → 2.4.39-beta
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/MarioFramework.Education/ClientApp/src/components/Loading/LoadLanguage.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/components/Questions/QuestionList.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/components/Questions/QuestionSelector.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/components/Select/SelectFilter.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/AdminTraining/hooks/useAdminTraning.d.ts +4 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/AdminTraining/views/AdminTraining.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/HeaderChart/HeaderChart.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/LearningStrategiesTable.d.ts +13 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/utils.d.ts +1 -1
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/hooks/useChartDatas.d.ts +19 -2
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/hooks/useDashboard.d.ts +6 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/QuestionBank/hooks/useQuestionDetail.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/TemplateSurvey/components/TemplateCateModal.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/TemplateSurvey/hooks/useTemplateCateDetail.d.ts +35 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/TemplateSurvey/hooks/useTemplateCateList.d.ts +9 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/TemplateSurvey/views/TemplateSurveyList.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Training/hooks/useTrainingLink.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/index.d.ts +3 -1
- package/dist/MarioFramework.Education/ClientApp/src/services/dashboardService.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/services/questionCategoryService.d.ts +5 -0
- package/dist/MarioFramework.Education/ClientApp/src/utils/constants.d.ts +8 -6
- package/dist/index.css +27 -7
- package/dist/index.js +2430 -1295
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2430 -1297
- package/dist/index.modern.js.map +1 -1
- package/package.json +6 -5
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import "react-datepicker/dist/react-datepicker.css";
|
|
2
3
|
import { PROPS_FILTERS_COMPONENT } from "../../utils/type";
|
|
3
4
|
declare const SelectFilter: ({ studentUserId, studentId, studentDefault, handleChangeFilters, name, icon, option, onChangeFilters, btnStyle, filter, teacherUserId, changeCurrentTeacherUserId }: PROPS_FILTERS_COMPONENT) => JSX.Element;
|
|
4
5
|
export default SelectFilter;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { DashboardFilter } from "../configs/types";
|
|
3
|
+
interface PropsType {
|
|
4
|
+
isOpen: boolean;
|
|
5
|
+
onClosed: () => void;
|
|
6
|
+
filter: any;
|
|
7
|
+
data: any;
|
|
8
|
+
getData: () => void;
|
|
9
|
+
changeFilter: (updatedFilter: any) => void;
|
|
10
|
+
filterDashboard: DashboardFilter;
|
|
11
|
+
}
|
|
12
|
+
declare const LearningStrategiesTable: ({ isOpen, onClosed, filter, data, getData, changeFilter, filterDashboard }: PropsType) => JSX.Element;
|
|
13
|
+
export default LearningStrategiesTable;
|
|
@@ -97,7 +97,7 @@ export declare const studentByGradeConvert: (newData: IStudentByGrade[]) => {
|
|
|
97
97
|
}[];
|
|
98
98
|
export declare const findTotalStudentByGrade: (data: IStudentByGrade[]) => number;
|
|
99
99
|
export declare const getConvertMinuteToHour: (timeSecond: any) => string;
|
|
100
|
-
export declare const readinesToLearnoptions: (seriesName: string[]) => ApexOptions;
|
|
100
|
+
export declare const readinesToLearnoptions: (seriesName: string[], data: any) => ApexOptions;
|
|
101
101
|
export declare const convertDataToSeriesBullderChart: (data: IReadinessToLearning[]) => {
|
|
102
102
|
name: string;
|
|
103
103
|
data: import("react").ReactText[][];
|
package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/hooks/useChartDatas.d.ts
CHANGED
|
@@ -2,7 +2,17 @@ import React from "react";
|
|
|
2
2
|
import { PROPS_FILTERS_COMPONENT } from "../../../utils/type";
|
|
3
3
|
import { TYPECHART } from "../configs/types";
|
|
4
4
|
declare const useChartDatas: () => {
|
|
5
|
-
chartDashBoards: {
|
|
5
|
+
chartDashBoards: ({
|
|
6
|
+
chartIndex: number;
|
|
7
|
+
id: string;
|
|
8
|
+
label: string;
|
|
9
|
+
children: (_: TYPECHART) => JSX.Element;
|
|
10
|
+
isShowChangeChart: boolean;
|
|
11
|
+
options: never[];
|
|
12
|
+
contentTooltip: string;
|
|
13
|
+
handleClickOpenTable: () => void;
|
|
14
|
+
} | {
|
|
15
|
+
chartIndex: number;
|
|
6
16
|
id: string;
|
|
7
17
|
label: string;
|
|
8
18
|
children: (typeChart: TYPECHART, isPDF?: boolean | undefined) => JSX.Element;
|
|
@@ -12,7 +22,8 @@ declare const useChartDatas: () => {
|
|
|
12
22
|
value: TYPECHART;
|
|
13
23
|
}[];
|
|
14
24
|
contentTooltip: string;
|
|
15
|
-
|
|
25
|
+
handleClickOpenTable?: undefined;
|
|
26
|
+
})[];
|
|
16
27
|
user: any;
|
|
17
28
|
filter: import("../configs/types").DashboardFilter;
|
|
18
29
|
LIST_FILTERS_LEFT: PROPS_FILTERS_COMPONENT[];
|
|
@@ -55,5 +66,11 @@ declare const useChartDatas: () => {
|
|
|
55
66
|
dataConvertedSafety: string[];
|
|
56
67
|
activeColumnSafety: boolean[];
|
|
57
68
|
avgSafety: number[];
|
|
69
|
+
learningStrategiesData: any;
|
|
70
|
+
openLearningStrategiesTable: boolean;
|
|
71
|
+
handleOpenCloseLearningStrategiesTable: () => void;
|
|
72
|
+
filterLearningStrategiesTable: any;
|
|
73
|
+
changeFiltersLearningStrategiesTable: (updatedFilter: any) => void;
|
|
74
|
+
getLearningStrategiesTableData: () => Promise<void>;
|
|
58
75
|
};
|
|
59
76
|
export default useChartDatas;
|
package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/hooks/useDashboard.d.ts
CHANGED
|
@@ -53,5 +53,11 @@ declare const useDashboard: () => {
|
|
|
53
53
|
dataConvertedSafety: string[];
|
|
54
54
|
monthsSafety: string[];
|
|
55
55
|
activeColumnSafety: boolean[];
|
|
56
|
+
learningStrategiesData: any;
|
|
57
|
+
openLearningStrategiesTable: boolean;
|
|
58
|
+
handleOpenCloseLearningStrategiesTable: () => void;
|
|
59
|
+
filterLearningStrategiesTable: any;
|
|
60
|
+
changeFiltersLearningStrategiesTable: (updatedFilter: any) => void;
|
|
61
|
+
getLearningStrategiesTableData: () => Promise<void>;
|
|
56
62
|
};
|
|
57
63
|
export default useDashboard;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare type questionCateDetail = {
|
|
3
|
+
name: string;
|
|
4
|
+
questionIds?: number[];
|
|
5
|
+
};
|
|
6
|
+
declare type TemplateQuestion = {
|
|
7
|
+
id: number;
|
|
8
|
+
text: string;
|
|
9
|
+
};
|
|
10
|
+
declare const useTemplateCateDetail: () => {
|
|
11
|
+
id: number;
|
|
12
|
+
setId: import("react").Dispatch<import("react").SetStateAction<number>>;
|
|
13
|
+
questionCateDetail: questionCateDetail;
|
|
14
|
+
confirmData: (values: any, cb: any) => Promise<void>;
|
|
15
|
+
initValue: questionCateDetail;
|
|
16
|
+
reset: () => void;
|
|
17
|
+
edited: boolean;
|
|
18
|
+
setEdited: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
19
|
+
setEditedTrue: () => Promise<void>;
|
|
20
|
+
setEditedFalse: () => Promise<void>;
|
|
21
|
+
categoryId: number;
|
|
22
|
+
setCategoryId: import("react").Dispatch<import("react").SetStateAction<number>>;
|
|
23
|
+
questionSelectorValue: {
|
|
24
|
+
id: number;
|
|
25
|
+
value: number;
|
|
26
|
+
label: string;
|
|
27
|
+
text: string;
|
|
28
|
+
} | null;
|
|
29
|
+
setTemporaryQuestion: import("react").Dispatch<import("react").SetStateAction<TemplateQuestion | null>>;
|
|
30
|
+
addQuestion: () => void;
|
|
31
|
+
listQuestions: TemplateQuestion[];
|
|
32
|
+
setListQuestions: import("react").Dispatch<import("react").SetStateAction<TemplateQuestion[]>>;
|
|
33
|
+
removeQuestion: (questionId: number) => void;
|
|
34
|
+
};
|
|
35
|
+
export default useTemplateCateDetail;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const useTemplateCateList: () => {
|
|
2
|
+
questionCateList: any;
|
|
3
|
+
totalItems: any;
|
|
4
|
+
filters: import("mario-core").Filter;
|
|
5
|
+
changeFilters: (updatedFilters: any) => void;
|
|
6
|
+
getData: () => Promise<void>;
|
|
7
|
+
removeData: (id: number) => void;
|
|
8
|
+
};
|
|
9
|
+
export default useTemplateCateList;
|
|
@@ -29,4 +29,6 @@ import CompareTeacher from "./containers/CompareTeacher/views/CompareTeacher";
|
|
|
29
29
|
import Dashboard from "./containers/Dashboard/views/Dashboard";
|
|
30
30
|
import SessionTemplateList from "./containers/SessionTemplate/views/SessionTemplateList";
|
|
31
31
|
import SessionTemplateGeneralClassList from "./containers/SessionTemplateGeneralClass/views/SessionTemplateGeneralClassList";
|
|
32
|
-
|
|
32
|
+
import LoadLanguage from "./components/Loading/LoadLanguage";
|
|
33
|
+
import AdminTraining from "./containers/AdminTraining/views/AdminTraining";
|
|
34
|
+
export { ClassList, ConferenceRubricList, ConferenceRubricDetail, SuggestionList, LearningStrategyList, SetupContainer, QuestionBankList, ReflectionFormList, ReflectionContainer, QuestionDetail, SubjectList, LearningSupportCategoryList, BadgeList, GoalExampleList, TutorialScreenContainer, FeedbackList, AssessmentList, QuestionBankContainer, QuestionCategoryList, AssignmentList, AssessmentAssignmentContainer, SessionTemplateContainer, SessionTemplateDetail, SessionTemplateGeneralClassDetail, CustomAlertList, CertificateContainer, CompareTeacher, AssetLog, SessionTemplateList, SessionTemplateGeneralClassList, Dashboard, LoadLanguage, AdminTraining };
|
|
@@ -18,3 +18,4 @@ export declare const getStudentByAge: (filter: any) => Promise<import("axios").A
|
|
|
18
18
|
export declare const getStudentByGender: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
19
19
|
export declare const getGrades: (studentUserId: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
20
20
|
export declare const getBandScore: () => Promise<import("axios").AxiosResponse<any>>;
|
|
21
|
+
export declare const getLearningStrategiesTableApi: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -4,3 +4,8 @@ export declare const getById: (id: number) => Promise<import("axios").AxiosRespo
|
|
|
4
4
|
export declare const create: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
5
5
|
export declare const update: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
6
6
|
export declare const remove: (id: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
7
|
+
export declare const getSurvey: (filter: Filter) => Promise<import("axios").AxiosResponse<any>>;
|
|
8
|
+
export declare const getSurveyById: (id: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
9
|
+
export declare const createSurvey: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
10
|
+
export declare const updateSurvey: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
11
|
+
export declare const removeSurvey: (id: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -7,10 +7,12 @@ export declare const CONFERENCE_RUBRIC_TYPES: {
|
|
|
7
7
|
};
|
|
8
8
|
export declare const GENDER_FILTER: string[];
|
|
9
9
|
export declare enum FILTER_NAME {
|
|
10
|
-
Calendar = "
|
|
11
|
-
Gender = "
|
|
12
|
-
Grade = "
|
|
13
|
-
BandScore = "
|
|
14
|
-
StudentName = "
|
|
15
|
-
TeacherName = "
|
|
10
|
+
Calendar = "calendar",
|
|
11
|
+
Gender = "gender",
|
|
12
|
+
Grade = "grade",
|
|
13
|
+
BandScore = "current_grade",
|
|
14
|
+
StudentName = "student_name",
|
|
15
|
+
TeacherName = "teacher_name",
|
|
16
|
+
StartDate = "start_date",
|
|
17
|
+
EndDate = "end_date"
|
|
16
18
|
}
|
package/dist/index.css
CHANGED
|
@@ -180,6 +180,22 @@ tbody._b-AXV tr {
|
|
|
180
180
|
margin-bottom: 0;
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
+
._I8kqz {
|
|
184
|
+
position: absolute;
|
|
185
|
+
z-index: 999;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
._3xuSa {
|
|
189
|
+
display: flex;
|
|
190
|
+
align-items: center;
|
|
191
|
+
justify-content: flex-end;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
._15ep6 {
|
|
195
|
+
display: flex;
|
|
196
|
+
width: 40%;
|
|
197
|
+
padding-bottom: 10px;
|
|
198
|
+
}
|
|
183
199
|
._3DVMZ {
|
|
184
200
|
display: flex;
|
|
185
201
|
flex: 0 0 17%;
|
|
@@ -471,7 +487,7 @@ h6._3zOGW {
|
|
|
471
487
|
background: #FFFFFF;
|
|
472
488
|
border-radius: 8px;
|
|
473
489
|
padding: 20px;
|
|
474
|
-
cursor: pointer;
|
|
490
|
+
/* cursor: pointer; */
|
|
475
491
|
}
|
|
476
492
|
|
|
477
493
|
._IpsVf {}
|
|
@@ -506,23 +522,27 @@ h6._3zOGW {
|
|
|
506
522
|
}
|
|
507
523
|
|
|
508
524
|
._3H5Ly {
|
|
509
|
-
padding: 6px 12px;
|
|
525
|
+
padding: 6px 12px 6px 0px;
|
|
510
526
|
border-radius: 0 4px 4px 0;
|
|
511
|
-
background: #
|
|
512
|
-
color: #
|
|
527
|
+
background: #336DDA;
|
|
528
|
+
color: #fff;
|
|
513
529
|
}
|
|
514
530
|
|
|
515
531
|
._J_n-D {
|
|
516
|
-
padding: 6px;
|
|
532
|
+
padding: 5px 8px 7px 6px;
|
|
517
533
|
border-radius: 4px 0 0 4px;
|
|
518
|
-
background: #
|
|
534
|
+
background: #336DDA;
|
|
519
535
|
}
|
|
520
536
|
|
|
521
537
|
._2vtSi ._3AALV {
|
|
522
538
|
font-size: 16px;
|
|
523
539
|
}
|
|
524
540
|
|
|
525
|
-
.
|
|
541
|
+
._11Xjn {
|
|
542
|
+
cursor: pointer;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
._2vtSi ._2htKu {
|
|
526
546
|
cursor: pointer;
|
|
527
547
|
}
|
|
528
548
|
|