@dirayaah/assessment-module 1.0.0

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 (156) hide show
  1. package/.prettierrc +4 -0
  2. package/README copy.md +93 -0
  3. package/README.md +93 -0
  4. package/dist/index.d.ts +9 -0
  5. package/dist/index.js +26 -0
  6. package/dist/index.js.map +1 -0
  7. package/dist/jest.config.d.ts +0 -0
  8. package/dist/jest.config.js +10 -0
  9. package/dist/jest.config.js.map +1 -0
  10. package/dist/src/constants/assessments-options.d.ts +1 -0
  11. package/dist/src/constants/assessments-options.js +5 -0
  12. package/dist/src/constants/assessments-options.js.map +1 -0
  13. package/dist/src/constants/index.d.ts +3 -0
  14. package/dist/src/constants/index.js +10 -0
  15. package/dist/src/constants/index.js.map +1 -0
  16. package/dist/src/constants/predefined-assessments/disc.d.ts +3 -0
  17. package/dist/src/constants/predefined-assessments/disc.js +184 -0
  18. package/dist/src/constants/predefined-assessments/disc.js.map +1 -0
  19. package/dist/src/constants/predefined-assessments/holland.d.ts +3 -0
  20. package/dist/src/constants/predefined-assessments/holland.js +208 -0
  21. package/dist/src/constants/predefined-assessments/holland.js.map +1 -0
  22. package/dist/src/constants/predefined-assessments/index.d.ts +4 -0
  23. package/dist/src/constants/predefined-assessments/index.js +10 -0
  24. package/dist/src/constants/predefined-assessments/index.js.map +1 -0
  25. package/dist/src/constants/predefined-assessments/leadership.d.ts +3 -0
  26. package/dist/src/constants/predefined-assessments/leadership.js +211 -0
  27. package/dist/src/constants/predefined-assessments/leadership.js.map +1 -0
  28. package/dist/src/dto/assessment.dto.d.ts +14 -0
  29. package/dist/src/dto/assessment.dto.js +88 -0
  30. package/dist/src/dto/assessment.dto.js.map +1 -0
  31. package/dist/src/dto/base.dto.d.ts +7 -0
  32. package/dist/src/dto/base.dto.js +7 -0
  33. package/dist/src/dto/base.dto.js.map +1 -0
  34. package/dist/src/dto/index.d.ts +3 -0
  35. package/dist/src/dto/index.js +8 -0
  36. package/dist/src/dto/index.js.map +1 -0
  37. package/dist/src/dto/predefined-assessment.dto.d.ts +12 -0
  38. package/dist/src/dto/predefined-assessment.dto.js +74 -0
  39. package/dist/src/dto/predefined-assessment.dto.js.map +1 -0
  40. package/dist/src/entities/assessment.entity.d.ts +15 -0
  41. package/dist/src/entities/assessment.entity.js +69 -0
  42. package/dist/src/entities/assessment.entity.js.map +1 -0
  43. package/dist/src/entities/base.entity.d.ts +7 -0
  44. package/dist/src/entities/base.entity.js +37 -0
  45. package/dist/src/entities/base.entity.js.map +1 -0
  46. package/dist/src/entities/index.d.ts +3 -0
  47. package/dist/src/entities/index.js +8 -0
  48. package/dist/src/entities/index.js.map +1 -0
  49. package/dist/src/entities/pagination.d.ts +19 -0
  50. package/dist/src/entities/pagination.js +58 -0
  51. package/dist/src/entities/pagination.js.map +1 -0
  52. package/dist/src/entities/predefined-assessment.entity.d.ts +13 -0
  53. package/dist/src/entities/predefined-assessment.entity.js +55 -0
  54. package/dist/src/entities/predefined-assessment.entity.js.map +1 -0
  55. package/dist/src/enums/index.d.ts +3 -0
  56. package/dist/src/enums/index.js +8 -0
  57. package/dist/src/enums/index.js.map +1 -0
  58. package/dist/src/enums/language.d.ts +5 -0
  59. package/dist/src/enums/language.js +10 -0
  60. package/dist/src/enums/language.js.map +1 -0
  61. package/dist/src/enums/predefined-assessment-type.d.ts +5 -0
  62. package/dist/src/enums/predefined-assessment-type.js +10 -0
  63. package/dist/src/enums/predefined-assessment-type.js.map +1 -0
  64. package/dist/src/interfaces/assessments-options.interface.d.ts +6 -0
  65. package/dist/src/interfaces/assessments-options.interface.js +3 -0
  66. package/dist/src/interfaces/assessments-options.interface.js.map +1 -0
  67. package/dist/src/mappers/assessment.mapper.d.ts +6 -0
  68. package/dist/src/mappers/assessment.mapper.js +31 -0
  69. package/dist/src/mappers/assessment.mapper.js.map +1 -0
  70. package/dist/src/mappers/predefined-assessment.mapper.d.ts +6 -0
  71. package/dist/src/mappers/predefined-assessment.mapper.js +31 -0
  72. package/dist/src/mappers/predefined-assessment.mapper.js.map +1 -0
  73. package/dist/src/migrations/1767108782301-CreateAssessmentTable.d.ts +5 -0
  74. package/dist/src/migrations/1767108782301-CreateAssessmentTable.js +83 -0
  75. package/dist/src/migrations/1767108782301-CreateAssessmentTable.js.map +1 -0
  76. package/dist/src/migrations/1767200020161-CreatePredefinedAssessmentTable.d.ts +6 -0
  77. package/dist/src/migrations/1767200020161-CreatePredefinedAssessmentTable.js +70 -0
  78. package/dist/src/migrations/1767200020161-CreatePredefinedAssessmentTable.js.map +1 -0
  79. package/dist/src/migrations/1767204696509-SeedPredefinedAssessments.d.ts +6 -0
  80. package/dist/src/migrations/1767204696509-SeedPredefinedAssessments.js +29 -0
  81. package/dist/src/migrations/1767204696509-SeedPredefinedAssessments.js.map +1 -0
  82. package/dist/src/migrations/1767651698587-AddMetaFieldsToAssessmentTable.d.ts +7 -0
  83. package/dist/src/migrations/1767651698587-AddMetaFieldsToAssessmentTable.js +60 -0
  84. package/dist/src/migrations/1767651698587-AddMetaFieldsToAssessmentTable.js.map +1 -0
  85. package/dist/src/migrations/index.d.ts +6 -0
  86. package/dist/src/migrations/index.js +18 -0
  87. package/dist/src/migrations/index.js.map +1 -0
  88. package/dist/src/modules/assessment.module.d.ts +5 -0
  89. package/dist/src/modules/assessment.module.js +34 -0
  90. package/dist/src/modules/assessment.module.js.map +1 -0
  91. package/dist/src/repositories/assessment.repository.d.ts +4 -0
  92. package/dist/src/repositories/assessment.repository.js +19 -0
  93. package/dist/src/repositories/assessment.repository.js.map +1 -0
  94. package/dist/src/repositories/base.repository.d.ts +10 -0
  95. package/dist/src/repositories/base.repository.js +29 -0
  96. package/dist/src/repositories/base.repository.js.map +1 -0
  97. package/dist/src/repositories/index.d.ts +3 -0
  98. package/dist/src/repositories/index.js +8 -0
  99. package/dist/src/repositories/index.js.map +1 -0
  100. package/dist/src/repositories/predefined-assessment.repository.d.ts +4 -0
  101. package/dist/src/repositories/predefined-assessment.repository.js +19 -0
  102. package/dist/src/repositories/predefined-assessment.repository.js.map +1 -0
  103. package/dist/src/services/assessment.service.d.ts +23 -0
  104. package/dist/src/services/assessment.service.js +108 -0
  105. package/dist/src/services/assessment.service.js.map +1 -0
  106. package/dist/src/services/index.d.ts +3 -0
  107. package/dist/src/services/index.js +8 -0
  108. package/dist/src/services/index.js.map +1 -0
  109. package/dist/src/services/predefined-assessment.service.d.ts +21 -0
  110. package/dist/src/services/predefined-assessment.service.js +95 -0
  111. package/dist/src/services/predefined-assessment.service.js.map +1 -0
  112. package/dist/src/utilities/migrations/get-base-columns.d.ts +2 -0
  113. package/dist/src/utilities/migrations/get-base-columns.js +34 -0
  114. package/dist/src/utilities/migrations/get-base-columns.js.map +1 -0
  115. package/dist/tsconfig.tsbuildinfo +1 -0
  116. package/index.ts +26 -0
  117. package/jest.config.ts +10 -0
  118. package/nest-cli.json +8 -0
  119. package/package.json +53 -0
  120. package/src/constants/assessments-options.ts +1 -0
  121. package/src/constants/index.ts +12 -0
  122. package/src/constants/predefined-assessments/disc.ts +205 -0
  123. package/src/constants/predefined-assessments/holland.ts +235 -0
  124. package/src/constants/predefined-assessments/index.ts +5 -0
  125. package/src/constants/predefined-assessments/leadership.ts +242 -0
  126. package/src/dto/assessment.dto.ts +69 -0
  127. package/src/dto/base.dto.ts +11 -0
  128. package/src/dto/index.ts +4 -0
  129. package/src/dto/predefined-assessment.dto.ts +59 -0
  130. package/src/entities/assessment.entity.ts +41 -0
  131. package/src/entities/base.entity.ts +23 -0
  132. package/src/entities/index.ts +4 -0
  133. package/src/entities/pagination.ts +42 -0
  134. package/src/entities/predefined-assessment.entity.ts +31 -0
  135. package/src/enums/index.ts +4 -0
  136. package/src/enums/language.ts +5 -0
  137. package/src/enums/predefined-assessment-type.ts +5 -0
  138. package/src/interfaces/assessments-options.interface.ts +6 -0
  139. package/src/mappers/assessment.mapper.ts +34 -0
  140. package/src/mappers/predefined-assessment.mapper.ts +36 -0
  141. package/src/migrations/1767108782301-CreateAssessmentTable.ts +88 -0
  142. package/src/migrations/1767200020161-CreatePredefinedAssessmentTable.ts +77 -0
  143. package/src/migrations/1767204696509-SeedPredefinedAssessments.ts +32 -0
  144. package/src/migrations/1767651698587-AddMetaFieldsToAssessmentTable.ts +88 -0
  145. package/src/migrations/index.ts +20 -0
  146. package/src/modules/assessment.module.ts +22 -0
  147. package/src/repositories/assessment.repository.ts +6 -0
  148. package/src/repositories/base.repository.ts +39 -0
  149. package/src/repositories/index.ts +4 -0
  150. package/src/repositories/predefined-assessment.repository.ts +6 -0
  151. package/src/services/assessment.service.ts +144 -0
  152. package/src/services/index.ts +4 -0
  153. package/src/services/predefined-assessment.service.ts +121 -0
  154. package/src/utilities/migrations/get-base-columns.ts +32 -0
  155. package/tsconfig.build.json +4 -0
  156. package/tsconfig.json +21 -0
package/index.ts ADDED
@@ -0,0 +1,26 @@
1
+ //MODULES
2
+ export * from './src/modules/assessment.module';
3
+
4
+ //INTERFACES
5
+ export * from './src/interfaces/assessments-options.interface';
6
+
7
+ //SERVICES
8
+ export * from './src/services';
9
+
10
+ //ENTITIES
11
+ export * from './src/entities';
12
+
13
+ //DTOS
14
+ export * from './src/dto';
15
+
16
+ //CONSTANTS
17
+ export * from './src/constants';
18
+
19
+ //MIGRATIONS
20
+ export * from './src/migrations';
21
+
22
+ //REPOSITORIES
23
+ export * from './src/repositories';
24
+
25
+ //ENUMS
26
+ export * from './src/enums';
package/jest.config.ts ADDED
@@ -0,0 +1,10 @@
1
+ // jest.config.js
2
+ module.exports = {
3
+ preset: 'ts-jest',
4
+ testEnvironment: 'node',
5
+ moduleFileExtensions: ['ts', 'tsx', 'js'],
6
+ testMatch: ['src/test/?(*.)+(spec|test).[jt]s?(x)'],
7
+ transform: {
8
+ '^.+\\.tsx?$': 'ts-jest',
9
+ },
10
+ };
package/nest-cli.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/nest-cli",
3
+ "collection": "@nestjs/schematics",
4
+ "sourceRoot": "src",
5
+ "compilerOptions": {
6
+ "deleteOutDir": true
7
+ }
8
+ }
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@dirayaah/assessment-module",
3
+ "publishConfig": {
4
+ "access": "public"
5
+ },
6
+ "version": "1.0.0",
7
+ "description": "A reusable module for handling assessments in nestjs applications",
8
+ "main": "dist/index.js",
9
+ "type": "commonjs",
10
+ "exports": {
11
+ ".": {
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.js"
14
+ },
15
+ "./migrations": {
16
+ "import": "./dist/migrations/index.js",
17
+ "require": "./dist/migrations/index.js"
18
+ },
19
+ "./entities": {
20
+ "import": "./dist/entities/index.js",
21
+ "require": "./dist/entities/index.js"
22
+ }
23
+ },
24
+ "scripts": {
25
+ "build": "tsc",
26
+ "prepublishOnly": "npm run build"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://gitlab.zadapps.info/dirayaah/packages/assessments.git"
31
+ },
32
+ "author": "MD-LABS",
33
+ "license": "MIT",
34
+ "dependencies": {
35
+ "@nestjs/common": "7.5.1",
36
+ "@nestjs/core": "7.5.1",
37
+ "@nestjs/platform-express": "7.5.1",
38
+ "@nestjs/swagger": "4.8.0",
39
+ "@nestjs/typeorm": "7.1.4",
40
+ "dayjs": "1.11.13",
41
+ "dayjs-plugin-utc": "0.1.2",
42
+ "typeorm": "0.2.45"
43
+ },
44
+ "devDependencies": {
45
+ "@nestjs/testing": "^7.5.1",
46
+ "@types/express": "^4.17.21",
47
+ "@types/jest": "^28.1.8",
48
+ "@types/node": "^20.14.0",
49
+ "jest": "^28.1.3",
50
+ "ts-jest": "^28.0.8",
51
+ "typescript": "^5.3.3"
52
+ }
53
+ }
@@ -0,0 +1 @@
1
+ export const ASSESSMENTS_OPTIONS = 'ASSESSMENTS_OPTIONS';
@@ -0,0 +1,12 @@
1
+ import { ASSESSMENTS_OPTIONS } from './assessments-options';
2
+ import {
3
+ DISC_ASSESSMENT,
4
+ HOLLAND_ASSESSMENT,
5
+ LEADERSHIP_ASSESSMENT,
6
+ } from './predefined-assessments';
7
+ export {
8
+ ASSESSMENTS_OPTIONS,
9
+ DISC_ASSESSMENT,
10
+ HOLLAND_ASSESSMENT,
11
+ LEADERSHIP_ASSESSMENT,
12
+ };
@@ -0,0 +1,205 @@
1
+ import { PredefinedAssessmentEntity } from '../../entities/predefined-assessment.entity';
2
+ import { AssessmentDetailsLanguage, PredefinedAssessmentType } from '../../enums';
3
+
4
+ const DISC_ASSESSMENT: PredefinedAssessmentEntity[] = [
5
+ {
6
+ title: 'مقياس ديسك (DISC) للشخصية',
7
+ description:
8
+ 'مقياس ديسك (DISC) هو أداة تحليل سلوكي تساعد الأفراد على فهم أنماط شخصياتهم وطريقة تفاعلهم مع الآخرين. يركز المقياس على السلوكيات وليس الذكاء أو المهارات، ويُستخدم على نطاق واسع في التطوير المهني والشخصي.',
9
+ language: AssessmentDetailsLanguage.AR,
10
+ category: 'شخصية',
11
+ type: PredefinedAssessmentType.DISC,
12
+ backgroundImageUrl: null,
13
+ details: {
14
+ overview: {
15
+ title: 'مقياس ديسك (DISC) للشخصية',
16
+ description:
17
+ 'مقياس ديسك (DISC) هو أداة تحليل سلوكي تساعد الأفراد على فهم أنماط شخصياتهم وطريقة تفاعلهم مع الآخرين. يركز المقياس على السلوكيات وليس الذكاء أو المهارات، ويُستخدم على نطاق واسع في التطوير المهني والشخصي.',
18
+ },
19
+ behavioralPatterns: {
20
+ title: 'الأنماط السلوكية في مقياس DISC',
21
+ patterns: [
22
+ {
23
+ title: 'النمط القيادي (D-Dominance)',
24
+ description:
25
+ 'يعكس طريقة تعامل الشخص مع التحديات والمشكلات وتحقيق النتائج. يتميز أصحاب هذا النمط بالحزم والثقة والتركيز على الإنجاز.',
26
+ },
27
+ {
28
+ title: 'النمط التأثيري (I-Influence)',
29
+ description:
30
+ 'يعبر عن طريقة تفاعل الشخص مع الآخرين وقدرته على التأثير فيهم. يتميز أصحاب هذا النمط بالحيوية والاجتماعية والقدرة على الإقناع.',
31
+ },
32
+ {
33
+ title: 'النمط الثابت (S- Steadiness)',
34
+ description:
35
+ 'يمثل طريقة تعامل الشخص مع التغيير والاستقرار. يتميز أصحاب هذا النمط بالهدوء والصبر والموثوقية.',
36
+ },
37
+ {
38
+ title: 'النمط الدقيق (C-Conscientiousness)',
39
+ description:
40
+ 'يعكس مدى التزام الشخص بالقواعد والدقة والتنظيم. يتميز أصحاب هذا النمط بالتحليل والتركيز على التفاصيل والجودة.',
41
+ },
42
+ ],
43
+ },
44
+ howItWorks: {
45
+ title: 'كيف يعمل مقياس DISC',
46
+ description:
47
+ 'يتضمن المقياس مجموعة من الأسئلة السلوكية، ويتم تحليل الإجابات لتحديد النمط السلوكي الأساسي والأنماط الثانوية، مما ينتج عنه ملف شخصي مفصل.',
48
+ },
49
+ outputs: {
50
+ title: 'مخرجات التقييم',
51
+ items: [
52
+ 'ملف شخصي سلوكي',
53
+ 'نقاط القوة والتحديات',
54
+ 'أسلوب التواصل المناسب',
55
+ 'تحليل السلوك في بيئة العمل',
56
+ ],
57
+ },
58
+ useCases: {
59
+ title: 'استخدامات مقياس DISC',
60
+ items: [
61
+ 'التوظيف والاختيار',
62
+ 'بناء فرق العمل',
63
+ 'تطوير القيادات',
64
+ 'تحسين التواصل والمبيعات',
65
+ 'التطوير الذاتي',
66
+ ],
67
+ },
68
+ },
69
+ configuration: undefined,
70
+ },
71
+ {
72
+ title: 'DISC Personality Assessment',
73
+ description:
74
+ 'The DISC Personality Assessment is a behavioral analysis tool that helps individuals understand their personality styles and how they interact with others. It focuses on behaviors rather than intelligence or skills and is widely used in professional and personal development.',
75
+ language: AssessmentDetailsLanguage.EN,
76
+ category: 'Personality',
77
+ type: PredefinedAssessmentType.DISC,
78
+ backgroundImageUrl: null,
79
+ details: {
80
+ overview: {
81
+ title: 'DISC Personality Assessment',
82
+ description:
83
+ 'The DISC Personality Assessment is a behavioral analysis tool that helps individuals understand their personality styles and how they interact with others. It focuses on behaviors rather than intelligence or skills and is widely used in professional and personal development.',
84
+ },
85
+ behavioralPatterns: {
86
+ title: 'Behavioral Patterns in the DISC Assessment',
87
+ patterns: [
88
+ {
89
+ title: 'Dominance Style (D – Dominance)',
90
+ description:
91
+ 'Represents how a person deals with challenges, problems, and achieving results. Individuals with this style are assertive, confident, and focused on outcomes.',
92
+ },
93
+ {
94
+ title: 'Influence Style (I – Influence)',
95
+ description:
96
+ 'Reflects how a person interacts with others and influences their environment. Individuals with this style are energetic, social, and persuasive.',
97
+ },
98
+ {
99
+ title: 'Steadiness Style (S – Steadiness)',
100
+ description:
101
+ 'Represents how a person responds to change and stability. Individuals with this style are calm, patient, and reliable.',
102
+ },
103
+ {
104
+ title: 'Conscientious Style (C – Conscientiousness)',
105
+ description:
106
+ 'Reflects a person’s commitment to rules, accuracy, and organization. Individuals with this style are analytical, detail-oriented, and quality-focused.',
107
+ },
108
+ ],
109
+ },
110
+ howItWorks: {
111
+ title: 'How the DISC Assessment Works',
112
+ description:
113
+ 'The assessment consists of a set of behavioral questions. Responses are analyzed to identify primary and secondary behavioral styles, resulting in a detailed personal profile.',
114
+ },
115
+ outputs: {
116
+ title: 'Assessment Outputs',
117
+ items: [
118
+ 'Behavioral personality profile',
119
+ 'Strengths and challenges',
120
+ 'Preferred communication style',
121
+ 'Workplace behavior analysis',
122
+ ],
123
+ },
124
+ useCases: {
125
+ title: 'DISC Assessment Use Cases',
126
+ items: [
127
+ 'Recruitment and selection',
128
+ 'Team building',
129
+ 'Leadership development',
130
+ 'Improving communication and sales',
131
+ 'Personal development',
132
+ ],
133
+ },
134
+ },
135
+ configuration: null,
136
+ },
137
+ {
138
+ title: 'Evaluación de Personalidad DISC',
139
+ description:
140
+ 'La Evaluación de Personalidad DISC es una herramienta de análisis conductual que ayuda a las personas a comprender sus estilos de personalidad y la forma en que interactúan con los demás. Se centra en el comportamiento y se utiliza ampliamente en el desarrollo profesional y personal.',
141
+ language: AssessmentDetailsLanguage.ES,
142
+ category: 'Personalidad',
143
+ type: PredefinedAssessmentType.DISC,
144
+ backgroundImageUrl: null,
145
+ details: {
146
+ overview: {
147
+ title: 'Evaluación de Personalidad DISC',
148
+ description:
149
+ 'La Evaluación de Personalidad DISC es una herramienta de análisis conductual que ayuda a las personas a comprender sus estilos de personalidad y la forma en que interactúan con los demás. Se centra en el comportamiento y se utiliza ampliamente en el desarrollo profesional y personal.',
150
+ },
151
+ behavioralPatterns: {
152
+ title: 'Patrones de Comportamiento en la Evaluación DISC',
153
+ patterns: [
154
+ {
155
+ title: 'Estilo Dominante (D – Dominancia)',
156
+ description:
157
+ 'Representa cómo una persona enfrenta los desafíos, los problemas y el logro de resultados. Las personas con este estilo son decididas, seguras y orientadas a objetivos.',
158
+ },
159
+ {
160
+ title: 'Estilo Influyente (I – Influencia)',
161
+ description:
162
+ 'Refleja cómo una persona interactúa e influye en los demás. Las personas con este estilo son enérgicas, sociables y persuasivas.',
163
+ },
164
+ {
165
+ title: 'Estilo Estable (S – Estabilidad)',
166
+ description:
167
+ 'Representa cómo una persona responde al cambio y a la estabilidad. Las personas con este estilo son tranquilas, pacientes y confiables.',
168
+ },
169
+ {
170
+ title: 'Estilo Concienzudo (C – Conciencia)',
171
+ description:
172
+ 'Refleja el compromiso de una persona con las reglas, la precisión y la organización. Las personas con este estilo son analíticas, detallistas y enfocadas en la calidad.',
173
+ },
174
+ ],
175
+ },
176
+ howItWorks: {
177
+ title: 'Cómo Funciona la Evaluación DISC',
178
+ description:
179
+ 'La evaluación incluye un conjunto de preguntas conductuales. Las respuestas se analizan para identificar los estilos conductuales primarios y secundarios, generando un perfil personal detallado.',
180
+ },
181
+ outputs: {
182
+ title: 'Resultados de la Evaluación',
183
+ items: [
184
+ 'Perfil de personalidad conductual',
185
+ 'Fortalezas y áreas de mejora',
186
+ 'Estilo de comunicación preferido',
187
+ 'Análisis del comportamiento en el entorno laboral',
188
+ ],
189
+ },
190
+ useCases: {
191
+ title: 'Casos de Uso de la Evaluación DISC',
192
+ items: [
193
+ 'Reclutamiento y selección',
194
+ 'Trabajo en equipo',
195
+ 'Desarrollo de liderazgo',
196
+ 'Mejora de la comunicación y ventas',
197
+ 'Desarrollo personal',
198
+ ],
199
+ },
200
+ },
201
+ configuration: null,
202
+ },
203
+ ];
204
+
205
+ export default DISC_ASSESSMENT;
@@ -0,0 +1,235 @@
1
+ import { PredefinedAssessmentEntity } from '../../entities/predefined-assessment.entity';
2
+ import { AssessmentDetailsLanguage, PredefinedAssessmentType } from '../../enums';
3
+
4
+ const HOLLAND_ASSESSMENT: PredefinedAssessmentEntity[] = [
5
+ {
6
+ title: 'مقياس هولاند (HOLLAND) للميول المهنية',
7
+ description:
8
+ 'مقياس هولاند (Holland) هو أداة إرشاد مهني تهدف إلى تحديد الميول المهنية للأفراد بناءً على ستة أنماط شخصية رئيسية. يساعد المقياس الأفراد على فهم اهتماماتهم المهنية واختيار المسار الوظيفي الأنسب لهم.',
9
+ language: AssessmentDetailsLanguage.AR,
10
+ category: 'توجيه مهنية',
11
+ type: PredefinedAssessmentType.HOLLAND,
12
+ backgroundImageUrl: null,
13
+ details: {
14
+ overview: {
15
+ title: 'مقياس هولاند (HOLLAND) للميول المهنية',
16
+ description:
17
+ 'مقياس هولاند (Holland) هو أداة إرشاد مهني تقوم على تصنيف الأشخاص والوظائف إلى ستة أنماط رئيسية. يهدف إلى مساعدة الأفراد على فهم ميولهم المهنية وربطها بالبيئات الوظيفية المناسبة.',
18
+ },
19
+ behavioralPatterns: {
20
+ title: 'الأنماط المهنية في مقياس هولاند',
21
+ patterns: [
22
+ {
23
+ title: 'النمط الواقعي (R - Realistic)',
24
+ description:
25
+ 'يميل أصحاب هذا النمط إلى الأعمال العملية واليدوية التي تتطلب استخدام الأدوات أو الآلات. يفضلون الأنشطة الملموسة والعملية ويبتعدون عن الأعمال النظرية أو الاجتماعية.',
26
+ },
27
+ {
28
+ title: 'النمط البحثي (I - Investigative)',
29
+ description:
30
+ 'يتميز أصحاب هذا النمط بالاهتمام بالتحليل والتفكير وحل المشكلات. يفضلون البحث والاكتشاف والعمل مع الأفكار والمفاهيم العلمية.',
31
+ },
32
+ {
33
+ title: 'النمط الفني (A - Artistic)',
34
+ description:
35
+ 'يميل أصحاب هذا النمط إلى الإبداع والتعبير الفني. يفضلون الأنشطة غير التقليدية التي تسمح بالتعبير عن الذات مثل الفنون، الكتابة، والتصميم.',
36
+ },
37
+ {
38
+ title: 'النمط الاجتماعي (S - Social)',
39
+ description:
40
+ 'يركز هذا النمط على مساعدة الآخرين والتفاعل الاجتماعي. يفضل أصحابه العمل في مجالات التعليم، الإرشاد، والرعاية الإنسانية.',
41
+ },
42
+ {
43
+ title: 'النمط المغامر (E - Enterprising)',
44
+ description:
45
+ 'يتميز أصحاب هذا النمط بالقدرة على القيادة والتأثير في الآخرين. يفضلون البيئات التنافسية والأعمال التي تتطلب الإقناع واتخاذ القرار.',
46
+ },
47
+ {
48
+ title: 'النمط التقليدي (C - Conventional)',
49
+ description:
50
+ 'يميل أصحاب هذا النمط إلى التنظيم والدقة والعمل مع البيانات والأنظمة. يفضلون الأعمال المكتبية والمهام التي تتطلب الترتيب والالتزام بالقواعد.',
51
+ },
52
+ ],
53
+ },
54
+ howItWorks: {
55
+ title: 'كيف يعمل مقياس هولاند',
56
+ description:
57
+ 'يتضمن المقياس مجموعة من الأسئلة التي تقيس اهتمامات الفرد وميوله المهنية. يتم تحليل الإجابات لتحديد الأنماط المهنية الأساسية والثانوية وربطها بالمسارات الوظيفية المناسبة.',
58
+ },
59
+ outputs: {
60
+ title: 'مخرجات التقييم',
61
+ items: [
62
+ 'تحديد نمط أو أنماط الميول المهنية',
63
+ 'اقتراح مجالات وتخصصات مهنية مناسبة',
64
+ 'فهم نقاط القوة المهنية',
65
+ 'توجيه مهني مبني على الاهتمامات',
66
+ ],
67
+ },
68
+ useCases: {
69
+ title: 'استخدامات مقياس هولاند',
70
+ items: [
71
+ 'الإرشاد المهني',
72
+ 'اختيار التخصص الدراسي',
73
+ 'تخطيط المسار الوظيفي',
74
+ 'التوجيه للطلاب والخريجين',
75
+ 'إعادة التوجيه المهني',
76
+ ],
77
+ },
78
+ },
79
+ configuration: undefined,
80
+ },
81
+ {
82
+ title: 'Holland (HOLLAND) Career Interest Assessment',
83
+ description:
84
+ 'The Holland (Holland) Assessment is a career guidance tool designed to identify individuals’ career interests based on six main personality types. It helps individuals understand their professional interests and choose the most suitable career path.',
85
+ language: AssessmentDetailsLanguage.EN,
86
+ category: 'Career Interests',
87
+ type: PredefinedAssessmentType.HOLLAND,
88
+ backgroundImageUrl: null,
89
+ details: {
90
+ overview: {
91
+ title: 'Holland (HOLLAND) Career Interest Assessment',
92
+ description:
93
+ 'The Holland (Holland) Assessment is a career guidance tool that classifies people and work environments into six main types. It aims to help individuals understand their career interests and match them with suitable work environments.',
94
+ },
95
+ behavioralPatterns: {
96
+ title: 'Career Patterns in the Holland Assessment',
97
+ patterns: [
98
+ {
99
+ title: 'Realistic Type (R – Realistic)',
100
+ description:
101
+ 'Individuals with this type prefer practical and hands-on activities that involve tools or machinery. They favor tangible tasks and tend to avoid theoretical or highly social work.',
102
+ },
103
+ {
104
+ title: 'Investigative Type (I – Investigative)',
105
+ description:
106
+ 'Individuals with this type enjoy analysis, thinking, and problem-solving. They prefer research, discovery, and working with ideas and scientific concepts.',
107
+ },
108
+ {
109
+ title: 'Artistic Type (A – Artistic)',
110
+ description:
111
+ 'Individuals with this type are inclined toward creativity and self-expression. They prefer non-traditional activities such as arts, writing, and design.',
112
+ },
113
+ {
114
+ title: 'Social Type (S – Social)',
115
+ description:
116
+ 'This type focuses on helping others and social interaction. Individuals prefer working in education, counseling, and human service fields.',
117
+ },
118
+ {
119
+ title: 'Enterprising Type (E – Enterprising)',
120
+ description:
121
+ 'Individuals with this type are characterized by leadership and the ability to influence others. They prefer competitive environments and work that involves persuasion and decision-making.',
122
+ },
123
+ {
124
+ title: 'Conventional Type (C – Conventional)',
125
+ description:
126
+ 'Individuals with this type prefer organization, accuracy, and working with data and systems. They favor office-based tasks and activities that require structure and adherence to rules.',
127
+ },
128
+ ],
129
+ },
130
+ howItWorks: {
131
+ title: 'How the Holland Assessment Works',
132
+ description:
133
+ 'The assessment consists of a set of questions that measure an individual’s interests and career preferences. Responses are analyzed to identify primary and secondary career types and link them to suitable career paths.',
134
+ },
135
+ outputs: {
136
+ title: 'Assessment Outputs',
137
+ items: [
138
+ 'Identification of primary and secondary career interest types',
139
+ 'Suggested career fields and academic majors',
140
+ 'Understanding professional strengths',
141
+ 'Career guidance based on personal interests',
142
+ ],
143
+ },
144
+ useCases: {
145
+ title: 'Holland Assessment Use Cases',
146
+ items: [
147
+ 'Career guidance and counseling',
148
+ 'Choosing an academic major',
149
+ 'Career path planning',
150
+ 'Student and graduate guidance',
151
+ 'Career reorientation',
152
+ ],
153
+ },
154
+ },
155
+ configuration: null,
156
+ },
157
+ {
158
+ title: 'Evaluación de Intereses Profesionales Holland (HOLLAND)',
159
+ description:
160
+ 'La Evaluación Holland (Holland) es una herramienta de orientación profesional diseñada para identificar los intereses profesionales de las personas según seis tipos principales de personalidad. Ayuda a comprender los intereses laborales y a elegir el camino profesional más adecuado.',
161
+ language: AssessmentDetailsLanguage.ES,
162
+ category: 'Intereses Profesionales',
163
+ type: PredefinedAssessmentType.HOLLAND,
164
+ backgroundImageUrl: null,
165
+ details: {
166
+ overview: {
167
+ title: 'Evaluación de Intereses Profesionales Holland (HOLLAND)',
168
+ description:
169
+ 'La Evaluación Holland (Holland) es una herramienta de orientación profesional que clasifica a las personas y los entornos laborales en seis tipos principales. Su objetivo es ayudar a las personas a comprender sus intereses profesionales y relacionarlos con entornos laborales adecuados.',
170
+ },
171
+ behavioralPatterns: {
172
+ title: 'Patrones Profesionales en la Evaluación Holland',
173
+ patterns: [
174
+ {
175
+ title: 'Tipo Realista (R – Realista)',
176
+ description:
177
+ 'Las personas de este tipo prefieren actividades prácticas y manuales que implican el uso de herramientas o maquinaria. Favorecen tareas concretas y suelen evitar trabajos teóricos o muy sociales.',
178
+ },
179
+ {
180
+ title: 'Tipo Investigador (I – Investigador)',
181
+ description:
182
+ 'Las personas de este tipo disfrutan del análisis, el pensamiento y la resolución de problemas. Prefieren la investigación, el descubrimiento y el trabajo con ideas y conceptos científicos.',
183
+ },
184
+ {
185
+ title: 'Tipo Artístico (A – Artístico)',
186
+ description:
187
+ 'Las personas de este tipo se inclinan hacia la creatividad y la expresión personal. Prefieren actividades no tradicionales como el arte, la escritura y el diseño.',
188
+ },
189
+ {
190
+ title: 'Tipo Social (S – Social)',
191
+ description:
192
+ 'Este tipo se centra en ayudar a los demás y en la interacción social. Las personas prefieren trabajar en educación, orientación y servicios humanos.',
193
+ },
194
+ {
195
+ title: 'Tipo Emprendedor (E – Emprendedor)',
196
+ description:
197
+ 'Las personas de este tipo se caracterizan por el liderazgo y la capacidad de influir en los demás. Prefieren entornos competitivos y trabajos que implican persuasión y toma de decisiones.',
198
+ },
199
+ {
200
+ title: 'Tipo Convencional (C – Convencional)',
201
+ description:
202
+ 'Las personas de este tipo prefieren la organización, la precisión y el trabajo con datos y sistemas. Se inclinan por tareas administrativas y actividades que requieren estructura y cumplimiento de normas.',
203
+ },
204
+ ],
205
+ },
206
+ howItWorks: {
207
+ title: 'Cómo Funciona la Evaluación Holland',
208
+ description:
209
+ 'La evaluación incluye un conjunto de preguntas que miden los intereses y preferencias profesionales de la persona. Las respuestas se analizan para identificar los tipos profesionales primarios y secundarios y vincularlos con trayectorias profesionales adecuadas.',
210
+ },
211
+ outputs: {
212
+ title: 'Resultados de la Evaluación',
213
+ items: [
214
+ 'Identificación de los tipos principales y secundarios de intereses profesionales',
215
+ 'Sugerencia de campos profesionales y especialidades académicas',
216
+ 'Comprensión de las fortalezas profesionales',
217
+ 'Orientación profesional basada en los intereses personales',
218
+ ],
219
+ },
220
+ useCases: {
221
+ title: 'Casos de Uso de la Evaluación Holland',
222
+ items: [
223
+ 'Orientación y asesoramiento profesional',
224
+ 'Elección de especialidad académica',
225
+ 'Planificación de la carrera profesional',
226
+ 'Orientación para estudiantes y graduados',
227
+ 'Reorientación profesional',
228
+ ],
229
+ },
230
+ },
231
+ configuration: null,
232
+ },
233
+ ];
234
+
235
+ export default HOLLAND_ASSESSMENT;
@@ -0,0 +1,5 @@
1
+ import DISC_ASSESSMENT from './disc';
2
+ import HOLLAND_ASSESSMENT from './holland';
3
+ import LEADERSHIP_ASSESSMENT from './leadership';
4
+
5
+ export { DISC_ASSESSMENT, HOLLAND_ASSESSMENT, LEADERSHIP_ASSESSMENT };