File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 24
24
</span >
25
25
</b-button >
26
26
</div >
27
+
28
+ <div v-for =" autoRefId of autoRefs" v-if =" autoRefReady(autoRefId) !== undefined" class =" auto-ref-meta" >
29
+ {{autoRefId}}
30
+ <font-awesome-icon
31
+ v-b-tooltip.hover.d500
32
+ title =" Ready to continue"
33
+ v-if =" autoRefReady(autoRefId)"
34
+ class =" fa-xs"
35
+ icon =" check-circle" />
36
+ <font-awesome-icon
37
+ v-b-tooltip.hover.d500
38
+ title =" Not ready to continue yet"
39
+ v-else
40
+ class =" fa-xs"
41
+ icon =" times-circle" />
42
+ </div >
27
43
</div >
28
44
</template >
29
45
40
56
triggerContinue () {
41
57
submitChange ({continue: {}});
42
58
},
59
+ autoRefReady (id ) {
60
+ return this .$store .state .gcState .autoRefState [id].readyToContinue ;
61
+ }
43
62
},
44
63
computed: {
45
64
keymapHalt () {
87
106
' team-blue' : this .nextCommand && this .nextCommand .forTeam === TEAM_BLUE ,
88
107
' team-yellow' : this .nextCommand && this .nextCommand .forTeam === TEAM_YELLOW
89
108
}
109
+ },
110
+ autoRefs () {
111
+ return Object .keys (this .$store .state .gcState .autoRefState );
90
112
}
91
113
}
92
114
}
102
124
display : flex ;
103
125
justify-content : center ;
104
126
}
127
+
128
+ .auto-ref-meta {
129
+ font-size : 1.2em ;
130
+ margin : auto .2em ;
131
+ }
132
+
105
133
</style >
You can’t perform that action at this time.
0 commit comments