-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvolume_index.ml
319 lines (319 loc) · 15.5 KB
/
volume_index.ml
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
let volume_index_layout volumes policy =
let total_volume_used =
List.fold_left (fun total_size (_, size, _) -> total_size + size) 0 volumes
in
let total_free_space =
match policy with
| Some policy ->
Option.value ~default:0 policy.Vmm_core.Policy.block - total_volume_used
| None -> 0
in
Tyxml_html.(
section
~a:[ a_class [ "col-span-7 p-4 bg-gray-50 my-1" ] ]
[
section
~a:[ a_id "block-display"; a_class [ "block" ] ]
[
div
~a:[ a_class [ "px-3 flex justify-between items-center" ] ]
[
div
[
p
~a:[ a_class [ "font-bold text-gray-700" ] ]
[
txt
("Volumes ("
^ string_of_int (List.length volumes)
^ ")");
];
];
div
[
Modal_dialog.modal_dialog ~modal_title:"Create a volume"
~button_content:(txt "Create block device")
~content:(Volume_ui.create_volume total_free_space)
();
];
];
div
~a:[ a_class [ "mx-auto text-center" ] ]
[
div
~a:
[
Unsafe.string_attrib "x-data" "chart: null";
Unsafe.string_attrib "x-init"
("\n\
\ chart = new \
Chart(document.getElementById('usageChart').getContext('2d'), \
{\n\
\ type: 'pie',\n\
\ data: {\n\
\ labels: ['Free storage ("
^ string_of_int total_free_space
^ "MB)','Used storage ("
^ string_of_int total_volume_used
^ "MB)'],\n\
\ datasets: [{\n\
\ label: 'Size',\n\
\ data: ["
^ string_of_int total_free_space
^ ", "
^ string_of_int total_volume_used
^ "],\n\
\ backgroundColor: ['rgb(156, \
156, 156)','rgb(54, 156, 140)'],\n\
\ hoverOffset: 4,\n\
\ }]\n\
\ },\n\
\ options: {}\n\
\ });\n\
\ ");
a_class [ "flex justify-center items-center" ];
a_style "position: relative; height:30vh; width:70vw;";
]
[ canvas ~a:[ a_id "usageChart" ] [] ];
];
div
[
input
~a:
[
a_onkeyup "filterData()";
a_placeholder "search";
a_id "searchQuery";
a_name "searchQuery";
a_input_type `Text;
a_class
[
"rounded py-2 px-3 border border-primary-200 \
focus:border-primary-500 outline-0";
];
]
();
];
hr ~a:[ a_class [ "border border-primary-500 my-5" ] ] ();
div
~a:[ a_class [ "flex flex-col" ] ]
[
div
~a:[ a_class [ "-m-1.5 overflow-x-auto" ] ]
[
div
~a:
[
a_class
[ "p-1.5 min-w-full inline-block align-middle" ];
]
[
div
~a:
[
Unsafe.string_attrib "x-data" "sort_data()";
a_class [ "overflow-hidden" ];
]
[
table
~a:
[
a_id "data-table";
a_class
[
"table-auto min-w-full divide-y \
divide-gray-200";
];
]
~thead:
(thead
[
tr
[
th
~a:
[
Unsafe.string_attrib "x-on:click"
"sortByColumn";
a_class
[
"px-6 py-3 text-start \
text-xs font-bold \
text-primary-600 uppercase \
cursor-pointer select-none";
];
]
[
txt "Host Device";
span
~a:[ a_class [ "px-2" ] ]
[
i
~a:
[
a_class
[ "fa-solid fa-sort" ];
]
[];
];
];
th
~a:
[
Unsafe.string_attrib "x-on:click"
"sortByColumn";
a_class
[
"px-6 py-3 text-start \
text-xs font-bold \
text-primary-600 uppercase \
cursor-pointer select-none";
];
]
[
txt "Size (MB)";
span
~a:[ a_class [ "px-2" ] ]
[
i
~a:
[
a_class
[ "fa-solid fa-sort" ];
]
[];
];
];
th
~a:
[
Unsafe.string_attrib "x-on:click"
"sortByColumn";
a_class
[
"px-6 py-3 text-start \
text-xs font-bold \
text-primary-600 uppercase \
cursor-pointer select-none";
];
]
[
txt "Used";
span
~a:[ a_class [ "px-2" ] ]
[
i
~a:
[
a_class
[ "fa-solid fa-sort" ];
]
[];
];
];
th
~a:
[
a_class
[
"px-6 py-3 text-start \
text-xs font-bold \
text-primary-600 uppercase \
cursor-pointer select-none";
];
]
[ txt "Action" ];
];
])
(List.map
(fun ((name, size, used) :
Vmm_core.Name.t * int * bool) ->
let name =
Option.value ~default:"no name"
(Vmm_core.Name.name name)
in
tr
~a:
[
a_class [ "border-b border-gray-200" ];
]
[
td
~a:
[
a_class
[
"px-6 py-4 whitespace-nowrap \
text-sm font-medium \
text-gray-800";
];
]
[ txt name ];
td
~a:
[
a_class
[
"px-6 py-4 whitespace-nowrap \
text-sm font-medium \
text-gray-800";
];
]
[ txt (string_of_int size ^ "MB") ];
td
~a:
[
a_class
[
"px-6 py-4 whitespace-nowrap \
text-sm font-medium \
text-gray-800";
];
]
[ txt (string_of_bool used) ];
td
~a:
[
a_class
[
"px-6 py-4 whitespace-nowrap \
text-sm font-medium \
text-gray-800 flex space-x-5";
];
]
[
Modal_dialog.modal_dialog
~modal_title:
("Upload data to " ^ name)
~button_content:(txt "Upload")
~button_type:`Primary_outlined
~content:
(Volume_ui.upload_to_volume name)
();
Modal_dialog.modal_dialog
~modal_title:"Download volume"
~button_content:(txt "Download")
~content:
(Volume_ui.download_volume name)
();
Utils.button_component
~attribs:
[
a_id
("delete-block-button-"
^ name);
a_onclick
("deleteVolume('" ^ name
^ "')");
]
~content:(txt "Delete")
~btn_type:`Danger_full ();
];
])
volumes);
];
];
];
];
];
])