<?php
if ( ! defined( 'ABSPATH' ) ) {
 exit; 
}
class WPCargo_CF_Scripts{
	function __construct(){
		add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_style' ) );
		add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_front_end' ) );
	}
	function enqueue_admin_style() {
		
		wp_register_script( 'wpcargo-cf-sortable-ui', 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js', array(), WPCARGO_CUSTOM_FIELD_VERSION );
		wp_register_script( 'wpcargo-cf-sortable-js', WPCARGO_CUSTOM_FIELD_URL.'admin/assets/js/admin-sortable.js', array(), WPCARGO_CUSTOM_FIELD_VERSION );
		wp_register_script( 'wpcargo-cf-ajax-js', WPCARGO_CUSTOM_FIELD_URL.'admin/assets/js/admin-ajax.js', array(), WPCARGO_CUSTOM_FIELD_VERSION );
		wp_register_script( 'wpcargo-cf-admin-script', WPCARGO_CUSTOM_FIELD_URL.'admin/assets/js/wpc-cf-admin-script.js', array(), WPCARGO_CUSTOM_FIELD_VERSION );
		
		wp_enqueue_script( 'wpcargo-cf-admin-script');
		
		
		// Admin style
		wp_register_style( 'wpcargo-cf-css', WPCARGO_CUSTOM_FIELD_URL . 'admin/assets/css/wpc-cf-styles.css', array(), WPCARGO_CUSTOM_FIELD_VERSION );
		wp_register_style( 'wpcargo-cf-sortable-css', 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/themes/smoothness/jquery-ui.css', array(), WPCARGO_CUSTOM_FIELD_VERSION );
		wp_enqueue_style( 'wpcargo-cf-sortable-css');
		wp_enqueue_style( 'wpcargo-cf-css');
		
		
		if( isset( $_GET['page'] ) && $_GET['page'] == 'wpc-cf-manage-form-field' ){
			wp_enqueue_script( 'jquery');
			wp_enqueue_script( 'wpcargo-cf-sortable-ui');
			wp_enqueue_script( 'wpcargo-cf-sortable-js');
			wp_enqueue_script( 'wpcargo-cf-ajax-js');
			wp_localize_script( 'wpcargo-cf-ajax-js', 'deleteCFhandler', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) );
		}	
		wp_enqueue_script( 'jquery-migrate' );
	}
	function enqueue_front_end() {
		// Styles
		wp_register_style( 'wpccf-bootstrap-css', WPCARGO_CUSTOM_FIELD_URL . 'assets/css/bootstrap-datepicker.css', array(), WPCARGO_CUSTOM_FIELD_VERSION );
		wp_register_style( 'wpccf-style', WPCARGO_CUSTOM_FIELD_URL.'assets/css/wpcargo-custom-fields.css', array(), WPCARGO_CUSTOM_FIELD_VERSION );		
		wp_register_style( 'wpccf-media-style', WPCARGO_CUSTOM_FIELD_URL.'assets/css/wp-media.css', array(), WPCARGO_CUSTOM_FIELD_VERSION );
		wp_enqueue_style( 'wpccf-bootstrap-css');
		wp_enqueue_style( 'wpccf-media-style');
		wp_enqueue_style( 'wpccf-style');
		// Scripts
		wp_register_script( 'wpccf-bootstrap-script', WPCARGO_CUSTOM_FIELD_URL . 'assets/js/bootstrap-datepicker.js', array( 'jquery' ), WPCARGO_CUSTOM_FIELD_VERSION,  false );
		wp_register_script( 'wpccf-script', WPCARGO_CUSTOM_FIELD_URL . 'assets/js/wpccf-scripts.js', array( 'jquery' ), WPCARGO_CUSTOM_FIELD_VERSION,  false );
		wp_enqueue_script( 'jquery');
		wp_enqueue_media();
		wp_enqueue_script( 'wpccf-bootstrap-script');
		wp_enqueue_script( 'wpccf-script');
	}
}
new WPCargo_CF_Scripts;