/*
** Scripts within the customizer controls window.
*/
(function( $ ) {
wp.customize.bind( 'ready', function() {
/*
** Reusable Functions
*/
// Label
function bard_customizer_label( id, title ) {
if ( id === 'custom_logo' || id === 'site_icon' || id === 'background_image' ) {
$( '#customize-control-'+ id ).before('
'+ title +'');
} else {
$( '#customize-control-bard_options-'+ id ).before(''+ title +'');
}
}
// Checkbox Label
function bard_customizer_checkbox_label( id ) {
var id = '#customize-control-bard_options-'+ id;
$( id ).addClass('tab-title');
// on change
$( id ).find('input[type="checkbox"]').change(function() {
if ( $(this).is(':checked') ) {
$(this).closest('li').parent('ul').find('li').not( '.section-meta,.tab-title'+ id ).find('.control-lock').remove();
} else {
$(this).closest('li').parent('ul').find('li').not( '.section-meta,.tab-title'+ id ).append('');
}
});
// on load
if ( ! $( id ).find('input[type="checkbox"]').is(':checked') ) {
$( id ).closest('li').parent('ul').find('li').not( '.section-meta,.tab-title'+ id ).append('');
}
}
// Select
function bard_customizer_select( select, children, value ) {
// on change
$( '#customize-control-bard_options-'+ select ).find('select').change(function() {
if ( $(this).val() === value ) {
$(children).show();
} else {
$(children).hide();
}
});
// on load
if ( $( '#customize-control-bard_options-'+ select ).find('select').val() === value ) {
$(children).show();
} else {
$(children).hide();
}
}
/*
** Tabs
*/
// Colors
bard_customizer_label( 'colors_content_accent', 'General' );
bard_customizer_label( 'background_image', 'Body Background' );
// General Layouts
bard_customizer_label( 'general_sidebar_width', 'General' );
bard_customizer_label( 'general_header_width', 'Boxed Controls' );
// Page Header
bard_customizer_checkbox_label( 'header_image_label' );
// Site Identity
bard_customizer_label( 'custom_logo', 'Logo Setup' );
bard_customizer_label( 'site_icon', 'Favicon' );
// Main Navigation
bard_customizer_checkbox_label( 'main_nav_label' );
// Featured Slider
bard_customizer_checkbox_label( 'featured_slider_label' );
// Featured Links
bard_customizer_checkbox_label( 'featured_links_label' );
bard_customizer_label( 'featured_links_title_1', 'Featured Link #1' );
bard_customizer_label( 'featured_links_title_2', 'Featured Link #2' );
bard_customizer_label( 'featured_links_title_3', 'Featured Link #3' );
// Blog Page
bard_customizer_label( 'blog_page_full_width_post', 'General' );
bard_customizer_label( 'blog_page_show_categories', 'Post Elements' );
// Single Page
bard_customizer_label( 'single_page_show_categories', 'Post Elements' );
bard_customizer_label( 'single_page_related_title', 'Post Footer' );
// Social Media
bard_customizer_label( 'social_media_icon_1', 'Social Icon #1' );
bard_customizer_label( 'social_media_icon_2', 'Social Icon #2' );
bard_customizer_label( 'social_media_icon_3', 'Social Icon #3' );
bard_customizer_label( 'social_media_icon_4', 'Social Icon #4' );
// Contditional Logics
bard_customizer_select( 'featured_slider_display', '#customize-control-bard_options-featured_slider_category', 'category' );
bard_customizer_select( 'blog_page_post_description', '#customize-control-bard_options-blog_page_excerpt_length,#customize-control-bard_options-blog_page_grid_excerpt_length', 'excerpt' );
// Add bottom space to tabs
$('.tab-title').prev('li').not('.customize-section-description-container').css( 'padding-bottom', '20px' );
/*
** Fixes
*/
$('#customize-control-display_header_text').find('input').change(function(){
var blogname = $('#customize-control-blogname').find('input').val();
$('#customize-control-blogname').find('input').val( blogname + ' ').trigger('keyup');
$('#customize-control-blogname').find('input').val( blogname ).trigger('keyup');
});
}); // wp.customize ready
})( jQuery );