Skip to content
Snippets Groups Projects
Commit d07acd42 authored by Mike Greiling's avatar Mike Greiling
Browse files

add a space after selecting a dropdown item

parent 37382d32
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -39,6 +39,7 @@
}
 
this.dismissDropdown();
this.dispatchInputEvent();
}
}
 
Loading
Loading
Loading
Loading
@@ -61,11 +61,19 @@
const word = `${tokenName}:${tokenValue}`;
 
// Get the string to replace
const selectionStart = input.selectionStart;
let newCaretPosition = input.selectionStart;
const { left, right } = gl.DropdownUtils.getInputSelectionPosition(input);
 
input.value = `${inputValue.substr(0, left)}${word}${inputValue.substr(right)}`;
gl.FilteredSearchDropdownManager.updateInputCaretPosition(selectionStart, input);
// If we have added a tokenValue at the end of the input,
// add a space and set selection to the end
if (right >= inputValue.length && tokenValue !== '') {
input.value += ' ';
newCaretPosition = input.value.length;
}
gl.FilteredSearchDropdownManager.updateInputCaretPosition(newCaretPosition, input);
}
 
static updateInputCaretPosition(selectionStart, input) {
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment