-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pull screen search feature #1256
base: develop
Are you sure you want to change the base?
Changes from 2 commits
a614fbe
8e2f4a8
6432dc2
d08608f
816c905
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,13 @@ | |
import jQuery from 'jquery'; | ||
import { addQueryArgs } from '@wordpress/url'; | ||
import { __ } from '@wordpress/i18n'; | ||
import _ from 'underscore'; | ||
|
||
const { document } = window; | ||
|
||
const chooseConnection = document.getElementById( 'pull_connections' ); | ||
const chooseConnection = document.getElementsByClassName( | ||
'searchable-select__input' | ||
)[ 0 ]; | ||
const choosePostType = document.getElementById( 'pull_post_type' ); | ||
const choosePostTypeBtn = document.getElementById( 'pull_post_type_submit' ); | ||
const searchField = document.getElementById( 'post-search-input' ); | ||
|
@@ -15,21 +18,12 @@ | |
const asDraftCheckboxes = document.querySelectorAll( '[name=dt_as_draft]' ); | ||
const pullLinks = document.querySelectorAll( '.distributor_page_pull .pull a' ); | ||
|
||
jQuery( chooseConnection ).on( 'change', ( event ) => { | ||
document.location = | ||
event.currentTarget.options[ | ||
event.currentTarget.selectedIndex | ||
].getAttribute( 'data-pull-url' ); | ||
|
||
document.body.className += ' ' + 'dt-loading'; | ||
} ); | ||
|
||
if ( chooseConnection && choosePostType && form ) { | ||
if ( choosePostTypeBtn ) { | ||
jQuery( choosePostTypeBtn ).on( 'click', ( event ) => { | ||
event.preventDefault(); | ||
|
||
document.location = getURL(); | ||
Check warning Code scanning / CodeQL DOM text reinterpreted as HTML Medium DOM text Error loading related location Loading DOM text Error loading related location Loading |
||
|
||
document.body.className += ' ' + 'dt-loading'; | ||
} ); | ||
|
@@ -41,7 +35,7 @@ | |
|
||
const search = searchField.value; | ||
|
||
document.location = `${ getURL() }&s=${ search }`; | ||
Check warning Code scanning / CodeQL DOM text reinterpreted as HTML Medium DOM text Error loading related location Loading DOM text Error loading related location Loading DOM text Error loading related location Loading |
||
|
||
document.body.className += ' dt-loading'; | ||
} ); | ||
|
@@ -84,10 +78,7 @@ | |
const getURL = () => { | ||
const postType = | ||
choosePostType.options[ choosePostType.selectedIndex ].value; | ||
const baseURL = | ||
chooseConnection.options[ chooseConnection.selectedIndex ].getAttribute( | ||
'data-pull-url' | ||
); | ||
const baseURL = chooseConnection.getAttribute( 'data-pull-url' ); | ||
let status = 'new'; | ||
|
||
if ( -1 < ` ${ form.className } `.indexOf( ' status-skipped ' ) ) { | ||
|
@@ -98,3 +89,114 @@ | |
|
||
return `${ baseURL }&pull_post_type=${ postType }&status=${ status }`; | ||
}; | ||
|
||
document.addEventListener( 'DOMContentLoaded', async function () { | ||
const container = document.querySelector( '.searchable-select' ); | ||
const inputContainer = container.querySelector( | ||
'.searchable-select__input-container' | ||
); | ||
const input = container.querySelector( '.searchable-select__input' ); | ||
const icon = container.querySelector( | ||
'.searchable-select__input-container > .dashicons-arrow-down' | ||
); | ||
const dropdown = container.querySelector( '.searchable-select__dropdown' ); | ||
|
||
const itemss = await fetch( '/wp-admin/admin-ajax.php', { | ||
method: 'POST', | ||
headers: { | ||
'Content-Type': 'application/x-www-form-urlencoded', | ||
}, | ||
body: 'action=dt_load_connections_pull', | ||
} ) | ||
.then( ( response ) => response.json() ) | ||
.then( ( data ) => { | ||
return data.data; | ||
} ); | ||
|
||
function htmlDecode( inputText ) { | ||
const doc = new DOMParser().parseFromString( inputText, 'text/html' ); | ||
return doc.documentElement.textContent; | ||
} | ||
|
||
function setInputDefault() { | ||
const params = new URL( document.location.toString() ).searchParams; | ||
const connection_id = params.get( 'connection_id' ); | ||
|
||
if ( connection_id ) { | ||
const connection = itemss.find( | ||
( item ) => item.id == connection_id ); | ||
Check failure on line 127 in assets/js/admin-pull.js GitHub Actions / ESLint Report Analysisassets/js/admin-pull.js#L127
|
||
|
||
if ( connection ) { | ||
input.value = connection.name; | ||
input.setAttribute( | ||
'data-pull-url', | ||
htmlDecode( connection.pull_url ) | ||
); | ||
} | ||
} | ||
} | ||
|
||
setInputDefault(); | ||
|
||
function createDropdownItems( items ) { | ||
dropdown.innerHTML = ''; | ||
items.forEach( ( item ) => { | ||
const div = document.createElement( 'div' ); | ||
div.classList.add( 'searchable-select__item' ); | ||
div.textContent = item.name; | ||
div.setAttribute( 'data-url', item.url ); | ||
|
||
div.addEventListener( 'click', () => { | ||
input.value = item.name; | ||
input.setAttribute( | ||
'data-pull-url', | ||
htmlDecode( item.pull_url ) | ||
// item.pull_url | ||
); | ||
document.location = getURL(); | ||
|
||
|
||
hideDropdown(); | ||
} ); | ||
dropdown.appendChild( div ); | ||
} ); | ||
} | ||
|
||
function showDropdown() { | ||
createDropdownItems( itemss ); | ||
dropdown.style.display = 'block'; | ||
} | ||
|
||
function hideDropdown() { | ||
dropdown.style.display = 'none'; | ||
} | ||
|
||
function filterItems( searchTerm ) { | ||
const filteredItems = itemss.filter( ( item ) => | ||
item.toLowerCase().includes( searchTerm.toLowerCase() ) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm getting an error on this line as
|
||
); | ||
createDropdownItems( filteredItems ); | ||
} | ||
|
||
inputContainer.addEventListener( 'click', function () { | ||
input.focus(); | ||
showDropdown(); | ||
} ); | ||
|
||
icon.addEventListener( 'click', function ( event ) { | ||
event.stopPropagation(); | ||
input.focus(); | ||
showDropdown(); | ||
} ); | ||
|
||
input.addEventListener( 'input', function () { | ||
filterItems( this.value ); | ||
} ); | ||
|
||
input.addEventListener( 'focus', showDropdown ); | ||
|
||
document.addEventListener( 'click', function ( event ) { | ||
if ( ! container.contains( event.target ) ) { | ||
hideDropdown(); | ||
} | ||
} ); | ||
} ); |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ function setup() { | |
function() { | ||
add_action( 'admin_menu', __NAMESPACE__ . '\action_admin_menu' ); | ||
add_action( 'admin_enqueue_scripts', __NAMESPACE__ . '\admin_enqueue_scripts' ); | ||
add_action( 'wp_ajax_dt_load_connections_pull', __NAMESPACE__ . '\get_connections' ); | ||
add_action( 'load-distributor_page_pull', __NAMESPACE__ . '\setup_list_table' ); | ||
add_filter( 'set-screen-option', __NAMESPACE__ . '\set_screen_option', 10, 3 ); | ||
} | ||
|
@@ -425,51 +426,14 @@ function dashboard() { | |
?> | ||
<?php else : ?> | ||
<?php esc_html_e( 'Pull Content from', 'distributor' ); ?> | ||
<select id="pull_connections" name="connection" method="get"> | ||
<?php if ( ! empty( $internal_connection_group ) ) : ?> | ||
<?php if ( ! empty( $external_connection_group ) ) : ?> | ||
<optgroup label="<?php esc_attr_e( 'Network Connections', 'distributor' ); ?>"> | ||
<?php endif; ?> | ||
<?php | ||
foreach ( $internal_connection_group as $connection ) : | ||
$selected = false; | ||
$type = 'internal'; | ||
$name = untrailingslashit( $connection->site->domain . $connection->site->path ); | ||
$id = $connection->site->blog_id; | ||
|
||
if ( is_a( $connection_now, '\Distributor\InternalConnections\NetworkSiteConnection' ) && (int) $connection_now->site->blog_id === (int) $id ) { | ||
$selected = true; | ||
} | ||
?> | ||
<option <?php selected( true, $selected ); ?> data-pull-url="<?php echo esc_url( admin_url( 'admin.php?page=pull&connection_type=' . $type . '&connection_id=' . $id ) ); ?>"><?php echo esc_html( $name ); ?></option> | ||
<?php endforeach; ?> | ||
<?php if ( ! empty( $external_connection_group ) ) : ?> | ||
</optgroup> | ||
<?php endif; ?> | ||
<?php endif; ?> | ||
|
||
<?php if ( ! empty( $external_connection_group ) ) : ?> | ||
<?php if ( ! empty( $internal_connection_group ) ) : ?> | ||
<optgroup label="<?php esc_attr_e( 'External Connections', 'distributor' ); ?>"> | ||
<?php endif; ?> | ||
<?php | ||
foreach ( $external_connection_group as $connection ) : | ||
$type = 'external'; | ||
$selected = false; | ||
$name = $connection->name; | ||
$id = $connection->id; | ||
|
||
if ( is_a( $connection_now, '\Distributor\ExternalConnection' ) && (int) $connection_now->id === (int) $id ) { | ||
$selected = true; | ||
} | ||
?> | ||
<option <?php selected( true, $selected ); ?> data-pull-url="<?php echo esc_url( admin_url( 'admin.php?page=pull&connection_type=' . $type . '&connection_id=' . $id ) ); ?>"><?php echo esc_html( $name ); ?></option> | ||
<?php endforeach; ?> | ||
<?php if ( ! empty( $internal_connection_group ) ) : ?> | ||
</optgroup> | ||
<?php endif; ?> | ||
<?php endif; ?> | ||
</select> | ||
<div class="searchable-select"> | ||
<div class="searchable-select__input-container"> | ||
<input class="searchable-select__input" type="text" placeholder="Search..."> | ||
<span class="dashicons dashicons-arrow-down"></span> | ||
</div> | ||
<div class="searchable-select__dropdown"></div> | ||
</div> | ||
|
||
|
||
<?php | ||
$connection_now->pull_post_type = ''; | ||
|
@@ -624,3 +588,63 @@ function output_pull_errors() { | |
|
||
<?php | ||
} | ||
|
||
/** | ||
* Get connections for pull | ||
*/ | ||
function get_connections() { | ||
$connections = array(); | ||
|
||
if ( ! empty( \Distributor\Connections::factory()->get_registered()['networkblog'] ) ) { | ||
$sites = \Distributor\InternalConnections\NetworkSiteConnection::get_available_authorized_sites( 'pull' ); | ||
|
||
foreach ( $sites as $site_array ) { | ||
$internal_connection = new \Distributor\InternalConnections\NetworkSiteConnection( $site_array['site'] ); | ||
|
||
$connections[] = [ | ||
'id' => $internal_connection->site->blog_id, | ||
'name' => untrailingslashit( $internal_connection->site->domain . $internal_connection->site->path ), | ||
'url' => untrailingslashit( preg_replace( '#(https?:\/\/|www\.)#i', '', get_site_url( $internal_connection->site->blog_id ) ) ), | ||
Comment on lines
+606
to
+607
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm a little unclear why name and URL are using the same (or at least similar ) values. Although we don't display the name, it may be helpful to allow people to search by the name, so a search for |
||
'pull_url' => esc_url( admin_url( 'admin.php?page=pull&connection_type=internal&connection_id=' . $internal_connection->site->blog_id ) ), | ||
'type' => 'internal', | ||
]; | ||
} | ||
} | ||
|
||
$external_connections = new \WP_Query( | ||
array( | ||
'post_type' => 'dt_ext_connection', | ||
'fields' => 'ids', | ||
'no_found_rows' => true, | ||
'posts_per_page' => -1, | ||
) | ||
); | ||
|
||
foreach ( $external_connections->posts as $external_connection_id ) { | ||
$external_connection_type = get_post_meta( $external_connection_id, 'dt_external_connection_type', true ); | ||
|
||
if ( empty( \Distributor\Connections::factory()->get_registered()[ $external_connection_type ] ) ) { | ||
continue; | ||
} | ||
|
||
$external_connection_status = get_post_meta( $external_connection_id, 'dt_external_connections', true ); | ||
|
||
if ( empty( $external_connection_status ) || empty( $external_connection_status['can_get'] ) ) { | ||
continue; | ||
} | ||
|
||
$external_connection = \Distributor\ExternalConnection::instantiate( $external_connection_id ); | ||
|
||
if ( ! is_wp_error( $external_connection ) ) { | ||
$connections[] = [ | ||
'id' => $external_connection->id, | ||
'name' => $external_connection->name, | ||
'url' => $external_connection->base_url, | ||
'pull_url' => esc_url( admin_url( 'admin.php?page=pull&connection_type=external&connection_id=' . $external_connection->id ) ), | ||
'type' => 'external', | ||
]; | ||
} | ||
} | ||
|
||
wp_send_json_success( $connections ); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ function() { | |
add_action( 'wp_enqueue_scripts', __NAMESPACE__ . '\enqueue_scripts' ); | ||
add_filter( 'amp_dev_mode_element_xpaths', __NAMESPACE__ . '\add_element_xpaths' ); | ||
add_filter( 'script_loader_tag', __NAMESPACE__ . '\add_dev_mode_to_assets', 10, 2 ); | ||
add_action( 'wp_ajax_dt_load_connections', __NAMESPACE__ . '\get_connections' ); | ||
add_action( 'wp_ajax_dt_load_connections_push', __NAMESPACE__ . '\get_connections' ); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm assuming this is for clarity from We're probably stuck with the old name to ensure backward compatibility with the third party extensions and between different versions of the plugin. Otherwise we could go through a soft deprecation. |
||
add_action( 'wp_ajax_dt_push', __NAMESPACE__ . '\ajax_push' ); | ||
add_action( 'admin_bar_menu', __NAMESPACE__ . '\menu_button', 999 ); | ||
add_action( 'wp_footer', __NAMESPACE__ . '\menu_content', 10, 1 ); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typeo? If it's meant to be searchResults or similar then use the longer name for clarity.