@learncard/react 2.6.58 → 2.6.60
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/cjs/{CertificateDisplayCard-bcd8166b.js → CertificateDisplayCard-8e500ee3.js} +1891 -20
- package/dist/cjs/CertificateDisplayCard-8e500ee3.js.map +1 -0
- package/dist/cjs/{VCCard-4a883c80.js → VCCard-eb810671.js} +3 -3
- package/dist/cjs/{VCCard-4a883c80.js.map → VCCard-eb810671.js.map} +1 -1
- package/dist/cjs/{VCDisplayBackFace-91668901.js → VCDisplayBackFace-c6f12ee8.js} +2 -2
- package/dist/cjs/{VCDisplayBackFace-91668901.js.map → VCDisplayBackFace-c6f12ee8.js.map} +1 -1
- package/dist/cjs/{VCDisplayCard-d5fcddb7.js → VCDisplayCard-3325a3e5.js} +3 -3
- package/dist/cjs/{VCDisplayCard-d5fcddb7.js.map → VCDisplayCard-3325a3e5.js.map} +1 -1
- package/dist/cjs/VCDisplayCard2-b47ebf73.js +835 -0
- package/dist/cjs/VCDisplayCard2-b47ebf73.js.map +1 -0
- package/dist/cjs/{credential.helpers-a3c3d503.js → credential.helpers-66f4ff2a.js} +28 -1
- package/dist/{esm/credential.helpers-96c9bb51.js.map → cjs/credential.helpers-66f4ff2a.js.map} +1 -1
- package/dist/cjs/index.js +8 -8
- package/dist/cjs/index13.js +8 -8
- package/dist/cjs/index36.js +6 -6
- package/dist/cjs/index37.js +2 -2
- package/dist/cjs/index38.js +3 -3
- package/dist/cjs/index39.js +9 -9
- package/dist/cjs/index6.js +2 -2
- package/dist/esm/{CertificateDisplayCard-565f4c4c.js → CertificateDisplayCard-dcebf9a7.js} +1881 -21
- package/dist/esm/CertificateDisplayCard-dcebf9a7.js.map +1 -0
- package/dist/esm/{VCCard-e58481d3.js → VCCard-0834355b.js} +3 -3
- package/dist/esm/{VCCard-e58481d3.js.map → VCCard-0834355b.js.map} +1 -1
- package/dist/esm/{VCDisplayBackFace-b2024cfb.js → VCDisplayBackFace-3da487b5.js} +2 -2
- package/dist/esm/{VCDisplayBackFace-b2024cfb.js.map → VCDisplayBackFace-3da487b5.js.map} +1 -1
- package/dist/esm/{VCDisplayCard-69585484.js → VCDisplayCard-986e2e64.js} +3 -3
- package/dist/esm/{VCDisplayCard-69585484.js.map → VCDisplayCard-986e2e64.js.map} +1 -1
- package/dist/esm/VCDisplayCard2-5f6fda66.js +828 -0
- package/dist/esm/VCDisplayCard2-5f6fda66.js.map +1 -0
- package/dist/esm/{credential.helpers-96c9bb51.js → credential.helpers-cf70a857.js} +28 -2
- package/dist/{cjs/credential.helpers-a3c3d503.js.map → esm/credential.helpers-cf70a857.js.map} +1 -1
- package/dist/esm/index.js +7 -7
- package/dist/esm/index13.js +7 -7
- package/dist/esm/index36.js +6 -6
- package/dist/esm/index37.js +2 -2
- package/dist/esm/index38.js +3 -3
- package/dist/esm/index39.js +7 -7
- package/dist/esm/index6.js +2 -2
- package/dist/index.d.ts +3 -0
- package/dist/main.css +1 -1
- package/dist/main.js +1 -1
- package/package.json +1 -1
- package/dist/cjs/CertificateDisplayCard-bcd8166b.js.map +0 -1
- package/dist/cjs/VCDisplayCard2-c88df451.js +0 -2691
- package/dist/cjs/VCDisplayCard2-c88df451.js.map +0 -1
- package/dist/esm/CertificateDisplayCard-565f4c4c.js.map +0 -1
- package/dist/esm/VCDisplayCard2-cdc55bfd.js +0 -2674
- package/dist/esm/VCDisplayCard2-cdc55bfd.js.map +0 -1
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import React, { useState, useEffect } from 'react';
|
|
2
|
-
import { g as getColorForVerificationStatus, a as getInfoFromCredential, b as getCategoryDarkColor, c as getCategoryLightColor, d as getCategoryIcon, e as getTotalCountOfSkills, f as
|
|
2
|
+
import { g as getColorForVerificationStatus, a as getInfoFromCredential, b as getCategoryDarkColor, c as getCategoryLightColor, d as getCategoryIcon, e as getTotalCountOfSkills, f as categorizeSkills, h as getNameFromProfile, i as getImageFromProfile } from './credential.helpers-cf70a857.js';
|
|
3
3
|
import './default-face.jpeg';
|
|
4
4
|
import 'react-dom';
|
|
5
|
-
import './athletics.svg';
|
|
6
|
-
import './business.svg';
|
|
7
|
-
import './creative.svg';
|
|
8
|
-
import './digital.svg';
|
|
9
|
-
import './durable.svg';
|
|
10
|
-
import './medical.svg';
|
|
11
|
-
import './social.svg';
|
|
12
|
-
import './stem.svg';
|
|
13
|
-
import './trade.svg';
|
|
5
|
+
import Athletics from './athletics.svg';
|
|
6
|
+
import Business from './business.svg';
|
|
7
|
+
import Creative from './creative.svg';
|
|
8
|
+
import Digital from './digital.svg';
|
|
9
|
+
import Durable from './durable.svg';
|
|
10
|
+
import Medical from './medical.svg';
|
|
11
|
+
import Social from './social.svg';
|
|
12
|
+
import Stem from './stem.svg';
|
|
13
|
+
import Trade from './trade.svg';
|
|
14
14
|
import { a as VerificationStatusEnum } from './VCVerificationPill-1a8e55d1.js';
|
|
15
15
|
import './index.es-76d64136.js';
|
|
16
16
|
import './vc.check.svg';
|
|
@@ -803,16 +803,1865 @@ const MediaAttachmentsBox = ({
|
|
|
803
803
|
})));
|
|
804
804
|
};
|
|
805
805
|
|
|
806
|
+
const boostCMSSKillCategories = [
|
|
807
|
+
{
|
|
808
|
+
id: 1,
|
|
809
|
+
title: "Durable",
|
|
810
|
+
IconComponent: Durable,
|
|
811
|
+
iconClassName: "text-white",
|
|
812
|
+
iconCircleClass: "bg-cyan-700",
|
|
813
|
+
type: "durable" /* Durable */
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
id: 2,
|
|
817
|
+
title: "Stem",
|
|
818
|
+
IconComponent: Stem,
|
|
819
|
+
iconClassName: "text-white",
|
|
820
|
+
iconCircleClass: "bg-cyan-700",
|
|
821
|
+
type: "stem" /* Stem */
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
id: 3,
|
|
825
|
+
title: "Athletic",
|
|
826
|
+
IconComponent: Athletics,
|
|
827
|
+
iconClassName: "text-white",
|
|
828
|
+
iconCircleClass: "bg-cyan-700",
|
|
829
|
+
type: "athletic" /* Athletic */
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
id: 4,
|
|
833
|
+
title: "Creative",
|
|
834
|
+
IconComponent: Creative,
|
|
835
|
+
iconClassName: "text-white",
|
|
836
|
+
iconCircleClass: "bg-cyan-700",
|
|
837
|
+
type: "creative" /* Creative */
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
id: 5,
|
|
841
|
+
title: "Business",
|
|
842
|
+
IconComponent: Business,
|
|
843
|
+
iconClassName: "text-white",
|
|
844
|
+
iconCircleClass: "bg-cyan-700",
|
|
845
|
+
type: "business" /* Business */
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
id: 6,
|
|
849
|
+
title: "Trade",
|
|
850
|
+
IconComponent: Trade,
|
|
851
|
+
iconClassName: "text-white",
|
|
852
|
+
iconCircleClass: "bg-cyan-700",
|
|
853
|
+
type: "trade" /* Trade */
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
id: 7,
|
|
857
|
+
title: "Social",
|
|
858
|
+
IconComponent: Social,
|
|
859
|
+
iconClassName: "text-white",
|
|
860
|
+
iconCircleClass: "bg-cyan-700",
|
|
861
|
+
type: "social" /* Social */
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
id: 8,
|
|
865
|
+
title: "Digital",
|
|
866
|
+
IconComponent: Digital,
|
|
867
|
+
iconClassName: "text-white",
|
|
868
|
+
iconCircleClass: "bg-cyan-700",
|
|
869
|
+
type: "digital" /* Digital */
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
id: 9,
|
|
873
|
+
title: "Medical",
|
|
874
|
+
IconComponent: Medical,
|
|
875
|
+
iconClassName: "text-white",
|
|
876
|
+
iconCircleClass: "bg-cyan-700",
|
|
877
|
+
type: "medical" /* Medical */
|
|
878
|
+
}
|
|
879
|
+
];
|
|
880
|
+
const CATEGORY_TO_SKILLS = {
|
|
881
|
+
["durable" /* Durable */]: [
|
|
882
|
+
{
|
|
883
|
+
id: 1,
|
|
884
|
+
title: "Adaptability",
|
|
885
|
+
IconComponent: Durable,
|
|
886
|
+
iconClassName: "text-white",
|
|
887
|
+
iconCircleClass: "bg-cyan-700",
|
|
888
|
+
category: "durable" /* Durable */,
|
|
889
|
+
type: "adaptability" /* Adaptability */
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
id: 2,
|
|
893
|
+
title: "Perseverance",
|
|
894
|
+
IconComponent: Durable,
|
|
895
|
+
iconClassName: "text-white",
|
|
896
|
+
iconCircleClass: "bg-cyan-700",
|
|
897
|
+
category: "durable" /* Durable */,
|
|
898
|
+
type: "perseverance" /* Perseverance */
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
id: 3,
|
|
902
|
+
title: "Mental Toughness",
|
|
903
|
+
IconComponent: Durable,
|
|
904
|
+
iconClassName: "text-white",
|
|
905
|
+
iconCircleClass: "bg-cyan-700",
|
|
906
|
+
category: "durable" /* Durable */,
|
|
907
|
+
type: "mentalToughness" /* MentalToughness */
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
id: 4,
|
|
911
|
+
title: "Physical Endurance",
|
|
912
|
+
IconComponent: Durable,
|
|
913
|
+
iconClassName: "text-white",
|
|
914
|
+
iconCircleClass: "bg-cyan-700",
|
|
915
|
+
category: "durable" /* Durable */,
|
|
916
|
+
type: "physicalEndurance" /* PhysicalEndurance */
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
id: 5,
|
|
920
|
+
title: "Lifelong Learning",
|
|
921
|
+
IconComponent: Durable,
|
|
922
|
+
iconClassName: "text-white",
|
|
923
|
+
iconCircleClass: "bg-cyan-700",
|
|
924
|
+
category: "durable" /* Durable */,
|
|
925
|
+
type: "lifelongLearning" /* LifelongLearning */
|
|
926
|
+
}
|
|
927
|
+
],
|
|
928
|
+
["stem" /* Stem */]: [
|
|
929
|
+
{
|
|
930
|
+
id: 1,
|
|
931
|
+
title: "Mathematics",
|
|
932
|
+
IconComponent: Stem,
|
|
933
|
+
iconClassName: "text-white",
|
|
934
|
+
iconCircleClass: "bg-cyan-700",
|
|
935
|
+
category: "stem" /* Stem */,
|
|
936
|
+
type: "mathematics" /* Mathematics */
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
id: 2,
|
|
940
|
+
title: "Science",
|
|
941
|
+
IconComponent: Stem,
|
|
942
|
+
iconClassName: "text-white",
|
|
943
|
+
iconCircleClass: "bg-cyan-700",
|
|
944
|
+
category: "stem" /* Stem */,
|
|
945
|
+
type: "science" /* Science */
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
id: 3,
|
|
949
|
+
title: "Technology",
|
|
950
|
+
IconComponent: Stem,
|
|
951
|
+
iconClassName: "text-white",
|
|
952
|
+
iconCircleClass: "bg-cyan-700",
|
|
953
|
+
category: "stem" /* Stem */,
|
|
954
|
+
type: "technology" /* Technology */
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
id: 4,
|
|
958
|
+
title: "Engineering",
|
|
959
|
+
IconComponent: Stem,
|
|
960
|
+
iconClassName: "text-white",
|
|
961
|
+
iconCircleClass: "bg-cyan-700",
|
|
962
|
+
category: "stem" /* Stem */,
|
|
963
|
+
type: "engineering" /* Engineering */
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
id: 5,
|
|
967
|
+
title: "Research",
|
|
968
|
+
IconComponent: Stem,
|
|
969
|
+
iconClassName: "text-white",
|
|
970
|
+
iconCircleClass: "bg-cyan-700",
|
|
971
|
+
category: "stem" /* Stem */,
|
|
972
|
+
type: "research" /* Research */
|
|
973
|
+
}
|
|
974
|
+
],
|
|
975
|
+
["athletic" /* Athletic */]: [
|
|
976
|
+
{
|
|
977
|
+
id: 1,
|
|
978
|
+
title: "Sport specific skills",
|
|
979
|
+
IconComponent: Athletics,
|
|
980
|
+
iconClassName: "text-white",
|
|
981
|
+
iconCircleClass: "bg-cyan-700",
|
|
982
|
+
category: "athletic" /* Athletic */,
|
|
983
|
+
type: "sportSpecificSkills" /* SportSpecificSkills */
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
id: 2,
|
|
987
|
+
title: "Strength and Conditioning",
|
|
988
|
+
IconComponent: Athletics,
|
|
989
|
+
iconClassName: "text-white",
|
|
990
|
+
iconCircleClass: "bg-cyan-700",
|
|
991
|
+
category: "athletic" /* Athletic */,
|
|
992
|
+
type: "strengthAndConditioning" /* StrengthAndConditioning */
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
id: 3,
|
|
996
|
+
title: "Coordination",
|
|
997
|
+
IconComponent: Athletics,
|
|
998
|
+
iconClassName: "text-white",
|
|
999
|
+
iconCircleClass: "bg-cyan-700",
|
|
1000
|
+
category: "athletic" /* Athletic */,
|
|
1001
|
+
type: "coordination" /* Coordination */
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
id: 4,
|
|
1005
|
+
title: "Mental Focus",
|
|
1006
|
+
IconComponent: Athletics,
|
|
1007
|
+
iconClassName: "text-white",
|
|
1008
|
+
iconCircleClass: "bg-cyan-700",
|
|
1009
|
+
category: "athletic" /* Athletic */,
|
|
1010
|
+
type: "mentalFocus" /* MentalFocus */
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
id: 5,
|
|
1014
|
+
title: "Team work",
|
|
1015
|
+
IconComponent: Athletics,
|
|
1016
|
+
iconClassName: "text-white",
|
|
1017
|
+
iconCircleClass: "bg-cyan-700",
|
|
1018
|
+
category: "athletic" /* Athletic */,
|
|
1019
|
+
type: "teamwork" /* Teamwork */
|
|
1020
|
+
}
|
|
1021
|
+
],
|
|
1022
|
+
["creative" /* Creative */]: [
|
|
1023
|
+
{
|
|
1024
|
+
id: 1,
|
|
1025
|
+
title: "Visual Arts",
|
|
1026
|
+
IconComponent: Creative,
|
|
1027
|
+
iconClassName: "text-white",
|
|
1028
|
+
iconCircleClass: "bg-cyan-700",
|
|
1029
|
+
category: "creative" /* Creative */,
|
|
1030
|
+
type: "visualArts" /* VisualArts */
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
id: 2,
|
|
1034
|
+
title: "Performing Arts",
|
|
1035
|
+
IconComponent: Creative,
|
|
1036
|
+
iconClassName: "text-white",
|
|
1037
|
+
iconCircleClass: "bg-cyan-700",
|
|
1038
|
+
category: "creative" /* Creative */,
|
|
1039
|
+
type: "performingArts" /* PerformingArts */
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
id: 3,
|
|
1043
|
+
title: "Writing",
|
|
1044
|
+
IconComponent: Creative,
|
|
1045
|
+
iconClassName: "text-white",
|
|
1046
|
+
iconCircleClass: "bg-cyan-700",
|
|
1047
|
+
category: "creative" /* Creative */,
|
|
1048
|
+
type: "writing" /* Writing */
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
id: 4,
|
|
1052
|
+
title: "Design",
|
|
1053
|
+
IconComponent: Creative,
|
|
1054
|
+
iconClassName: "text-white",
|
|
1055
|
+
iconCircleClass: "bg-cyan-700",
|
|
1056
|
+
category: "creative" /* Creative */,
|
|
1057
|
+
type: "design" /* Design */
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
id: 5,
|
|
1061
|
+
title: "Ideation",
|
|
1062
|
+
IconComponent: Creative,
|
|
1063
|
+
iconClassName: "text-white",
|
|
1064
|
+
iconCircleClass: "bg-cyan-700",
|
|
1065
|
+
category: "creative" /* Creative */,
|
|
1066
|
+
type: "ideation" /* Ideation */
|
|
1067
|
+
}
|
|
1068
|
+
],
|
|
1069
|
+
["business" /* Business */]: [
|
|
1070
|
+
{
|
|
1071
|
+
id: 1,
|
|
1072
|
+
title: "Management",
|
|
1073
|
+
IconComponent: Business,
|
|
1074
|
+
iconClassName: "text-white",
|
|
1075
|
+
iconCircleClass: "bg-cyan-700",
|
|
1076
|
+
category: "business" /* Business */,
|
|
1077
|
+
type: "management" /* Management */
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
id: 2,
|
|
1081
|
+
title: "Finance",
|
|
1082
|
+
IconComponent: Business,
|
|
1083
|
+
iconClassName: "text-white",
|
|
1084
|
+
iconCircleClass: "bg-cyan-700",
|
|
1085
|
+
category: "business" /* Business */,
|
|
1086
|
+
type: "finance" /* Finance */
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
id: 3,
|
|
1090
|
+
title: "Marketing",
|
|
1091
|
+
IconComponent: Business,
|
|
1092
|
+
iconClassName: "text-white",
|
|
1093
|
+
iconCircleClass: "bg-cyan-700",
|
|
1094
|
+
category: "business" /* Business */,
|
|
1095
|
+
type: "marketing" /* Marketing */
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
id: 4,
|
|
1099
|
+
title: "Operations",
|
|
1100
|
+
IconComponent: Business,
|
|
1101
|
+
iconClassName: "text-white",
|
|
1102
|
+
iconCircleClass: "bg-cyan-700",
|
|
1103
|
+
category: "business" /* Business */,
|
|
1104
|
+
type: "operations" /* Operations */
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
id: 5,
|
|
1108
|
+
title: "Entrepreneurship",
|
|
1109
|
+
IconComponent: Business,
|
|
1110
|
+
iconClassName: "text-white",
|
|
1111
|
+
iconCircleClass: "bg-cyan-700",
|
|
1112
|
+
category: "business" /* Business */,
|
|
1113
|
+
type: "entrepreneurship" /* Entrepreneurship */
|
|
1114
|
+
}
|
|
1115
|
+
],
|
|
1116
|
+
["trade" /* Trade */]: [
|
|
1117
|
+
{
|
|
1118
|
+
id: 1,
|
|
1119
|
+
title: "Construction",
|
|
1120
|
+
IconComponent: Trade,
|
|
1121
|
+
iconClassName: "text-white",
|
|
1122
|
+
iconCircleClass: "bg-cyan-700",
|
|
1123
|
+
category: "trade" /* Trade */,
|
|
1124
|
+
type: "construction" /* Construction */
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
id: 2,
|
|
1128
|
+
title: "Mechanics",
|
|
1129
|
+
IconComponent: Trade,
|
|
1130
|
+
iconClassName: "text-white",
|
|
1131
|
+
iconCircleClass: "bg-cyan-700",
|
|
1132
|
+
category: "trade" /* Trade */,
|
|
1133
|
+
type: "mechanics" /* Mechanics */
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
id: 3,
|
|
1137
|
+
title: "Manufacturing",
|
|
1138
|
+
IconComponent: Trade,
|
|
1139
|
+
iconClassName: "text-white",
|
|
1140
|
+
iconCircleClass: "bg-cyan-700",
|
|
1141
|
+
category: "trade" /* Trade */,
|
|
1142
|
+
type: "manufacturing" /* Manufacturing */
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
id: 4,
|
|
1146
|
+
title: "Cosmetology",
|
|
1147
|
+
IconComponent: Trade,
|
|
1148
|
+
iconClassName: "text-white",
|
|
1149
|
+
iconCircleClass: "bg-cyan-700",
|
|
1150
|
+
category: "trade" /* Trade */,
|
|
1151
|
+
type: "cosmetology" /* Cosmetology */
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
id: 5,
|
|
1155
|
+
title: "Culinary Arts",
|
|
1156
|
+
IconComponent: Trade,
|
|
1157
|
+
iconClassName: "text-white",
|
|
1158
|
+
iconCircleClass: "bg-cyan-700",
|
|
1159
|
+
category: "trade" /* Trade */,
|
|
1160
|
+
type: "culinaryArts" /* CulinaryArts */
|
|
1161
|
+
}
|
|
1162
|
+
],
|
|
1163
|
+
["social" /* Social */]: [
|
|
1164
|
+
{
|
|
1165
|
+
id: 1,
|
|
1166
|
+
title: "History",
|
|
1167
|
+
IconComponent: Social,
|
|
1168
|
+
iconClassName: "text-white",
|
|
1169
|
+
iconCircleClass: "bg-cyan-700",
|
|
1170
|
+
category: "social" /* Social */,
|
|
1171
|
+
type: "history" /* History */
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
id: 2,
|
|
1175
|
+
title: "Psychology",
|
|
1176
|
+
IconComponent: Social,
|
|
1177
|
+
iconClassName: "text-white",
|
|
1178
|
+
iconCircleClass: "bg-cyan-700",
|
|
1179
|
+
category: "social" /* Social */,
|
|
1180
|
+
type: "psychology" /* Psychology */
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
id: 3,
|
|
1184
|
+
title: "Sociology",
|
|
1185
|
+
IconComponent: Social,
|
|
1186
|
+
iconClassName: "text-white",
|
|
1187
|
+
iconCircleClass: "bg-cyan-700",
|
|
1188
|
+
category: "social" /* Social */,
|
|
1189
|
+
type: "sociology" /* Sociology */
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
id: 4,
|
|
1193
|
+
title: "Economics",
|
|
1194
|
+
IconComponent: Social,
|
|
1195
|
+
iconClassName: "text-white",
|
|
1196
|
+
iconCircleClass: "bg-cyan-700",
|
|
1197
|
+
category: "social" /* Social */,
|
|
1198
|
+
type: "economics" /* Economics */
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
id: 5,
|
|
1202
|
+
title: "Political Science",
|
|
1203
|
+
IconComponent: Social,
|
|
1204
|
+
iconClassName: "text-white",
|
|
1205
|
+
iconCircleClass: "bg-cyan-700",
|
|
1206
|
+
category: "social" /* Social */,
|
|
1207
|
+
type: "politicalScience" /* PoliticalScience */
|
|
1208
|
+
}
|
|
1209
|
+
],
|
|
1210
|
+
["digital" /* Digital */]: [
|
|
1211
|
+
{
|
|
1212
|
+
id: 1,
|
|
1213
|
+
title: "Basic Computer Skills",
|
|
1214
|
+
IconComponent: Digital,
|
|
1215
|
+
iconClassName: "text-white",
|
|
1216
|
+
iconCircleClass: "bg-cyan-700",
|
|
1217
|
+
category: "digital" /* Digital */,
|
|
1218
|
+
type: "basicComputerSkills" /* BasicComputerSkills */
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
id: 2,
|
|
1222
|
+
title: "Information Literacy",
|
|
1223
|
+
IconComponent: Digital,
|
|
1224
|
+
iconClassName: "text-white",
|
|
1225
|
+
iconCircleClass: "bg-cyan-700",
|
|
1226
|
+
category: "digital" /* Digital */,
|
|
1227
|
+
type: "informationLiteracy" /* InformationLiteracy */
|
|
1228
|
+
},
|
|
1229
|
+
{
|
|
1230
|
+
id: 3,
|
|
1231
|
+
title: "Software Proficiency",
|
|
1232
|
+
IconComponent: Digital,
|
|
1233
|
+
iconClassName: "text-white",
|
|
1234
|
+
iconCircleClass: "bg-cyan-700",
|
|
1235
|
+
category: "digital" /* Digital */,
|
|
1236
|
+
type: "softwareProficiency" /* SoftwareProficiency */
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
id: 4,
|
|
1240
|
+
title: "Online Communication",
|
|
1241
|
+
IconComponent: Digital,
|
|
1242
|
+
iconClassName: "text-white",
|
|
1243
|
+
iconCircleClass: "bg-cyan-700",
|
|
1244
|
+
category: "digital" /* Digital */,
|
|
1245
|
+
type: "onlineCommunication" /* OnlineCommunication */
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
id: 5,
|
|
1249
|
+
title: "Cybersecurity",
|
|
1250
|
+
IconComponent: Digital,
|
|
1251
|
+
iconClassName: "text-white",
|
|
1252
|
+
iconCircleClass: "bg-cyan-700",
|
|
1253
|
+
category: "digital" /* Digital */,
|
|
1254
|
+
type: "cybersecurity" /* Cybersecurity */
|
|
1255
|
+
}
|
|
1256
|
+
],
|
|
1257
|
+
["medical" /* Medical */]: [
|
|
1258
|
+
{
|
|
1259
|
+
id: 1,
|
|
1260
|
+
title: "Clinical Skills",
|
|
1261
|
+
IconComponent: Medical,
|
|
1262
|
+
iconClassName: "text-white",
|
|
1263
|
+
iconCircleClass: "bg-cyan-700",
|
|
1264
|
+
category: "medical" /* Medical */,
|
|
1265
|
+
type: "clinicalSkills" /* ClinicalSkills */
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
id: 2,
|
|
1269
|
+
title: "Anatomy and Physiology",
|
|
1270
|
+
IconComponent: Medical,
|
|
1271
|
+
iconClassName: "text-white",
|
|
1272
|
+
iconCircleClass: "bg-cyan-700",
|
|
1273
|
+
category: "medical" /* Medical */,
|
|
1274
|
+
type: "anatomyAndPhysiology" /* AnatomyAndPhysiology */
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
id: 3,
|
|
1278
|
+
title: "Patient Care",
|
|
1279
|
+
IconComponent: Medical,
|
|
1280
|
+
iconClassName: "text-white",
|
|
1281
|
+
iconCircleClass: "bg-cyan-700",
|
|
1282
|
+
category: "medical" /* Medical */,
|
|
1283
|
+
type: "patientCare" /* PatientCare */
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
id: 4,
|
|
1287
|
+
title: "Medical Specialties",
|
|
1288
|
+
IconComponent: Medical,
|
|
1289
|
+
iconClassName: "text-white",
|
|
1290
|
+
iconCircleClass: "bg-cyan-700",
|
|
1291
|
+
category: "medical" /* Medical */,
|
|
1292
|
+
type: "medicalSpecialties" /* MedicalSpecialties */
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
id: 5,
|
|
1296
|
+
title: "Healthcare Administration",
|
|
1297
|
+
IconComponent: Medical,
|
|
1298
|
+
iconClassName: "text-white",
|
|
1299
|
+
iconCircleClass: "bg-cyan-700",
|
|
1300
|
+
category: "medical" /* Medical */,
|
|
1301
|
+
type: "healthcareAdministration" /* HealthcareAdministration */
|
|
1302
|
+
}
|
|
1303
|
+
]
|
|
1304
|
+
};
|
|
1305
|
+
const SKILLS_TO_SUBSKILLS = {
|
|
1306
|
+
["adaptability" /* Adaptability */]: [
|
|
1307
|
+
{
|
|
1308
|
+
id: 1,
|
|
1309
|
+
title: "Flexibility",
|
|
1310
|
+
type: "flexibility" /* flexibility */
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
id: 2,
|
|
1314
|
+
title: "Resilience",
|
|
1315
|
+
type: "resilience" /* resilience */
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
id: 3,
|
|
1319
|
+
title: "Problem Solving",
|
|
1320
|
+
type: "problemSolving" /* problemSolving */
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
id: 4,
|
|
1324
|
+
title: "Resourcefulness",
|
|
1325
|
+
type: "resourcefulness" /* resourcefulness */
|
|
1326
|
+
},
|
|
1327
|
+
{
|
|
1328
|
+
id: 5,
|
|
1329
|
+
title: "Stress management",
|
|
1330
|
+
type: "stressManagement" /* stressManagement */
|
|
1331
|
+
}
|
|
1332
|
+
],
|
|
1333
|
+
["perseverance" /* Perseverance */]: [
|
|
1334
|
+
{
|
|
1335
|
+
id: 1,
|
|
1336
|
+
title: "Discipline",
|
|
1337
|
+
type: "discipline" /* discipline */
|
|
1338
|
+
},
|
|
1339
|
+
{
|
|
1340
|
+
id: 2,
|
|
1341
|
+
title: "focus",
|
|
1342
|
+
type: "focus" /* focus */
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
id: 3,
|
|
1346
|
+
title: "Commitment",
|
|
1347
|
+
type: "commitment" /* commitment */
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
id: 4,
|
|
1351
|
+
title: "Grit",
|
|
1352
|
+
type: "grit" /* grit */
|
|
1353
|
+
},
|
|
1354
|
+
{
|
|
1355
|
+
id: 5,
|
|
1356
|
+
title: "Tenacity",
|
|
1357
|
+
type: "tenacity" /* tenacity */
|
|
1358
|
+
}
|
|
1359
|
+
],
|
|
1360
|
+
["mentalToughness" /* MentalToughness */]: [
|
|
1361
|
+
{
|
|
1362
|
+
id: 1,
|
|
1363
|
+
title: "optimism",
|
|
1364
|
+
type: "optimism" /* optimism */
|
|
1365
|
+
},
|
|
1366
|
+
{
|
|
1367
|
+
id: 2,
|
|
1368
|
+
title: "Self Confidence",
|
|
1369
|
+
type: "selfConfidence" /* selfConfidence */
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
id: 3,
|
|
1373
|
+
title: "Emotional Regulation",
|
|
1374
|
+
type: "emotionalRegulation" /* emotionalRegulation */
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
id: 4,
|
|
1378
|
+
title: "Growth Mindset",
|
|
1379
|
+
type: "growthMindset" /* growthMindset */
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
id: 5,
|
|
1383
|
+
title: "Positive Self-Talk",
|
|
1384
|
+
type: "positiveSelfTalk" /* positiveSelfTalk */
|
|
1385
|
+
}
|
|
1386
|
+
],
|
|
1387
|
+
["physicalEndurance" /* PhysicalEndurance */]: [
|
|
1388
|
+
{
|
|
1389
|
+
id: 1,
|
|
1390
|
+
title: "Strength",
|
|
1391
|
+
type: "strength" /* strength */
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
id: 2,
|
|
1395
|
+
title: "Stamina",
|
|
1396
|
+
type: "stamina" /* stamina */
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
id: 3,
|
|
1400
|
+
title: "Cardiovascular Fitness",
|
|
1401
|
+
type: "cardiovascularFitness" /* cardiovascularFitness */
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
id: 4,
|
|
1405
|
+
title: "Pain Tolerance",
|
|
1406
|
+
type: "painTolerance" /* painTolerance */
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
id: 5,
|
|
1410
|
+
title: "Injury Prevention",
|
|
1411
|
+
type: "injuryPrevention" /* injuryPrevention */
|
|
1412
|
+
}
|
|
1413
|
+
],
|
|
1414
|
+
["lifelongLearning" /* LifelongLearning */]: [
|
|
1415
|
+
{
|
|
1416
|
+
id: 1,
|
|
1417
|
+
title: "Curiosity",
|
|
1418
|
+
type: "curiosity" /* curiosity */
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
id: 2,
|
|
1422
|
+
title: "Open Mindedness",
|
|
1423
|
+
type: "openMindedness" /* openMindedness */
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
id: 3,
|
|
1427
|
+
title: "Critical Thinking",
|
|
1428
|
+
type: "critical thinking" /* criticalThinking */
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
id: 4,
|
|
1432
|
+
title: "Self-directed Learning",
|
|
1433
|
+
type: "selfDirectedLearning" /* selfDirectedLearning */
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
id: 5,
|
|
1437
|
+
title: "Knowledge Retention",
|
|
1438
|
+
type: "knowledgeRetention" /* knowledgeRetention */
|
|
1439
|
+
}
|
|
1440
|
+
],
|
|
1441
|
+
["mathematics" /* Mathematics */]: [
|
|
1442
|
+
{
|
|
1443
|
+
id: 1,
|
|
1444
|
+
title: "Algebra",
|
|
1445
|
+
type: "algebra" /* algebra */
|
|
1446
|
+
},
|
|
1447
|
+
{
|
|
1448
|
+
id: 2,
|
|
1449
|
+
title: "Geometry",
|
|
1450
|
+
type: "geometry" /* geometry */
|
|
1451
|
+
},
|
|
1452
|
+
{
|
|
1453
|
+
id: 3,
|
|
1454
|
+
title: "Trigonometry",
|
|
1455
|
+
type: "trigonometry" /* trigonometry */
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
id: 4,
|
|
1459
|
+
title: "Calculus",
|
|
1460
|
+
type: "calculus" /* calculus */
|
|
1461
|
+
},
|
|
1462
|
+
{
|
|
1463
|
+
id: 5,
|
|
1464
|
+
title: "Statistics",
|
|
1465
|
+
type: "statistics" /* statistics */
|
|
1466
|
+
}
|
|
1467
|
+
],
|
|
1468
|
+
["science" /* Science */]: [
|
|
1469
|
+
{
|
|
1470
|
+
id: 1,
|
|
1471
|
+
title: "Physics",
|
|
1472
|
+
type: "physics" /* physics */
|
|
1473
|
+
},
|
|
1474
|
+
{
|
|
1475
|
+
id: 2,
|
|
1476
|
+
title: "Chemistry",
|
|
1477
|
+
type: "chemistry" /* chemistry */
|
|
1478
|
+
},
|
|
1479
|
+
{
|
|
1480
|
+
id: 3,
|
|
1481
|
+
title: "Biology",
|
|
1482
|
+
type: "biology" /* biology */
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
id: 4,
|
|
1486
|
+
title: "Earth science",
|
|
1487
|
+
type: "earthScience" /* earthScience */
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
id: 5,
|
|
1491
|
+
title: "Environmental science",
|
|
1492
|
+
type: "environmentalScience" /* environmentalScience */
|
|
1493
|
+
}
|
|
1494
|
+
],
|
|
1495
|
+
["technology" /* Technology */]: [
|
|
1496
|
+
{
|
|
1497
|
+
id: 1,
|
|
1498
|
+
title: "Coding",
|
|
1499
|
+
type: "coding" /* coding */
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
id: 2,
|
|
1503
|
+
title: "Software Development",
|
|
1504
|
+
type: "softwareDevelopment" /* softwareDevelopment */
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
id: 3,
|
|
1508
|
+
title: "Data Analysis",
|
|
1509
|
+
type: "dataAnalysis" /* dataAnalysis */
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
id: 4,
|
|
1513
|
+
title: "Robotics",
|
|
1514
|
+
type: "robotics" /* robotics */
|
|
1515
|
+
},
|
|
1516
|
+
{
|
|
1517
|
+
id: 5,
|
|
1518
|
+
title: "Cybersecurity",
|
|
1519
|
+
type: "cybersecurity" /* cybersecurity */
|
|
1520
|
+
}
|
|
1521
|
+
],
|
|
1522
|
+
["engineering" /* Engineering */]: [
|
|
1523
|
+
{
|
|
1524
|
+
id: 1,
|
|
1525
|
+
title: "Mechanical Engineering",
|
|
1526
|
+
type: "mechanicalEngineering" /* mechanicalEngineering */
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
id: 2,
|
|
1530
|
+
title: "Electrical Engineering",
|
|
1531
|
+
type: "electricalEngineering" /* electricalEngineering */
|
|
1532
|
+
},
|
|
1533
|
+
{
|
|
1534
|
+
id: 3,
|
|
1535
|
+
title: "Civil Engineering",
|
|
1536
|
+
type: "civilEngineering" /* civilEngineering */
|
|
1537
|
+
},
|
|
1538
|
+
{
|
|
1539
|
+
id: 4,
|
|
1540
|
+
title: "Chemical Engineering",
|
|
1541
|
+
type: "chemicalEngineering" /* chemicalEngineering */
|
|
1542
|
+
},
|
|
1543
|
+
{
|
|
1544
|
+
id: 5,
|
|
1545
|
+
title: "Computer Engineering",
|
|
1546
|
+
type: "computerEngineering" /* computerEngineering */
|
|
1547
|
+
}
|
|
1548
|
+
],
|
|
1549
|
+
["research" /* Research */]: [
|
|
1550
|
+
{
|
|
1551
|
+
id: 1,
|
|
1552
|
+
title: "Hypothesis Development",
|
|
1553
|
+
type: "hypothesisDevelopment" /* hypothesisDevelopment */
|
|
1554
|
+
},
|
|
1555
|
+
{
|
|
1556
|
+
id: 2,
|
|
1557
|
+
title: "Experimental Design",
|
|
1558
|
+
type: "experimentalDesign" /* experimentalDesign */
|
|
1559
|
+
},
|
|
1560
|
+
{
|
|
1561
|
+
id: 3,
|
|
1562
|
+
title: "Data Collection",
|
|
1563
|
+
type: "dataCollection" /* dataCollection */
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
id: 4,
|
|
1567
|
+
title: "Analysis",
|
|
1568
|
+
type: "analysis" /* analysis */
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
id: 5,
|
|
1572
|
+
title: "presentation",
|
|
1573
|
+
type: "presentation" /* presentation */
|
|
1574
|
+
}
|
|
1575
|
+
],
|
|
1576
|
+
["sportSpecificSkills" /* SportSpecificSkills */]: [
|
|
1577
|
+
{
|
|
1578
|
+
id: 1,
|
|
1579
|
+
title: "Ball Handling",
|
|
1580
|
+
type: "ballHandling" /* ballHandling */
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
id: 2,
|
|
1584
|
+
title: "Running Technique",
|
|
1585
|
+
type: "runningTechnique" /* runningTechnique */
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
id: 3,
|
|
1589
|
+
title: "Swing Mechanics",
|
|
1590
|
+
type: "swingMechanics" /* swingMechanics */
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
id: 4,
|
|
1594
|
+
title: "Tackling",
|
|
1595
|
+
type: "tackling" /* tackling */
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
id: 5,
|
|
1599
|
+
title: "Swimming Strokes",
|
|
1600
|
+
type: "swimmingStrokes" /* swimmingStrokes */
|
|
1601
|
+
}
|
|
1602
|
+
],
|
|
1603
|
+
["strengthAndConditioning" /* StrengthAndConditioning */]: [
|
|
1604
|
+
{
|
|
1605
|
+
id: 1,
|
|
1606
|
+
title: "Weight Lifting",
|
|
1607
|
+
type: "weightLifting" /* weightLifting */
|
|
1608
|
+
},
|
|
1609
|
+
{
|
|
1610
|
+
id: 2,
|
|
1611
|
+
title: "Speed Training",
|
|
1612
|
+
type: "speedTraining" /* speedTraining */
|
|
1613
|
+
},
|
|
1614
|
+
{
|
|
1615
|
+
id: 3,
|
|
1616
|
+
title: "Agility",
|
|
1617
|
+
type: "agility" /* agility */
|
|
1618
|
+
},
|
|
1619
|
+
{
|
|
1620
|
+
id: 4,
|
|
1621
|
+
title: "Flexibility",
|
|
1622
|
+
type: "flexibility" /* flexibility */
|
|
1623
|
+
},
|
|
1624
|
+
{
|
|
1625
|
+
id: 5,
|
|
1626
|
+
title: "Injury Prevention",
|
|
1627
|
+
type: "injuryPrevention" /* injuryPrevention */
|
|
1628
|
+
}
|
|
1629
|
+
],
|
|
1630
|
+
["coordination" /* Coordination */]: [
|
|
1631
|
+
{
|
|
1632
|
+
id: 1,
|
|
1633
|
+
title: "Hand Eye Coordination",
|
|
1634
|
+
type: "handEyeCoordination" /* handEyeCoordination */
|
|
1635
|
+
},
|
|
1636
|
+
{
|
|
1637
|
+
id: 2,
|
|
1638
|
+
title: "Footwork",
|
|
1639
|
+
type: "footwork" /* footwork */
|
|
1640
|
+
},
|
|
1641
|
+
{
|
|
1642
|
+
id: 3,
|
|
1643
|
+
title: "Balance",
|
|
1644
|
+
type: "balance" /* balance */
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
id: 4,
|
|
1648
|
+
title: "Reaction Time",
|
|
1649
|
+
type: "reactionTime" /* reactionTime */
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
id: 5,
|
|
1653
|
+
title: "Spatial Awareness",
|
|
1654
|
+
type: "spatialAwareness" /* spatialAwareness */
|
|
1655
|
+
}
|
|
1656
|
+
],
|
|
1657
|
+
["mentalFocus" /* MentalFocus */]: [
|
|
1658
|
+
{
|
|
1659
|
+
id: 1,
|
|
1660
|
+
title: "Visualization",
|
|
1661
|
+
type: "visualization" /* visualization */
|
|
1662
|
+
},
|
|
1663
|
+
{
|
|
1664
|
+
id: 2,
|
|
1665
|
+
title: "Goal Setting",
|
|
1666
|
+
type: "goalSetting" /* goalSetting */
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
id: 3,
|
|
1670
|
+
title: "Competitiveness",
|
|
1671
|
+
type: "competitiveness" /* competitiveness */
|
|
1672
|
+
},
|
|
1673
|
+
{
|
|
1674
|
+
id: 4,
|
|
1675
|
+
title: "Resilience",
|
|
1676
|
+
type: "resilience" /* resilience */
|
|
1677
|
+
},
|
|
1678
|
+
{
|
|
1679
|
+
id: 5,
|
|
1680
|
+
title: "Handling pressure",
|
|
1681
|
+
type: "handlingPressure" /* handlingPressure */
|
|
1682
|
+
}
|
|
1683
|
+
],
|
|
1684
|
+
["teamwork" /* Teamwork */]: [
|
|
1685
|
+
{
|
|
1686
|
+
id: 1,
|
|
1687
|
+
title: "Communication",
|
|
1688
|
+
type: "communication" /* communication */
|
|
1689
|
+
},
|
|
1690
|
+
{
|
|
1691
|
+
id: 2,
|
|
1692
|
+
title: "Cooperation",
|
|
1693
|
+
type: "cooperation" /* cooperation */
|
|
1694
|
+
},
|
|
1695
|
+
{
|
|
1696
|
+
id: 3,
|
|
1697
|
+
title: "Role Understanding",
|
|
1698
|
+
type: "roleUnderstanding" /* roleUnderstanding */
|
|
1699
|
+
},
|
|
1700
|
+
{
|
|
1701
|
+
id: 4,
|
|
1702
|
+
title: "Strategy",
|
|
1703
|
+
type: "strategy" /* strategy */
|
|
1704
|
+
},
|
|
1705
|
+
{
|
|
1706
|
+
id: 5,
|
|
1707
|
+
title: "Sportsmanship",
|
|
1708
|
+
type: "sportsmanship" /* sportsmanship */
|
|
1709
|
+
}
|
|
1710
|
+
],
|
|
1711
|
+
["visualArts" /* VisualArts */]: [
|
|
1712
|
+
{
|
|
1713
|
+
id: 1,
|
|
1714
|
+
title: "Drawing",
|
|
1715
|
+
type: "drawing" /* drawing */
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
id: 2,
|
|
1719
|
+
title: "Painting",
|
|
1720
|
+
type: "painting" /* painting */
|
|
1721
|
+
},
|
|
1722
|
+
{
|
|
1723
|
+
id: 3,
|
|
1724
|
+
title: "Sculpture",
|
|
1725
|
+
type: "sculpture" /* sculpture */
|
|
1726
|
+
},
|
|
1727
|
+
{
|
|
1728
|
+
id: 4,
|
|
1729
|
+
title: "Graphic design",
|
|
1730
|
+
type: "graphicDesign" /* graphicDesign */
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
id: 5,
|
|
1734
|
+
title: "Photography",
|
|
1735
|
+
type: "photography" /* photography */
|
|
1736
|
+
}
|
|
1737
|
+
],
|
|
1738
|
+
["performingArts" /* PerformingArts */]: [
|
|
1739
|
+
{
|
|
1740
|
+
id: 1,
|
|
1741
|
+
title: "Acting",
|
|
1742
|
+
type: "acting" /* acting */
|
|
1743
|
+
},
|
|
1744
|
+
{
|
|
1745
|
+
id: 2,
|
|
1746
|
+
title: "Dance",
|
|
1747
|
+
type: "dance" /* dance */
|
|
1748
|
+
},
|
|
1749
|
+
{
|
|
1750
|
+
id: 3,
|
|
1751
|
+
title: "Singing",
|
|
1752
|
+
type: "singing" /* singing */
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
id: 4,
|
|
1756
|
+
title: "Instrumental",
|
|
1757
|
+
type: "instrumental" /* instrumental */
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
id: 5,
|
|
1761
|
+
title: "Theatre Production",
|
|
1762
|
+
type: "theaterProduction" /* theaterProduction */
|
|
1763
|
+
},
|
|
1764
|
+
{
|
|
1765
|
+
id: 6,
|
|
1766
|
+
title: "Costume Design",
|
|
1767
|
+
type: "costumeDesign" /* costumeDesign */
|
|
1768
|
+
},
|
|
1769
|
+
{
|
|
1770
|
+
id: 7,
|
|
1771
|
+
title: "Directing",
|
|
1772
|
+
type: "directing" /* directing */
|
|
1773
|
+
}
|
|
1774
|
+
],
|
|
1775
|
+
["writing" /* Writing */]: [
|
|
1776
|
+
{
|
|
1777
|
+
id: 1,
|
|
1778
|
+
title: "Poetry",
|
|
1779
|
+
type: "poetry" /* poetry */
|
|
1780
|
+
},
|
|
1781
|
+
{
|
|
1782
|
+
id: 2,
|
|
1783
|
+
title: "Fiction",
|
|
1784
|
+
type: "fiction" /* fiction */
|
|
1785
|
+
},
|
|
1786
|
+
{
|
|
1787
|
+
id: 3,
|
|
1788
|
+
title: "Non fiction",
|
|
1789
|
+
type: "nonfiction" /* nonfiction */
|
|
1790
|
+
},
|
|
1791
|
+
{
|
|
1792
|
+
id: 4,
|
|
1793
|
+
title: "Script Writing",
|
|
1794
|
+
type: "scriptWriting" /* scriptWriting */
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
id: 5,
|
|
1798
|
+
title: "Copy Writing",
|
|
1799
|
+
type: "copyWriting" /* copyWriting */
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
id: 6,
|
|
1803
|
+
title: "Journalism",
|
|
1804
|
+
type: "journalism" /* journalism */
|
|
1805
|
+
}
|
|
1806
|
+
],
|
|
1807
|
+
["design" /* Design */]: [
|
|
1808
|
+
{
|
|
1809
|
+
id: 1,
|
|
1810
|
+
title: "Fashion Design",
|
|
1811
|
+
type: "fashionDesign" /* fashionDesign */
|
|
1812
|
+
},
|
|
1813
|
+
{
|
|
1814
|
+
id: 2,
|
|
1815
|
+
title: "Interior Design",
|
|
1816
|
+
type: "interiorDesign" /* interiorDesign */
|
|
1817
|
+
},
|
|
1818
|
+
{
|
|
1819
|
+
id: 3,
|
|
1820
|
+
title: "Web Design",
|
|
1821
|
+
type: "webDesign" /* webDesign */
|
|
1822
|
+
},
|
|
1823
|
+
{
|
|
1824
|
+
id: 4,
|
|
1825
|
+
title: "Product Design",
|
|
1826
|
+
type: "productDesign" /* productDesign */
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
id: 5,
|
|
1830
|
+
title: "Game Design",
|
|
1831
|
+
type: "gameDesign" /* gameDesign */
|
|
1832
|
+
}
|
|
1833
|
+
],
|
|
1834
|
+
["ideation" /* Ideation */]: [
|
|
1835
|
+
{
|
|
1836
|
+
id: 1,
|
|
1837
|
+
title: "Brainstorming",
|
|
1838
|
+
type: "brainstorming" /* brainstorming */
|
|
1839
|
+
},
|
|
1840
|
+
{
|
|
1841
|
+
id: 2,
|
|
1842
|
+
title: "Concept Development",
|
|
1843
|
+
type: "concept development" /* conceptDevelopment */
|
|
1844
|
+
},
|
|
1845
|
+
{
|
|
1846
|
+
id: 3,
|
|
1847
|
+
title: "Innovation",
|
|
1848
|
+
type: "innovation" /* innovation */
|
|
1849
|
+
},
|
|
1850
|
+
{
|
|
1851
|
+
id: 4,
|
|
1852
|
+
title: "Problem Solving",
|
|
1853
|
+
type: "problemSolving" /* problemSolving */
|
|
1854
|
+
},
|
|
1855
|
+
{
|
|
1856
|
+
id: 5,
|
|
1857
|
+
title: "Out of the box thinking",
|
|
1858
|
+
type: "outOfTheBoxThinking" /* outOfTheBoxThinking */
|
|
1859
|
+
}
|
|
1860
|
+
],
|
|
1861
|
+
["management" /* Management */]: [
|
|
1862
|
+
{
|
|
1863
|
+
id: 1,
|
|
1864
|
+
title: "Leadership",
|
|
1865
|
+
type: "leadership" /* leadership */
|
|
1866
|
+
},
|
|
1867
|
+
{
|
|
1868
|
+
id: 2,
|
|
1869
|
+
title: "Strategic Planning",
|
|
1870
|
+
type: "strategicPlanning" /* strategicPlanning */
|
|
1871
|
+
},
|
|
1872
|
+
{
|
|
1873
|
+
id: 3,
|
|
1874
|
+
title: "Team Building",
|
|
1875
|
+
type: "teamBuilding" /* teamBuilding */
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
id: 4,
|
|
1879
|
+
title: "Delegation",
|
|
1880
|
+
type: "delegation" /* delegation */
|
|
1881
|
+
},
|
|
1882
|
+
{
|
|
1883
|
+
id: 5,
|
|
1884
|
+
title: "Conflict Resolution",
|
|
1885
|
+
type: "conflictResolution" /* conflictResolution */
|
|
1886
|
+
}
|
|
1887
|
+
],
|
|
1888
|
+
["finance" /* Finance */]: [
|
|
1889
|
+
{
|
|
1890
|
+
id: 1,
|
|
1891
|
+
title: "Accounting",
|
|
1892
|
+
type: "accounting" /* accounting */
|
|
1893
|
+
},
|
|
1894
|
+
{
|
|
1895
|
+
id: 2,
|
|
1896
|
+
title: "Budgeting",
|
|
1897
|
+
type: "budgeting" /* budgeting */
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
id: 3,
|
|
1901
|
+
title: "Financial Analysis",
|
|
1902
|
+
type: "financialAnalysis" /* financialAnalysis */
|
|
1903
|
+
},
|
|
1904
|
+
{
|
|
1905
|
+
id: 4,
|
|
1906
|
+
title: "Investment",
|
|
1907
|
+
type: "investment" /* investment */
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
id: 5,
|
|
1911
|
+
title: "Risk Management",
|
|
1912
|
+
type: "riskManagement" /* riskManagement */
|
|
1913
|
+
}
|
|
1914
|
+
],
|
|
1915
|
+
["marketing" /* Marketing */]: [
|
|
1916
|
+
{
|
|
1917
|
+
id: 1,
|
|
1918
|
+
title: "Market Research",
|
|
1919
|
+
type: "marketResearch" /* marketResearch */
|
|
1920
|
+
},
|
|
1921
|
+
{
|
|
1922
|
+
id: 2,
|
|
1923
|
+
title: "Branding",
|
|
1924
|
+
type: "branding" /* branding */
|
|
1925
|
+
},
|
|
1926
|
+
{
|
|
1927
|
+
id: 3,
|
|
1928
|
+
title: "Advertising",
|
|
1929
|
+
type: "advertising" /* advertising */
|
|
1930
|
+
},
|
|
1931
|
+
{
|
|
1932
|
+
id: 4,
|
|
1933
|
+
title: "Sales",
|
|
1934
|
+
type: "sales" /* sales */
|
|
1935
|
+
},
|
|
1936
|
+
{
|
|
1937
|
+
id: 5,
|
|
1938
|
+
title: "Customer Relationship Management",
|
|
1939
|
+
type: "customerRelationshipManagement" /* customerRelationshipManagement */
|
|
1940
|
+
}
|
|
1941
|
+
],
|
|
1942
|
+
["operations" /* Operations */]: [
|
|
1943
|
+
{
|
|
1944
|
+
id: 1,
|
|
1945
|
+
title: "Logistics",
|
|
1946
|
+
type: "logistics" /* logistics */
|
|
1947
|
+
},
|
|
1948
|
+
{
|
|
1949
|
+
id: 2,
|
|
1950
|
+
title: "Supply Chain Management",
|
|
1951
|
+
type: "supplyChainManagement" /* supplyChainManagement */
|
|
1952
|
+
},
|
|
1953
|
+
{
|
|
1954
|
+
id: 3,
|
|
1955
|
+
title: "Process Improvement",
|
|
1956
|
+
type: "processImprovement" /* processImprovement */
|
|
1957
|
+
},
|
|
1958
|
+
{
|
|
1959
|
+
id: 4,
|
|
1960
|
+
title: "Project Management",
|
|
1961
|
+
type: "projectManagement" /* projectManagement */
|
|
1962
|
+
},
|
|
1963
|
+
{
|
|
1964
|
+
id: 5,
|
|
1965
|
+
title: "Quality Control",
|
|
1966
|
+
type: "qualityControl" /* qualityControl */
|
|
1967
|
+
}
|
|
1968
|
+
],
|
|
1969
|
+
["entrepreneurship" /* Entrepreneurship */]: [
|
|
1970
|
+
{
|
|
1971
|
+
id: 1,
|
|
1972
|
+
title: "Opportunity Recognition",
|
|
1973
|
+
type: "opportunityRecognition" /* opportunityRecognition */
|
|
1974
|
+
},
|
|
1975
|
+
{
|
|
1976
|
+
id: 2,
|
|
1977
|
+
title: "Business Planning",
|
|
1978
|
+
type: "businessPlanning" /* businessPlanning */
|
|
1979
|
+
},
|
|
1980
|
+
{
|
|
1981
|
+
id: 3,
|
|
1982
|
+
title: "Fundraising",
|
|
1983
|
+
type: "fundraising" /* fundraising */
|
|
1984
|
+
},
|
|
1985
|
+
{
|
|
1986
|
+
id: 4,
|
|
1987
|
+
title: "Networking",
|
|
1988
|
+
type: "networking" /* networking */
|
|
1989
|
+
},
|
|
1990
|
+
{
|
|
1991
|
+
id: 5,
|
|
1992
|
+
title: "Decision-making",
|
|
1993
|
+
type: "decisionMaking" /* decisionMaking */
|
|
1994
|
+
}
|
|
1995
|
+
],
|
|
1996
|
+
["construction" /* Construction */]: [
|
|
1997
|
+
{
|
|
1998
|
+
id: 1,
|
|
1999
|
+
title: "Carpentry",
|
|
2000
|
+
type: "carpentry" /* carpentry */
|
|
2001
|
+
},
|
|
2002
|
+
{
|
|
2003
|
+
id: 2,
|
|
2004
|
+
title: "Electrical Work",
|
|
2005
|
+
type: "electricalWork" /* electricalWork */
|
|
2006
|
+
},
|
|
2007
|
+
{
|
|
2008
|
+
id: 3,
|
|
2009
|
+
title: "Plumbing",
|
|
2010
|
+
type: "plumbing" /* plumbing */
|
|
2011
|
+
},
|
|
2012
|
+
{
|
|
2013
|
+
id: 4,
|
|
2014
|
+
title: "Masonry",
|
|
2015
|
+
type: "masonry" /* masonry */
|
|
2016
|
+
},
|
|
2017
|
+
{
|
|
2018
|
+
id: 5,
|
|
2019
|
+
title: "HVAC",
|
|
2020
|
+
type: "HVAC" /* HVAC */
|
|
2021
|
+
}
|
|
2022
|
+
],
|
|
2023
|
+
["mechanics" /* Mechanics */]: [
|
|
2024
|
+
{
|
|
2025
|
+
id: 1,
|
|
2026
|
+
title: "Automotive Repair",
|
|
2027
|
+
type: "automotiveRepair" /* automotiveRepair */
|
|
2028
|
+
},
|
|
2029
|
+
{
|
|
2030
|
+
id: 2,
|
|
2031
|
+
title: "Diesel Engine Repair",
|
|
2032
|
+
type: "dieselEngineRepair" /* dieselEngineRepair */
|
|
2033
|
+
},
|
|
2034
|
+
{
|
|
2035
|
+
id: 3,
|
|
2036
|
+
title: "Small Engine Repair",
|
|
2037
|
+
type: "smallEngineRepair" /* smallEngineRepair */
|
|
2038
|
+
},
|
|
2039
|
+
{
|
|
2040
|
+
id: 4,
|
|
2041
|
+
title: "Aircraft Maintenance",
|
|
2042
|
+
type: "aircraftMaintenance" /* aircraftMaintenance */
|
|
2043
|
+
},
|
|
2044
|
+
{
|
|
2045
|
+
id: 5,
|
|
2046
|
+
title: "Heavy Equipment Operation",
|
|
2047
|
+
type: "heavyEquipmentOperation" /* heavyEquipmentOperation */
|
|
2048
|
+
}
|
|
2049
|
+
],
|
|
2050
|
+
["manufacturing" /* Manufacturing */]: [
|
|
2051
|
+
{
|
|
2052
|
+
id: 1,
|
|
2053
|
+
title: "Welding",
|
|
2054
|
+
type: "welding" /* welding */
|
|
2055
|
+
},
|
|
2056
|
+
{
|
|
2057
|
+
id: 2,
|
|
2058
|
+
title: "Machining",
|
|
2059
|
+
type: "machining" /* machining */
|
|
2060
|
+
},
|
|
2061
|
+
{
|
|
2062
|
+
id: 3,
|
|
2063
|
+
title: "Assembly",
|
|
2064
|
+
type: "assembly" /* assembly */
|
|
2065
|
+
},
|
|
2066
|
+
{
|
|
2067
|
+
id: 4,
|
|
2068
|
+
title: "Fabrication",
|
|
2069
|
+
type: "fabrication" /* fabrication */
|
|
2070
|
+
},
|
|
2071
|
+
{
|
|
2072
|
+
id: 5,
|
|
2073
|
+
title: "Quality Assurance",
|
|
2074
|
+
type: "qualityAssurance" /* qualityAssurance */
|
|
2075
|
+
}
|
|
2076
|
+
],
|
|
2077
|
+
["cosmetology" /* Cosmetology */]: [
|
|
2078
|
+
{
|
|
2079
|
+
id: 1,
|
|
2080
|
+
title: "Hairstyling",
|
|
2081
|
+
type: "hairstyling" /* hairstyling */
|
|
2082
|
+
},
|
|
2083
|
+
{
|
|
2084
|
+
id: 2,
|
|
2085
|
+
title: "Barbering",
|
|
2086
|
+
type: "barbering" /* barbering */
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
id: 3,
|
|
2090
|
+
title: "Nail Technology",
|
|
2091
|
+
type: "nailTechnology" /* nailTechnology */
|
|
2092
|
+
},
|
|
2093
|
+
{
|
|
2094
|
+
id: 4,
|
|
2095
|
+
title: "Makeup Artistry",
|
|
2096
|
+
type: "makeupArtistry" /* makeupArtistry */
|
|
2097
|
+
},
|
|
2098
|
+
{
|
|
2099
|
+
id: 5,
|
|
2100
|
+
title: "Esthetics",
|
|
2101
|
+
type: "esthetics" /* esthetics */
|
|
2102
|
+
}
|
|
2103
|
+
],
|
|
2104
|
+
["culinaryArts" /* CulinaryArts */]: [
|
|
2105
|
+
{
|
|
2106
|
+
id: 1,
|
|
2107
|
+
title: "Cooking Techniques",
|
|
2108
|
+
type: "cookingTechniques" /* cookingTechniques */
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
id: 2,
|
|
2112
|
+
title: "Baking",
|
|
2113
|
+
type: "baking" /* baking */
|
|
2114
|
+
},
|
|
2115
|
+
{
|
|
2116
|
+
id: 3,
|
|
2117
|
+
title: "Food Safety",
|
|
2118
|
+
type: "foodSafety" /* foodSafety */
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
id: 4,
|
|
2122
|
+
title: "Menu Planning",
|
|
2123
|
+
type: "menuPlanning" /* menuPlanning */
|
|
2124
|
+
},
|
|
2125
|
+
{
|
|
2126
|
+
id: 5,
|
|
2127
|
+
title: "Restaurant Management",
|
|
2128
|
+
type: "restaurantManagement" /* restaurantManagement */
|
|
2129
|
+
}
|
|
2130
|
+
],
|
|
2131
|
+
["history" /* History */]: [
|
|
2132
|
+
{
|
|
2133
|
+
id: 1,
|
|
2134
|
+
title: "Research Methods",
|
|
2135
|
+
type: "researchMethods" /* researchMethods */
|
|
2136
|
+
},
|
|
2137
|
+
{
|
|
2138
|
+
id: 2,
|
|
2139
|
+
title: "Analysis of Primary Sources",
|
|
2140
|
+
type: "analysisOfPrimarySources" /* analysisOfPrimarySources */
|
|
2141
|
+
},
|
|
2142
|
+
{
|
|
2143
|
+
id: 3,
|
|
2144
|
+
title: "Chronological Reasoning",
|
|
2145
|
+
type: "chronologicalReasoning" /* chronologicalReasoning */
|
|
2146
|
+
},
|
|
2147
|
+
{
|
|
2148
|
+
id: 4,
|
|
2149
|
+
title: "Comparative History",
|
|
2150
|
+
type: "comparativeHistory" /* comparativeHistory */
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
id: 5,
|
|
2154
|
+
title: "Historiography",
|
|
2155
|
+
type: "historiography" /* historiography */
|
|
2156
|
+
}
|
|
2157
|
+
],
|
|
2158
|
+
["psychology" /* Psychology */]: [
|
|
2159
|
+
{
|
|
2160
|
+
id: 1,
|
|
2161
|
+
title: "Cognitive Psychology",
|
|
2162
|
+
type: "cognitivePsychology" /* cognitivePsychology */
|
|
2163
|
+
},
|
|
2164
|
+
{
|
|
2165
|
+
id: 2,
|
|
2166
|
+
title: "Developmental Psychology",
|
|
2167
|
+
type: "developmentalPsychology" /* developmentalPsychology */
|
|
2168
|
+
},
|
|
2169
|
+
{
|
|
2170
|
+
id: 3,
|
|
2171
|
+
title: "Social Psychology",
|
|
2172
|
+
type: "socialPsychology" /* socialPsychology */
|
|
2173
|
+
},
|
|
2174
|
+
{
|
|
2175
|
+
id: 4,
|
|
2176
|
+
title: "Experimental Methods",
|
|
2177
|
+
type: "experimentalMethods" /* experimentalMethods */
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
id: 5,
|
|
2181
|
+
title: "Clinical Psychology",
|
|
2182
|
+
type: "clinicalPsychology" /* clinicalPsychology */
|
|
2183
|
+
}
|
|
2184
|
+
],
|
|
2185
|
+
["sociology" /* Sociology */]: [
|
|
2186
|
+
{
|
|
2187
|
+
id: 1,
|
|
2188
|
+
title: "Social Inequality",
|
|
2189
|
+
type: "socialInequality" /* socialInequality */
|
|
2190
|
+
},
|
|
2191
|
+
{
|
|
2192
|
+
id: 2,
|
|
2193
|
+
title: "Social Institutions",
|
|
2194
|
+
type: "socialInstitutions" /* socialInstitutions */
|
|
2195
|
+
},
|
|
2196
|
+
{
|
|
2197
|
+
id: 3,
|
|
2198
|
+
title: "Research Methods",
|
|
2199
|
+
type: "researchMethods" /* researchMethods */
|
|
2200
|
+
},
|
|
2201
|
+
{
|
|
2202
|
+
id: 4,
|
|
2203
|
+
title: "Social Change",
|
|
2204
|
+
type: "socialChange" /* socialChange */
|
|
2205
|
+
},
|
|
2206
|
+
{
|
|
2207
|
+
id: 5,
|
|
2208
|
+
title: "Social Movements",
|
|
2209
|
+
type: "socialMovements" /* socialMovements */
|
|
2210
|
+
}
|
|
2211
|
+
],
|
|
2212
|
+
["economics" /* Economics */]: [
|
|
2213
|
+
{
|
|
2214
|
+
id: 1,
|
|
2215
|
+
title: "Microeconomics",
|
|
2216
|
+
type: "microeconomics" /* microeconomics */
|
|
2217
|
+
},
|
|
2218
|
+
{
|
|
2219
|
+
id: 2,
|
|
2220
|
+
title: "Macroeconomics",
|
|
2221
|
+
type: "macroeconomics" /* macroeconomics */
|
|
2222
|
+
},
|
|
2223
|
+
{
|
|
2224
|
+
id: 3,
|
|
2225
|
+
title: "Econometrics",
|
|
2226
|
+
type: "econometrics" /* econometrics */
|
|
2227
|
+
},
|
|
2228
|
+
{
|
|
2229
|
+
id: 4,
|
|
2230
|
+
title: "Economic Policy",
|
|
2231
|
+
type: "economicPolicy" /* economicPolicy */
|
|
2232
|
+
},
|
|
2233
|
+
{
|
|
2234
|
+
id: 5,
|
|
2235
|
+
title: "International Economics",
|
|
2236
|
+
type: "internationalEconomics" /* internationalEconomics */
|
|
2237
|
+
}
|
|
2238
|
+
],
|
|
2239
|
+
["politicalScience" /* PoliticalScience */]: [
|
|
2240
|
+
{
|
|
2241
|
+
id: 1,
|
|
2242
|
+
title: "Government Systems",
|
|
2243
|
+
type: "governmentSystems" /* governmentSystems */
|
|
2244
|
+
},
|
|
2245
|
+
{
|
|
2246
|
+
id: 2,
|
|
2247
|
+
title: "Political Theory",
|
|
2248
|
+
type: "politicalTheory" /* politicalTheory */
|
|
2249
|
+
},
|
|
2250
|
+
{
|
|
2251
|
+
id: 3,
|
|
2252
|
+
title: "International Relations",
|
|
2253
|
+
type: "internationalRelations" /* internationalRelations */
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
id: 4,
|
|
2257
|
+
title: "Comparative Politics",
|
|
2258
|
+
type: "comparativePolitics" /* comparativePolitics */
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
id: 5,
|
|
2262
|
+
title: "Public Policy",
|
|
2263
|
+
type: "publicPolicy" /* publicPolicy */
|
|
2264
|
+
}
|
|
2265
|
+
],
|
|
2266
|
+
["basicComputerSkills" /* BasicComputerSkills */]: [
|
|
2267
|
+
{
|
|
2268
|
+
id: 1,
|
|
2269
|
+
title: "Typing",
|
|
2270
|
+
type: "typing" /* typing */
|
|
2271
|
+
},
|
|
2272
|
+
{
|
|
2273
|
+
id: 2,
|
|
2274
|
+
title: "File Management",
|
|
2275
|
+
type: "fileManagement" /* fileManagement */
|
|
2276
|
+
},
|
|
2277
|
+
{
|
|
2278
|
+
id: 3,
|
|
2279
|
+
title: "Internet Navigation",
|
|
2280
|
+
type: "internetNavigation" /* internetNavigation */
|
|
2281
|
+
},
|
|
2282
|
+
{
|
|
2283
|
+
id: 4,
|
|
2284
|
+
title: "Email",
|
|
2285
|
+
type: "email" /* email */
|
|
2286
|
+
},
|
|
2287
|
+
{
|
|
2288
|
+
id: 5,
|
|
2289
|
+
title: "Word Processing",
|
|
2290
|
+
type: "wordProcessing" /* wordProcessing */
|
|
2291
|
+
}
|
|
2292
|
+
],
|
|
2293
|
+
["informationLiteracy" /* InformationLiteracy */]: [
|
|
2294
|
+
{
|
|
2295
|
+
id: 1,
|
|
2296
|
+
title: "Search Engine Proficiency",
|
|
2297
|
+
type: "searchEngineProficiency" /* searchEngineProficiency */
|
|
2298
|
+
},
|
|
2299
|
+
{
|
|
2300
|
+
id: 2,
|
|
2301
|
+
title: "evaluating sources",
|
|
2302
|
+
type: "evaluatingSources" /* evaluatingSources */
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
id: 3,
|
|
2306
|
+
title: "Fact Checking",
|
|
2307
|
+
type: "factChecking" /* factChecking */
|
|
2308
|
+
},
|
|
2309
|
+
{
|
|
2310
|
+
id: 4,
|
|
2311
|
+
title: "Critical Media Analysis",
|
|
2312
|
+
type: "criticalMediaAnalysis" /* criticalMediaAnalysis */
|
|
2313
|
+
},
|
|
2314
|
+
{
|
|
2315
|
+
id: 5,
|
|
2316
|
+
title: "Understanding Bias",
|
|
2317
|
+
type: "understandingBias" /* understandingBias */
|
|
2318
|
+
}
|
|
2319
|
+
],
|
|
2320
|
+
["softwareProficiency" /* SoftwareProficiency */]: [
|
|
2321
|
+
{
|
|
2322
|
+
id: 1,
|
|
2323
|
+
title: "Productivity Suites",
|
|
2324
|
+
type: "productivitySuites" /* productivitySuites */
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
id: 2,
|
|
2328
|
+
title: "Specialized Software",
|
|
2329
|
+
type: "specializedSoftware" /* specializedSoftware */
|
|
2330
|
+
},
|
|
2331
|
+
{
|
|
2332
|
+
id: 3,
|
|
2333
|
+
title: "Design Software",
|
|
2334
|
+
type: "designSoftware" /* designSoftware */
|
|
2335
|
+
},
|
|
2336
|
+
{
|
|
2337
|
+
id: 4,
|
|
2338
|
+
title: "Programming Basics",
|
|
2339
|
+
type: "programmingBasics" /* programmingBasics */
|
|
2340
|
+
},
|
|
2341
|
+
{
|
|
2342
|
+
id: 5,
|
|
2343
|
+
title: "Data Visualization Tools",
|
|
2344
|
+
type: "dataVisualizationTools" /* dataVisualizationTools */
|
|
2345
|
+
}
|
|
2346
|
+
],
|
|
2347
|
+
["onlineCommunication" /* OnlineCommunication */]: [
|
|
2348
|
+
{
|
|
2349
|
+
id: 1,
|
|
2350
|
+
title: "Netiquette",
|
|
2351
|
+
type: "netiquette" /* netiquette */
|
|
2352
|
+
},
|
|
2353
|
+
{
|
|
2354
|
+
id: 2,
|
|
2355
|
+
title: "Effective Email and Messaging",
|
|
2356
|
+
type: "effectiveEmailAndMessaging" /* effectiveEmailAndMessaging */
|
|
2357
|
+
},
|
|
2358
|
+
{
|
|
2359
|
+
id: 3,
|
|
2360
|
+
title: "Social Media Platforms",
|
|
2361
|
+
type: "socialMediaPlatforms" /* socialMediaPlatforms */
|
|
2362
|
+
},
|
|
2363
|
+
{
|
|
2364
|
+
id: 4,
|
|
2365
|
+
title: "Video Conferencing",
|
|
2366
|
+
type: "videoConferencing" /* videoConferencing */
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
id: 5,
|
|
2370
|
+
title: "Collaboration Tools",
|
|
2371
|
+
type: "collaborationTools" /* collaborationTools */
|
|
2372
|
+
}
|
|
2373
|
+
],
|
|
2374
|
+
["cybersecurity" /* Cybersecurity */]: [
|
|
2375
|
+
{
|
|
2376
|
+
id: 1,
|
|
2377
|
+
title: "Password Management",
|
|
2378
|
+
type: "passwordManagement" /* passwordManagement */
|
|
2379
|
+
},
|
|
2380
|
+
{
|
|
2381
|
+
id: 2,
|
|
2382
|
+
title: "Phishing Awareness",
|
|
2383
|
+
type: "phishingAwareness" /* phishingAwareness */
|
|
2384
|
+
},
|
|
2385
|
+
{
|
|
2386
|
+
id: 3,
|
|
2387
|
+
title: "Data Privacy",
|
|
2388
|
+
type: "dataPrivacy" /* dataPrivacy */
|
|
2389
|
+
},
|
|
2390
|
+
{
|
|
2391
|
+
id: 4,
|
|
2392
|
+
title: "Safe Online Practices",
|
|
2393
|
+
type: "safeOnlinePractices" /* safeOnlinePractices */
|
|
2394
|
+
},
|
|
2395
|
+
{
|
|
2396
|
+
id: 5,
|
|
2397
|
+
title: "Protecting Devices",
|
|
2398
|
+
type: "protectingDevices" /* protectingDevices */
|
|
2399
|
+
}
|
|
2400
|
+
],
|
|
2401
|
+
["clinicalSkills" /* ClinicalSkills */]: [
|
|
2402
|
+
{
|
|
2403
|
+
id: 1,
|
|
2404
|
+
title: "Patient Assessment",
|
|
2405
|
+
type: "patientAssessment" /* patientAssessment */
|
|
2406
|
+
},
|
|
2407
|
+
{
|
|
2408
|
+
id: 2,
|
|
2409
|
+
title: "Diagnostic Procedures",
|
|
2410
|
+
type: "diagnosticProcedures" /* diagnosticProcedures */
|
|
2411
|
+
},
|
|
2412
|
+
{
|
|
2413
|
+
id: 3,
|
|
2414
|
+
title: "Medication Administration",
|
|
2415
|
+
type: "medicationAdministration" /* medicationAdministration */
|
|
2416
|
+
},
|
|
2417
|
+
{
|
|
2418
|
+
id: 4,
|
|
2419
|
+
title: "Wound Care",
|
|
2420
|
+
type: "woundCare" /* woundCare */
|
|
2421
|
+
},
|
|
2422
|
+
{
|
|
2423
|
+
id: 5,
|
|
2424
|
+
title: "Basic Life Support",
|
|
2425
|
+
type: "basicLifeSupport" /* basicLifeSupport */
|
|
2426
|
+
}
|
|
2427
|
+
],
|
|
2428
|
+
["anatomyAndPhysiology" /* AnatomyAndPhysiology */]: [
|
|
2429
|
+
{
|
|
2430
|
+
id: 1,
|
|
2431
|
+
title: "Body Systems",
|
|
2432
|
+
type: "bodySystems" /* bodySystems */
|
|
2433
|
+
},
|
|
2434
|
+
{
|
|
2435
|
+
id: 2,
|
|
2436
|
+
title: "Medical Terminology",
|
|
2437
|
+
type: "medicalTerminology" /* medicalTerminology */
|
|
2438
|
+
},
|
|
2439
|
+
{
|
|
2440
|
+
id: 3,
|
|
2441
|
+
title: "Disease Processes",
|
|
2442
|
+
type: "diseaseProcesses" /* diseaseProcesses */
|
|
2443
|
+
},
|
|
2444
|
+
{
|
|
2445
|
+
id: 4,
|
|
2446
|
+
title: "Pharmacology",
|
|
2447
|
+
type: "pharmacology" /* pharmacology */
|
|
2448
|
+
},
|
|
2449
|
+
{
|
|
2450
|
+
id: 5,
|
|
2451
|
+
title: "Pathophysiology",
|
|
2452
|
+
type: "pathophysiology" /* pathophysiology */
|
|
2453
|
+
}
|
|
2454
|
+
],
|
|
2455
|
+
["patientCare" /* PatientCare */]: [
|
|
2456
|
+
{
|
|
2457
|
+
id: 1,
|
|
2458
|
+
title: "Bedside Manner",
|
|
2459
|
+
type: "bedsideManner" /* bedsideManner */
|
|
2460
|
+
},
|
|
2461
|
+
{
|
|
2462
|
+
id: 2,
|
|
2463
|
+
title: "Empathy",
|
|
2464
|
+
type: "empathy" /* empathy */
|
|
2465
|
+
},
|
|
2466
|
+
{
|
|
2467
|
+
id: 3,
|
|
2468
|
+
title: "Communication",
|
|
2469
|
+
type: "communication" /* communication */
|
|
2470
|
+
},
|
|
2471
|
+
{
|
|
2472
|
+
id: 4,
|
|
2473
|
+
title: "Cultural Sensitivity",
|
|
2474
|
+
type: "culturalSensitivity" /* culturalSensitivity */
|
|
2475
|
+
},
|
|
2476
|
+
{
|
|
2477
|
+
id: 5,
|
|
2478
|
+
title: "Ethics",
|
|
2479
|
+
type: "ethics" /* ethics */
|
|
2480
|
+
}
|
|
2481
|
+
],
|
|
2482
|
+
["medicalSpecialties" /* MedicalSpecialties */]: [
|
|
2483
|
+
{
|
|
2484
|
+
id: 1,
|
|
2485
|
+
title: "Surgery",
|
|
2486
|
+
type: "surgery" /* surgery */
|
|
2487
|
+
},
|
|
2488
|
+
{
|
|
2489
|
+
id: 2,
|
|
2490
|
+
title: "Emergency Medicine",
|
|
2491
|
+
type: "emergencyMedicine" /* emergencyMedicine */
|
|
2492
|
+
},
|
|
2493
|
+
{
|
|
2494
|
+
id: 3,
|
|
2495
|
+
title: "Pediatrics",
|
|
2496
|
+
type: "pediatrics" /* pediatrics */
|
|
2497
|
+
},
|
|
2498
|
+
{
|
|
2499
|
+
id: 4,
|
|
2500
|
+
title: "Radiology",
|
|
2501
|
+
type: "radiology" /* radiology */
|
|
2502
|
+
},
|
|
2503
|
+
{
|
|
2504
|
+
id: 5,
|
|
2505
|
+
title: "Diagnostic Reasoning",
|
|
2506
|
+
type: "diagnosticReasoning" /* diagnosticReasoning */
|
|
2507
|
+
},
|
|
2508
|
+
{
|
|
2509
|
+
id: 6,
|
|
2510
|
+
title: "Treatment Planning",
|
|
2511
|
+
type: "treatmentPlanning" /* treatmentPlanning */
|
|
2512
|
+
},
|
|
2513
|
+
{
|
|
2514
|
+
id: 7,
|
|
2515
|
+
title: "Interdisciplinary Collaboration",
|
|
2516
|
+
type: "interdisciplinaryCollaboration" /* interdisciplinaryCollaboration */
|
|
2517
|
+
}
|
|
2518
|
+
],
|
|
2519
|
+
["healthcareAdministration" /* HealthcareAdministration */]: [
|
|
2520
|
+
{
|
|
2521
|
+
id: 1,
|
|
2522
|
+
title: "Insurance and Billing",
|
|
2523
|
+
type: "insuranceAndBilling" /* insuranceAndBilling */
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
id: 2,
|
|
2527
|
+
title: "Medical Records",
|
|
2528
|
+
type: "medicalRecords" /* medicalRecords */
|
|
2529
|
+
},
|
|
2530
|
+
{
|
|
2531
|
+
id: 3,
|
|
2532
|
+
title: "Patient Scheduling",
|
|
2533
|
+
type: "patientScheduling" /* patientScheduling */
|
|
2534
|
+
},
|
|
2535
|
+
{
|
|
2536
|
+
id: 4,
|
|
2537
|
+
title: "Regulatory Compliance",
|
|
2538
|
+
type: "regulatoryCompliance" /* regulatoryCompliance */
|
|
2539
|
+
},
|
|
2540
|
+
{
|
|
2541
|
+
id: 5,
|
|
2542
|
+
title: "Facility Management",
|
|
2543
|
+
type: "facilityManagement" /* facilityManagement */
|
|
2544
|
+
}
|
|
2545
|
+
]
|
|
2546
|
+
};
|
|
2547
|
+
|
|
2548
|
+
const TopLevelSkill = ({ skillSelected, skill, handleExpandSubSkills }) => {
|
|
2549
|
+
var _a, _b;
|
|
2550
|
+
const { title, IconComponent, type, category } = skill;
|
|
2551
|
+
const _category = boostCMSSKillCategories.find((c) => c.type === category);
|
|
2552
|
+
const subSkills = (_a = skillSelected.subskills) != null ? _a : [];
|
|
2553
|
+
const subSkillsCount = (_b = skillSelected.subskills.length) != null ? _b : 0;
|
|
2554
|
+
return /* @__PURE__ */ React.createElement("div", {
|
|
2555
|
+
className: `flex items-center justify-between w-full mb-4 bg-violet-100 rounded-[20px]`
|
|
2556
|
+
}, /* @__PURE__ */ React.createElement("div", {
|
|
2557
|
+
className: "flex items-center justify-start w-[80%] px-[6px] py-[10px] overflow-hidden"
|
|
2558
|
+
}, /* @__PURE__ */ React.createElement("div", {
|
|
2559
|
+
className: "rounded-full h-[50px] w-[50px]"
|
|
2560
|
+
}, /* @__PURE__ */ React.createElement("img", {
|
|
2561
|
+
src: IconComponent,
|
|
2562
|
+
alt: "skill icon",
|
|
2563
|
+
className: "w-full h-full"
|
|
2564
|
+
})), /* @__PURE__ */ React.createElement("div", {
|
|
2565
|
+
className: "flex flex-col items-start justify-center ml-2"
|
|
2566
|
+
}, /* @__PURE__ */ React.createElement("p", {
|
|
2567
|
+
className: "font-poppins text-left text-violet-800 font-semibold text-xs"
|
|
2568
|
+
}, _category == null ? void 0 : _category.title), /* @__PURE__ */ React.createElement("p", {
|
|
2569
|
+
className: "text-black font-poppins text-left text-base font-normal"
|
|
2570
|
+
}, title))), (subSkills == null ? void 0 : subSkills.length) > 0 && /* @__PURE__ */ React.createElement("div", {
|
|
2571
|
+
className: "flex items-center justify-center rounded-full bg-white mr-4 h-[40px] w-[40px]"
|
|
2572
|
+
}, /* @__PURE__ */ React.createElement("button", {
|
|
2573
|
+
onClick: () => {
|
|
2574
|
+
handleExpandSubSkills == null ? void 0 : handleExpandSubSkills();
|
|
2575
|
+
},
|
|
2576
|
+
className: "text-black font-bold flex items-center justify-center text-center font-poppins"
|
|
2577
|
+
}, "+", subSkillsCount)));
|
|
2578
|
+
};
|
|
2579
|
+
|
|
2580
|
+
const Subskill = ({ subskillSelected, skill, subSkill }) => {
|
|
2581
|
+
const { title, IconComponent, type, category } = skill;
|
|
2582
|
+
const _category = boostCMSSKillCategories.find((c) => c.type === category);
|
|
2583
|
+
return /* @__PURE__ */ React.createElement("div", {
|
|
2584
|
+
className: "flex items-center justify-between w-full mb-4 bg-violet-100 rounded-[20px]"
|
|
2585
|
+
}, /* @__PURE__ */ React.createElement("div", {
|
|
2586
|
+
className: "flex items-center justify-start w-[90%] px-[6px] py-[10px] overflow-hidden"
|
|
2587
|
+
}, /* @__PURE__ */ React.createElement("div", {
|
|
2588
|
+
className: "rounded-full h-[50px] w-[50px]"
|
|
2589
|
+
}, /* @__PURE__ */ React.createElement("img", {
|
|
2590
|
+
src: IconComponent,
|
|
2591
|
+
alt: "skill icon",
|
|
2592
|
+
className: "w-full h-full"
|
|
2593
|
+
})), /* @__PURE__ */ React.createElement("div", {
|
|
2594
|
+
className: "flex flex-col items-start justify-center ml-2"
|
|
2595
|
+
}, /* @__PURE__ */ React.createElement("p", {
|
|
2596
|
+
className: "font-poppins text-left text-violet-800 font-semibold text-xs"
|
|
2597
|
+
}, _category == null ? void 0 : _category.title, " / ", skill == null ? void 0 : skill.title), /* @__PURE__ */ React.createElement("p", {
|
|
2598
|
+
className: "text-black font-poppins text-left text-base font-normal"
|
|
2599
|
+
}, subSkill == null ? void 0 : subSkill.title))));
|
|
2600
|
+
};
|
|
2601
|
+
|
|
2602
|
+
const SelectedSkills = ({ skill, skillSelected }) => {
|
|
2603
|
+
const [expandSubSkills, setExandSubSkills] = useState(false);
|
|
2604
|
+
const handleExpandSubSkills = () => setExandSubSkills(!expandSubSkills);
|
|
2605
|
+
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(TopLevelSkill, {
|
|
2606
|
+
skill,
|
|
2607
|
+
skillSelected,
|
|
2608
|
+
handleExpandSubSkills
|
|
2609
|
+
}), skillSelected && skillSelected.subskills.length > 0 && expandSubSkills && /* @__PURE__ */ React.createElement("div", {
|
|
2610
|
+
className: "w-full flex items-center justify-end"
|
|
2611
|
+
}, /* @__PURE__ */ React.createElement("div", {
|
|
2612
|
+
className: "w-[95%] flex items-center flex-col"
|
|
2613
|
+
}, skillSelected.subskills.map((subSkill, i) => {
|
|
2614
|
+
var _a;
|
|
2615
|
+
const subskillSelected = (_a = skillSelected == null ? void 0 : skillSelected.subskills) == null ? void 0 : _a.includes(subSkill);
|
|
2616
|
+
const _subSkill = SKILLS_TO_SUBSKILLS[skill.type].find((ss) => ss.type === subSkill);
|
|
2617
|
+
return /* @__PURE__ */ React.createElement(Subskill, {
|
|
2618
|
+
key: i,
|
|
2619
|
+
skill,
|
|
2620
|
+
subSkill: _subSkill,
|
|
2621
|
+
subskillSelected
|
|
2622
|
+
});
|
|
2623
|
+
}))));
|
|
2624
|
+
};
|
|
2625
|
+
|
|
2626
|
+
const SkillsBox = ({ skills }) => {
|
|
2627
|
+
return /* @__PURE__ */ React.createElement("div", {
|
|
2628
|
+
className: "bg-white flex flex-col items-start gap-[10px] rounded-[20px] shadow-bottom px-[15px] py-[20px] w-full relative"
|
|
2629
|
+
}, /* @__PURE__ */ React.createElement("div", {
|
|
2630
|
+
className: "flex items-center justify-start"
|
|
2631
|
+
}, /* @__PURE__ */ React.createElement("div", {
|
|
2632
|
+
className: "bg-violet-500 rounded-full flex items-center justify-center h-[30px] w-[30px] p-1"
|
|
2633
|
+
}, /* @__PURE__ */ React.createElement(PuzzlePiece, {
|
|
2634
|
+
className: "text-white",
|
|
2635
|
+
fill: "#fff"
|
|
2636
|
+
})), " ", /* @__PURE__ */ React.createElement("h3", {
|
|
2637
|
+
className: "text-[20px] leading-[20px] text-grayscale-900 ml-2"
|
|
2638
|
+
}, "Skills")), skills.length > 0 && /* @__PURE__ */ React.createElement("div", {
|
|
2639
|
+
className: "pt-0 pb-4 flex items-center justify-center flex-col w-full"
|
|
2640
|
+
}, skills.map((_skill, index) => {
|
|
2641
|
+
boostCMSSKillCategories.find((c) => c.type === _skill.category);
|
|
2642
|
+
const skill = CATEGORY_TO_SKILLS[_skill.category].find((s) => s.type === _skill.skill);
|
|
2643
|
+
SKILLS_TO_SUBSKILLS[_skill.skill];
|
|
2644
|
+
const selectedSkills = skills != null ? skills : [];
|
|
2645
|
+
const skillSelected = selectedSkills.find((s) => s.skill === skill.type);
|
|
2646
|
+
return /* @__PURE__ */ React.createElement(SelectedSkills, {
|
|
2647
|
+
key: index,
|
|
2648
|
+
skill,
|
|
2649
|
+
skillSelected
|
|
2650
|
+
});
|
|
2651
|
+
})));
|
|
2652
|
+
};
|
|
2653
|
+
|
|
806
2654
|
const CertificateBackFace = ({
|
|
807
2655
|
credential,
|
|
808
2656
|
categoryType,
|
|
809
2657
|
verificationItems,
|
|
2658
|
+
customSkillsComponent,
|
|
810
2659
|
getFileMetadata,
|
|
811
2660
|
getVideoMetadata,
|
|
812
2661
|
onMediaAttachmentClick,
|
|
813
2662
|
enableLightbox
|
|
814
2663
|
}) => {
|
|
815
|
-
var _a, _b, _c;
|
|
2664
|
+
var _a, _b, _c, _d, _e, _f;
|
|
816
2665
|
const { createdAt, credentialSubject } = getInfoFromCredential(credential, "MMM dd, yyyy", {
|
|
817
2666
|
uppercaseDate: false
|
|
818
2667
|
});
|
|
@@ -837,7 +2686,9 @@ const CertificateBackFace = ({
|
|
|
837
2686
|
}, "Awarded on ", createdAt)), criteria && /* @__PURE__ */ React.createElement(TruncateTextBox, {
|
|
838
2687
|
headerText: "Criteria",
|
|
839
2688
|
text: criteria
|
|
840
|
-
}), credential.
|
|
2689
|
+
}), ((_e = (_d = credential.skills) == null ? void 0 : _d.length) != null ? _e : 0) > 0 && (customSkillsComponent ? customSkillsComponent : /* @__PURE__ */ React.createElement(SkillsBox, {
|
|
2690
|
+
skills: (_f = credential.skills) != null ? _f : []
|
|
2691
|
+
})), credential.attachments && credential.attachments.length > 0 && /* @__PURE__ */ React.createElement(MediaAttachmentsBox, {
|
|
841
2692
|
attachments: credential.attachments,
|
|
842
2693
|
getFileMetadata,
|
|
843
2694
|
getVideoMetadata,
|
|
@@ -947,16 +2798,21 @@ const CertificateProfileImageDisplay = ({
|
|
|
947
2798
|
}));
|
|
948
2799
|
};
|
|
949
2800
|
|
|
950
|
-
const VCDisplayCardSkillsCount = ({ skills }) => {
|
|
2801
|
+
const VCDisplayCardSkillsCount = ({ skills, onClick }) => {
|
|
951
2802
|
const skillsCount = getTotalCountOfSkills(skills);
|
|
952
2803
|
if (skillsCount === 0)
|
|
953
2804
|
return /* @__PURE__ */ React.createElement(React.Fragment, null);
|
|
2805
|
+
const skillsMap = categorizeSkills(skills);
|
|
2806
|
+
const totalSkills = Object.values(skillsMap).reduce((total2, category) => total2 + (category == null ? void 0 : category.length), 0);
|
|
2807
|
+
const totalSubskills = Object.values(skillsMap).reduce((total2, category) => total2 + ((category == null ? void 0 : category.totalSubskillsCount) || 0), 0);
|
|
2808
|
+
const total = totalSkills + totalSubskills;
|
|
954
2809
|
const text = skillsCount === 1 ? "Skill" : "Skills";
|
|
955
2810
|
return /* @__PURE__ */ React.createElement("div", {
|
|
956
|
-
className: "flex items-center justify-center mt-8"
|
|
2811
|
+
className: "flex items-center justify-center mt-8 cursor-pointer",
|
|
2812
|
+
onClick
|
|
957
2813
|
}, /* @__PURE__ */ React.createElement("p", {
|
|
958
2814
|
className: "text-violet-500 text-xl flex items-center justify-center tracking-[0.75px] font-poppins font-semibold"
|
|
959
|
-
}, "+",
|
|
2815
|
+
}, "+", total, " ", text, " ", /* @__PURE__ */ React.createElement("div", {
|
|
960
2816
|
className: "bg-violet-500 rounded-full flex items-center justify-center ml-2 h-[30px] w-[30px] p-1"
|
|
961
2817
|
}, /* @__PURE__ */ React.createElement(PuzzlePiece, {
|
|
962
2818
|
className: "text-white",
|
|
@@ -979,7 +2835,8 @@ const CertificateFrontFace = ({
|
|
|
979
2835
|
subjectImageComponent,
|
|
980
2836
|
issuerImageComponent,
|
|
981
2837
|
customBodyCardComponent,
|
|
982
|
-
hideIssueDate
|
|
2838
|
+
hideIssueDate,
|
|
2839
|
+
handleViewBackFace
|
|
983
2840
|
}) => {
|
|
984
2841
|
var _a, _b;
|
|
985
2842
|
const {
|
|
@@ -1067,7 +2924,8 @@ const CertificateFrontFace = ({
|
|
|
1067
2924
|
}, description && /* @__PURE__ */ React.createElement("div", {
|
|
1068
2925
|
className: "text-center text-grayscale-700 text-[12px] font-jacques line-clamp-4"
|
|
1069
2926
|
}, description), /* @__PURE__ */ React.createElement(VCDisplayCardSkillsCount, {
|
|
1070
|
-
skills: (_b = credential == null ? void 0 : credential.skills) != null ? _b : []
|
|
2927
|
+
skills: (_b = credential == null ? void 0 : credential.skills) != null ? _b : [],
|
|
2928
|
+
onClick: handleViewBackFace
|
|
1071
2929
|
})), /* @__PURE__ */ React.createElement("div", {
|
|
1072
2930
|
className: "flex flex-col gap-[5px] items-center w-full"
|
|
1073
2931
|
}, /* @__PURE__ */ React.createElement("span", {
|
|
@@ -1115,6 +2973,7 @@ const CertificateDisplayCard = ({
|
|
|
1115
2973
|
customBodyCardComponent,
|
|
1116
2974
|
trustedAppRegistry,
|
|
1117
2975
|
hideIssueDate,
|
|
2976
|
+
customSkillsComponent,
|
|
1118
2977
|
getFileMetadata,
|
|
1119
2978
|
getVideoMetadata,
|
|
1120
2979
|
onMediaAttachmentClick,
|
|
@@ -1124,7 +2983,7 @@ const CertificateDisplayCard = ({
|
|
|
1124
2983
|
}) => {
|
|
1125
2984
|
const [isFront, setIsFront] = useState(true);
|
|
1126
2985
|
return /* @__PURE__ */ React.createElement("section", {
|
|
1127
|
-
className: `w-full border-solid border-[5px] border-grayscale-200 rounded-[30px] relative min-w-[250px]
|
|
2986
|
+
className: `w-full border-solid border-[5px] border-grayscale-200 rounded-[30px] relative min-w-[250px] ${isFront ? "bg-white p-[13px] max-w-[300px]" : `max-w-[400px]`}`
|
|
1128
2987
|
}, isFront && /* @__PURE__ */ React.createElement(CertificateFrontFace, {
|
|
1129
2988
|
credential,
|
|
1130
2989
|
categoryType,
|
|
@@ -1134,7 +2993,8 @@ const CertificateDisplayCard = ({
|
|
|
1134
2993
|
subjectImageComponent,
|
|
1135
2994
|
issuerImageComponent,
|
|
1136
2995
|
customBodyCardComponent,
|
|
1137
|
-
hideIssueDate
|
|
2996
|
+
hideIssueDate,
|
|
2997
|
+
handleViewBackFace: () => setIsFront(!isFront)
|
|
1138
2998
|
}), !isFront && /* @__PURE__ */ React.createElement(CertificateBackFace, {
|
|
1139
2999
|
credential,
|
|
1140
3000
|
categoryType,
|
|
@@ -1168,5 +3028,5 @@ const CertificateDisplayCard = ({
|
|
|
1168
3028
|
})));
|
|
1169
3029
|
};
|
|
1170
3030
|
|
|
1171
|
-
export { AcuteCheckmark as A, CertificateDisplayCard as C, ExclamationPoint as E, GenericDocumentIcon as G, InfoIcon as I, LinkIcon as L, VCDisplayCardSkillsCount as V, X, VideoIcon as a, Camera as b, capitalize as c, getBaseUrl as g, prettyBytes as p, truncateWithEllipsis as t };
|
|
1172
|
-
//# sourceMappingURL=CertificateDisplayCard-
|
|
3031
|
+
export { AcuteCheckmark as A, CertificateDisplayCard as C, ExclamationPoint as E, GenericDocumentIcon as G, InfoIcon as I, LinkIcon as L, SelectedSkills as S, VCDisplayCardSkillsCount as V, X, VideoIcon as a, Camera as b, capitalize as c, SkillsBox as d, getBaseUrl as g, prettyBytes as p, truncateWithEllipsis as t };
|
|
3032
|
+
//# sourceMappingURL=CertificateDisplayCard-dcebf9a7.js.map
|