-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathExtension_NewRelic_Widget_View.js
70 lines (57 loc) · 2.42 KB
/
Extension_NewRelic_Widget_View.js
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
jQuery(document).ready(function($) {
function w3tcnr_load_basic() {
$('.w3tcnr_loading').removeClass('w3tc_hidden');
$('.w3tcnr_content').addClass('w3tc_hidden');
$('.w3tcnr_error').addClass('w3tc_none');
$.getJSON(ajaxurl + '?action=w3tc_ajax&_wpnonce=' + w3tc_nonce +
'&w3tc_action=newrelic_widgetdata_basic',
function(data) {
for (p in data) {
var v = data[p];
jQuery('.w3tcnr_' + p).html(v);
}
$('.w3tcnr_content').removeClass('w3tc_hidden');
$('.w3tcnr_loading').addClass('w3tc_hidden');
}
).fail(function() {
$('.w3tcnr_error').removeClass('w3tc_none');
$('.w3tcnr_content').addClass('w3tc_hidden');
$('.w3tcnr_loading').addClass('w3tc_hidden');
});
}
function w3tcnr_load_topfive(action, selector) {
$.getJSON(ajaxurl + '?action=w3tc_ajax&_wpnonce=' + w3tc_nonce +
'&w3tc_action=' + action,
function(data) {
$(selector).html(data.content);
// resize outer window to newly grown widget
jQuery('#normal-sortables').masonry({
itemSelector: '.postbox'
});
}
).fail(function() {
$(selector).html('<div class="w3tcnr_topfive_message">Request failed</div>');
});
}
var nr_widget = jQuery('#new-relic-widget');
nr_widget.find('div.top-five').hide();
$('.w3tcnr-header-pageloads').click(function() {
jQuery(this).find('div').toggleClass('close');
jQuery(this).parents('.wrapper').find("div.top-five").toggle();
w3tcnr_load_topfive('newrelic_widgetdata_pageloads',
'.w3tcnr_pageloads');
});
$('.w3tcnr-header-webtransactions').click(function() {
jQuery(this).find('div').toggleClass('close');
jQuery(this).parents('.wrapper').find("div.top-five").toggle();
w3tcnr_load_topfive('newrelic_widgetdata_webtransactions',
'.w3tcnr_webtransactions');
});
$('.w3tcnr-header-dbtimes').click(function() {
jQuery(this).find('div').toggleClass('close');
jQuery(this).parents('.wrapper').find("div.top-five").toggle();
w3tcnr_load_topfive('newrelic_widgetdata_dbtimes',
'.w3tcnr_dbtimes');
});
w3tcnr_load_basic();
});