__NAMESPACE__ . '\load_assets' ) ); } add_action( 'init', __NAMESPACE__ . '\register_block' ); /** * Register the setting for the AI prompt override. */ function register_settings() { register_setting( 'general', 'jetpack_search_ai_prompt_override', array( 'type' => 'string', 'show_in_rest' => true, 'description' => __( 'Override for the Jetpack AI prompt in the Jetpack AI Search feature.', 'jetpack' ), 'defualt' => '', ) ); } add_action( 'rest_api_init', __NAMESPACE__ . '\register_settings' ); /** * Jetpack AI Paragraph block registration/dependency declaration. * * @param array $attr Array containing the Jetpack AI Chat block attributes. * * @return string */ function load_assets( $attr ) { /* * Enqueue necessary scripts and styles. */ Jetpack_Gutenberg::load_assets_as_required( __DIR__ ); $ask_button_label = isset( $attr['askButtonLabel'] ) ? $attr['askButtonLabel'] : __( 'Ask', 'jetpack' ); $placeholder = isset( $attr['placeholder'] ) ? $attr['placeholder'] : __( 'Ask a question about this site.', 'jetpack' ); if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { $blog_id = get_current_blog_id(); $type = 'wpcom'; // WPCOM simple sites. } else { $blog_id = \Jetpack_Options::get_option( 'id' ); $type = 'jetpack'; // Self-hosted (includes Atomic) } return sprintf( '
', esc_attr( Blocks::classes( Blocks::get_block_feature( __DIR__ ), $attr ) ), esc_attr( $ask_button_label ), esc_attr( $blog_id ), esc_attr( $type ), esc_attr( $placeholder ) ); } /** * Add the initial state for the AI Chat block. */ function add_ai_chat_block_data() { $search = new Search_Module_Control(); $plan = new Search_Plan(); $initial_state = array( 'jetpackSettings' => array( 'search_module_active' => $search->is_active(), 'instant_search_enabled' => $search->is_instant_search_enabled(), 'plan_supports_search' => $plan->supports_instant_search(), ), ); wp_add_inline_script( 'jetpack-blocks-editor', 'var Jetpack_AIChatBlock = ' . wp_json_encode( $initial_state, JSON_HEX_TAG | JSON_HEX_AMP ) . ';', 'before' ); } add_action( 'enqueue_block_assets', __NAMESPACE__ . '\add_ai_chat_block_data' );