File tree Expand file tree Collapse file tree 7 files changed +42
-24
lines changed Expand file tree Collapse file tree 7 files changed +42
-24
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
2
<div id =" container" >
3
- <ManualControl class =" game-controller-view" />
4
- <TeamOverview class =" game-controller-view" />
5
- <Events class =" game-controller-view" />
6
- <div class =" game-controller-view" >
7
- <h2 >Game Events</h2 >
8
- <div class =" game-events" >
9
- <CurrentEvents />
10
- <hr >
11
- <EventProposals />
12
- </div >
13
- </div >
3
+ <ManualControl />
4
+ <TeamOverview />
5
+ <Events />
6
+ <GameEvents />
14
7
</div >
15
8
</template >
16
9
17
10
<script >
18
11
import TeamOverview from " ./team/TeamOverview" ;
19
12
import ControlTeam from " ./manual-control/ManualControlTeam" ;
20
13
import Events from " ./events/Events" ;
21
- import EventProposals from " ./events/EventProposals" ;
22
- import CurrentEvents from " ./events/CurrentEvents" ;
23
14
import Settings from " ./settings/Settings" ;
24
15
import ManualControl from " ./manual-control/ManualControl" ;
16
+ import GameEvents from " ./game-events/GameEvents" ;
25
17
26
18
export default {
27
19
name: " AutonomousControl" ,
28
20
components: {
21
+ GameEvents,
29
22
ManualControl,
30
23
Settings,
31
- CurrentEvents,
32
- EventProposals,
33
24
Events,
34
25
ControlTeam,
35
26
TeamOverview,
49
40
flex-grow : 1 ;
50
41
}
51
42
52
- .game-events {
53
- text-align : left ;
54
- overflow-y : auto ;
55
- max-height : 85vh ;
56
- }
57
-
58
43
</style >
Original file line number Diff line number Diff line change 1
1
<template >
2
- <div >
2
+ <div class = " game-controller-view " >
3
3
<h2 >Game Protocol</h2 >
4
4
<EventTable :current-page =" currentPage" :per-page =" perPage" :events =" events" />
5
5
<div class =" event-controls-container" >
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ <template >
2
+ <div class =" game-controller-view" >
3
+ <h2 >Game Events</h2 >
4
+ <div class =" game-events" >
5
+ <CurrentEvents />
6
+ <hr >
7
+ <EventProposals />
8
+ </div >
9
+ </div >
10
+ </template >
11
+
12
+ <script >
13
+ import CurrentEvents from " ./CurrentEvents" ;
14
+ import EventProposals from " ./EventProposals" ;
15
+
16
+ export default {
17
+ name: " GameEvents" ,
18
+ components: {
19
+ EventProposals,
20
+ CurrentEvents
21
+ }
22
+ }
23
+ </script >
24
+
25
+ <style scoped>
26
+
27
+ .game-events {
28
+ text-align : left ;
29
+ overflow-y : auto ;
30
+ max-height : 85vh ;
31
+ }
32
+
33
+ </style >
Original file line number Diff line number Diff line change 1
1
<template >
2
- <div >
2
+ <div class = " game-controller-view " >
3
3
<h2 >Manual Control</h2 >
4
4
<table >
5
5
<tr >
Original file line number Diff line number Diff line change 1
1
<template >
2
- <div >
2
+ <div class = " game-controller-view " >
3
3
<h2 >Team Overview</h2 >
4
4
<table >
5
5
<tr >
You can’t perform that action at this time.
0 commit comments