-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathObjectCache_DiskPopup.js
101 lines (88 loc) · 2.41 KB
/
ObjectCache_DiskPopup.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
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
/**
* File: ObjectCache_DiskPopup.js
*
* @since 2.8.6
*
* @package W3TC
*/
/**
* Modal for object cache disk usage risk acceptance.
*
* @since 2.8.6
*
* @return void
*/
function w3tc_show_objectcache_diskpopup(previous, triggeredByEngineChange) {
W3tc_Lightbox.open({
id: 'w3tc-overlay',
close: '',
width: 800,
height: 300,
url: ajaxurl + '?action=w3tc_ajax&_wpnonce=' + w3tc_nonce + '&w3tc_action=objectcache_diskpopup',
callback: function(lightbox) {
jQuery('.btn-primary', lightbox.container).click(function() {
jQuery(document).off('keyup.w3tc_lightbox'); // Cleanup event listener.
lightbox.close();
});
jQuery('.btn-secondary, .lightbox-close').click(function() {
if (triggeredByEngineChange) {
// Case 2: Revert engine selection to previous.
if (previous) {
jQuery('#objectcache__engine').val(previous);
}
} else {
// Case 1: Uncheck enable checkbox.
jQuery('#objectcache__enabled').prop('checked', false);
}
jQuery('.objectcache_disk_notice').hide();
jQuery(document).off('keyup.w3tc_lightbox'); // Cleanup event listener.
lightbox.close();
});
jQuery(document).on('keyup.w3tc_lightbox', function(e) {
if ('Escape' === e.key) {
if (triggeredByEngineChange) {
// Case 2: Revert engine selection to previous.
if (previous) {
jQuery('#objectcache__engine').val(previous);
}
} else {
// Case 1: Uncheck enable checkbox.
jQuery('#objectcache__enabled').prop('checked', false);
}
jQuery('.objectcache_disk_notice').hide();
jQuery(document).off('keyup.w3tc_lightbox'); // Cleanup event listener.
lightbox.close();
}
});
lightbox.resize();
}
});
}
jQuery(function($) {
$('#objectcache__enabled').click(function() {
const checked = $(this).is(':checked'),
engine = $('#objectcache__engine').val();
if (!checked) {
return;
}
if ('file' === engine) {
w3tc_show_objectcache_diskpopup(null, false);
}
});
let previous = null;
$('#objectcache__engine').on('focus', function() {
previous = this.value;
}).change(function() {
const checked = $('#objectcache__enabled').is(':checked'),
engine = $(this).val();
if (!checked) {
return;
}
if ('file' === engine) {
w3tc_show_objectcache_diskpopup(previous, true);
} else {
// Only update `previous` if the new selection is NOT 'file'.
previous = engine;
}
});
});