@hed-hog/lms 0.0.304 → 0.0.305
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/README.md +413 -401
- package/dist/certificate/certificate.controller.d.ts +90 -0
- package/dist/certificate/certificate.controller.d.ts.map +1 -0
- package/dist/certificate/certificate.controller.js +121 -0
- package/dist/certificate/certificate.controller.js.map +1 -0
- package/dist/certificate/certificate.module.d.ts +3 -0
- package/dist/certificate/certificate.module.d.ts.map +1 -0
- package/dist/certificate/certificate.module.js +26 -0
- package/dist/certificate/certificate.module.js.map +1 -0
- package/dist/certificate/certificate.service.d.ts +115 -0
- package/dist/certificate/certificate.service.d.ts.map +1 -0
- package/dist/certificate/certificate.service.js +343 -0
- package/dist/certificate/certificate.service.js.map +1 -0
- package/dist/certificate/dto/create-certificate-template.dto.d.ts +8 -0
- package/dist/certificate/dto/create-certificate-template.dto.d.ts.map +1 -0
- package/dist/certificate/dto/create-certificate-template.dto.js +44 -0
- package/dist/certificate/dto/create-certificate-template.dto.js.map +1 -0
- package/dist/certificate/dto/update-certificate-template.dto.d.ts +6 -0
- package/dist/certificate/dto/update-certificate-template.dto.d.ts.map +1 -0
- package/dist/certificate/dto/update-certificate-template.dto.js +9 -0
- package/dist/certificate/dto/update-certificate-template.dto.js.map +1 -0
- package/dist/class-group/class-group.controller.d.ts +305 -0
- package/dist/class-group/class-group.controller.d.ts.map +1 -0
- package/dist/class-group/class-group.controller.js +257 -0
- package/dist/class-group/class-group.controller.js.map +1 -0
- package/dist/class-group/class-group.module.d.ts +3 -0
- package/dist/class-group/class-group.module.d.ts.map +1 -0
- package/dist/class-group/class-group.module.js +25 -0
- package/dist/class-group/class-group.module.js.map +1 -0
- package/dist/class-group/class-group.service.d.ts +354 -0
- package/dist/class-group/class-group.service.d.ts.map +1 -0
- package/dist/class-group/class-group.service.js +1356 -0
- package/dist/class-group/class-group.service.js.map +1 -0
- package/dist/class-group/dto/create-class-group.dto.d.ts +33 -0
- package/dist/class-group/dto/create-class-group.dto.d.ts.map +1 -0
- package/dist/class-group/dto/create-class-group.dto.js +165 -0
- package/dist/class-group/dto/create-class-group.dto.js.map +1 -0
- package/dist/class-group/dto/create-session.dto.d.ts +22 -0
- package/dist/class-group/dto/create-session.dto.d.ts.map +1 -0
- package/dist/class-group/dto/create-session.dto.js +117 -0
- package/dist/class-group/dto/create-session.dto.js.map +1 -0
- package/dist/class-group/dto/enrollment.dto.d.ts +22 -0
- package/dist/class-group/dto/enrollment.dto.d.ts.map +1 -0
- package/dist/class-group/dto/enrollment.dto.js +89 -0
- package/dist/class-group/dto/enrollment.dto.js.map +1 -0
- package/dist/class-group/dto/update-class-group.dto.d.ts +6 -0
- package/dist/class-group/dto/update-class-group.dto.d.ts.map +1 -0
- package/dist/class-group/dto/update-class-group.dto.js +9 -0
- package/dist/class-group/dto/update-class-group.dto.js.map +1 -0
- package/dist/class-group/dto/update-session.dto.d.ts +7 -0
- package/dist/class-group/dto/update-session.dto.d.ts.map +1 -0
- package/dist/class-group/dto/update-session.dto.js +24 -0
- package/dist/class-group/dto/update-session.dto.js.map +1 -0
- package/dist/course/course-structure.controller.d.ts +127 -0
- package/dist/course/course-structure.controller.d.ts.map +1 -0
- package/dist/course/course-structure.controller.js +115 -0
- package/dist/course/course-structure.controller.js.map +1 -0
- package/dist/course/course-structure.service.d.ts +142 -0
- package/dist/course/course-structure.service.d.ts.map +1 -0
- package/dist/course/course-structure.service.js +445 -0
- package/dist/course/course-structure.service.js.map +1 -0
- package/dist/course/course.controller.d.ts +195 -0
- package/dist/course/course.controller.d.ts.map +1 -0
- package/dist/course/course.controller.js +104 -0
- package/dist/course/course.controller.js.map +1 -0
- package/dist/course/course.module.d.ts +3 -0
- package/dist/course/course.module.d.ts.map +1 -0
- package/dist/course/course.module.js +28 -0
- package/dist/course/course.module.js.map +1 -0
- package/dist/course/course.service.d.ts +215 -0
- package/dist/course/course.service.d.ts.map +1 -0
- package/dist/course/course.service.js +743 -0
- package/dist/course/course.service.js.map +1 -0
- package/dist/course/dto/create-course-structure-lesson.dto.d.ts +24 -0
- package/dist/course/dto/create-course-structure-lesson.dto.d.ts.map +1 -0
- package/dist/course/dto/create-course-structure-lesson.dto.js +118 -0
- package/dist/course/dto/create-course-structure-lesson.dto.js.map +1 -0
- package/dist/course/dto/create-course-structure-session.dto.d.ts +7 -0
- package/dist/course/dto/create-course-structure-session.dto.d.ts.map +1 -0
- package/dist/course/dto/create-course-structure-session.dto.js +40 -0
- package/dist/course/dto/create-course-structure-session.dto.js.map +1 -0
- package/dist/course/dto/create-course.dto.d.ts +26 -0
- package/dist/course/dto/create-course.dto.d.ts.map +1 -0
- package/dist/course/dto/create-course.dto.js +138 -0
- package/dist/course/dto/create-course.dto.js.map +1 -0
- package/dist/course/dto/update-course-structure-lesson.dto.d.ts +6 -0
- package/dist/course/dto/update-course-structure-lesson.dto.d.ts.map +1 -0
- package/dist/course/dto/update-course-structure-lesson.dto.js +9 -0
- package/dist/course/dto/update-course-structure-lesson.dto.js.map +1 -0
- package/dist/course/dto/update-course-structure-session.dto.d.ts +6 -0
- package/dist/course/dto/update-course-structure-session.dto.d.ts.map +1 -0
- package/dist/course/dto/update-course-structure-session.dto.js +9 -0
- package/dist/course/dto/update-course-structure-session.dto.js.map +1 -0
- package/dist/course/dto/update-course.dto.d.ts +6 -0
- package/dist/course/dto/update-course.dto.d.ts.map +1 -0
- package/dist/course/dto/update-course.dto.js +9 -0
- package/dist/course/dto/update-course.dto.js.map +1 -0
- package/dist/dashboard/dashboard.controller.d.ts +101 -0
- package/dist/dashboard/dashboard.controller.d.ts.map +1 -0
- package/dist/dashboard/dashboard.controller.js +40 -0
- package/dist/dashboard/dashboard.controller.js.map +1 -0
- package/dist/dashboard/dashboard.module.d.ts +3 -0
- package/dist/dashboard/dashboard.module.d.ts.map +1 -0
- package/dist/dashboard/dashboard.module.js +25 -0
- package/dist/dashboard/dashboard.module.js.map +1 -0
- package/dist/dashboard/dashboard.service.d.ts +130 -0
- package/dist/dashboard/dashboard.service.d.ts.map +1 -0
- package/dist/dashboard/dashboard.service.js +626 -0
- package/dist/dashboard/dashboard.service.js.map +1 -0
- package/dist/enterprise/dto/add-enterprise-class-group.dto.d.ts +4 -0
- package/dist/enterprise/dto/add-enterprise-class-group.dto.d.ts.map +1 -0
- package/dist/enterprise/dto/add-enterprise-class-group.dto.js +22 -0
- package/dist/enterprise/dto/add-enterprise-class-group.dto.js.map +1 -0
- package/dist/enterprise/dto/add-enterprise-course.dto.d.ts +5 -0
- package/dist/enterprise/dto/add-enterprise-course.dto.d.ts.map +1 -0
- package/dist/enterprise/dto/add-enterprise-course.dto.js +27 -0
- package/dist/enterprise/dto/add-enterprise-course.dto.js.map +1 -0
- package/dist/enterprise/dto/add-enterprise-lead.dto.d.ts +4 -0
- package/dist/enterprise/dto/add-enterprise-lead.dto.d.ts.map +1 -0
- package/dist/enterprise/dto/add-enterprise-lead.dto.js +22 -0
- package/dist/enterprise/dto/add-enterprise-lead.dto.js.map +1 -0
- package/dist/enterprise/dto/add-enterprise-student.dto.d.ts +5 -0
- package/dist/enterprise/dto/add-enterprise-student.dto.d.ts.map +1 -0
- package/dist/enterprise/dto/add-enterprise-student.dto.js +27 -0
- package/dist/enterprise/dto/add-enterprise-student.dto.js.map +1 -0
- package/dist/enterprise/dto/add-enterprise-user.dto.d.ts +7 -0
- package/dist/enterprise/dto/add-enterprise-user.dto.d.ts.map +1 -0
- package/dist/enterprise/dto/add-enterprise-user.dto.js +36 -0
- package/dist/enterprise/dto/add-enterprise-user.dto.js.map +1 -0
- package/dist/enterprise/dto/create-enterprise.dto.d.ts +10 -0
- package/dist/enterprise/dto/create-enterprise.dto.d.ts.map +1 -0
- package/dist/enterprise/dto/create-enterprise.dto.js +54 -0
- package/dist/enterprise/dto/create-enterprise.dto.js.map +1 -0
- package/dist/enterprise/dto/update-enterprise-student.dto.d.ts +4 -0
- package/dist/enterprise/dto/update-enterprise-student.dto.d.ts.map +1 -0
- package/dist/enterprise/dto/update-enterprise-student.dto.js +22 -0
- package/dist/enterprise/dto/update-enterprise-student.dto.js.map +1 -0
- package/dist/enterprise/dto/update-enterprise-user.dto.d.ts +5 -0
- package/dist/enterprise/dto/update-enterprise-user.dto.d.ts.map +1 -0
- package/dist/enterprise/dto/update-enterprise-user.dto.js +27 -0
- package/dist/enterprise/dto/update-enterprise-user.dto.js.map +1 -0
- package/dist/enterprise/dto/update-enterprise.dto.d.ts +6 -0
- package/dist/enterprise/dto/update-enterprise.dto.d.ts.map +1 -0
- package/dist/enterprise/dto/update-enterprise.dto.js +9 -0
- package/dist/enterprise/dto/update-enterprise.dto.js.map +1 -0
- package/dist/enterprise/enterprise.controller.d.ts +269 -0
- package/dist/enterprise/enterprise.controller.d.ts.map +1 -0
- package/dist/enterprise/enterprise.controller.js +311 -0
- package/dist/enterprise/enterprise.controller.js.map +1 -0
- package/dist/enterprise/enterprise.module.d.ts +3 -0
- package/dist/enterprise/enterprise.module.d.ts.map +1 -0
- package/dist/enterprise/enterprise.module.js +25 -0
- package/dist/enterprise/enterprise.module.js.map +1 -0
- package/dist/enterprise/enterprise.service.d.ts +282 -0
- package/dist/enterprise/enterprise.service.d.ts.map +1 -0
- package/dist/enterprise/enterprise.service.js +627 -0
- package/dist/enterprise/enterprise.service.js.map +1 -0
- package/dist/evaluation/evaluation.controller.d.ts +56 -0
- package/dist/evaluation/evaluation.controller.d.ts.map +1 -0
- package/dist/evaluation/evaluation.controller.js +76 -0
- package/dist/evaluation/evaluation.controller.js.map +1 -0
- package/dist/evaluation/evaluation.module.d.ts +3 -0
- package/dist/evaluation/evaluation.module.d.ts.map +1 -0
- package/dist/evaluation/evaluation.module.js +25 -0
- package/dist/evaluation/evaluation.module.js.map +1 -0
- package/dist/evaluation/evaluation.service.d.ts +67 -0
- package/dist/evaluation/evaluation.service.d.ts.map +1 -0
- package/dist/evaluation/evaluation.service.js +378 -0
- package/dist/evaluation/evaluation.service.js.map +1 -0
- package/dist/exam/dto/create-exam-question.dto.d.ts +25 -0
- package/dist/exam/dto/create-exam-question.dto.d.ts.map +1 -0
- package/dist/exam/dto/create-exam-question.dto.js +117 -0
- package/dist/exam/dto/create-exam-question.dto.js.map +1 -0
- package/dist/exam/dto/create-exam.dto.d.ts +11 -0
- package/dist/exam/dto/create-exam.dto.d.ts.map +1 -0
- package/dist/exam/dto/create-exam.dto.js +63 -0
- package/dist/exam/dto/create-exam.dto.js.map +1 -0
- package/dist/exam/dto/reorder-exam-questions.dto.d.ts +4 -0
- package/dist/exam/dto/reorder-exam-questions.dto.d.ts.map +1 -0
- package/dist/exam/dto/reorder-exam-questions.dto.js +23 -0
- package/dist/exam/dto/reorder-exam-questions.dto.js.map +1 -0
- package/dist/exam/dto/save-exam-attempt-answers.dto.d.ts +14 -0
- package/dist/exam/dto/save-exam-attempt-answers.dto.d.ts.map +1 -0
- package/dist/exam/dto/save-exam-attempt-answers.dto.js +68 -0
- package/dist/exam/dto/save-exam-attempt-answers.dto.js.map +1 -0
- package/dist/exam/dto/start-exam-attempt.dto.d.ts +4 -0
- package/dist/exam/dto/start-exam-attempt.dto.d.ts.map +1 -0
- package/dist/exam/dto/start-exam-attempt.dto.js +23 -0
- package/dist/exam/dto/start-exam-attempt.dto.js.map +1 -0
- package/dist/exam/dto/submit-exam-attempt.dto.d.ts +5 -0
- package/dist/exam/dto/submit-exam-attempt.dto.d.ts.map +1 -0
- package/dist/exam/dto/submit-exam-attempt.dto.js +23 -0
- package/dist/exam/dto/submit-exam-attempt.dto.js.map +1 -0
- package/dist/exam/dto/update-exam-question.dto.d.ts +6 -0
- package/dist/exam/dto/update-exam-question.dto.d.ts.map +1 -0
- package/dist/exam/dto/update-exam-question.dto.js +9 -0
- package/dist/exam/dto/update-exam-question.dto.js.map +1 -0
- package/dist/exam/dto/update-exam.dto.d.ts +6 -0
- package/dist/exam/dto/update-exam.dto.d.ts.map +1 -0
- package/dist/exam/dto/update-exam.dto.js +9 -0
- package/dist/exam/dto/update-exam.dto.js.map +1 -0
- package/dist/exam/exam-attempt.controller.d.ts +273 -0
- package/dist/exam/exam-attempt.controller.d.ts.map +1 -0
- package/dist/exam/exam-attempt.controller.js +84 -0
- package/dist/exam/exam-attempt.controller.js.map +1 -0
- package/dist/exam/exam-attempt.service.d.ts +302 -0
- package/dist/exam/exam-attempt.service.d.ts.map +1 -0
- package/dist/exam/exam-attempt.service.js +776 -0
- package/dist/exam/exam-attempt.service.js.map +1 -0
- package/dist/exam/exam.controller.d.ts +162 -0
- package/dist/exam/exam.controller.d.ts.map +1 -0
- package/dist/exam/exam.controller.js +158 -0
- package/dist/exam/exam.controller.js.map +1 -0
- package/dist/exam/exam.module.d.ts +3 -0
- package/dist/exam/exam.module.d.ts.map +1 -0
- package/dist/exam/exam.module.js +27 -0
- package/dist/exam/exam.module.js.map +1 -0
- package/dist/exam/exam.service.d.ts +179 -0
- package/dist/exam/exam.service.d.ts.map +1 -0
- package/dist/exam/exam.service.js +597 -0
- package/dist/exam/exam.service.js.map +1 -0
- package/dist/index.d.ts +28 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +28 -0
- package/dist/index.js.map +1 -1
- package/dist/instructor/dto/create-instructor.dto.d.ts +10 -0
- package/dist/instructor/dto/create-instructor.dto.d.ts.map +1 -0
- package/dist/instructor/dto/create-instructor.dto.js +55 -0
- package/dist/instructor/dto/create-instructor.dto.js.map +1 -0
- package/dist/instructor/dto/update-instructor.dto.d.ts +9 -0
- package/dist/instructor/dto/update-instructor.dto.d.ts.map +1 -0
- package/dist/instructor/dto/update-instructor.dto.js +51 -0
- package/dist/instructor/dto/update-instructor.dto.js.map +1 -0
- package/dist/instructor/instructor.controller.d.ts +52 -0
- package/dist/instructor/instructor.controller.d.ts.map +1 -0
- package/dist/instructor/instructor.controller.js +98 -0
- package/dist/instructor/instructor.controller.js.map +1 -0
- package/dist/instructor/instructor.module.d.ts +3 -0
- package/dist/instructor/instructor.module.d.ts.map +1 -0
- package/dist/instructor/instructor.module.js +25 -0
- package/dist/instructor/instructor.module.js.map +1 -0
- package/dist/instructor/instructor.service.d.ts +79 -0
- package/dist/instructor/instructor.service.d.ts.map +1 -0
- package/dist/instructor/instructor.service.js +528 -0
- package/dist/instructor/instructor.service.js.map +1 -0
- package/dist/lms.module.d.ts.map +1 -1
- package/dist/lms.module.js +36 -4
- package/dist/lms.module.js.map +1 -1
- package/dist/reports/reports.controller.d.ts +69 -0
- package/dist/reports/reports.controller.d.ts.map +1 -0
- package/dist/reports/reports.controller.js +40 -0
- package/dist/reports/reports.controller.js.map +1 -0
- package/dist/reports/reports.module.d.ts +3 -0
- package/dist/reports/reports.module.d.ts.map +1 -0
- package/dist/reports/reports.module.js +25 -0
- package/dist/reports/reports.module.js.map +1 -0
- package/dist/reports/reports.service.d.ts +80 -0
- package/dist/reports/reports.service.d.ts.map +1 -0
- package/dist/reports/reports.service.js +366 -0
- package/dist/reports/reports.service.js.map +1 -0
- package/dist/training/dto/create-training.dto.d.ts +19 -0
- package/dist/training/dto/create-training.dto.d.ts.map +1 -0
- package/dist/training/dto/create-training.dto.js +98 -0
- package/dist/training/dto/create-training.dto.js.map +1 -0
- package/dist/training/dto/update-training.dto.d.ts +6 -0
- package/dist/training/dto/update-training.dto.d.ts.map +1 -0
- package/dist/training/dto/update-training.dto.js +9 -0
- package/dist/training/dto/update-training.dto.js.map +1 -0
- package/dist/training/training.controller.d.ts +195 -0
- package/dist/training/training.controller.d.ts.map +1 -0
- package/dist/training/training.controller.js +104 -0
- package/dist/training/training.controller.js.map +1 -0
- package/dist/training/training.module.d.ts +3 -0
- package/dist/training/training.module.d.ts.map +1 -0
- package/dist/training/training.module.js +25 -0
- package/dist/training/training.module.js.map +1 -0
- package/dist/training/training.service.d.ts +213 -0
- package/dist/training/training.service.d.ts.map +1 -0
- package/dist/training/training.service.js +497 -0
- package/dist/training/training.service.js.map +1 -0
- package/hedhog/data/dashboard.yaml +6 -0
- package/hedhog/data/dashboard_component.yaml +153 -0
- package/hedhog/data/dashboard_component_role.yaml +97 -0
- package/hedhog/data/dashboard_item.yaml +167 -0
- package/hedhog/data/dashboard_role.yaml +6 -0
- package/hedhog/data/instructor_qualification.yaml +16 -0
- package/hedhog/data/menu.yaml +129 -19
- package/hedhog/data/role.yaml +25 -1
- package/hedhog/data/route.yaml +867 -0
- package/hedhog/frontend/app/_components/class-form-sheet.tsx.ejs +1992 -0
- package/hedhog/frontend/app/_components/course-form-sheet.tsx.ejs +480 -0
- package/hedhog/frontend/app/_components/create-lms-instructor-sheet.tsx.ejs +591 -0
- package/hedhog/frontend/app/_components/create-lms-person-sheet.tsx.ejs +164 -0
- package/hedhog/frontend/app/_components/create-lms-student-person-sheet.tsx.ejs +120 -0
- package/hedhog/frontend/app/_components/lms-class-calendar.tsx.ejs +272 -0
- package/hedhog/frontend/app/_components/mobile-calendar.tsx.ejs +277 -0
- package/hedhog/frontend/app/_lib/editor/canvasInstance.ts.ejs +48 -0
- package/hedhog/frontend/app/_lib/editor/pctHelpers.ts.ejs +50 -0
- package/hedhog/frontend/app/_lib/editor/templateSerializer.ts.ejs +268 -0
- package/hedhog/frontend/app/_lib/editor/types.ts.ejs +94 -0
- package/hedhog/frontend/app/_lib/store/useTemplateStore.ts.ejs +284 -0
- package/hedhog/frontend/app/certificates/issued/page.tsx.ejs +638 -0
- package/hedhog/frontend/app/certificates/models/CanvasStage.tsx.ejs +916 -0
- package/hedhog/frontend/app/certificates/models/LeftPanel.tsx.ejs +200 -0
- package/hedhog/frontend/app/certificates/models/RightPanel.tsx.ejs +769 -0
- package/hedhog/frontend/app/certificates/models/TemplateEditorPage.tsx.ejs +104 -0
- package/hedhog/frontend/app/certificates/models/TopBar.tsx.ejs +354 -0
- package/hedhog/frontend/app/certificates/models/editor/page.tsx.ejs +5 -0
- package/hedhog/frontend/app/certificates/models/page.tsx.ejs +883 -0
- package/hedhog/frontend/app/classes/[id]/_components/event-summary-popover.tsx.ejs +279 -0
- package/hedhog/frontend/app/classes/[id]/_components/quick-create-session-popover.tsx.ejs +1027 -0
- package/hedhog/frontend/app/classes/[id]/page.tsx.ejs +3130 -993
- package/hedhog/frontend/app/classes/page.tsx.ejs +2731 -759
- package/hedhog/frontend/app/courses/[id]/_components/CourseCertificateCard.tsx.ejs +80 -0
- package/hedhog/frontend/app/courses/[id]/_components/CourseClassificationCard.tsx.ejs +226 -0
- package/hedhog/frontend/app/courses/[id]/_components/CourseContentCard.tsx.ejs +71 -0
- package/hedhog/frontend/app/courses/[id]/_components/CourseDangerZoneCard.tsx.ejs +42 -0
- package/hedhog/frontend/app/courses/[id]/_components/CourseFlagsCard.tsx.ejs +111 -0
- package/hedhog/frontend/app/courses/[id]/_components/CourseMainInfoCard.tsx.ejs +113 -0
- package/hedhog/frontend/app/courses/[id]/_components/CourseMediaCard.tsx.ejs +215 -0
- package/hedhog/frontend/app/courses/[id]/_components/CourseMultiEntityPicker.tsx.ejs +236 -0
- package/hedhog/frontend/app/courses/[id]/_components/CourseRelationsCard.tsx.ejs +141 -0
- package/hedhog/frontend/app/courses/[id]/_components/CourseSectionCard.tsx.ejs +57 -0
- package/hedhog/frontend/app/courses/[id]/_components/CourseSummaryCard.tsx.ejs +60 -0
- package/hedhog/frontend/app/courses/[id]/_components/course-edit-types.ts.ejs +33 -0
- package/hedhog/frontend/app/courses/[id]/page.tsx.ejs +933 -1103
- package/hedhog/frontend/app/courses/[id]/structure/page.tsx.ejs +699 -117
- package/hedhog/frontend/app/courses/page.tsx.ejs +1018 -1042
- package/hedhog/frontend/app/enterprise/[id]/page.tsx.ejs +317 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-activity-panel.tsx.ejs +88 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-admin-create-sheet.tsx.ejs +318 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-administrators-tab.tsx.ejs +332 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-class-create-sheet.tsx.ejs +57 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-classes-tab.tsx.ejs +390 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-company-identity-card.tsx.ejs +112 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-course-create-sheet.tsx.ejs +183 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-courses-tab.tsx.ejs +363 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-detail-constants.ts.ejs +88 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-detail-sheet.tsx.ejs +548 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-detail-utils.ts.ejs +33 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-mocks.ts.ejs +266 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-person-picker.ts.ejs +31 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-progress-bar.tsx.ejs +21 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-related-tab.tsx.ejs +187 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-sheet.tsx.ejs +397 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-student-create-sheet.tsx.ejs +167 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-students-tab.tsx.ejs +267 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-system-user-picker.ts.ejs +42 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-types.ts.ejs +96 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-user-create-sheet.tsx.ejs +207 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-user-distribution-chart.tsx.ejs +149 -0
- package/hedhog/frontend/app/enterprise/page.tsx.ejs +596 -0
- package/hedhog/frontend/app/evaluations/page.tsx.ejs +1250 -0
- package/hedhog/frontend/app/exams/[id]/attempt/page.tsx.ejs +642 -196
- package/hedhog/frontend/app/exams/[id]/page.tsx.ejs +11 -0
- package/hedhog/frontend/app/exams/[id]/questions/page.tsx.ejs +1316 -436
- package/hedhog/frontend/app/exams/page.tsx.ejs +799 -546
- package/hedhog/frontend/app/layout.tsx.ejs +5 -0
- package/hedhog/frontend/app/page.tsx.ejs +5 -1222
- package/hedhog/frontend/app/reports/courses/page.tsx.ejs +843 -0
- package/hedhog/frontend/app/reports/dashboard/page.tsx.ejs +890 -0
- package/hedhog/frontend/app/reports/page.tsx.ejs +802 -808
- package/hedhog/frontend/app/reports/students/page.tsx.ejs +772 -0
- package/hedhog/frontend/app/training/page.tsx.ejs +1873 -628
- package/hedhog/frontend/messages/en.json +1606 -111
- package/hedhog/frontend/messages/pt.json +1636 -134
- package/hedhog/frontend/widgets/active-classes-kpi.tsx.ejs +74 -0
- package/hedhog/frontend/widgets/active-courses-kpi.tsx.ejs +74 -0
- package/hedhog/frontend/widgets/approval-rate-kpi.tsx.ejs +81 -0
- package/hedhog/frontend/widgets/category-distribution-chart.tsx.ejs +119 -0
- package/hedhog/frontend/widgets/class-calendar.tsx.ejs +440 -0
- package/hedhog/frontend/widgets/completion-rate-kpi.tsx.ejs +81 -0
- package/hedhog/frontend/widgets/engagement-chart.tsx.ejs +120 -0
- package/hedhog/frontend/widgets/footer-summary.tsx.ejs +80 -0
- package/hedhog/frontend/widgets/issued-certificates-kpi.tsx.ejs +74 -0
- package/hedhog/frontend/widgets/latest-enrollments.tsx.ejs +166 -0
- package/hedhog/frontend/widgets/student-growth-chart.tsx.ejs +89 -0
- package/hedhog/frontend/widgets/top-courses-chart.tsx.ejs +104 -0
- package/hedhog/frontend/widgets/total-students-kpi.tsx.ejs +78 -0
- package/hedhog/frontend/widgets/upcoming-classes.tsx.ejs +152 -0
- package/hedhog/table/course.yaml +28 -10
- package/hedhog/table/course_class_group.yaml +8 -0
- package/hedhog/table/course_class_session.yaml +33 -0
- package/hedhog/table/course_instructor.yaml +27 -0
- package/hedhog/table/enterprise.yaml +29 -0
- package/hedhog/table/enterprise_class_group.yaml +20 -0
- package/hedhog/table/enterprise_course.yaml +23 -0
- package/hedhog/table/enterprise_student.yaml +24 -0
- package/hedhog/table/enterprise_user.yaml +35 -0
- package/hedhog/table/instructor_qualification.yaml +26 -0
- package/hedhog/table/instructor_qualification_assignment.yaml +22 -0
- package/hedhog/table/question.yaml +6 -0
- package/package.json +7 -7
- package/src/certificate/certificate.controller.ts +83 -0
- package/src/certificate/certificate.module.ts +13 -0
- package/src/certificate/certificate.service.ts +413 -0
- package/src/certificate/dto/create-certificate-template.dto.ts +25 -0
- package/src/certificate/dto/update-certificate-template.dto.ts +6 -0
- package/src/class-group/class-group.controller.ts +189 -0
- package/src/class-group/class-group.module.ts +12 -0
- package/src/class-group/class-group.service.ts +1802 -0
- package/src/class-group/dto/create-class-group.dto.ts +139 -0
- package/src/class-group/dto/create-session.dto.ts +102 -0
- package/src/class-group/dto/enrollment.dto.ts +70 -0
- package/src/class-group/dto/update-class-group.dto.ts +4 -0
- package/src/class-group/dto/update-session.dto.ts +9 -0
- package/src/course/course-structure.controller.ts +85 -0
- package/src/course/course-structure.service.ts +525 -0
- package/src/course/course.controller.ts +69 -0
- package/src/course/course.module.ts +15 -0
- package/src/course/course.service.ts +920 -0
- package/src/course/dto/create-course-structure-lesson.dto.ts +97 -0
- package/src/course/dto/create-course-structure-session.dto.ts +22 -0
- package/src/course/dto/create-course.dto.ts +111 -0
- package/src/course/dto/update-course-structure-lesson.dto.ts +6 -0
- package/src/course/dto/update-course-structure-session.dto.ts +6 -0
- package/src/course/dto/update-course.dto.ts +4 -0
- package/src/dashboard/dashboard.controller.ts +14 -0
- package/src/dashboard/dashboard.module.ts +12 -0
- package/src/dashboard/dashboard.service.ts +726 -0
- package/src/enterprise/dto/add-enterprise-class-group.dto.ts +7 -0
- package/src/enterprise/dto/add-enterprise-course.dto.ts +11 -0
- package/src/enterprise/dto/add-enterprise-student.dto.ts +16 -0
- package/src/enterprise/dto/add-enterprise-user.dto.ts +23 -0
- package/src/enterprise/dto/create-enterprise.dto.ts +41 -0
- package/src/enterprise/dto/update-enterprise-student.dto.ts +7 -0
- package/src/enterprise/dto/update-enterprise-user.dto.ts +11 -0
- package/src/enterprise/dto/update-enterprise.dto.ts +4 -0
- package/src/enterprise/enterprise.controller.ts +233 -0
- package/src/enterprise/enterprise.module.ts +12 -0
- package/src/enterprise/enterprise.service.ts +712 -0
- package/src/evaluation/evaluation.controller.ts +44 -0
- package/src/evaluation/evaluation.module.ts +12 -0
- package/src/evaluation/evaluation.service.ts +394 -0
- package/src/exam/dto/create-exam-question.dto.ts +103 -0
- package/src/exam/dto/create-exam.dto.ts +41 -0
- package/src/exam/dto/reorder-exam-questions.dto.ts +8 -0
- package/src/exam/dto/save-exam-attempt-answers.dto.ts +55 -0
- package/src/exam/dto/start-exam-attempt.dto.ts +8 -0
- package/src/exam/dto/submit-exam-attempt.dto.ts +8 -0
- package/src/exam/dto/update-exam-question.dto.ts +4 -0
- package/src/exam/dto/update-exam.dto.ts +4 -0
- package/src/exam/exam-attempt.controller.ts +65 -0
- package/src/exam/exam-attempt.service.ts +1008 -0
- package/src/exam/exam.controller.ts +102 -0
- package/src/exam/exam.module.ts +14 -0
- package/src/exam/exam.service.ts +784 -0
- package/src/index.ts +29 -0
- package/src/instructor/dto/create-instructor.dto.ts +43 -0
- package/src/instructor/dto/update-instructor.dto.ts +38 -0
- package/src/instructor/instructor.controller.ts +73 -0
- package/src/instructor/instructor.module.ts +12 -0
- package/src/instructor/instructor.service.ts +646 -0
- package/src/lms.module.ts +36 -4
- package/src/reports/reports.controller.ts +14 -0
- package/src/reports/reports.module.ts +12 -0
- package/src/reports/reports.service.ts +485 -0
- package/src/training/dto/create-training.dto.ts +81 -0
- package/src/training/dto/update-training.dto.ts +4 -0
- package/src/training/training.controller.ts +68 -0
- package/src/training/training.module.ts +12 -0
- package/src/training/training.service.ts +574 -0
|
@@ -0,0 +1,627 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.EnterpriseService = void 0;
|
|
13
|
+
const api_prisma_1 = require("@hed-hog/api-prisma");
|
|
14
|
+
const common_1 = require("@nestjs/common");
|
|
15
|
+
/** Maps enterprise_user.role to the global role slug that should be granted. */
|
|
16
|
+
const ENTERPRISE_ROLE_TO_GLOBAL_SLUG = {
|
|
17
|
+
enterprise_admin: 'lms-enterprise-admin',
|
|
18
|
+
hr_manager: 'lms-enterprise-admin',
|
|
19
|
+
};
|
|
20
|
+
function paginate(params) {
|
|
21
|
+
const page = Math.max(Number(params.page) || 1, 1);
|
|
22
|
+
const pageSize = Math.max(Number(params.pageSize) || 20, 1);
|
|
23
|
+
const skip = (page - 1) * pageSize;
|
|
24
|
+
return { page, pageSize, skip };
|
|
25
|
+
}
|
|
26
|
+
let EnterpriseService = class EnterpriseService {
|
|
27
|
+
constructor(prisma) {
|
|
28
|
+
this.prisma = prisma;
|
|
29
|
+
}
|
|
30
|
+
async list(params) {
|
|
31
|
+
var _a;
|
|
32
|
+
const { page, pageSize, skip } = paginate(params);
|
|
33
|
+
const where = {};
|
|
34
|
+
if ((_a = params.search) === null || _a === void 0 ? void 0 : _a.trim()) {
|
|
35
|
+
const s = params.search.trim();
|
|
36
|
+
where.OR = [
|
|
37
|
+
{ name: { contains: s, mode: 'insensitive' } },
|
|
38
|
+
{ slug: { contains: s, mode: 'insensitive' } },
|
|
39
|
+
];
|
|
40
|
+
}
|
|
41
|
+
if (params.status && params.status !== 'all') {
|
|
42
|
+
where.status = params.status;
|
|
43
|
+
}
|
|
44
|
+
if (params.crmPersonId) {
|
|
45
|
+
where.crm_person_id = params.crmPersonId;
|
|
46
|
+
}
|
|
47
|
+
const [data, total] = await Promise.all([
|
|
48
|
+
this.prisma.enterprise.findMany({
|
|
49
|
+
where,
|
|
50
|
+
skip,
|
|
51
|
+
take: pageSize,
|
|
52
|
+
orderBy: { name: 'asc' },
|
|
53
|
+
include: {
|
|
54
|
+
person: { select: { id: true, name: true } },
|
|
55
|
+
_count: {
|
|
56
|
+
select: {
|
|
57
|
+
enterprise_user: true,
|
|
58
|
+
enterprise_course: true,
|
|
59
|
+
enterprise_class_group: true,
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
}),
|
|
64
|
+
this.prisma.enterprise.count({ where }),
|
|
65
|
+
]);
|
|
66
|
+
return {
|
|
67
|
+
total,
|
|
68
|
+
page,
|
|
69
|
+
pageSize,
|
|
70
|
+
lastPage: Math.max(1, Math.ceil(total / pageSize)),
|
|
71
|
+
data: data.map((e) => this.mapEnterprise(e)),
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
async getById(id) {
|
|
75
|
+
var _a;
|
|
76
|
+
const e = await this.prisma.enterprise.findUnique({
|
|
77
|
+
where: { id },
|
|
78
|
+
include: {
|
|
79
|
+
person: {
|
|
80
|
+
select: {
|
|
81
|
+
id: true,
|
|
82
|
+
name: true,
|
|
83
|
+
type: true,
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
_count: {
|
|
87
|
+
select: {
|
|
88
|
+
enterprise_user: true,
|
|
89
|
+
enterprise_course: true,
|
|
90
|
+
enterprise_class_group: true,
|
|
91
|
+
},
|
|
92
|
+
},
|
|
93
|
+
},
|
|
94
|
+
});
|
|
95
|
+
if (!e)
|
|
96
|
+
return null;
|
|
97
|
+
// Compute role breakdowns and fetch person_company separately
|
|
98
|
+
// (person_company shares the same PK as person — no Prisma reverse relation)
|
|
99
|
+
const [studentsCount, managersCount, adminsCount, personCompany] = await Promise.all([
|
|
100
|
+
this.prisma.enterprise_student.count({
|
|
101
|
+
where: { enterprise_id: id },
|
|
102
|
+
}),
|
|
103
|
+
this.prisma.enterprise_user.count({
|
|
104
|
+
where: { enterprise_id: id, role: 'hr_manager' },
|
|
105
|
+
}),
|
|
106
|
+
this.prisma.enterprise_user.count({
|
|
107
|
+
where: { enterprise_id: id, role: 'enterprise_admin' },
|
|
108
|
+
}),
|
|
109
|
+
((_a = e.person) === null || _a === void 0 ? void 0 : _a.id)
|
|
110
|
+
? this.prisma.person_company.findUnique({
|
|
111
|
+
where: { id: e.person.id },
|
|
112
|
+
select: {
|
|
113
|
+
trade_name: true,
|
|
114
|
+
industry: true,
|
|
115
|
+
website: true,
|
|
116
|
+
account_lifecycle_stage: true,
|
|
117
|
+
},
|
|
118
|
+
})
|
|
119
|
+
: Promise.resolve(null),
|
|
120
|
+
]);
|
|
121
|
+
return this.mapEnterprise(e, { studentsCount, managersCount, adminsCount, personCompany });
|
|
122
|
+
}
|
|
123
|
+
async create(dto) {
|
|
124
|
+
try {
|
|
125
|
+
return await this.prisma.enterprise.create({ data: dto });
|
|
126
|
+
}
|
|
127
|
+
catch (err) {
|
|
128
|
+
if ((err === null || err === void 0 ? void 0 : err.code) === 'P2002') {
|
|
129
|
+
throw new common_1.ConflictException(`An enterprise with slug "${dto.slug}" already exists.`);
|
|
130
|
+
}
|
|
131
|
+
throw err;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
async update(id, dto) {
|
|
135
|
+
await this.assertEnterpriseExists(id);
|
|
136
|
+
return this.prisma.enterprise.update({ where: { id }, data: dto });
|
|
137
|
+
}
|
|
138
|
+
async delete(id) {
|
|
139
|
+
await this.assertEnterpriseExists(id);
|
|
140
|
+
return this.prisma.enterprise.delete({ where: { id } });
|
|
141
|
+
}
|
|
142
|
+
// ─── Helpers ─────────────────────────────────────────────────────────────────
|
|
143
|
+
async assertEnterpriseExists(id) {
|
|
144
|
+
const exists = await this.prisma.enterprise.findUnique({
|
|
145
|
+
where: { id },
|
|
146
|
+
select: { id: true },
|
|
147
|
+
});
|
|
148
|
+
if (!exists)
|
|
149
|
+
throw new common_1.NotFoundException(`Enterprise #${id} not found`);
|
|
150
|
+
return exists;
|
|
151
|
+
}
|
|
152
|
+
async resolveRoleId(slug) {
|
|
153
|
+
var _a;
|
|
154
|
+
const role = await this.prisma.role.findUnique({
|
|
155
|
+
where: { slug },
|
|
156
|
+
select: { id: true },
|
|
157
|
+
});
|
|
158
|
+
return (_a = role === null || role === void 0 ? void 0 : role.id) !== null && _a !== void 0 ? _a : null;
|
|
159
|
+
}
|
|
160
|
+
async upsertRoleUser(userId, roleSlug) {
|
|
161
|
+
const roleId = await this.resolveRoleId(roleSlug);
|
|
162
|
+
if (!roleId)
|
|
163
|
+
return; // role not seeded yet — skip silently
|
|
164
|
+
const existing = await this.prisma.role_user.findFirst({
|
|
165
|
+
where: { user_id: userId, role_id: roleId },
|
|
166
|
+
select: { id: true },
|
|
167
|
+
});
|
|
168
|
+
if (!existing) {
|
|
169
|
+
await this.prisma.role_user.create({
|
|
170
|
+
data: { user_id: userId, role_id: roleId },
|
|
171
|
+
});
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
// ─── Users ───────────────────────────────────────────────────────────────────
|
|
175
|
+
async listUsers(enterpriseId, params) {
|
|
176
|
+
var _a;
|
|
177
|
+
await this.assertEnterpriseExists(enterpriseId);
|
|
178
|
+
const { page, pageSize, skip } = paginate(params);
|
|
179
|
+
const where = { enterprise_id: enterpriseId };
|
|
180
|
+
if ((_a = params.search) === null || _a === void 0 ? void 0 : _a.trim()) {
|
|
181
|
+
const s = params.search.trim();
|
|
182
|
+
where.user = {
|
|
183
|
+
OR: [
|
|
184
|
+
{ name: { contains: s, mode: 'insensitive' } },
|
|
185
|
+
{
|
|
186
|
+
user_identifier: {
|
|
187
|
+
some: { type: 'email', value: { contains: s, mode: 'insensitive' } },
|
|
188
|
+
},
|
|
189
|
+
},
|
|
190
|
+
],
|
|
191
|
+
};
|
|
192
|
+
}
|
|
193
|
+
if (params.status)
|
|
194
|
+
where.status = params.status;
|
|
195
|
+
if (params.role)
|
|
196
|
+
where.role = params.role;
|
|
197
|
+
const [rows, total] = await Promise.all([
|
|
198
|
+
this.prisma.enterprise_user.findMany({
|
|
199
|
+
where,
|
|
200
|
+
skip,
|
|
201
|
+
take: pageSize,
|
|
202
|
+
orderBy: { created_at: 'desc' },
|
|
203
|
+
include: {
|
|
204
|
+
user: {
|
|
205
|
+
select: {
|
|
206
|
+
id: true,
|
|
207
|
+
name: true,
|
|
208
|
+
last_login_at: true,
|
|
209
|
+
user_identifier: {
|
|
210
|
+
where: { type: 'email' },
|
|
211
|
+
select: { value: true },
|
|
212
|
+
take: 1,
|
|
213
|
+
},
|
|
214
|
+
},
|
|
215
|
+
},
|
|
216
|
+
},
|
|
217
|
+
}),
|
|
218
|
+
this.prisma.enterprise_user.count({ where }),
|
|
219
|
+
]);
|
|
220
|
+
return {
|
|
221
|
+
total,
|
|
222
|
+
page,
|
|
223
|
+
pageSize,
|
|
224
|
+
lastPage: Math.max(1, Math.ceil(total / pageSize)),
|
|
225
|
+
data: rows.map((r) => {
|
|
226
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
227
|
+
return ({
|
|
228
|
+
id: r.id,
|
|
229
|
+
userId: r.user_id,
|
|
230
|
+
personId: r.person_id,
|
|
231
|
+
name: (_b = (_a = r.user) === null || _a === void 0 ? void 0 : _a.name) !== null && _b !== void 0 ? _b : null,
|
|
232
|
+
email: (_f = (_e = (_d = (_c = r.user) === null || _c === void 0 ? void 0 : _c.user_identifier) === null || _d === void 0 ? void 0 : _d[0]) === null || _e === void 0 ? void 0 : _e.value) !== null && _f !== void 0 ? _f : null,
|
|
233
|
+
role: r.role,
|
|
234
|
+
status: r.status,
|
|
235
|
+
lastAccessAt: (_h = (_g = r.user) === null || _g === void 0 ? void 0 : _g.last_login_at) !== null && _h !== void 0 ? _h : null,
|
|
236
|
+
});
|
|
237
|
+
}),
|
|
238
|
+
};
|
|
239
|
+
}
|
|
240
|
+
async addUser(enterpriseId, dto) {
|
|
241
|
+
await this.assertEnterpriseExists(enterpriseId);
|
|
242
|
+
const user = await this.prisma.user.findUnique({
|
|
243
|
+
where: { id: dto.user_id },
|
|
244
|
+
select: { id: true },
|
|
245
|
+
});
|
|
246
|
+
if (!user)
|
|
247
|
+
throw new common_1.NotFoundException(`User #${dto.user_id} not found`);
|
|
248
|
+
const duplicate = await this.prisma.enterprise_user.findFirst({
|
|
249
|
+
where: { enterprise_id: enterpriseId, user_id: dto.user_id },
|
|
250
|
+
select: { id: true },
|
|
251
|
+
});
|
|
252
|
+
if (duplicate)
|
|
253
|
+
throw new common_1.ConflictException(`User #${dto.user_id} is already linked to this enterprise`);
|
|
254
|
+
const record = await this.prisma.enterprise_user.create({
|
|
255
|
+
data: Object.assign({ enterprise_id: enterpriseId }, dto),
|
|
256
|
+
});
|
|
257
|
+
// Apply the corresponding global LMS role
|
|
258
|
+
const globalSlug = ENTERPRISE_ROLE_TO_GLOBAL_SLUG[dto.role];
|
|
259
|
+
if (globalSlug)
|
|
260
|
+
await this.upsertRoleUser(dto.user_id, globalSlug);
|
|
261
|
+
return record;
|
|
262
|
+
}
|
|
263
|
+
async updateUser(enterpriseId, userId, dto) {
|
|
264
|
+
await this.assertEnterpriseExists(enterpriseId);
|
|
265
|
+
const existing = await this.prisma.enterprise_user.findFirst({
|
|
266
|
+
where: { enterprise_id: enterpriseId, user_id: userId },
|
|
267
|
+
select: { id: true, role: true },
|
|
268
|
+
});
|
|
269
|
+
if (!existing)
|
|
270
|
+
throw new common_1.NotFoundException(`User #${userId} is not linked to enterprise #${enterpriseId}`);
|
|
271
|
+
const updated = await this.prisma.enterprise_user.update({
|
|
272
|
+
where: { id: existing.id },
|
|
273
|
+
data: dto,
|
|
274
|
+
});
|
|
275
|
+
// If role changed, upsert the new global role
|
|
276
|
+
if (dto.role && dto.role !== existing.role) {
|
|
277
|
+
const globalSlug = ENTERPRISE_ROLE_TO_GLOBAL_SLUG[dto.role];
|
|
278
|
+
if (globalSlug)
|
|
279
|
+
await this.upsertRoleUser(userId, globalSlug);
|
|
280
|
+
}
|
|
281
|
+
return updated;
|
|
282
|
+
}
|
|
283
|
+
async removeUser(enterpriseId, userId) {
|
|
284
|
+
await this.assertEnterpriseExists(enterpriseId);
|
|
285
|
+
const existing = await this.prisma.enterprise_user.findFirst({
|
|
286
|
+
where: { enterprise_id: enterpriseId, user_id: userId },
|
|
287
|
+
select: { id: true },
|
|
288
|
+
});
|
|
289
|
+
if (!existing)
|
|
290
|
+
throw new common_1.NotFoundException(`User #${userId} is not linked to enterprise #${enterpriseId}`);
|
|
291
|
+
return this.prisma.enterprise_user.delete({
|
|
292
|
+
where: { id: existing.id },
|
|
293
|
+
});
|
|
294
|
+
}
|
|
295
|
+
// ─── Courses ─────────────────────────────────────────────────────────────────
|
|
296
|
+
async listCourses(enterpriseId, params) {
|
|
297
|
+
var _a, _b;
|
|
298
|
+
await this.assertEnterpriseExists(enterpriseId);
|
|
299
|
+
const { page, pageSize, skip } = paginate(params);
|
|
300
|
+
const where = { enterprise_id: enterpriseId };
|
|
301
|
+
if (((_a = params.search) === null || _a === void 0 ? void 0 : _a.trim()) || params.status) {
|
|
302
|
+
where.course = Object.assign(Object.assign({}, (((_b = params.search) === null || _b === void 0 ? void 0 : _b.trim()) ? { title: { contains: params.search.trim(), mode: 'insensitive' } } : {})), (params.status ? { status: params.status } : {}));
|
|
303
|
+
}
|
|
304
|
+
const [rows, total] = await Promise.all([
|
|
305
|
+
this.prisma.enterprise_course.findMany({
|
|
306
|
+
where,
|
|
307
|
+
skip,
|
|
308
|
+
take: pageSize,
|
|
309
|
+
orderBy: { contracted_at: 'desc' },
|
|
310
|
+
include: {
|
|
311
|
+
course: {
|
|
312
|
+
select: {
|
|
313
|
+
id: true,
|
|
314
|
+
title: true,
|
|
315
|
+
slug: true,
|
|
316
|
+
status: true,
|
|
317
|
+
level: true,
|
|
318
|
+
offering_type: true,
|
|
319
|
+
},
|
|
320
|
+
},
|
|
321
|
+
},
|
|
322
|
+
}),
|
|
323
|
+
this.prisma.enterprise_course.count({ where }),
|
|
324
|
+
]);
|
|
325
|
+
return {
|
|
326
|
+
total,
|
|
327
|
+
page,
|
|
328
|
+
pageSize,
|
|
329
|
+
lastPage: Math.max(1, Math.ceil(total / pageSize)),
|
|
330
|
+
data: rows.map((r) => {
|
|
331
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
332
|
+
return ({
|
|
333
|
+
id: r.id,
|
|
334
|
+
courseId: r.course_id,
|
|
335
|
+
contractedAt: r.contracted_at,
|
|
336
|
+
title: (_b = (_a = r.course) === null || _a === void 0 ? void 0 : _a.title) !== null && _b !== void 0 ? _b : null,
|
|
337
|
+
slug: (_d = (_c = r.course) === null || _c === void 0 ? void 0 : _c.slug) !== null && _d !== void 0 ? _d : null,
|
|
338
|
+
status: (_f = (_e = r.course) === null || _e === void 0 ? void 0 : _e.status) !== null && _f !== void 0 ? _f : null,
|
|
339
|
+
level: (_h = (_g = r.course) === null || _g === void 0 ? void 0 : _g.level) !== null && _h !== void 0 ? _h : null,
|
|
340
|
+
modality: (_k = (_j = r.course) === null || _j === void 0 ? void 0 : _j.offering_type) !== null && _k !== void 0 ? _k : null,
|
|
341
|
+
});
|
|
342
|
+
}),
|
|
343
|
+
};
|
|
344
|
+
}
|
|
345
|
+
async addCourse(enterpriseId, dto) {
|
|
346
|
+
await this.assertEnterpriseExists(enterpriseId);
|
|
347
|
+
const course = await this.prisma.course.findUnique({
|
|
348
|
+
where: { id: dto.course_id },
|
|
349
|
+
select: { id: true },
|
|
350
|
+
});
|
|
351
|
+
if (!course)
|
|
352
|
+
throw new common_1.NotFoundException(`Course #${dto.course_id} not found`);
|
|
353
|
+
const duplicate = await this.prisma.enterprise_course.findFirst({
|
|
354
|
+
where: { enterprise_id: enterpriseId, course_id: dto.course_id },
|
|
355
|
+
select: { id: true },
|
|
356
|
+
});
|
|
357
|
+
if (duplicate)
|
|
358
|
+
throw new common_1.ConflictException(`Course #${dto.course_id} is already linked to this enterprise`);
|
|
359
|
+
return this.prisma.enterprise_course.create({
|
|
360
|
+
data: Object.assign({ enterprise_id: enterpriseId }, dto),
|
|
361
|
+
});
|
|
362
|
+
}
|
|
363
|
+
async removeCourse(enterpriseId, courseId) {
|
|
364
|
+
await this.assertEnterpriseExists(enterpriseId);
|
|
365
|
+
const existing = await this.prisma.enterprise_course.findFirst({
|
|
366
|
+
where: { enterprise_id: enterpriseId, course_id: courseId },
|
|
367
|
+
select: { id: true },
|
|
368
|
+
});
|
|
369
|
+
if (!existing)
|
|
370
|
+
throw new common_1.NotFoundException(`Course #${courseId} is not linked to enterprise #${enterpriseId}`);
|
|
371
|
+
return this.prisma.enterprise_course.delete({
|
|
372
|
+
where: { id: existing.id },
|
|
373
|
+
});
|
|
374
|
+
}
|
|
375
|
+
// ─── Class Groups ─────────────────────────────────────────────────────────────
|
|
376
|
+
async listClassGroups(enterpriseId, params) {
|
|
377
|
+
var _a;
|
|
378
|
+
await this.assertEnterpriseExists(enterpriseId);
|
|
379
|
+
const { page, pageSize, skip } = paginate(params);
|
|
380
|
+
const where = { enterprise_id: enterpriseId };
|
|
381
|
+
{
|
|
382
|
+
const s = (_a = params.search) === null || _a === void 0 ? void 0 : _a.trim();
|
|
383
|
+
const hasSearch = Boolean(s);
|
|
384
|
+
const hasStatus = Boolean(params.status);
|
|
385
|
+
if (hasSearch || hasStatus) {
|
|
386
|
+
where.course_class_group = Object.assign(Object.assign({}, (hasSearch
|
|
387
|
+
? { OR: [{ code: { contains: s, mode: 'insensitive' } }, { title: { contains: s, mode: 'insensitive' } }] }
|
|
388
|
+
: {})), (hasStatus ? { status: params.status } : {}));
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
const [rows, total] = await Promise.all([
|
|
392
|
+
this.prisma.enterprise_class_group.findMany({
|
|
393
|
+
where,
|
|
394
|
+
skip,
|
|
395
|
+
take: pageSize,
|
|
396
|
+
orderBy: { created_at: 'desc' },
|
|
397
|
+
include: {
|
|
398
|
+
course_class_group: {
|
|
399
|
+
select: {
|
|
400
|
+
id: true,
|
|
401
|
+
code: true,
|
|
402
|
+
title: true,
|
|
403
|
+
status: true,
|
|
404
|
+
delivery_mode: true,
|
|
405
|
+
start_date: true,
|
|
406
|
+
end_date: true,
|
|
407
|
+
capacity: true,
|
|
408
|
+
course: { select: { id: true, title: true, slug: true } },
|
|
409
|
+
},
|
|
410
|
+
},
|
|
411
|
+
},
|
|
412
|
+
}),
|
|
413
|
+
this.prisma.enterprise_class_group.count({ where }),
|
|
414
|
+
]);
|
|
415
|
+
return {
|
|
416
|
+
total,
|
|
417
|
+
page,
|
|
418
|
+
pageSize,
|
|
419
|
+
lastPage: Math.max(1, Math.ceil(total / pageSize)),
|
|
420
|
+
data: rows.map((r) => {
|
|
421
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v;
|
|
422
|
+
return ({
|
|
423
|
+
id: r.id,
|
|
424
|
+
courseClassGroupId: r.course_class_group_id,
|
|
425
|
+
code: (_b = (_a = r.course_class_group) === null || _a === void 0 ? void 0 : _a.code) !== null && _b !== void 0 ? _b : null,
|
|
426
|
+
title: (_d = (_c = r.course_class_group) === null || _c === void 0 ? void 0 : _c.title) !== null && _d !== void 0 ? _d : null,
|
|
427
|
+
status: (_f = (_e = r.course_class_group) === null || _e === void 0 ? void 0 : _e.status) !== null && _f !== void 0 ? _f : null,
|
|
428
|
+
deliveryMode: (_h = (_g = r.course_class_group) === null || _g === void 0 ? void 0 : _g.delivery_mode) !== null && _h !== void 0 ? _h : null,
|
|
429
|
+
startDate: (_k = (_j = r.course_class_group) === null || _j === void 0 ? void 0 : _j.start_date) !== null && _k !== void 0 ? _k : null,
|
|
430
|
+
endDate: (_m = (_l = r.course_class_group) === null || _l === void 0 ? void 0 : _l.end_date) !== null && _m !== void 0 ? _m : null,
|
|
431
|
+
capacity: (_p = (_o = r.course_class_group) === null || _o === void 0 ? void 0 : _o.capacity) !== null && _p !== void 0 ? _p : null,
|
|
432
|
+
courseTitle: (_s = (_r = (_q = r.course_class_group) === null || _q === void 0 ? void 0 : _q.course) === null || _r === void 0 ? void 0 : _r.title) !== null && _s !== void 0 ? _s : null,
|
|
433
|
+
courseSlug: (_v = (_u = (_t = r.course_class_group) === null || _t === void 0 ? void 0 : _t.course) === null || _u === void 0 ? void 0 : _u.slug) !== null && _v !== void 0 ? _v : null,
|
|
434
|
+
});
|
|
435
|
+
}),
|
|
436
|
+
};
|
|
437
|
+
}
|
|
438
|
+
async addClassGroup(enterpriseId, dto) {
|
|
439
|
+
await this.assertEnterpriseExists(enterpriseId);
|
|
440
|
+
const classGroup = await this.prisma.course_class_group.findUnique({
|
|
441
|
+
where: { id: dto.course_class_group_id },
|
|
442
|
+
select: { id: true },
|
|
443
|
+
});
|
|
444
|
+
if (!classGroup)
|
|
445
|
+
throw new common_1.NotFoundException(`Class group #${dto.course_class_group_id} not found`);
|
|
446
|
+
const duplicate = await this.prisma.enterprise_class_group.findFirst({
|
|
447
|
+
where: { enterprise_id: enterpriseId, course_class_group_id: dto.course_class_group_id },
|
|
448
|
+
select: { id: true },
|
|
449
|
+
});
|
|
450
|
+
if (duplicate)
|
|
451
|
+
throw new common_1.ConflictException(`Class group #${dto.course_class_group_id} is already linked to this enterprise`);
|
|
452
|
+
return this.prisma.enterprise_class_group.create({
|
|
453
|
+
data: Object.assign({ enterprise_id: enterpriseId }, dto),
|
|
454
|
+
});
|
|
455
|
+
}
|
|
456
|
+
async removeClassGroup(enterpriseId, classGroupId) {
|
|
457
|
+
await this.assertEnterpriseExists(enterpriseId);
|
|
458
|
+
const existing = await this.prisma.enterprise_class_group.findFirst({
|
|
459
|
+
where: { enterprise_id: enterpriseId, course_class_group_id: classGroupId },
|
|
460
|
+
select: { id: true },
|
|
461
|
+
});
|
|
462
|
+
if (!existing)
|
|
463
|
+
throw new common_1.NotFoundException(`Class group #${classGroupId} is not linked to enterprise #${enterpriseId}`);
|
|
464
|
+
return this.prisma.enterprise_class_group.delete({
|
|
465
|
+
where: { id: existing.id },
|
|
466
|
+
});
|
|
467
|
+
}
|
|
468
|
+
// ─── Students ─────────────────────────────────────────────────────────────────
|
|
469
|
+
async listStudents(enterpriseId, params) {
|
|
470
|
+
var _a;
|
|
471
|
+
await this.assertEnterpriseExists(enterpriseId);
|
|
472
|
+
const { page, pageSize, skip } = paginate(params);
|
|
473
|
+
const where = { enterprise_id: enterpriseId };
|
|
474
|
+
if ((_a = params.search) === null || _a === void 0 ? void 0 : _a.trim()) {
|
|
475
|
+
const s = params.search.trim();
|
|
476
|
+
where.person = {
|
|
477
|
+
name: { contains: s, mode: 'insensitive' },
|
|
478
|
+
};
|
|
479
|
+
}
|
|
480
|
+
if (params.status)
|
|
481
|
+
where.status = params.status;
|
|
482
|
+
const [rows, total] = await Promise.all([
|
|
483
|
+
this.prisma.enterprise_student.findMany({
|
|
484
|
+
where,
|
|
485
|
+
skip,
|
|
486
|
+
take: pageSize,
|
|
487
|
+
orderBy: { created_at: 'desc' },
|
|
488
|
+
include: {
|
|
489
|
+
person: {
|
|
490
|
+
select: {
|
|
491
|
+
id: true,
|
|
492
|
+
name: true,
|
|
493
|
+
contact: {
|
|
494
|
+
where: { contact_type: { code: 'EMAIL' }, is_primary: true },
|
|
495
|
+
select: { value: true },
|
|
496
|
+
take: 1,
|
|
497
|
+
},
|
|
498
|
+
},
|
|
499
|
+
},
|
|
500
|
+
},
|
|
501
|
+
}),
|
|
502
|
+
this.prisma.enterprise_student.count({ where }),
|
|
503
|
+
]);
|
|
504
|
+
return {
|
|
505
|
+
total,
|
|
506
|
+
page,
|
|
507
|
+
pageSize,
|
|
508
|
+
lastPage: Math.max(1, Math.ceil(total / pageSize)),
|
|
509
|
+
data: rows.map((r) => {
|
|
510
|
+
var _a, _b, _c, _d, _e, _f;
|
|
511
|
+
return ({
|
|
512
|
+
id: r.id,
|
|
513
|
+
personId: r.person_id,
|
|
514
|
+
name: (_b = (_a = r.person) === null || _a === void 0 ? void 0 : _a.name) !== null && _b !== void 0 ? _b : null,
|
|
515
|
+
email: (_f = (_e = (_d = (_c = r.person) === null || _c === void 0 ? void 0 : _c.contact) === null || _d === void 0 ? void 0 : _d[0]) === null || _e === void 0 ? void 0 : _e.value) !== null && _f !== void 0 ? _f : null,
|
|
516
|
+
status: r.status,
|
|
517
|
+
createdAt: r.created_at,
|
|
518
|
+
});
|
|
519
|
+
}),
|
|
520
|
+
};
|
|
521
|
+
}
|
|
522
|
+
async addStudent(enterpriseId, dto) {
|
|
523
|
+
await this.assertEnterpriseExists(enterpriseId);
|
|
524
|
+
const person = await this.prisma.person.findUnique({
|
|
525
|
+
where: { id: dto.person_id },
|
|
526
|
+
select: { id: true },
|
|
527
|
+
});
|
|
528
|
+
if (!person)
|
|
529
|
+
throw new common_1.NotFoundException(`Person #${dto.person_id} not found`);
|
|
530
|
+
const duplicate = await this.prisma.enterprise_student.findFirst({
|
|
531
|
+
where: { enterprise_id: enterpriseId, person_id: dto.person_id },
|
|
532
|
+
select: { id: true },
|
|
533
|
+
});
|
|
534
|
+
if (duplicate)
|
|
535
|
+
throw new common_1.ConflictException(`Person #${dto.person_id} is already a student of enterprise #${enterpriseId}`);
|
|
536
|
+
return this.prisma.enterprise_student.create({
|
|
537
|
+
data: Object.assign({ enterprise_id: enterpriseId }, dto),
|
|
538
|
+
});
|
|
539
|
+
}
|
|
540
|
+
async updateStudent(enterpriseId, personId, dto) {
|
|
541
|
+
await this.assertEnterpriseExists(enterpriseId);
|
|
542
|
+
const existing = await this.prisma.enterprise_student.findFirst({
|
|
543
|
+
where: { enterprise_id: enterpriseId, person_id: personId },
|
|
544
|
+
select: { id: true },
|
|
545
|
+
});
|
|
546
|
+
if (!existing)
|
|
547
|
+
throw new common_1.NotFoundException(`Person #${personId} is not a student of enterprise #${enterpriseId}`);
|
|
548
|
+
return this.prisma.enterprise_student.update({
|
|
549
|
+
where: { id: existing.id },
|
|
550
|
+
data: dto,
|
|
551
|
+
});
|
|
552
|
+
}
|
|
553
|
+
async removeStudent(enterpriseId, personId) {
|
|
554
|
+
await this.assertEnterpriseExists(enterpriseId);
|
|
555
|
+
const existing = await this.prisma.enterprise_student.findFirst({
|
|
556
|
+
where: { enterprise_id: enterpriseId, person_id: personId },
|
|
557
|
+
select: { id: true },
|
|
558
|
+
});
|
|
559
|
+
if (!existing)
|
|
560
|
+
throw new common_1.NotFoundException(`Person #${personId} is not a student of enterprise #${enterpriseId}`);
|
|
561
|
+
return this.prisma.enterprise_student.delete({
|
|
562
|
+
where: { id: existing.id },
|
|
563
|
+
});
|
|
564
|
+
}
|
|
565
|
+
// ─── Stats / options ──────────────────────────────────────────────────────────
|
|
566
|
+
async getStats() {
|
|
567
|
+
const [total, active, trial, portalEnabled] = await Promise.all([
|
|
568
|
+
this.prisma.enterprise.count(),
|
|
569
|
+
this.prisma.enterprise.count({ where: { status: 'active' } }),
|
|
570
|
+
this.prisma.enterprise.count({ where: { status: 'trial' } }),
|
|
571
|
+
this.prisma.enterprise.count({ where: { portal_enabled: true } }),
|
|
572
|
+
]);
|
|
573
|
+
return { total, active, trial, portalEnabled };
|
|
574
|
+
}
|
|
575
|
+
async getCrmOptions() {
|
|
576
|
+
const rows = await this.prisma.enterprise.findMany({
|
|
577
|
+
where: { crm_person_id: { not: null } },
|
|
578
|
+
select: { person: { select: { id: true, name: true } } },
|
|
579
|
+
distinct: ['crm_person_id'],
|
|
580
|
+
});
|
|
581
|
+
return rows
|
|
582
|
+
.filter((r) => r.person !== null)
|
|
583
|
+
.map((r) => { var _a; return ({ id: r.person.id, name: (_a = r.person.name) !== null && _a !== void 0 ? _a : '' }); })
|
|
584
|
+
.sort((a, b) => a.name.localeCompare(b.name));
|
|
585
|
+
}
|
|
586
|
+
// ─── Mapper ──────────────────────────────────────────────────────────────────
|
|
587
|
+
mapEnterprise(e, extra) {
|
|
588
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
589
|
+
const { _count, person } = e;
|
|
590
|
+
const pc = (_a = extra === null || extra === void 0 ? void 0 : extra.personCompany) !== null && _a !== void 0 ? _a : null;
|
|
591
|
+
return {
|
|
592
|
+
id: e.id,
|
|
593
|
+
name: e.name,
|
|
594
|
+
slug: e.slug,
|
|
595
|
+
status: e.status,
|
|
596
|
+
portalEnabled: e.portal_enabled,
|
|
597
|
+
licenseLimit: (_b = e.license_limit) !== null && _b !== void 0 ? _b : null,
|
|
598
|
+
notes: (_c = e.notes) !== null && _c !== void 0 ? _c : null,
|
|
599
|
+
createdAt: e.created_at,
|
|
600
|
+
updatedAt: e.updated_at,
|
|
601
|
+
crmAccountId: (_d = person === null || person === void 0 ? void 0 : person.id) !== null && _d !== void 0 ? _d : null,
|
|
602
|
+
crmAccountName: (_e = person === null || person === void 0 ? void 0 : person.name) !== null && _e !== void 0 ? _e : null,
|
|
603
|
+
crmAccount: person
|
|
604
|
+
? {
|
|
605
|
+
id: person.id,
|
|
606
|
+
name: person.name,
|
|
607
|
+
tradeName: (_f = pc === null || pc === void 0 ? void 0 : pc.trade_name) !== null && _f !== void 0 ? _f : null,
|
|
608
|
+
industry: (_g = pc === null || pc === void 0 ? void 0 : pc.industry) !== null && _g !== void 0 ? _g : null,
|
|
609
|
+
website: (_h = pc === null || pc === void 0 ? void 0 : pc.website) !== null && _h !== void 0 ? _h : null,
|
|
610
|
+
lifecycleStage: (_j = pc === null || pc === void 0 ? void 0 : pc.account_lifecycle_stage) !== null && _j !== void 0 ? _j : null,
|
|
611
|
+
}
|
|
612
|
+
: null,
|
|
613
|
+
usersCount: (_k = _count === null || _count === void 0 ? void 0 : _count.enterprise_user) !== null && _k !== void 0 ? _k : 0,
|
|
614
|
+
studentsCount: (_l = extra === null || extra === void 0 ? void 0 : extra.studentsCount) !== null && _l !== void 0 ? _l : 0,
|
|
615
|
+
managersCount: (_m = extra === null || extra === void 0 ? void 0 : extra.managersCount) !== null && _m !== void 0 ? _m : 0,
|
|
616
|
+
adminsCount: (_o = extra === null || extra === void 0 ? void 0 : extra.adminsCount) !== null && _o !== void 0 ? _o : 0,
|
|
617
|
+
coursesCount: (_p = _count === null || _count === void 0 ? void 0 : _count.enterprise_course) !== null && _p !== void 0 ? _p : 0,
|
|
618
|
+
classesCount: (_q = _count === null || _count === void 0 ? void 0 : _count.enterprise_class_group) !== null && _q !== void 0 ? _q : 0,
|
|
619
|
+
};
|
|
620
|
+
}
|
|
621
|
+
};
|
|
622
|
+
exports.EnterpriseService = EnterpriseService;
|
|
623
|
+
exports.EnterpriseService = EnterpriseService = __decorate([
|
|
624
|
+
(0, common_1.Injectable)(),
|
|
625
|
+
__metadata("design:paramtypes", [api_prisma_1.PrismaService])
|
|
626
|
+
], EnterpriseService);
|
|
627
|
+
//# sourceMappingURL=enterprise.service.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enterprise.service.js","sourceRoot":"","sources":["../../src/enterprise/enterprise.service.ts"],"names":[],"mappings":"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"}
|