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
|
from dash.html import Div, H4
from match_up.model import Player
from dash.dash_table import DataTable
from dash_bootstrap_components import Row, Col, Container, Input, Select
class PlayerLayout:
def __init__(self, player_list: list[Player]):
self._layout = Div(
[
H4(children="Player List"),
DataTable(
data=[
{
"Player": player.first_name + " " + player.last_name,
"Status": "Active" if player.status else "Inactive",
}
for player in player_list
],
columns=[
{"name": "Player", "id": "Player", "type": "text"},
],
style_data_conditional=[
{
"if": {
"column_id": "Player",
"filter_query": "{Status} = Active",
},
"backgroundColor": "green",
"color": "white",
},
{
"if": {
"column_id": "Player",
"filter_query": "{Status} = Inactive",
},
"backgroundColor": "tomato",
"color": "white",
"fontWeight": "bold",
},
],
),
]
)
def get(self):
return self._layout
class GameLayout:
def __init__(): ...
class MainLayout:
def __init__(self, player_list: list[Player]):
self._player_layout = PlayerLayout(player_list)
def refresh(): ...
def get(self):
full_layout = Div(
[
Container(
[
Row(
[
Col(["Total Samples"], width=1),
Col([self._player_layout.get()], width=10),
],
style={"margin": "15px"},
)
]
)
]
)
# full_layout = Div([Div(children="Hello World")])
return full_layout
|