-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskillTree.ts
More file actions
158 lines (157 loc) · 5.3 KB
/
skillTree.ts
File metadata and controls
158 lines (157 loc) · 5.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
export interface SkillNode {
id: string;
labelKey: string; // i18n key under skillTree.*, or 'custom:…' for user-added nodes
label?: string; // backward-compat EN label for custom nodes (bypasses i18n)
labels?: Partial<Record<string, string>>; // per-language label overrides, e.g. { en: '…', fr: '…' }
description?: string; // backward-compat EN markdown description
descriptions?: Partial<Record<string, string>>; // per-language descriptions
colorOverride?: string; // hex color override for custom nodes
positionOffset?: { x: number; y: number }; // free-drag offset applied on top of layout position
children?: SkillNode[];
}
export const skillTreeRoot: SkillNode = {
id: 'root',
labelKey: 'skillTree.root',
children: [
{
id: 'development',
labelKey: 'skillTree.development',
children: [
{
id: 'languages',
labelKey: 'skillTree.languages',
children: [
{ id: 'typescript', labelKey: 'skillTree.typescript' },
{ id: 'python', labelKey: 'skillTree.python' },
{ id: 'java', labelKey: 'skillTree.java' },
{ id: 'go', labelKey: 'skillTree.go' },
],
},
{
id: 'frontend',
labelKey: 'skillTree.frontend',
children: [
{ id: 'react', labelKey: 'skillTree.react' },
{ id: 'accessibility', labelKey: 'skillTree.accessibility' },
{ id: 'designSystems', labelKey: 'skillTree.designSystems' },
],
},
{
id: 'devops',
labelKey: 'skillTree.devops',
children: [
{ id: 'docker', labelKey: 'skillTree.docker' },
{ id: 'kubernetes', labelKey: 'skillTree.kubernetes' },
{ id: 'cicd', labelKey: 'skillTree.cicd' },
{ id: 'cloud', labelKey: 'skillTree.cloud' },
],
},
{
id: 'architecture',
labelKey: 'skillTree.architecture',
children: [
{ id: 'microservices', labelKey: 'skillTree.microservices' },
{ id: 'apis', labelKey: 'skillTree.apis' },
{ id: 'security', labelKey: 'skillTree.security' },
],
},
],
},
{
id: 'research',
labelKey: 'skillTree.research',
children: [
{
id: 'userResearch',
labelKey: 'skillTree.userResearch',
children: [
{ id: 'interviews', labelKey: 'skillTree.interviews' },
{ id: 'usability', labelKey: 'skillTree.usability' },
{ id: 'surveys', labelKey: 'skillTree.surveys' },
],
},
{
id: 'dataAnalysis',
labelKey: 'skillTree.dataAnalysis',
children: [
{ id: 'statistics', labelKey: 'skillTree.statistics' },
{ id: 'dataviz', labelKey: 'skillTree.dataviz' },
{ id: 'ml', labelKey: 'skillTree.ml' },
],
},
{
id: 'benchmarking',
labelKey: 'skillTree.benchmarking',
children: [
{ id: 'competitive', labelKey: 'skillTree.competitive' },
{ id: 'bestPractices', labelKey: 'skillTree.bestPractices' },
],
},
],
},
{
id: 'communication',
labelKey: 'skillTree.communication',
children: [
{
id: 'writing',
labelKey: 'skillTree.writing',
children: [
{ id: 'documentation', labelKey: 'skillTree.documentation' },
{ id: 'techWriting', labelKey: 'skillTree.techWriting' },
{ id: 'reporting', labelKey: 'skillTree.reporting' },
],
},
{
id: 'presenting',
labelKey: 'skillTree.presenting',
children: [
{ id: 'publicSpeaking', labelKey: 'skillTree.publicSpeaking' },
{ id: 'storytelling', labelKey: 'skillTree.storytelling' },
{ id: 'facilitation', labelKey: 'skillTree.facilitation' },
],
},
{
id: 'collaboration',
labelKey: 'skillTree.collaboration',
children: [
{ id: 'feedbackCulture', labelKey: 'skillTree.feedbackCulture' },
{ id: 'conflictResolution', labelKey: 'skillTree.conflictResolution' },
],
},
],
},
{
id: 'organisation',
labelKey: 'skillTree.organisation',
children: [
{
id: 'projectMgmt',
labelKey: 'skillTree.projectMgmt',
children: [
{ id: 'agile', labelKey: 'skillTree.agile' },
{ id: 'planning', labelKey: 'skillTree.planning' },
{ id: 'riskMgmt', labelKey: 'skillTree.riskMgmt' },
],
},
{
id: 'leadership',
labelKey: 'skillTree.leadership',
children: [
{ id: 'coaching', labelKey: 'skillTree.coaching' },
{ id: 'delegation', labelKey: 'skillTree.delegation' },
{ id: 'decisionMaking', labelKey: 'skillTree.decisionMaking' },
],
},
{
id: 'productivity',
labelKey: 'skillTree.productivity',
children: [
{ id: 'prioritisation', labelKey: 'skillTree.prioritisation' },
{ id: 'timeManagement', labelKey: 'skillTree.timeManagement' },
],
},
],
},
],
};