Skip to content
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

Fix : Autocomplete Suggestions in File Editor #8598

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions src/js/_enqueues/wp/code-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,15 @@ if ( 'undefined' === typeof window.wp.codeEditor ) {
return;
}

// Don't trigger autocomplete on arrow keys for PHP files to prevent dropdown reset issue
if (
'php' === codemirror.options.mode &&
( event.keyCode === 38 || event.keyCode === 40 ) &&
codemirror.state.completionActive
) {
return;
}

// Prevent autocompletion in string literals or comments.
token = codemirror.getTokenAt( codemirror.getCursor() );
if ( 'string' === token.type || 'comment' === token.type ) {
Expand Down Expand Up @@ -340,6 +349,60 @@ if ( 'undefined' === typeof window.wp.codeEditor ) {
// Facilitate tabbing out of the editor.
configureTabbing( codemirror, settings );

// Fix for PHP autocompletion dropdown navigation issues
if ( 'php' === codemirror.options.mode ) {
// Create a wrapper for the showHint method that fixes PHP-specific issues
var originalShowHint = codemirror.showHint;
codemirror.showHint = function ( options ) {
// Call the original showHint method
var result = originalShowHint.call( this, options );

// Setup a keydown handler that will run before the normal CodeMirror handlers
if ( ! codemirror._phpAutocompleteFixAdded ) {
codemirror._phpAutocompleteFixAdded = true;

// Add event listener with high priority
codemirror.on( 'keydown', function ( cm, event ) {
// Only handle Up/Down keys when autocomplete is active
if (
( event.keyCode !== 38 && event.keyCode !== 40 ) ||
! codemirror.state.completionActive ||
! codemirror.state.completionActive.widget
) {
return;
}

var widget = codemirror.state.completionActive.widget;
var currentPos = widget.selectedHint;
var listLength = widget.data.list.length;

// For Up key at positions other than first item
if ( event.keyCode === 38 && currentPos > 0 ) {
// Manually change the active item and prevent default handling
widget.changeActive( currentPos - 1 );
event.preventDefault();
event.stopPropagation();
return;
}

// For Down key at positions other than last item
if (
event.keyCode === 40 &&
currentPos < listLength - 1
) {
// Manually change the active item and prevent default handling
widget.changeActive( currentPos + 1 );
event.preventDefault();
event.stopPropagation();
return;
}
} );
}

return result;
};
}

return instance;
};

Expand Down
Loading