admin-settings.js
10.3 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
jQuery(document).ready(function($){
//Meta Box Options
var open_close = $('<a href="#" style="display:block; float:right; clear:right; margin:10px;">'+EM.open_text+'</a>');
$('#em-options-title').before(open_close);
open_close.on('click', function(e){
e.preventDefault();
if($(this).text() == EM.close_text){
$(".postbox").addClass('closed');
$(this).text(EM.open_text);
}else{
$(".postbox").removeClass('closed');
$(this).text(EM.close_text);
}
});
$(".postbox > h3").on('click', function(){ $(this).parent().toggleClass('closed'); });
$(".postbox").addClass('closed');
//Navigation Tabs
$('.tabs-active .nav-tab-wrapper .nav-tab').on('click', function(){
el = $(this);
elid = el.attr('id');
$('.em-menu-group').hide();
$('.'+elid).show();
$(".postbox").addClass('closed');
open_close.text(EM.open_text);
});
$('.nav-tab-wrapper .nav-tab').on('click', function(){
$('.nav-tab-wrapper .nav-tab').removeClass('nav-tab-active').blur();
$(this).addClass('nav-tab-active');
});
var navUrl = document.location.toString();
if (navUrl.match('#')) { //anchor-based navigation
var nav_tab = navUrl.split('#').pop().split('+');
var current_tab = 'a#em-menu-' + nav_tab[0];
$(current_tab).trigger('click');
if( nav_tab.length > 1 ){
section = $("#em-opt-"+nav_tab[1]);
if( section.length > 0 ){
section.children('h3').trigger('click');
$('html, body').animate({ scrollTop: section.offset().top - 30 }); //sends user back to current section
}
}
}else{
//set to general tab by default, so we can also add clicked subsections
document.location = navUrl+"#general";
}
$('.nav-tab-link').on('click', function(){ $($(this).attr('rel')).trigger('click'); }); //links to mimick tabs
$('input[type="submit"]').on('click', function(){
var el = $(this).parents('.postbox').first();
var docloc = document.location.toString().split('#');
var newloc = docloc[0];
if( docloc.length > 1 ){
var nav_tab = docloc[1].split('+');
var tab_path = nav_tab[0];
if( el.attr('id') ){
tab_path = tab_path + "+" + el.attr('id').replace('em-opt-','');
}
newloc = newloc + "#" + tab_path;
}
document.location = newloc;
$(this).closest('form').append('<input type="hidden" name="tab_path" value="'+ tab_path +'" />');
});
//Page Options
$('input[name="dbem_cp_events_has_archive"]').on('change', function(){ //event archives
if( $('input:radio[name="dbem_cp_events_has_archive"]:checked').val() == 1 ){
$('tbody.em-event-archive-sub-options').show();
}else{
$('tbody.em-event-archive-sub-options').hide();
}
}).trigger('change');
$('select[name="dbem_events_page"]').on('change', function(){
if( $('select[name="dbem_events_page"]').val() == 0 ){
$('tbody.em-event-page-options').hide();
}else{
$('tbody.em-event-page-options').show();
}
}).trigger('change');
$('input[name="dbem_cp_locations_has_archive"]').on('change', function(){ //location archives
if( $('input:radio[name="dbem_cp_locations_has_archive"]:checked').val() == 1 ){
$('tbody.em-location-archive-sub-options').show();
}else{
$('tbody.em-location-archive-sub-options').hide();
}
}).trigger('change');
//For rewrite titles
$('input:radio[name=dbem_disable_title_rewrites]').on('change',function(){
checked_check = $('input:radio[name=dbem_disable_title_rewrites]:checked');
if( checked_check.val() == 1 ){
$('#dbem_title_html_row').show();
}else{
$('#dbem_title_html_row').hide();
}
});
$('input:radio[name=dbem_disable_title_rewrites]').trigger('change');
//for event grouping
$('select[name="dbem_event_list_groupby"]').on('change', function(){
if( $('select[name="dbem_event_list_groupby"]').val() == 0 ){
$('tr#dbem_event_list_groupby_header_format_row, tr#dbem_event_list_groupby_format_row').hide();
}else{
$('tr#dbem_event_list_groupby_header_format_row, tr#dbem_event_list_groupby_format_row').show();
}
}).trigger('change');
//ML Stuff
$('.em-translatable').on('click', function(){
$(this).nextAll('.em-ml-options').toggle();
});
//radio triggers
$('input[type="radio"].em-trigger').on('change', function(e){
var el = $(this);
el.val() == '1' ? $(el.attr('data-trigger')).show() : $(el.attr('data-trigger')).hide();
});
$('input[type="radio"].em-trigger:checked').trigger('change');
$('input[type="radio"].em-untrigger').on('change', function(e){
var el = $(this);
el.val() == '0' ? $(el.attr('data-trigger')).show() : $(el.attr('data-trigger')).hide();
});
$('input[type="radio"].em-untrigger:checked').trigger('change');
//checkbox triggers
$('input[type="checkbox"].em-trigger').on('change', function(e){
var el = $(this);
el.prop('checked') ? $(el.attr('data-trigger')).show() : $(el.attr('data-trigger')).hide();
});
$('input[type="checkbox"].em-trigger').trigger('change');
$('input[type="checkbox"].em-untrigger').on('change', function(e){
var el = $(this);
!el.prop('checked') ? $(el.attr('data-trigger')).show() : $(el.attr('data-trigger')).hide();
});
$('input[type="checkbox"].em-untrigger').trigger('change');
//admin tools confirm
$('a.admin-tools-db-cleanup').on('click', function( e ){
if( !confirm(EM.admin_db_cleanup_warning) ){
e.preventDefault();
return false;
}
});
//color pickers
$('#dbem_category_default_color, #dbem_tag_default_color').wpColorPicker();
// reset admin setting via ajax
$('.em-option-resettable').on('click', function( e ){
e.preventDefault();
let el = $(this);
let name = el.attr('data-name');
let inputs = el.closest('tr').find('input[name="'+name+'"], textarea[name="'+name+'"]');
$.get({
url : EM.ajaxurl,
data : {
action : 'em_admin_get_option_default',
option_name : name,
nonce : el.attr('data-nonce'),
},
success : function(data){
inputs.val(data);
inputs.prop('disabled', false);
alert(EM.option_reset);
},
beforeSend: function(){
inputs.prop('disabled', true);
},
error : function(){
inputs.prop('disabled', false);
alert('Error - could not revert.');
},
dataType: 'text',
})
});
let status = $('#em-advanced-formatting');
let af_toggle_action = function(){
const am = status.val();
if( am == 0 ){
$('.am-af').hide();
}else if( am == 1 ){
$('.am-af').show();
$('.dbem_advanced_formatting_modes_row').show(); // show toggles
$('.dbem_advanced_formatting_modes .em-trigger:checked').trigger('change');
}else{
$('.am-af').show(); // show everything
$('.dbem_advanced_formatting_modes_row').hide(); // hide toggles
}
$('.em-af-toggle, .em-af-status span').hide();
$('.em-af-toggle.show-'+ am).show();
$('.em-af-status-'+ am).show();
if( $('.em-af-status').attr('data-status') != am ){
$('.em-af-status .em-af-status-save').show();
}else{
$('.em-af-status .em-af-status-save').hide();
}
};
$('.em-af-toggle').on('click', function(e){
e.preventDefault();
status.val( this.getAttribute('data-set-status') );
af_toggle_action();
});
af_toggle_action();
if( typeof EM.admin === 'object' && 'settings' in EM.admin ){
tippy( $('.dbem_advanced_formatting_modes_row th').toArray(), {
content : EM.admin.settings.option_override_tooltip,
});
}
// code editor for formats section
if( 'codeEditor' in wp ){
let codeEditorToggled = Cookies.get('em_codeEditor');
let toggle = document.getElementById('em-enable-codeEditor');
if( toggle ){
toggle.checked = codeEditorToggled != 1;
toggle.addEventListener('change', function(e){
let checked = !e.target.checked ? 1:0;
Cookies.set('em_codeEditor', checked);
});
}
var editorSettings = wp.codeEditor.defaultSettings ? _.clone( wp.codeEditor.defaultSettings ) : {};
editorSettings.codemirror = _.extend( {}, editorSettings.codemirror, {
autofocus: true,
});
$('.em-menu-formats textarea').on('focus', function(){
if( document.getElementById('em-enable-codeEditor').checked ){
var editor = wp.codeEditor.initialize( this, editorSettings );
editor.codemirror.on('blur', function( cm ){
cm.toTextArea();
})
}
});
}
});
/*! js-cookie v3.0.1 | MIT */
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=e||self,function(){var n=e.Cookies,o=e.Cookies=t();o.noConflict=function(){return e.Cookies=n,o}}())}(this,(function(){"use strict";function e(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)e[o]=n[o]}return e}return function t(n,o){function r(t,r,i){if("undefined"!=typeof document){"number"==typeof(i=e({},o,i)).expires&&(i.expires=new Date(Date.now()+864e5*i.expires)),i.expires&&(i.expires=i.expires.toUTCString()),t=encodeURIComponent(t).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var c="";for(var u in i)i[u]&&(c+="; "+u,!0!==i[u]&&(c+="="+i[u].split(";")[0]));return document.cookie=t+"="+n.write(r,t)+c}}return Object.create({set:r,get:function(e){if("undefined"!=typeof document&&(!arguments.length||e)){for(var t=document.cookie?document.cookie.split("; "):[],o={},r=0;r<t.length;r++){var i=t[r].split("="),c=i.slice(1).join("=");try{var u=decodeURIComponent(i[0]);if(o[u]=n.read(c,u),e===u)break}catch(e){}}return e?o[e]:o}},remove:function(t,n){r(t,"",e({},n,{expires:-1}))},withAttributes:function(n){return t(this.converter,e({},this.attributes,n))},withConverter:function(n){return t(e({},this.converter,n),this.attributes)}},{attributes:{value:Object.freeze(o)},converter:{value:Object.freeze(n)}})}({read:function(e){return'"'===e[0]&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"})}));