/** * Scripts within the customizer controls window. * */ jQuery( document ).ready(function($) { //Chosen JS $(".blogpost-chosen-select").chosen({ width: "100%" }); // icon picker $('.blogpost-icon-picker').each( function() { $(this).iconpicker( '#' + this.id ); } ); //Switch Control $('body').on('click', '.onoffswitch', function(){ var $this = $(this); if($this.hasClass('switch-on')){ $(this).removeClass('switch-on'); $this.next('input').val( false ).trigger('change') }else{ $(this).addClass('switch-on'); $this.next('input').val( true ).trigger('change') } }); $( document ).on( 'click', '.customize_multi_add_field', blogpost_customize_multi_add_field ) .on( 'change', '.customize_multi_single_field', blogpost_customize_multi_single_field ) .on( 'click', '.customize_multi_remove_field', blogpost_customize_multi_remove_field ) /********* Multi Input Custom control ***********/ $( '.customize_multi_input' ).each(function() { var $this = $( this ); var multi_saved_value = $this.find( '.customize_multi_value_field' ).val(); if (multi_saved_value.length > 0) { var multi_saved_values = multi_saved_value.split( "|" ); $this.find( '.customize_multi_fields' ).empty(); var $control = $this.parents( '.customize_multi_input' ); $.each(multi_saved_values, function( index, value ) { $this.find( '.customize_multi_fields' ).append( '
' ); }); } }); function blogpost_customize_multi_add_field(e) { var $this = $( e.currentTarget ); e.preventDefault(); var $control = $this.parents( '.customize_multi_input' ); $control.find( '.customize_multi_fields' ).append( '
' ); blogpost_customize_multi_write( $control ); } function blogpost_customize_multi_single_field() { var $control = $( this ).parents( '.customize_multi_input' ); blogpost_customize_multi_write( $control ); } function blogpost_customize_multi_remove_field(e) { e.preventDefault(); var $this = $( this ); var $control = $this.parents( '.customize_multi_input' ); $this.parent().remove(); blogpost_customize_multi_write( $control ); } function blogpost_customize_multi_write( $element) { var customize_multi_val = ''; $element.find( '.customize_multi_fields .customize_multi_single_field' ).each(function() { customize_multi_val += $( this ).val() + '|'; }); $element.find( '.customize_multi_value_field' ).val( customize_multi_val.slice( 0, -1 ) ).change(); } }); jQuery(document).ready(function($) { // Sortable sections jQuery( 'ul.blogpost-sortable-list' ).sortable({ handle: '.blogpost-drag-handle', axis: 'y', update: function( e, ui ){ jQuery('input.blogpost-sortable-input').trigger( 'change' ); } }); /* On changing the value. */ jQuery( "body" ).on( 'change', 'input.blogpost-sortable-input', function() { /* Get the value, and convert to string. */ this_checkboxes_values = jQuery( this ).parents( 'ul.blogpost-sortable-list' ).find( 'input.blogpost-sortable-input' ).map( function() { return this.value; }).get().join( ',' ); /* Add the value to hidden input. */ jQuery( this ).parents( 'ul.blogpost-sortable-list' ).find( 'input.blogpost-sortable-value' ).val( this_checkboxes_values ).trigger( 'change' ); }); }); /** * Add a listener to update other controls to new values/defaults. */ ( function( api ) { const blogpost_section_lists = [ 'main', 'call_to_action', 'latest_posts', 'weekly_top', ]; blogpost_section_lists.forEach( blogpost_homepage_scroll ); function blogpost_homepage_scroll(item, index) { // Detect when the front page sections section is expanded (or closed) so we can adjust the preview accordingly. wp.customize.section( 'blogpost_'+item, function( section ) { section.expanded.bind( function( isExpanding ) { // Value of isExpanding will = true if you're entering the section, false if you're leaving it. wp.customize.previewer.send( item, { expanded: isExpanding }); } ); } ); } // Only show the color hue control when there's a custom color scheme. wp.customize( 'blogpost_theme_options[colorscheme]', function( setting ) { wp.customize.control( 'blogpost_theme_options[colorscheme_hue]', function( control ) { var visibility = function() { if ( 'custom' === setting.get() ) { control.container.slideDown( 180 ); } else { control.container.slideUp( 180 ); } }; visibility(); setting.bind( visibility ); }); }); wp.customize( 'blogpost_theme_options[reset_options]', function( setting ) { setting.bind( function( value ) { var code = 'needs_refresh'; if ( value ) { setting.notifications.add( code, new wp.customize.Notification( code, { type: 'info', message: blogpost_reset_data.reset_message } ) ); } else { setting.notifications.remove( code ); } } ); } ); // Deep linking for menus wp.customize.bind('ready', function() { jQuery('a.topbar-menu-trigger').click(function(e) { e.preventDefault(); wp.customize.section( 'menu_locations' ).focus() }); }); } )( wp.customize );