2021-07-25 23:25:02 +00:00
|
|
|
jQuery( function( $ ) {
|
2020-04-07 13:03:04 +00:00
|
|
|
if ( $( '.element-settings' ).hasClass( 'header' ) || $( '.element-settings' ).hasClass( 'hook' ) ) {
|
|
|
|
$( function() {
|
2021-07-25 23:25:02 +00:00
|
|
|
if ( elements.settings ) {
|
|
|
|
wp.codeEditor.initialize( 'generate-element-content', elements.settings );
|
2020-04-07 13:03:04 +00:00
|
|
|
}
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
2020-08-13 14:53:39 +00:00
|
|
|
$( '#_generate_block_type' ).on( 'change', function() {
|
|
|
|
var _this = $( this ).val();
|
2020-04-07 13:03:04 +00:00
|
|
|
|
2020-08-13 14:53:39 +00:00
|
|
|
if ( 'hook' === _this ) {
|
|
|
|
$( '.hook-row' ).removeClass( 'hide-hook-row' );
|
|
|
|
} else {
|
|
|
|
$( '.hook-row' ).addClass( 'hide-hook-row' );
|
2020-04-07 13:03:04 +00:00
|
|
|
}
|
|
|
|
|
2020-08-13 14:53:39 +00:00
|
|
|
$( 'body' ).removeClass( 'right-sidebar-block-type' );
|
|
|
|
$( 'body' ).removeClass( 'left-sidebar-block-type' );
|
|
|
|
$( 'body' ).removeClass( 'header-block-type' );
|
|
|
|
$( 'body' ).removeClass( 'footer-block-type' );
|
2020-04-07 13:03:04 +00:00
|
|
|
|
2020-08-13 14:53:39 +00:00
|
|
|
$( 'body' ).addClass( _this + '-block-type' );
|
2020-04-07 13:03:04 +00:00
|
|
|
|
2020-08-13 14:53:39 +00:00
|
|
|
if ( 'left-sidebar' === _this || 'right-sidebar' === _this ) {
|
|
|
|
$( '.sidebar-notice' ).show();
|
|
|
|
} else {
|
|
|
|
$( '.sidebar-notice' ).hide();
|
2020-04-07 13:03:04 +00:00
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
$( '#_generate_hook' ).on( 'change', function() {
|
|
|
|
var _this = $( this );
|
|
|
|
|
|
|
|
$( '.disable-header-hook' ).hide();
|
|
|
|
$( '.disable-footer-hook' ).hide();
|
|
|
|
$( '.custom-hook-name' ).hide();
|
|
|
|
|
|
|
|
if ( 'generate_header' === _this.val() ) {
|
|
|
|
$( '.disable-header-hook' ).show();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( 'generate_footer' === _this.val() ) {
|
|
|
|
$( '.disable-footer-hook' ).show();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( 'custom' === _this.val() ) {
|
|
|
|
$( '.custom-hook-name' ).show();
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
$( '#_generate_hook' ).select2( {
|
2021-07-25 23:25:02 +00:00
|
|
|
width: '100%',
|
2020-04-07 13:03:04 +00:00
|
|
|
} );
|
|
|
|
|
|
|
|
$( '.element-metabox-tabs li' ).on( 'click', function() {
|
|
|
|
var _this = $( this ),
|
|
|
|
tab = _this.data( 'tab' );
|
|
|
|
|
|
|
|
_this.siblings().removeClass( 'is-selected' );
|
|
|
|
_this.addClass( 'is-selected' );
|
|
|
|
$( '.generate-elements-settings' ).hide();
|
|
|
|
$( '.generate-elements-settings[data-tab="' + tab + '"]' ).show();
|
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
if ( $( '.element-settings' ).hasClass( 'block' ) && 'hook-settings' === tab ) {
|
2020-08-13 14:53:39 +00:00
|
|
|
$( '.generate-elements-settings[data-tab="display-rules"]' ).show();
|
|
|
|
}
|
|
|
|
|
2020-04-07 13:03:04 +00:00
|
|
|
if ( $( '.element-settings' ).hasClass( 'header' ) ) {
|
|
|
|
if ( 'hero' !== tab ) {
|
2021-07-25 23:25:02 +00:00
|
|
|
$( '#generate-element-content' ).next( '.CodeMirror' ).removeClass( 'gpp-elements-show-codemirror' );
|
|
|
|
$( '#generate_page_hero_template_tags' ).css( 'display', '' );
|
2020-04-07 13:03:04 +00:00
|
|
|
} else {
|
2021-07-25 23:25:02 +00:00
|
|
|
$( '#generate-element-content' ).next( '.CodeMirror' ).addClass( 'gpp-elements-show-codemirror' );
|
|
|
|
$( '#generate_page_hero_template_tags' ).css( 'display', 'block' );
|
2020-04-07 13:03:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
var select2Init = function() {
|
|
|
|
var selects = $( '.generate-element-row-content .condition:not(.hidden) select:not(.select2-init)' );
|
|
|
|
|
|
|
|
selects.each( function() {
|
|
|
|
var select = $( this ),
|
|
|
|
config = {
|
2021-07-25 23:25:02 +00:00
|
|
|
width: 'style',
|
2020-04-07 13:03:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
select.select2( config );
|
|
|
|
select.addClass( 'select2-init' );
|
|
|
|
} );
|
|
|
|
};
|
|
|
|
|
|
|
|
select2Init();
|
|
|
|
|
|
|
|
$( '.add-condition' ).on( 'click', function() {
|
|
|
|
var _this = $( this );
|
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
var row = _this.closest( '.generate-element-row-content' ).find( '.condition.hidden.screen-reader-text' ).clone( true );
|
2020-04-07 13:03:04 +00:00
|
|
|
row.removeClass( 'hidden screen-reader-text' );
|
|
|
|
row.insertBefore( _this.closest( '.generate-element-row-content' ).find( '.condition:last' ) );
|
|
|
|
|
|
|
|
select2Init();
|
|
|
|
|
|
|
|
return false;
|
2021-07-25 23:25:02 +00:00
|
|
|
} );
|
2020-04-07 13:03:04 +00:00
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
$( '.remove-condition' ).on( 'click', function() {
|
|
|
|
$( this ).parents( '.condition' ).remove();
|
2020-04-07 13:03:04 +00:00
|
|
|
|
|
|
|
select2Init();
|
|
|
|
|
|
|
|
return false;
|
2021-07-25 23:25:02 +00:00
|
|
|
} );
|
2020-04-07 13:03:04 +00:00
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
var getLocationObjects = function( _this, onload = false, data = '' ) {
|
|
|
|
var select = _this,
|
|
|
|
parent = select.parent(),
|
|
|
|
location = select.val(),
|
|
|
|
objectSelect = parent.find( '.condition-object-select' ),
|
|
|
|
locationType = '',
|
|
|
|
actionType = 'terms';
|
2020-04-07 13:03:04 +00:00
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
if ( '' === location ) {
|
2020-04-07 13:03:04 +00:00
|
|
|
parent.removeClass( 'generate-elements-rule-objects-visible' );
|
|
|
|
select.closest( '.generate-element-row-content' ).find( '.generate-element-row-loading' ).remove();
|
|
|
|
} else {
|
|
|
|
if ( location.indexOf( ':taxonomy:' ) > 0 ) {
|
2021-07-25 23:25:02 +00:00
|
|
|
locationType = 'taxonomy';
|
2020-04-07 13:03:04 +00:00
|
|
|
} else {
|
2021-07-25 23:25:02 +00:00
|
|
|
locationType = location.substr( 0, location.indexOf( ':' ) );
|
2020-04-07 13:03:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var locationID = location.substr( location.lastIndexOf( ':' ) + 1 );
|
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
if ( 'taxonomy' === locationType || 'post' === locationType ) {
|
2020-04-07 13:03:04 +00:00
|
|
|
if ( ! ( '.generate-element-row-loading' ).length ) {
|
|
|
|
select.closest( '.generate-element-row-content' ).prepend( '<div class="generate-element-row-loading"></div>' );
|
|
|
|
}
|
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
var fillObjects = function( response ) {
|
|
|
|
var objects = response[ locationID ].objects;
|
2020-04-07 13:03:04 +00:00
|
|
|
|
|
|
|
var blank = {
|
2021-07-25 23:25:02 +00:00
|
|
|
id: '',
|
|
|
|
name: 'All ' + response[ locationID ].label,
|
2020-04-07 13:03:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if ( location.indexOf( ':taxonomy:' ) > 0 ) {
|
|
|
|
blank.name = elements.choose;
|
|
|
|
}
|
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
objectSelect.empty();
|
|
|
|
|
|
|
|
objectSelect.append( $( '<option>', {
|
|
|
|
value: blank.id,
|
|
|
|
label: blank.name,
|
|
|
|
text: blank.name,
|
|
|
|
} ) );
|
|
|
|
|
2020-04-07 13:03:04 +00:00
|
|
|
$.each( objects, function( key, value ) {
|
2021-07-25 23:25:02 +00:00
|
|
|
objectSelect.append( $( '<option>', {
|
2020-04-07 13:03:04 +00:00
|
|
|
value: value.id,
|
|
|
|
label: elements.showID && value.id ? value.name + ': ' + value.id : value.name,
|
|
|
|
text: elements.showID && value.id ? value.name + ': ' + value.id : value.name,
|
|
|
|
} ) );
|
|
|
|
} );
|
|
|
|
|
|
|
|
parent.addClass( 'generate-elements-rule-objects-visible' );
|
|
|
|
|
|
|
|
if ( onload ) {
|
2021-07-25 23:25:02 +00:00
|
|
|
objectSelect.val( objectSelect.attr( 'data-saved-value' ) );
|
2020-04-07 13:03:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
select.closest( '.generate-element-row-content' ).find( '.generate-element-row-loading' ).remove();
|
2021-07-25 23:25:02 +00:00
|
|
|
};
|
2020-04-07 13:03:04 +00:00
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
if ( data && onload ) {
|
|
|
|
// Use pre-fetched data if we just loaded the page.
|
|
|
|
fillObjects( data );
|
|
|
|
} else {
|
|
|
|
if ( 'post' === locationType ) {
|
|
|
|
if ( 'taxonomy' === locationType ) {
|
|
|
|
actionType = 'terms';
|
|
|
|
} else {
|
|
|
|
actionType = 'posts';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$.post( ajaxurl, {
|
|
|
|
action: 'generate_elements_get_location_' + actionType,
|
|
|
|
id: locationID,
|
|
|
|
nonce: elements.nonce,
|
|
|
|
}, function( response ) {
|
|
|
|
response = JSON.parse( response );
|
|
|
|
fillObjects( response );
|
|
|
|
} );
|
|
|
|
}
|
2020-04-07 13:03:04 +00:00
|
|
|
} else {
|
|
|
|
parent.removeClass( 'generate-elements-rule-objects-visible' );
|
|
|
|
select.closest( '.generate-element-row-content' ).find( '.generate-element-row-loading' ).remove();
|
2021-07-25 23:25:02 +00:00
|
|
|
objectSelect.empty().append( '<option value="0"></option>' );
|
|
|
|
objectSelect.val( '0' );
|
2020-04-07 13:03:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$( '.condition select.condition-select' ).on( 'change', function() {
|
2021-07-25 23:25:02 +00:00
|
|
|
getLocationObjects( $( this ) );
|
2020-08-13 14:53:39 +00:00
|
|
|
|
|
|
|
$( '.elements-no-location-error' ).hide();
|
2020-04-07 13:03:04 +00:00
|
|
|
} );
|
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
var postObjects = [];
|
|
|
|
var termObjects = [];
|
|
|
|
|
2020-04-07 13:03:04 +00:00
|
|
|
$( '.generate-elements-rule-objects-visible' ).each( function() {
|
|
|
|
var _this = $( this ),
|
2021-07-25 23:25:02 +00:00
|
|
|
select = _this.find( 'select.condition-select' ),
|
|
|
|
location = select.val(),
|
|
|
|
locationID = location.substr( location.lastIndexOf( ':' ) + 1 ),
|
|
|
|
locationType = '';
|
2020-04-07 13:03:04 +00:00
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
if ( location.indexOf( ':taxonomy:' ) > 0 ) {
|
|
|
|
locationType = 'taxonomy';
|
|
|
|
} else {
|
|
|
|
locationType = location.substr( 0, location.indexOf( ':' ) );
|
|
|
|
}
|
2020-04-07 13:03:04 +00:00
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
if ( 'post' === locationType ) {
|
|
|
|
if ( ! postObjects.includes( locationID ) ) {
|
|
|
|
postObjects.push( locationID );
|
|
|
|
}
|
|
|
|
} else if ( 'taxonomy' === locationType && ! termObjects.includes( locationID ) ) {
|
|
|
|
termObjects.push( locationID );
|
|
|
|
}
|
2020-04-07 13:03:04 +00:00
|
|
|
} );
|
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
if ( postObjects.length > 0 || termObjects.length > 0 ) {
|
|
|
|
$.post( ajaxurl, {
|
|
|
|
action: 'generate_elements_get_location_objects',
|
|
|
|
posts: postObjects,
|
|
|
|
terms: termObjects,
|
|
|
|
nonce: elements.nonce,
|
|
|
|
}, function( response ) {
|
|
|
|
response = JSON.parse( response );
|
|
|
|
|
|
|
|
$( '.generate-elements-rule-objects-visible' ).each( function() {
|
|
|
|
var _this = $( this ),
|
|
|
|
select = _this.find( 'select.condition-select' );
|
|
|
|
|
|
|
|
$( '<div class="generate-element-row-loading"></div>' ).insertBefore( _this );
|
|
|
|
|
|
|
|
getLocationObjects( select, true, response );
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
2020-04-07 13:03:04 +00:00
|
|
|
$( '.set-featured-image a, .change-featured-image a:not(.remove-image)' ).on( 'click', function( event ) {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
// Stop propagation to prevent thickbox from activating.
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
|
|
// Open the featured image modal
|
|
|
|
wp.media.featuredImage.frame().open();
|
|
|
|
} );
|
|
|
|
|
|
|
|
wp.media.featuredImage.frame().on( 'select', function() {
|
|
|
|
$( '.set-featured-image' ).hide();
|
|
|
|
$( '.change-featured-image' ).show();
|
|
|
|
|
|
|
|
setTimeout( function() {
|
|
|
|
$( '.image-preview' ).empty();
|
|
|
|
$( '#postimagediv img' ).appendTo( '.image-preview' );
|
|
|
|
}, 500 );
|
|
|
|
} );
|
|
|
|
|
|
|
|
$( '#postimagediv' ).on( 'click', '#remove-post-thumbnail', function() {
|
|
|
|
$( '.set-featured-image' ).show();
|
|
|
|
$( '.change-featured-image' ).hide();
|
|
|
|
$( '.image-preview' ).empty();
|
|
|
|
return false;
|
2021-07-25 23:25:02 +00:00
|
|
|
} );
|
2020-04-07 13:03:04 +00:00
|
|
|
|
|
|
|
$( '.remove-image' ).on( 'click', function( e ) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
$( '#remove-post-thumbnail' ).trigger( 'click' );
|
|
|
|
} );
|
|
|
|
|
|
|
|
$( '.generate-upload-file' ).on( 'click', function() {
|
|
|
|
if ( frame ) {
|
|
|
|
frame.open();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var _this = $( this ),
|
|
|
|
container = _this.closest( '.media-container' );
|
|
|
|
|
|
|
|
var frame = wp.media( {
|
|
|
|
title: _this.data( 'title' ),
|
|
|
|
multiple: false,
|
2021-07-25 23:25:02 +00:00
|
|
|
library: { type: _this.data( 'type' ) },
|
|
|
|
button: { text: _this.data( 'insert' ) },
|
2020-04-07 13:03:04 +00:00
|
|
|
} );
|
|
|
|
|
|
|
|
frame.on( 'select', function() {
|
2021-07-25 23:25:02 +00:00
|
|
|
var attachment = frame.state().get( 'selection' ).first().toJSON();
|
2020-04-07 13:03:04 +00:00
|
|
|
|
|
|
|
container.find( '.media-field' ).val( attachment.id );
|
|
|
|
container.find( '.remove-field' ).show();
|
|
|
|
|
|
|
|
if ( _this.data( 'preview' ) ) {
|
|
|
|
container.find( '.gp-media-preview' ).empty().append( '<img src="' + attachment.url + '" width="50" />' ).show();
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
frame.open();
|
|
|
|
} );
|
|
|
|
|
|
|
|
$( '.remove-field' ).on( 'click', function() {
|
|
|
|
var _this = $( this ),
|
|
|
|
container = _this.closest( '.media-container' );
|
|
|
|
|
|
|
|
_this.hide();
|
|
|
|
container.find( '.media-field' ).val( '' );
|
|
|
|
container.find( '.gp-media-preview' ).empty();
|
|
|
|
} );
|
|
|
|
|
|
|
|
$( '#_generate_hero_background_image' ).on( 'change', function() {
|
|
|
|
var _this = $( this );
|
|
|
|
|
|
|
|
if ( '' !== _this.val() ) {
|
|
|
|
$( '.requires-background-image' ).show();
|
|
|
|
} else {
|
|
|
|
$( '.requires-background-image' ).hide();
|
|
|
|
}
|
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
if ( 'featured-image' === _this.val() ) {
|
2020-04-07 13:03:04 +00:00
|
|
|
$( '.image-text' ).text( elements.fallback_image );
|
|
|
|
}
|
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
if ( 'custom-image' === _this.val() ) {
|
2020-04-07 13:03:04 +00:00
|
|
|
$( '.image-text' ).text( elements.custom_image );
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
// Responsive controls in our settings.
|
|
|
|
$( '.responsive-controls a' ).on( 'click', function( e ) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
var _this = $( this ),
|
|
|
|
control = _this.attr( 'data-control' ),
|
2021-07-25 23:25:02 +00:00
|
|
|
controlArea = _this.closest( '.generate-element-row-content' );
|
2020-04-07 13:03:04 +00:00
|
|
|
|
2021-07-25 23:25:02 +00:00
|
|
|
controlArea.find( '.padding-container' ).hide();
|
|
|
|
controlArea.find( '.padding-container.' + control ).show();
|
2020-04-07 13:03:04 +00:00
|
|
|
_this.siblings().removeClass( 'is-selected' );
|
|
|
|
_this.addClass( 'is-selected' );
|
|
|
|
} );
|
|
|
|
|
|
|
|
$( '#_generate_site_header_merge' ).on( 'change', function() {
|
|
|
|
var _this = $( this );
|
|
|
|
|
|
|
|
if ( '' !== _this.val() ) {
|
|
|
|
$( '.requires-header-merge' ).show();
|
|
|
|
|
|
|
|
if ( $( '#_generate_navigation_colors' ).is( ':checked' ) ) {
|
|
|
|
$( '.requires-navigation-colors' ).show();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $( '#_generate_hero_full_screen' ).is( ':checked' ) ) {
|
|
|
|
$( '.requires-full-screen' ).show();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$( '.requires-header-merge' ).hide();
|
|
|
|
$( '.requires-navigation-colors' ).hide();
|
|
|
|
$( '.requires-full-screen' ).hide();
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
$( '#_generate_navigation_colors' ).on( 'change', function() {
|
|
|
|
var _this = $( this );
|
|
|
|
|
|
|
|
if ( _this.is( ':checked' ) ) {
|
|
|
|
$( '.requires-navigation-colors' ).show();
|
|
|
|
} else {
|
|
|
|
$( '.requires-navigation-colors' ).hide();
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
$( '#_generate_hero_full_screen' ).on( 'change', function() {
|
|
|
|
var _this = $( this );
|
|
|
|
|
|
|
|
if ( _this.is( ':checked' ) ) {
|
|
|
|
$( '.requires-full-screen' ).show();
|
|
|
|
} else {
|
|
|
|
$( '.requires-full-screen' ).hide();
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
$( '#_generate_hero_background_parallax' ).on( 'change', function() {
|
|
|
|
var _this = $( this );
|
|
|
|
|
|
|
|
if ( _this.is( ':checked' ) ) {
|
|
|
|
$( '#_generate_hero_background_position' ).val( '' ).change();
|
|
|
|
$( '#_generate_hero_background_position option[value="left center"]' ).attr( 'disabled', true );
|
|
|
|
$( '#_generate_hero_background_position option[value="left bottom"]' ).attr( 'disabled', true );
|
|
|
|
$( '#_generate_hero_background_position option[value="right center"]' ).attr( 'disabled', true );
|
|
|
|
$( '#_generate_hero_background_position option[value="right bottom"]' ).attr( 'disabled', true );
|
|
|
|
$( '#_generate_hero_background_position option[value="center center"]' ).attr( 'disabled', true );
|
|
|
|
$( '#_generate_hero_background_position option[value="center bottom"]' ).attr( 'disabled', true );
|
|
|
|
} else {
|
|
|
|
$( '#_generate_hero_background_position option[value="left center"]' ).attr( 'disabled', false );
|
|
|
|
$( '#_generate_hero_background_position option[value="left bottom"]' ).attr( 'disabled', false );
|
|
|
|
$( '#_generate_hero_background_position option[value="right center"]' ).attr( 'disabled', false );
|
|
|
|
$( '#_generate_hero_background_position option[value="right bottom"]' ).attr( 'disabled', false );
|
|
|
|
$( '#_generate_hero_background_position option[value="center center"]' ).attr( 'disabled', false );
|
|
|
|
$( '#_generate_hero_background_position option[value="center bottom"]' ).attr( 'disabled', false );
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
} );
|