summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/modules/search/class-jetpack-search-customberg.php')
-rw-r--r--plugins/jetpack/modules/search/class-jetpack-search-customberg.php141
1 files changed, 141 insertions, 0 deletions
diff --git a/plugins/jetpack/modules/search/class-jetpack-search-customberg.php b/plugins/jetpack/modules/search/class-jetpack-search-customberg.php
new file mode 100644
index 00000000..bdc54eaa
--- /dev/null
+++ b/plugins/jetpack/modules/search/class-jetpack-search-customberg.php
@@ -0,0 +1,141 @@
+<?php
+/**
+ * A class that adds a search customization interface to wp-admin.
+ *
+ * @package automattic/jetpack
+ */
+
+namespace Automattic\Jetpack\Search;
+
+use Automattic\Jetpack\Assets;
+use Automattic\Jetpack\Status;
+use Automattic\Jetpack\Tracking;
+use Jetpack;
+use Jetpack_Plan;
+
+/**
+ * Responsible for adding a search customization interface to wp-admin.
+ *
+ * @package Automattic\Jetpack\Search
+ */
+class Jetpack_Search_Customberg {
+ /**
+ * The singleton instance of this class.
+ *
+ * @var Jetpack_Search_Customberg
+ */
+ protected static $instance;
+
+ /**
+ * Get the singleton instance of the class.
+ *
+ * @return Jetpack_Search_Customberg
+ */
+ public static function instance() {
+ if ( ! isset( self::$instance ) ) {
+ self::$instance = new static();
+ self::$instance->init_hooks();
+ }
+
+ return self::$instance;
+ }
+
+ /**
+ * Adds action hooks.
+ */
+ public function init_hooks() {
+ add_action( 'admin_menu', array( $this, 'add_wp_admin_page' ), 999 );
+ }
+
+ /**
+ * Adds a wp-admin page without adding a sidebar submenu item.
+ */
+ public function add_wp_admin_page() {
+ if ( ! $this->should_add_page() ) {
+ return;
+ }
+
+ // Intentionally omits adding a submenu via the first null argument.
+ $hook = add_submenu_page(
+ null,
+ __( 'Search Settings', 'jetpack' ),
+ __( 'Search', 'jetpack' ),
+ 'manage_options', // Must be an admin.
+ 'jetpack-search-configure',
+ array( $this, 'jetpack_search_admin_page' )
+ );
+
+ add_action( "admin_print_scripts-$hook", array( $this, 'load_assets' ) );
+ add_action( 'admin_footer', array( 'Automattic\Jetpack\Search\Helper', 'print_instant_search_sidebar' ) );
+ }
+
+ /**
+ * Prints the dashboard container.
+ */
+ public function jetpack_search_admin_page() {
+ // TODO: Spin this function off into a static helper function in a helper class for code reuse.
+ $static_url = apply_filters( 'jetpack_static_url', '//en.wordpress.com/i/loading/loading-64.gif' );
+ ?>
+ <div id="jp-search-configure" class="jp-search-configure-dashboard" style="height: calc(100vh - 100px);">
+ <div class="hide-if-no-js" style="height: 100%;">
+ <img class="jp-search-loader" width="32" height="32" alt="<?php esc_attr_e( 'Loading&hellip;', 'jetpack' ); ?>" src="<?php echo esc_url( $static_url ); ?>" style="
+ position: absolute;
+ left: 50%;
+ top: 50%;
+ "/>
+ </div>
+ <div class="hide-if-js"><?php esc_html_e( 'Your Search customization page requires JavaScript to function properly.', 'jetpack' ); ?></div>
+ </div>
+ <?php
+ }
+
+ /**
+ * Loads assets for the customization experience.
+ */
+ public function load_assets() {
+ $this->load_assets_with_parameters( '', JETPACK__PLUGIN_FILE );
+ }
+
+ /**
+ * Loads script and style assets according to parameters provided.
+ *
+ * @param string $path_prefix - Path prefix for built assets.
+ * @param string $plugin_base_path - Base path for plugin files.
+ */
+ public function load_assets_with_parameters( $path_prefix, $plugin_base_path ) {
+ \Jetpack_Admin_Page::load_wrapper_styles();
+ Tracking::register_tracks_functions_scripts( true );
+
+ Assets::register_script(
+ 'jp-search-configure',
+ $path_prefix . '_inc/build/instant-search/jp-search-configure-main.js',
+ $plugin_base_path,
+ array(
+ 'in_footer' => true,
+ 'textdomain' => 'jetpack',
+ )
+ );
+ Assets::enqueue_script( 'jp-search-configure' );
+
+ // Use wp_add_inline_script instead of wp_localize_script, see https://core.trac.wordpress.org/ticket/25280.
+ wp_add_inline_script( 'jp-search-configure', 'var JetpackInstantSearchOptions=JSON.parse(decodeURIComponent("' . rawurlencode( wp_json_encode( Helper::generate_initial_javascript_state() ) ) . '"));', 'before' );
+ wp_add_inline_script(
+ 'jp-search-configure',
+ "window.jetpackSearchConfigureInit( 'jp-search-configure' )"
+ );
+ }
+
+ /**
+ * Determine if the requisite page should be added to wp-admin.
+ *
+ * @return boolean
+ */
+ protected function should_add_page() {
+ $is_offline_mode = ( new Status() )->is_offline_mode();
+ return (
+ ! $is_offline_mode && // Must be online.
+ Jetpack::is_connection_ready() && // Must be connected.
+ method_exists( 'Jetpack_Plan', 'supports' ) && Jetpack_Plan::supports( 'search' ) // Must have plan supporting Jetpack (Instant) Search.
+ );
+ }
+}