| @@ -1,4 +1,4 @@ | ||
| 1 | 1 | <?php /** |
| 2 | 2 | * @version 1.0 |
| 3 | 3 | * @package Booking Calendar - JavaScript |
| 4 | 4 | * @category Define JavaScript variables |
| @@ -9,39 +9,103 @@ | ||
| 9 | 9 | * |
| 10 | 10 | * @modified 19.10.2015 |
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | -if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly | |
| 13 | +if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly. | |
| 14 | 14 | |
| 15 | - | |
| 16 | 15 | /** |
| 17 | - * Define General inline JavaScript variables for the Booking Calendar | |
| 16 | + * Set local today date ( can depend from the parameters in shortcode: [booking resource_id=1 calendar_dates_start='2025-01-01' calendar_dates_end='2025-12-31'] ) | |
| 18 | 17 | * |
| 19 | - * This function run after ENQUEUE of WPBC JavaScript files | |
| 18 | + * @param $start_it - default 'now', but you can pass date: '2024-07-26' (usually from the past to set ability to select the time slots in the past). | |
| 20 | 19 | * |
| 21 | - * @param $where_to_load | |
| 20 | + * @return string | |
| 21 | + */ | |
| 22 | +function wpbc_get_localized_js__time_local( $start_it = 'now' ) { | |
| 23 | + | |
| 24 | + $script = ''; | |
| 25 | + // FixIn: 10.8.1.4. | |
| 26 | + $gmt_time = gmdate( 'Y-m-d H:i:s', strtotime( $start_it ) ); | |
| 27 | + | |
| 28 | + if ( ( isset( $_REQUEST['allow_past'] ) ) || ( wpbc_is_new_booking_page() && ( isset( $_GET['booking_hash'] ) ) ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.NonceVerification.Missing // phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.NonceVerification.Missing | |
| 29 | + // Get time in past. //FixIn: 10.10.3.2. | |
| 30 | + $gmt_time = gmdate( 'Y-m-d H:i:s', strtotime( '-' . intval( wpbc_get_max_visible_days_in_calendar() ) . ' days' ) ); // - 365 days or more | |
| 31 | + } | |
| 32 | + | |
| 33 | + $gmt_csv = wpbc_datetime_localized__no_wp_timezone( $gmt_time, 'Y,m,d,H,i' ); | |
| 34 | + $local_csv = wpbc_datetime_localized__use_wp_timezone( $gmt_time, 'Y,m,d,H,i' ); | |
| 35 | + | |
| 36 | + $gmt_arr = wpbc_csv_numbers_to_int_array( $gmt_csv ); | |
| 37 | + $local_arr = wpbc_csv_numbers_to_int_array( $local_csv ); | |
| 38 | + | |
| 39 | + $script .= "_wpbc.set_other_param('time_gmt_arr', " . wp_json_encode( $gmt_arr ) . " ); "; | |
| 40 | + $script .= "_wpbc.set_other_param('time_local_arr', " . wp_json_encode( $local_arr ) . " ); "; | |
| 41 | + | |
| 42 | +// $script .= "_wpbc.set_other_param( 'time_gmt_arr', [" . wpbc_set_csd_as_int( wpbc_datetime_localized__no_wp_timezone( $gmt_time, 'Y,m,d,H,i' ) ) . '] ); '; | |
| 43 | +// $script .= "_wpbc.set_other_param( 'time_local_arr', [" . wpbc_set_csd_as_int( wpbc_datetime_localized__use_wp_timezone( $gmt_time, 'Y,m,d,H,i' ) ) . '] ); '; | |
| 44 | + | |
| 45 | + $unavailable_time_from_today = get_bk_option( 'booking_unavailable_days_num_from_today' ); | |
| 46 | + | |
| 47 | + if ( ! empty( $unavailable_time_from_today ) ) { | |
| 48 | + if ( 'm' === substr( $unavailable_time_from_today, - 1 ) ) { | |
| 49 | + | |
| 50 | + // Get time ONLY, if it is not in past. //FixIn: 10.10.3.2. | |
| 51 | + if ( ( ! isset( $_REQUEST['allow_past'] ) ) && ( ! ( wpbc_is_new_booking_page() && ( isset( $_GET['booking_hash'] ) ) ) ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.NonceVerification.Missing | |
| 52 | + $gmt_time = gmdate( 'Y-m-d H:i:s', strtotime( '+' . ( intval( $unavailable_time_from_today ) - 1 ) . ' minutes' ) ); | |
| 53 | + } | |
| 54 | + | |
| 55 | + // Local timezone unavailable time. // FixIn: 10.9.6.3. | |
| 56 | + $local_unavailable_datetime_ymdhis = wpbc_datetime_localized__use_wp_timezone( $gmt_time, 'Y-m-d H:i:s' ); // Local unavailable. | |
| 57 | + // Local timezone Now time. | |
| 58 | + $local_now_datetime_ymdhis = wpbc_datetime_localized__use_wp_timezone( strtotime( $start_it ), 'Y-m-d H:i:s' ); // Local Now. | |
| 59 | + // Local timezone Today midnight time. | |
| 60 | + $local_now_datetime_ymd000 = wpbc_datetime_localized__use_wp_timezone( strtotime( $start_it ), 'Y-m-d 00:00:00' ); // Local Midnight. | |
| 61 | + | |
| 62 | + // Check time from local MIDNIGHT to Unavailable. | |
| 63 | + $days_number_shift = intval( ( strtotime( $local_unavailable_datetime_ymdhis ) - strtotime( $local_now_datetime_ymd000 ) ) / 86400 ); | |
| 64 | + $unavailable_time_from_today = $days_number_shift; | |
| 65 | + // $unavailable_time_from_today = '0'; // FixIn: 10.9.2.6. | |
| 66 | + } | |
| 67 | + } else { | |
| 68 | + $unavailable_time_from_today = '0'; | |
| 69 | + } | |
| 70 | + | |
| 71 | + $today_local_csv = wpbc_datetime_localized__use_wp_timezone( $gmt_time, 'Y,m,d,H,i' ); | |
| 72 | + $today_arr = wpbc_csv_numbers_to_int_array( $today_local_csv ); | |
| 73 | + | |
| 74 | + $script .= "_wpbc.set_other_param( 'today_arr', " . wp_json_encode( $today_arr ) . " ); "; | |
| 75 | + | |
| 76 | + // FixIn: 10.8.1.4. | |
| 77 | + $script .= "_wpbc.set_other_param( 'availability__unavailable_from_today', '" . esc_js( $unavailable_time_from_today ) . "' ); "; //Default: 0 ' Old JS: block_some_dates_from_today' _wpbc.get_other_param( 'availability__unavailable_from_today' ) | |
| 78 | + | |
| 79 | + return $script; | |
| 80 | +} | |
| 81 | + | |
| 82 | + | |
| 83 | +/** | |
| 84 | + * Get script string for localised variables. | |
| 22 | 85 | * |
| 23 | - * @return void | |
| 86 | + * @return string | |
| 24 | 87 | */ |
| 25 | -function wpbc_localize_js_vars( $where_to_load = 'both' ){ //FixIn: 10.0.0.43 | |
| 88 | +function wpbc_get_localized_js_vars() { | |
| 26 | 89 | |
| 27 | - //$script = 'var1 = '. json_encode('var1') .'; '; // JSON.parse(wpbc_global_var); | |
| 28 | - $script = ''; | |
| 90 | + // $script = 'var1 = '. wp_json_encode('var1') .'; '; // JSON.parse(wpbc_global_var); //. | |
| 91 | + | |
| 92 | + $script = ''; | |
| 29 | 93 | $script .= "_wpbc.set_other_param( 'locale_active', '" . esc_js( wpbc_get_maybe_reloaded_booking_locale() ) . "' ); "; |
| 30 | 94 | |
| 31 | - $today_local = wpbc_datetime_localized__use_wp_timezone( date( 'Y-m-d H:i:s', strtotime( 'now' ) ), 'Y,m,d,H,i' ); //FixIn: 9.9.0.17 | |
| 32 | - $script .= "_wpbc.set_other_param( 'today_arr', [" . $today_local . "] ); "; | |
| 95 | + $script .= wpbc_get_localized_js__time_local(); | |
| 33 | 96 | |
| 34 | 97 | $script .= "_wpbc.set_other_param( 'url_plugin', '" . esc_url( plugins_url( '', WPBC_FILE ) ) . "' ); "; |
| 35 | - //'_wpbc.get_other_param( 'url_plugin' )' | |
| 36 | - $script .= "_wpbc.set_other_param( 'this_page_booking_hash', '" . esc_js( ( ! empty( $_GET['booking_hash'] ) ) ? $_GET['booking_hash'] : '' ) . "' ); "; | |
| 37 | 98 | |
| 99 | + $get_booking_hash = ( ( isset( $_GET['booking_hash'] ) ) ? sanitize_text_field( wp_unslash( $_GET['booking_hash'] ) ) : '' ); /* phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.NonceVerification.Missing */ /* FixIn: sanitize_unslash */ | |
| 38 | 100 | |
| 101 | + $script .= "_wpbc.set_other_param( 'this_page_booking_hash', '" . esc_js( $get_booking_hash ) . "' ); "; | |
| 102 | + | |
| 103 | + | |
| 39 | 104 | $script .= "_wpbc.set_other_param( 'calendars__on_this_page', [] ); "; |
| 40 | 105 | |
| 41 | - $script .= "_wpbc.set_other_param( 'calendars__first_day', '" . esc_js( get_bk_option( 'booking_start_day_weeek' ) ) . "' ); "; //."\n"; | |
| 106 | + $script .= "_wpbc.set_other_param( 'calendars__first_day', '" . intval( get_bk_option( 'booking_start_day_weeek' ) ) . "' ); "; //."\n"; | |
| 42 | 107 | $script .= "_wpbc.set_other_param( 'calendars__max_monthes_in_calendar', '" . esc_js( get_bk_option( 'booking_max_monthes_in_calendar' ) ) . "' ); "; |
| 43 | - $script .= "_wpbc.set_other_param( 'availability__unavailable_from_today', '" . esc_js( get_bk_option( 'booking_unavailable_days_num_from_today' ) ) . "' ); "; //Default: 0 ' Old JS: block_some_dates_from_today' _wpbc.get_other_param( 'availability__unavailable_from_today' ) | |
| 44 | 108 | if ( class_exists( 'wpdev_bk_biz_m' ) ) { |
| 45 | 109 | $script .= "_wpbc.set_other_param( 'availability__available_from_today', '" . esc_js( get_bk_option( 'booking_available_days_num_from_today' ) ) . "' ); "; //Default '' - all days. Old JS: 'wpbc_available_days_num_from_today' |
| 46 | 110 | } |
| 47 | 111 | $script .= "_wpbc.set_other_param( 'availability__week_days_unavailable', [" |
| @@ -52,20 +116,30 @@ | ||
| 52 | 116 | . ( ( get_bk_option( 'booking_unavailable_day4') == 'On' ) ? '4,' : '' ) |
| 53 | 117 | . ( ( get_bk_option( 'booking_unavailable_day5') == 'On' ) ? '5,' : '' ) |
| 54 | 118 | . ( ( get_bk_option( 'booking_unavailable_day6') == 'On' ) ? '6,' : '' ) |
| 55 | 119 | . "999] ); "; // 999 - blank day, which will not impact to the checking of the week days. Required for correct creation of this array. |
| 56 | - // General days selection | |
| 120 | + // General days selection. | |
| 57 | 121 | $days_selection_arr = wpbc__calendar__js_params__get_days_selection_arr(); |
| 58 | - $script .= "_wpbc.set_other_param( 'calendars__days_select_mode', '" . $days_selection_arr['days_select_mode'] . "' ); "; | |
| 59 | - $script .= "_wpbc.set_other_param( 'calendars__fixed__days_num', " . $days_selection_arr['fixed__days_num'] . " ); "; | |
| 60 | - $script .= "_wpbc.set_other_param( 'calendars__fixed__week_days__start', [" .$days_selection_arr['fixed__week_days__start'] . "] ); "; | |
| 61 | - $script .= "_wpbc.set_other_param( 'calendars__dynamic__days_min', " . $days_selection_arr['dynamic__days_min'] . " ); "; | |
| 62 | - $script .= "_wpbc.set_other_param( 'calendars__dynamic__days_max', " . $days_selection_arr['dynamic__days_max'] . " ); "; | |
| 63 | - $script .= "_wpbc.set_other_param( 'calendars__dynamic__days_specific', [" .$days_selection_arr['dynamic__days_specific'] . "] ); "; | |
| 64 | - $script .= "_wpbc.set_other_param( 'calendars__dynamic__week_days__start', [" .$days_selection_arr['dynamic__week_days__start'] . "] ); "; | |
| 65 | 122 | |
| 66 | - // Defined in BS | |
| 123 | + $script .= "_wpbc.set_other_param( 'calendars__days_select_mode', '" . $days_selection_arr['days_select_mode'] . "' ); "; | |
| 124 | + $script .= "_wpbc.set_other_param( 'calendars__fixed__days_num', " . $days_selection_arr['fixed__days_num'] . " ); "; | |
| 125 | + $script .= "_wpbc.set_other_param( 'calendars__fixed__week_days__start', [" . $days_selection_arr['fixed__week_days__start'] . "] ); "; | |
| 126 | + $script .= "_wpbc.set_other_param( 'calendars__dynamic__days_min', " . $days_selection_arr['dynamic__days_min'] . " ); "; | |
| 127 | + $script .= "_wpbc.set_other_param( 'calendars__dynamic__days_max', " . $days_selection_arr['dynamic__days_max'] . " ); "; | |
| 128 | + $script .= "_wpbc.set_other_param( 'calendars__dynamic__days_specific', [" . $days_selection_arr['dynamic__days_specific'] . "] ); "; | |
| 129 | + $script .= "_wpbc.set_other_param( 'calendars__dynamic__week_days__start', [" . $days_selection_arr['dynamic__week_days__start'] . "] ); "; | |
| 130 | + | |
| 131 | + // FixIn: 10.3.0.9. | |
| 132 | + if ( false !== strpos( get_bk_option( 'booking_skin' ), 'light__24_8' ) ) { | |
| 133 | + $script .= "_wpbc.set_other_param( 'calendars__days_selection__middle_days_opacity', '0.5' ); "; | |
| 134 | + } else { | |
| 135 | + $script .= "_wpbc.set_other_param( 'calendars__days_selection__middle_days_opacity', '0.75' ); "; | |
| 136 | + } | |
| 137 | + | |
| 138 | + | |
| 139 | + // Defined in BS. | |
| 67 | 140 | $script .= "_wpbc.set_other_param( 'is_enabled_booking_recurrent_time', " . ( ( get_bk_option( 'booking_recurrent_time' ) !== 'On' ) ? 'false' : 'true' ) . " ); "; |
| 141 | + $script .= "_wpbc.set_other_param( 'is_allow_several_months_on_mobile', " . ( ( get_bk_option( 'booking_calendar_allow_several_months_on_mobile' ) !== 'On' ) ? 'false' : 'true' ) . " ); "; | |
| 68 | 142 | $script .= "_wpbc.set_other_param( 'is_enabled_change_over', " . ( |
| 69 | 143 | ( |
| 70 | 144 | ( function_exists( 'wpbc_is_booking_used_check_in_out_time' ) ) |
| 71 | 145 | && ( wpbc_is_booking_used_check_in_out_time() ) |
| @@ -70,57 +144,111 @@ | ||
| 70 | 144 | ( function_exists( 'wpbc_is_booking_used_check_in_out_time' ) ) |
| 71 | 145 | && ( wpbc_is_booking_used_check_in_out_time() ) |
| 72 | 146 | ) ? 'true' : 'false' |
| 73 | 147 | ) . " ); "; |
| 148 | + | |
| 149 | + $script .= "_wpbc.set_other_param( 'is_enabled_booking_timeslot_picker', " . ( ( 'On' === get_bk_option( 'booking_timeslot_picker' ) ) ? 'true' : 'false' ) . " ); "; | |
| 150 | + | |
| 74 | 151 | if ( class_exists( 'wpdev_bk_biz_l' ) ) { |
| 75 | 152 | $script .= "_wpbc.set_other_param( 'is_enabled_booking_search_results_days_select', '" . esc_js( get_bk_option( 'booking_search_results_days_select' ) ) . "' ); "; |
| 76 | 153 | } |
| 77 | 154 | |
| 78 | - $script .= "_wpbc.set_other_param( 'update', '" . WP_BK_VERSION_NUM . "' ); "; | |
| 155 | + $script .= "_wpbc.set_other_param( 'update', '" . esc_attr( WP_BK_VERSION_NUM ) . "' ); "; | |
| 79 | 156 | $script .= "_wpbc.set_other_param( 'version', '" . wpbc_get_version_type__and_mu() . "' ); "; |
| 80 | 157 | |
| 81 | - // Warning Messages | |
| 82 | - $script .= "_wpbc.set_message( 'message_dates_times_unavailable', " . wp_json_encode( __( 'These dates and times in this calendar are already booked or unavailable.', 'booking' ) ) . " ); "; | |
| 83 | - $script .= "_wpbc.set_message( 'message_choose_alternative_dates', " . wp_json_encode( __( 'Please choose alternative date(s), times, or adjust the number of slots booked.', 'booking' ) ) . " ); "; | |
| 84 | - $script .= "_wpbc.set_message( 'message_cannot_save_in_one_resource', " . wp_json_encode( __( 'It is not possible to store this sequence of the dates into the one same resource.', 'booking' ) ) . " ); "; | |
| 85 | - $script .= "_wpbc.set_message( 'message_check_required', " . wp_json_encode( __( 'This field is required', 'booking' ) ) . " ); "; | |
| 86 | - $script .= "_wpbc.set_message( 'message_check_required_for_check_box', " . wp_json_encode( __( 'This checkbox must be checked', 'booking' ) ) . " ); "; | |
| 87 | - $script .= "_wpbc.set_message( 'message_check_required_for_radio_box', " . wp_json_encode( __( 'At least one option must be selected', 'booking' ) ) . " ); "; | |
| 88 | - $script .= "_wpbc.set_message( 'message_check_email', " . wp_json_encode( __( 'Incorrect email field', 'booking' ) ) . " ); "; | |
| 89 | - $script .= "_wpbc.set_message( 'message_check_same_email', " . wp_json_encode( __( 'Your emails do not match', 'booking' ) ) . " ); "; | |
| 90 | - $script .= "_wpbc.set_message( 'message_check_no_selected_dates', " . wp_json_encode( __( 'Please, select booking date(s) at Calendar.', 'booking' ) ) . " ); "; | |
| 91 | - $script .= "_wpbc.set_message( 'message_processing', " . wp_json_encode( __( 'Processing', 'booking' ) ) . " ); "; | |
| 92 | - $script .= "_wpbc.set_message( 'message_deleting', " . wp_json_encode( __( 'Deleting', 'booking' ) ) . " ); "; | |
| 93 | - $script .= "_wpbc.set_message( 'message_updating', " . wp_json_encode( __( 'Updating', 'booking' ) ) . " ); "; | |
| 94 | - $script .= "_wpbc.set_message( 'message_saving', " . wp_json_encode( __( 'Saving', 'booking' ) ) . " ); "; | |
| 95 | - $script .= "_wpbc.set_message( 'message_error_check_in_out_time', " . wp_json_encode( __( 'Error! Please reset your check-in/check-out dates above.', 'booking' ) ) . " ); "; | |
| 96 | - $script .= "_wpbc.set_message( 'message_error_start_time', " . wp_json_encode( __( 'Start Time is invalid. The date or time may be booked, or already in the past! Please choose another date or time.', 'booking' ) ) . " ); "; | |
| 97 | - $script .= "_wpbc.set_message( 'message_error_end_time', " . wp_json_encode( __( 'End Time is invalid. The date or time may be booked, or already in the past. The End Time may also be earlier that the start time, if only 1 day was selected! Please choose another date or time.', 'booking' ) ) . " ); "; | |
| 98 | - $script .= "_wpbc.set_message( 'message_error_range_time', " . wp_json_encode( __( 'The time(s) may be booked, or already in the past!', 'booking' ) ) . " ); "; | |
| 99 | - $script .= "_wpbc.set_message( 'message_error_duration_time', " . wp_json_encode( __( 'The time(s) may be booked, or already in the past!', 'booking' ) ) . " ); "; | |
| 158 | + // Visitor-facing messages resolve through one multilingual, plain-text registry. | |
| 159 | + foreach ( array_keys( wpbc_frontend_messages__get_registry() ) as $message_key ) { | |
| 160 | + $script .= '_wpbc.set_message( ' . wp_json_encode( $message_key ) . ', ' . wp_json_encode( wpbc_frontend_messages__get( $message_key ) ) . ' ); '; | |
| 161 | + } | |
| 162 | + | |
| 163 | + // Internal/admin progress messages remain gettext-controlled and cannot be customized from the booking-form page. | |
| 164 | + $script .= "_wpbc.set_message( 'message_processing', " . wp_json_encode( __( 'Processing', 'booking' ) ) . " ); "; | |
| 165 | + $script .= "_wpbc.set_message( 'message_deleting', " . wp_json_encode( __( 'Deleting', 'booking' ) ) . " ); "; | |
| 166 | + $script .= "_wpbc.set_message( 'message_updating', " . wp_json_encode( __( 'Updating', 'booking' ) ) . " ); "; | |
| 167 | + $script .= "_wpbc.set_message( 'message_saving', " . wp_json_encode( __( 'Saving', 'booking' ) ) . " ); "; | |
| 168 | + $script .= "_wpbc.set_message( 'message_error_check_in_out_time', " . wp_json_encode( __( 'Error! Please reset your check-in/check-out dates above.', 'booking' ) ) . " ); "; | |
| 100 | 169 | |
| 101 | - $script_before = 'var wpbc_url_ajax =' . wp_json_encode( admin_url( 'admin-ajax.php' ) ) . ';'; | |
| 102 | - wp_add_inline_script( 'wpbc_all', $script_before, 'before' ); | |
| 170 | + // $script .= "console.log( '== WPBC VARS " . esc_attr( WP_BK_VERSION_NUM ) . ' [' . wpbc_get_version_type__and_mu() . "] LOADED ==' );"; | |
| 171 | + $script .= "console.log( '== WPBC VARS " . esc_attr( wpbc_get_wpbc_versions_numbers() ) . ' [' . wpbc_get_version_type__and_mu() . "] LOADED ==' );"; | |
| 172 | + return $script; | |
| 173 | +} | |
| 103 | 174 | |
| 104 | - $script .= "console.log( '== WPBC VARS " . WP_BK_VERSION_NUM . ' ['.wpbc_get_version_type__and_mu() . "] LOADED ==' );"; | |
| 105 | 175 | |
| 176 | +// FixIn: 10.14.4.2. (loader made cache-proof) | |
| 177 | +/** | |
| 178 | + * Print inline JS for Booking Calendar that initializes safely even with cache plugins (delay/defer/on-interaction). | |
| 179 | + * | |
| 180 | + * @param string $where_to_load 'both' by default. | |
| 181 | + * | |
| 182 | + * @return void | |
| 183 | + */ | |
| 184 | +function wpbc_localize_js_vars( $where_to_load = 'both' ) { | |
| 106 | 185 | |
| 107 | - // Load this _wpbc only after loading of all scripts //FixIn: 10.1.3.4 | |
| 108 | - $script = " function wpbc_init__head(){ " . $script . " } "; | |
| 109 | - $script .= "( function() { if ( document.readyState === 'loading' ){ document.addEventListener( 'DOMContentLoaded', wpbc_init__head ); } else { wpbc_init__head(); } }() );"; | |
| 186 | + // Allow disabling, if needed. | |
| 187 | + if ( apply_filters( 'wpbc_disable_inline_bootstrap', false, $where_to_load ) ) { | |
| 188 | + return; | |
| 189 | + } | |
| 110 | 190 | |
| 111 | - wp_add_inline_script( 'wpbc_all', $script ); | |
| 191 | + // 1) BEFORE: essentials used by inlines or deferred scripts. - Define both a global var and window property for maximum compatibility. | |
| 192 | + $script_before = 'var wpbc_url_ajax = ' . wp_json_encode( admin_url( 'admin-ajax.php' ) ) . ';' . 'window.wpbc_url_ajax = wpbc_url_ajax;'; | |
| 193 | + wp_add_inline_script( 'wpbc_all', $script_before, 'before' ); | |
| 112 | 194 | |
| 113 | - /** | |
| 114 | - * Help info. Order of JS events: | |
| 115 | - * | |
| 116 | - * window.addEventListener("load", (event) => { log.textContent += "load\n"; }); -> window.onload (which is implemented even in old browsers), which fires when the entire page loads (images, styles, etc.) | |
| 117 | - * document.addEventListener("readystatechange", (event) => { log.textContent += `readystate: ${document.readyState}\n`; }); | |
| 118 | - * document.addEventListener("DOMContentLoaded", (event) => { log.textContent += "DOMContentLoaded\n"; }); -> newish event which fires when the document's DOM is loaded (which may be some time before the images, etc. are loaded); | |
| 119 | - * :: | |
| 120 | - * DOMContentLoaded | |
| 121 | - * readystate: complete | |
| 122 | - * load | |
| 123 | - */ | |
| 195 | + // 2) Existing payload (calls to _wpbc.set_other_param, _wpbc.set_message, …). | |
| 196 | + $payload_js = wpbc_get_localized_js_vars(); | |
| 197 | + | |
| 198 | + // 3) Robust bootstrap: runs payload only when _wpbc is ready. | |
| 199 | + $max_wait_ms = (int) apply_filters( 'wpbc_js_bootstrap_max_wait_ms', 10000 ); // 10s cap | |
| 200 | + $poll_interval_ms = (int) apply_filters( 'wpbc_js_bootstrap_poll_interval_ms', 50 ); // 50ms | |
| 201 | + $custom_events = (array) apply_filters( 'wpbc_js_bootstrap_ready_events', array( 'wpbc-ready', 'wpbc:ready', 'wpbc_ready', 'wpbcReady' ) ); | |
| 202 | + $user_events = (array) apply_filters( 'wpbc_js_bootstrap_user_events', array( 'click', 'mousemove', 'touchstart', 'keydown', 'scroll' ) ); | |
| 203 | + | |
| 204 | + $boot_js = '(function(){' . "\n" . | |
| 205 | + '"use strict";' . "\n" . | |
| 206 | + 'function wpbc_init__head(){' . $payload_js . '}' . "\n" . | |
| 207 | + '(function(){' . "\n" . | |
| 208 | + ' if (window.__wpbc_boot_done__ === true) return;' . "\n" . | |
| 209 | + // global guard across duplicates. | |
| 210 | + ' var started = false;' . "\n" . | |
| 211 | + ' function run_once(){' . "\n" . | |
| 212 | + ' if (started || window.__wpbc_boot_done__ === true) return true;' . "\n" . | |
| 213 | + ' started = true;' . "\n" . | |
| 214 | + ' try { wpbc_init__head(); window.__wpbc_boot_done__ = true; }' . "\n" . | |
| 215 | + ' catch(e){ started = false; try{console.error("WPBC init failed:", e);}catch(_){} }' . "\n" . | |
| 216 | + ' return (window.__wpbc_boot_done__ === true);' . "\n" . | |
| 217 | + ' }' . "\n" . | |
| 218 | + // Fast path. | |
| 219 | + ' function is_ready(){ return !!(window._wpbc && typeof window._wpbc.set_other_param === "function"); }' . "\n" . | |
| 220 | + ' if ( is_ready() && run_once() ) return;' . "\n" . | |
| 221 | + // Polling fallback (covers delayed/deferred/on-interaction loaders). | |
| 222 | + ' var waited = 0, max_ms = ' . $max_wait_ms . ', step = ' . $poll_interval_ms . ';' . "\n" . | |
| 223 | + ' var timer = setInterval(function(){' . "\n" . | |
| 224 | + ' if ( is_ready() && run_once() ) { clearInterval(timer); return; }' . "\n" . | |
| 225 | + ' waited += step;' . "\n" . | |
| 226 | + ' if ( waited >= max_ms ) {' . "\n" . | |
| 227 | + ' clearInterval(timer);' . "\n" . | |
| 228 | + ' // Switch to slow polling (1s) so we still init even without user interaction later.' . "\n" . | |
| 229 | + ' var slow = setInterval(function(){ if ( is_ready() && run_once() ) clearInterval(slow); }, 1000);' . "\n" . | |
| 230 | + ' try{console.warn("WPBC: _wpbc not detected within " + max_ms + "ms; using slow polling.");}catch(_){}' . "\n" . | |
| 231 | + ' }' . "\n" . | |
| 232 | + ' }, step);' . "\n" . | |
| 233 | + // Listen for your custom ready events (emit from core once _wpbc is ready). | |
| 234 | + ' var evs = ' . wp_json_encode( array_values( $custom_events ) ) . ';' . "\n" . | |
| 235 | + ' evs.forEach(function(name){' . "\n" . | |
| 236 | + ' document.addEventListener(name, function onready(){ if (is_ready() && run_once()) document.removeEventListener(name, onready); });' . "\n" . | |
| 237 | + ' });' . "\n" . | |
| 238 | + // Standard lifecycle events (covers DOMContentLoaded + load). | |
| 239 | + ' if (document.readyState === "loading") {' . "\n" . | |
| 240 | + ' document.addEventListener("DOMContentLoaded", function(){ if (is_ready()) run_once(); }, { once:true });' . "\n" . | |
| 241 | + ' }' . "\n" . | |
| 242 | + ' window.addEventListener("load", function(){ if (is_ready()) run_once(); }, { once:true });' . "\n" . | |
| 243 | + ' window.addEventListener("pageshow", function(){ if (is_ready()) run_once(); }, { once:true });' . "\n" . | |
| 244 | + ' document.addEventListener("visibilitychange", function(){ if (!document.hidden && is_ready()) run_once(); });' . "\n" . | |
| 245 | + // User interaction hooks — some cache plugins load delayed JS only after interaction. | |
| 246 | + ' var ui = ' . wp_json_encode( array_values( $user_events ) ) . ';' . "\n" . | |
| 247 | + ' var ui_bailed = false;' . "\n" . | |
| 248 | + ' function on_ui(){ if (ui_bailed) return; if (is_ready() && run_once()){ ui_bailed = true; ui.forEach(function(t){ document.removeEventListener(t, on_ui, true); }); } }' . "\n" . | |
| 249 | + ' ui.forEach(function(t){ document.addEventListener(t, on_ui, true); });' . "\n" . | |
| 250 | + '})();' . "\n" . | |
| 251 | + '})();'; | |
| 252 | + wp_add_inline_script( 'wpbc_all', $boot_js ); | |
| 124 | 253 | } |
| 125 | -add_action( 'wpbc_enqueue_js_files', 'wpbc_localize_js_vars', 51 ); // Need to set here 51, because some JS has 50 priority, for example at WP Booking Calendar > Availability > Days Availability page -> This hook fired after ENQUEUE of WPBC JS - wp_enqueue_script | |
| 126 | - | |
| 254 | +add_action( 'wpbc_enqueue_js_files', 'wpbc_localize_js_vars', 51 ); | |