|
|
@@ -40,32 +40,32 @@ class SummaryGroup {
|
|
40
|
40
|
}
|
|
41
|
41
|
|
|
42
|
42
|
class Aspect {
|
|
43
|
|
- constructor({ name, labels, percentage = 50 }) {
|
|
|
43
|
+ constructor({ name, labels, percentage = 1 }) {
|
|
44
|
44
|
this.name = name
|
|
45
|
45
|
this.labels = labels
|
|
46
|
46
|
this.percentage = percentage
|
|
47
|
47
|
}
|
|
48
|
48
|
}
|
|
49
|
|
-const cardAspects = [ // TODO these aspects don't align with response_keys DB table
|
|
50
|
|
-new Aspect({
|
|
51
|
|
- name: 'creativity',
|
|
52
|
|
- labels: ['creative', 'methodical'],
|
|
53
|
|
-}),
|
|
54
|
|
-new Aspect({
|
|
55
|
|
- name: 'dynamism',
|
|
56
|
|
- labels: ['dynamic', 'ordered'],
|
|
57
|
|
-}),
|
|
58
|
|
-new Aspect({
|
|
59
|
|
- name: 'precision',
|
|
60
|
|
- labels: ['precise', 'resourceful'],
|
|
61
|
|
-}),
|
|
62
|
|
-new Aspect({
|
|
63
|
|
- name: 'vision',
|
|
64
|
|
- labels: ['visionary', 'implementer'],
|
|
65
|
|
-}),
|
|
66
|
|
-new Aspect({
|
|
67
|
|
- name: 'focus',
|
|
68
|
|
- labels: ['big picture', 'focused'],
|
|
|
49
|
+const cardAspects = [
|
|
|
50
|
+ new Aspect({
|
|
|
51
|
+ name: 'creativity',
|
|
|
52
|
+ labels: ['creative', 'methodical'],
|
|
|
53
|
+ }),
|
|
|
54
|
+ new Aspect({
|
|
|
55
|
+ name: 'dynamism',
|
|
|
56
|
+ labels: ['dynamic', 'ordered'],
|
|
|
57
|
+ }),
|
|
|
58
|
+ new Aspect({
|
|
|
59
|
+ name: 'precision',
|
|
|
60
|
+ labels: ['precise', 'resourceful'],
|
|
|
61
|
+ }),
|
|
|
62
|
+ new Aspect({
|
|
|
63
|
+ name: 'vision',
|
|
|
64
|
+ labels: ['visionary', 'implementer'],
|
|
|
65
|
+ }),
|
|
|
66
|
+ new Aspect({
|
|
|
67
|
+ name: 'focus',
|
|
|
68
|
+ labels: ['big picture', 'focused'],
|
|
69
|
69
|
}),
|
|
70
|
70
|
new Aspect({
|
|
71
|
71
|
name: 'attention',
|