-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.php
169 lines (135 loc) · 4.03 KB
/
services.php
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
<?php
require_once('common.php');
template('header');
?>
<div class="album py-5 bg-light">
<div class="container">
<p class="display-6 text-center ">The Services</p>
<p class="lead text-center ">Things That Cost $$$ Every Month</p>
<?php
$service_data = get_service_stats();
$format = Array();
$count = Array();
$colors = get_service_color_v3();
foreach($service_data as $item){
$format[] = $item['format'];
$count[] = $item['COUNT(*)'];
$color[] = $colors[$item['format']];
}
?>
<div class="row mt-3">
<canvas id="myChart" width="400" height="200" style="position:relative; !important"></canvas>
<script>
var ctx = document.getElementById('myChart').getContext('2d');
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: ['<?php echo implode("','", $format,); ?>'],
datasets: [{
label: '# of Events',
data: [<?php echo implode(',', $count); ?>],
backgroundColor: [
'<?php echo implode("','", $color); ?>'
]
}]
},
options: {
scales: {
y: {
beginAtZero: true
}
}
}
});
</script>
<p class="lead text-center mt-5">The time we've clocked on each service.</p>
<?php
$minutes_watched = count_minutes_per_service();
foreach($minutes_watched as $item){
$format_m[] = $item['format'];
$count_m[] = $item['SUM(`runtime`)'];
$color_m[] = $colors[$item['format']];
}
?>
<canvas id="myTimeChart" width="400" height="200" style="position:relative; !important"></canvas>
<script>
var ctx = document.getElementById('myTimeChart').getContext('2d');
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: ['<?php echo implode("','", $format_m); ?>'],
datasets: [{
label: 'Minutes Watched on Each Service',
data: [<?php echo implode(',', $count_m); ?>],
backgroundColor: [
'<?php echo implode("','", $color_m); ?>'
]
}]
},
options: {
scales: {
y: {
beginAtZero: true
}
}
}
});
</script>
</div>
<div id="mwo" class="row pt-5 justify-content-center">
<div class="col-7">
<h3>Movies watched on</h3>
<?php
$services = getListOfServices('name','ASC');
$servicesSelect = "<option disabled selected>All Services</option>";
foreach($services as $aService){
$servicesSelect .= "<option value=\"" . $aService['name'] . "\">" . $aService['name'] . "</option>";
}
?>
<div class="col-12 mb-3">
<select id="gender" class="form-control form-select">
<?php echo $servicesSelect; ?>
</select>
</div>
<table class="dynamicTable table">
<!-- Table heading -->
<thead>
<tr>
<th>Date</th>
<th>Movie Title</th>
<th>Service</th>
</tr>
</thead>
<tbody>
<?php
$all_winners = list_winning_films_and_service_v2($pdo);
foreach($all_winners as $a_winner):?>
<tr>
<td><?php echo $a_winner['date']; ?></td>
<td><?php echo get_movie_by_id($pdo,$a_winner['winning_film']); ?></td>
<td><?php echo $a_winner['format']; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
<!-- // Table body END -->
</table>
<script>
$("#gender").on("change",
function(){
var a = $(this).find("option:selected").html();
$("table tr td").each(
function(){
if($(this).html() != a){
$(this).parent().hide();
}
else{
$(this).parent().show();
}
});
});
</script>
</div>
</div>
</div>
</div>
<?php template('footer');?>