232 lines
7.3 KiB
JavaScript
232 lines
7.3 KiB
JavaScript
jQuery(function () {
|
|
WPML_String_Translation.AutoRegisterStrings.init(jQuery('.wpml-st-auto-register-strings'));
|
|
});
|
|
|
|
var WPML_String_Translation = WPML_String_Translation || {};
|
|
|
|
WPML_String_Translation.AutoRegisterStrings = {
|
|
|
|
init: function(box) {
|
|
this.form = box.find('form');
|
|
this.box = box;
|
|
this.checkBox = this.box.find('.js-auto-register-enabled');
|
|
this.description = this.box.find('.js-auto-register-description');
|
|
this.intervalMilliseconds = 1000;
|
|
this.runningCountdown = this.description.data('running-countdown');
|
|
this.dialog = this.form.parent();
|
|
|
|
this.updateDescription();
|
|
this.update_excluded_preview();
|
|
this.create_dialog();
|
|
|
|
this.form.find('input[name = "select_all"]').on('click', {'form': this.form}, this.select_all);
|
|
this.form.find('input[name = "search"]').on('keyup', {'form': this.form}, this.filter);
|
|
this.form.find('.contexts input:checkbox').on('change', {'form': this.form}, this.toggle_context);
|
|
this.checkBox.on('change', this.checkBoxChanged.bind( this ) );
|
|
},
|
|
|
|
create_dialog: function () {
|
|
var that = this;
|
|
|
|
this.dialog.dialog({
|
|
autoOpen: false,
|
|
width: 1150,
|
|
height: 600,
|
|
modal: true,
|
|
buttons: [
|
|
{
|
|
class: 'wpml-st-cancel-button',
|
|
text: 'Cancel',
|
|
click: function() {
|
|
jQuery( this ).dialog( 'close' );
|
|
}
|
|
},
|
|
{
|
|
text: 'Apply',
|
|
class: 'button-primary js-wpml-st-apply-button',
|
|
click: function() {
|
|
that.save(true);
|
|
}
|
|
}
|
|
]
|
|
});
|
|
|
|
this.box.find('.js-wpml-autoregister-edit-contexts').on( 'click', {'dialog' : this.dialog}, function(event) {
|
|
event.preventDefault();
|
|
event.data.dialog.dialog( 'open' );
|
|
});
|
|
},
|
|
|
|
save: function(fromDialog) {
|
|
var that = this;
|
|
var apply_button;
|
|
|
|
if (fromDialog) {
|
|
apply_button = this.dialog.parent().find('.js-wpml-st-apply-button');
|
|
apply_button.prop('disabled', true);
|
|
}
|
|
|
|
var data = {
|
|
action: 'wpml_st_exclude_contexts',
|
|
wpml_st_auto_reg_excluded_contexts: this.get_excluded_contexts(),
|
|
auto_register_enabled: this.isEnabled(),
|
|
nonce: this.form.data('nonce')
|
|
};
|
|
|
|
jQuery.ajax({
|
|
url: ajaxurl,
|
|
type: 'POST',
|
|
data: data,
|
|
dataType: 'json',
|
|
success: function (response) {
|
|
if (response.success) {
|
|
that.update_excluded_preview();
|
|
|
|
if (fromDialog) {
|
|
that.dialog.dialog('close');
|
|
}
|
|
} else {
|
|
that.display_error_msg('Error: ' + response.data);
|
|
}
|
|
|
|
if (fromDialog) {
|
|
apply_button.prop('disabled', false);
|
|
}
|
|
}
|
|
});
|
|
|
|
this.updateDescription();
|
|
},
|
|
|
|
update_excluded_preview: function() {
|
|
var container = this.box.find('.wpml-st-excluded-info');
|
|
|
|
var excluded = this.get_excluded_contexts();
|
|
var included = this.get_included_contexts();
|
|
|
|
if (excluded.length == 0) {
|
|
var text = container.data('all-included');
|
|
container.html(text);
|
|
} else if(included.length == 0) {
|
|
var text = container.data('all-excluded');
|
|
container.html(text);
|
|
} else {
|
|
var limit = 4;
|
|
|
|
var elements = included.length > excluded.length ? excluded : included;
|
|
var text = included.length > excluded.length ? container.data('excluded-preview') : container.data('included-preview');
|
|
|
|
text += ' ' + elements.slice(0, limit).join(', ');
|
|
if (elements.length > limit) {
|
|
text += ' ' + container.data('preview-suffix');
|
|
}
|
|
|
|
container.html(text);
|
|
}
|
|
},
|
|
|
|
get_excluded_contexts: function () {
|
|
var excluded = [];
|
|
this.form.find('.contexts input:checkbox').not(':checked').each(function() {
|
|
excluded.push(jQuery(this).val());
|
|
});
|
|
|
|
return excluded;
|
|
},
|
|
|
|
get_included_contexts: function () {
|
|
var included = [];
|
|
this.form.find('.contexts input:checkbox:checked').each(function() {
|
|
included.push(jQuery(this).val());
|
|
});
|
|
|
|
return included;
|
|
},
|
|
|
|
display_error_msg: function (msg) {
|
|
alert(msg);
|
|
},
|
|
|
|
toggle_context: function(event) {
|
|
if (jQuery(this).is(':checked')) {
|
|
if (event.data.form.find('.contexts input:checkbox:not(:checked)').length == 0) {
|
|
event.data.form.find('input[name = "select_all"]').prop( 'checked', true );
|
|
}
|
|
} else {
|
|
event.data.form.find('input[name = "select_all"]').prop( 'checked', false );
|
|
}
|
|
},
|
|
|
|
select_all: function(event) {
|
|
if (jQuery(this).is(':checked')) {
|
|
event.data.form.find('.contexts input').prop( 'checked', true );
|
|
} else {
|
|
event.data.form.find('.contexts input').prop( 'checked', false );
|
|
}
|
|
},
|
|
|
|
filter: function(event) {
|
|
var text = jQuery(this).val().toLowerCase();
|
|
if (text.length < 2) {
|
|
event.data.form.find('.contexts p').show();
|
|
return;
|
|
}
|
|
|
|
event.data.form.find('.contexts p span').each(function () {
|
|
if (jQuery(this).text().toLowerCase().search(text) != -1) {
|
|
jQuery(this).parents('p').show();
|
|
} else {
|
|
jQuery(this).parents('p').hide();
|
|
}
|
|
})
|
|
},
|
|
|
|
checkBoxChanged: function() {
|
|
this.save(false);
|
|
this.box.find('.wpml-st-excluded-info-wrapper').slideToggle();
|
|
},
|
|
|
|
isEnabled: function() {
|
|
return this.checkBox.is(':checked')
|
|
},
|
|
|
|
updateDescription: function() {
|
|
const that = this;
|
|
|
|
clearInterval(this.interval);
|
|
|
|
if ( this.isEnabled() ) {
|
|
this.initCountDown();
|
|
const rawString = this.description.data('enabled-string');
|
|
|
|
this.refreshCountDownInDescription(rawString);
|
|
|
|
this.interval = setInterval( function(rawString) {
|
|
that.refreshCountDownInDescription(rawString);
|
|
}, this.intervalMilliseconds, rawString);
|
|
} else {
|
|
this.description.html(this.description.data('disabled-string'));
|
|
}
|
|
},
|
|
|
|
initCountDown: function() {
|
|
if (this.runningCountdown > 0) {
|
|
this.secondsToEnd = this.runningCountdown;
|
|
this.runningCountdown = 0;
|
|
} else {
|
|
this.secondsToEnd = this.description.data('reset-countdown');
|
|
}
|
|
},
|
|
|
|
refreshCountDownInDescription: function(rawString) {
|
|
const date = new Date(null);
|
|
date.setSeconds(this.secondsToEnd);
|
|
const description = rawString.replace('%s', date.toISOString().substr(11, 8));
|
|
this.description.html(description);
|
|
this.secondsToEnd = this.secondsToEnd - (this.intervalMilliseconds / 1000);
|
|
|
|
if (this.secondsToEnd < 1) {
|
|
this.checkBox.click();
|
|
}
|
|
}
|
|
} |