<?php
/**
 * Spintech Theme Customizer.
 *
 * @package Spintech
 */

 if ( ! class_exists( 'Spintech_Customizer' ) ) {

	/**
	 * Customizer Loader
	 *
	 * @since 1.0.0
	 */
	class Spintech_Customizer {

		/**
		 * Instance
		 *
		 * @access private
		 * @var object
		 */
		private static $instance;

		/**
		 * Initiator
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self;
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {
			/**
			 * Customizer
			 */
			add_action( 'customize_preview_init',                  array( $this, 'spintech_customize_preview_js' ) );
			add_action( 'customize_register',                      array( $this, 'spintech_customizer_register' ) );
			add_action( 'after_setup_theme',                       array( $this, 'spintech_customizer_settings' ) );
		}
		
		/**
		 * Add postMessage support for site title and description for the Theme Customizer.
		 *
		 * @param WP_Customize_Manager $wp_customize Theme Customizer object.
		 */
		function spintech_customizer_register( $wp_customize ) {
			
			$wp_customize->get_setting( 'blogname' )->transport         = 'postMessage';
			$wp_customize->get_setting( 'blogdescription' )->transport  = 'postMessage';
			$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
			$wp_customize->get_setting( 'background_color' )->transport = 'postMessage';
			$wp_customize->get_setting('custom_logo')->transport = 'refresh';			
			
			
			/**
			 * Helper files
			 */
			require SPINTECH_PARENT_INC_DIR . '/customizer/controls/font-control.php';
			require SPINTECH_PARENT_INC_DIR . '/customizer/sanitization.php';
		}
		
		/**
		 * Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
		 */
		function spintech_customize_preview_js() {
			wp_enqueue_script( 'spintech-customizer', SPINTECH_PARENT_INC_URI . '/customizer/assets/js/customizer-preview.js', array( 'customize-preview' ), '20151215', true );
		}

		// Include customizer customizer settings.
			
		function spintech_customizer_settings() {	
			 require SPINTECH_PARENT_INC_DIR . '/customizer/customizer-options/spintech-header.php';
			 require SPINTECH_PARENT_INC_DIR . '/customizer/customizer-options/spintech-blog.php';
			 require SPINTECH_PARENT_INC_DIR . '/customizer/customizer-options/spintech-general.php';
			require SPINTECH_PARENT_INC_DIR . '/customizer/customizer-options/spintech-footer.php';
		}

	}
}// End if().

/**
 *  Kicking this off by calling 'get_instance()' method
 */
Spintech_Customizer::get_instance();