sort_client.hbs
8.6 KB
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
<div class="pageheader">
<div class="media">
<div class="pageicon pull-left">
<i class="fa fa-th-list"></i>
</div>
<div class="media-body">
<ul class="breadcrumb">
<li><a href=""><i class="glyphicon glyphicon-home"></i></a></li>
<li><a href="">性能监控</a></li>
<li>浏览器排行榜</li>
</ul>
<h4>浏览器排行榜</h4>
</div>
</div>
<!-- media -->
</div>
<!-- pageheader -->
<style>
.degrade-page {
padding: 20px;
}
.server-in-use,
.connect-err .server-name,
.connect-err .fa {
font-size: 24px;
color: #a94442;
}
.ip-port-modify-btn {
color: #999;
text-decoration: underline;
cursor: pointer;
margin-left: 10px;
}
.degrade-tab li {
cursor: pointer;
}
.pc-degrade,
.wap-degrade {
list-style: none;
padding: 20px;
}
.err-tip {
color: #a94442;
}
.config-panel .server-port {
width: 100px;
}
.config-panel .form-inline {
padding: 20px 0;
border-bottom: 1px solid #d9edf7;
}
.form-item {
margin-right: 10px;
margin-bottom: 10px;
}
</style>
<div class="degrade-page">
<div class="panel panel-info">
<div class="panel-heading">
<div class="form-inline inline-block form-item">
<label for="appName" class="control-label">应用</label>
<select id="selectedApp" class="form-control" >
<option value="">全部</option>
{{#each app}}
<option value="{{this}}">{{this}}</option>
{{/each}}
</select>
</div>
<div class="form-inline inline-block form-item">
<label for="appName" class="control-label">时间</label>
<div id="reportrange" style="display: inline-block; background: #fff; cursor: pointer; padding: 9px 10px; border: 1px solid #ccc; width: 210px; color: black;">
<i class="glyphicon glyphicon-calendar fa fa-calendar"></i>
<span></span> <b class="caret"></b>
</div>
</div>
<div class="form-inline inline-block">
<button id="search" class="btn btn-info" style="margin-left: 20px;">查询</button>
</div>
<div class="form-inline inline-block">
<button id="clear" class="btn btn-info" style="margin-left: 20px;">清除</button>
</div>
</div>
<div class="panel-body">
<div class="row route-data">
<div class="col-md-6 config-panel" data-type="slow">
<div class="panel panel-success">
<div class="panel-heading">
首屏最慢降序
</div>
<div class="panel-body">
<table class="table table-striped table-bordered">
<thead>
<tr>
<td>
排序
</td>
<td>
路由
</td>
<td>
时间 (ms)
</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<div class="col-md-6 config-panel" data-type="count">
<div class="panel panel-warning">
<div class="panel-heading">
调用次数
</div>
<div class="panel-body">
<table class="table table-striped table-bordered">
<thead>
<tr>
<td>
排序
</td>
<td>
路由
</td>
<td>
调用次数
</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var query = {
app: '',
time: ''
};
function qs(obj) {
return Object.keys(obj).map(key => {
return `${key}=${encodeURIComponent(obj[key])}`;
}).join('&')
}
$(function() {
initSelect();
initDatePicker();
});
const TIME = {
'最近1分钟': [1, 'm'],
'最近30分钟': [30, 'm'],
'最近1小时': [1, 'h'],
'最近3小时': [3, 'h'],
'最近6小时': [6, 'h'],
'最近12小时': [12, 'h']
};
function initDatePicker() {
var first = '无';
$('#reportrange span').html(first);
lastTime = TIME[first];
function cb(start, end, label) {
if (label && label !== '自定义日期') {
$('#reportrange span').html(label);
var lastTime = TIME[label];
var selectedStartTime = moment().subtract(...lastTime).valueOf();
var selectedEndTime = moment().valueOf();
query.time = `${selectedStartTime}:${selectedEndTime}`;
} else if (label && label === '自定义日期'){
$('#reportrange span').html(start.format('YYYY-MM-DD') + ' 至 ' + end.format('YYYY-MM-DD'));
var selectedStartTime = moment(start.format('YYYY-MM-DD')).valueOf();
var selectedEndTime = moment(end.add(1, 'd').format('YYYY-MM-DD')).valueOf();
query.time = `${selectedStartTime}:${selectedEndTime}`;
}
}
$('#reportrange').daterangepicker({
startDate: undefined,
endDate: undefined,
timePicker: true,
timePicker24Hour: true,
dateLimit: {
days: 7
},
ranges: {
'最近1分钟': [moment().subtract(1, 'minutes'), moment()],
'最近30分钟': [moment().subtract(30, 'minutes'), moment()],
'最近1小时': [moment().subtract(1, 'hours'), moment()],
'最近3小时': [moment().subtract(3, 'hours'), moment()],
'最近6小时': [moment().subtract(6, 'hours'), moment()],
'最近12小时': [moment().subtract(12, 'hours'), moment()]
},
locale: {
format: "YYYY-MM-DD",
applyLabel: '确定',
cancelLabel: '取消',
weekLabel: 'W',
customRangeLabel: '自定义日期',
daysOfWeek: '日_一_二_三_四_五_六'.split('_'),
monthNames: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
firstDay: 1
},
}, cb);
$('#reportrange').on('cancel.daterangepicker', function() {
$('#reportrange').data('daterangepicker').setStartDate(undefined);
$('#reportrange').data('daterangepicker').setEndDate(undefined);
$('#reportrange span').html(first);
});
}
function initSelect() {
$('#selectedApp').change(function() {
query.app = $('#selectedApp').val();
});
$('#search').on('click', () => {
_handleChanged();
});
$('#clear').on('click', () => {
clearSelect();
})
}
function clearSelect() {
$('#selectedApp').val('');
$('#reportrange').trigger('cancel.daterangepicker');
query = {
app: '',
time: '',
};
}
function _handleChanged() {
$.post(`/profile/sort_client_list?${qs(query)}`).then(result => {
$('.route-data').replaceWith(result);
});
}
</script>