interaction with the prompts selector improved
This commit is contained in:
parent
edf78fffdc
commit
189e11e987
1 changed files with 73 additions and 39 deletions
|
|
@ -64,7 +64,7 @@ switch (message.command) {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'searchPrompt':
|
case 'searchPrompt':
|
||||||
searchPrompt(message._prompts_data, message.tab_type);
|
searchPrompt(message._prompts_data, message.tabId, message._tab_type);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
@ -74,7 +74,7 @@ switch (message.command) {
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
async function searchPrompt(allPrompts, tabType){
|
async function searchPrompt(allPrompts, tabId, tabType){
|
||||||
console.log(">>>>>>>>>>>>>> allPrompts: " + JSON.stringify(allPrompts));
|
console.log(">>>>>>>>>>>>>> allPrompts: " + JSON.stringify(allPrompts));
|
||||||
console.log(">>>>>>>>>>>>>>> tabType: " + tabType);
|
console.log(">>>>>>>>>>>>>>> tabType: " + tabType);
|
||||||
const banner = document.createElement('div');
|
const banner = document.createElement('div');
|
||||||
|
|
@ -128,6 +128,16 @@ async function searchPrompt(allPrompts, tabType){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Prepend numbers to the first 10 items
|
||||||
|
Array.from(filteredData).slice(0, 10).forEach((item, index) => {
|
||||||
|
const number = (index < 9) ? (index + 1).toString() : '0';
|
||||||
|
// Check if the number is already prepended to avoid duplication
|
||||||
|
if (!item.numberPrepended) {
|
||||||
|
item.label = `${number}. ${item.label}`;
|
||||||
|
item.numberPrepended = 'true'; // Mark as prepended
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// Create a div for each filtered result
|
// Create a div for each filtered result
|
||||||
filteredData.forEach(item => {
|
filteredData.forEach(item => {
|
||||||
const itemDiv = document.createElement('div');
|
const itemDiv = document.createElement('div');
|
||||||
|
|
@ -152,11 +162,33 @@ async function searchPrompt(allPrompts, tabType){
|
||||||
|
|
||||||
// Add a keydown event listener to handle arrow navigation and selection
|
// Add a keydown event listener to handle arrow navigation and selection
|
||||||
input.addEventListener('keydown', function (e) {
|
input.addEventListener('keydown', function (e) {
|
||||||
|
// Handle Escape key to remove the banner
|
||||||
|
if (e.key === 'Escape') {
|
||||||
|
e.preventDefault(); // Prevent any default behavior
|
||||||
|
banner.remove(); // Remove the banner
|
||||||
|
return; // Exit the handler
|
||||||
|
}
|
||||||
|
|
||||||
const items = autocompleteList.getElementsByClassName('mzta_autocomplete-item');
|
const items = autocompleteList.getElementsByClassName('mzta_autocomplete-item');
|
||||||
if ((autocompleteList.style.display === 'none' || items.length === 0) && (e.key !== 'Enter')) {
|
if ((autocompleteList.style.display === 'none' || items.length === 0)
|
||||||
|
&& (e.key !== 'Enter')
|
||||||
|
&& !['1','2','3','4','5','6','7','8','9','0'].includes(e.key))
|
||||||
|
{
|
||||||
return; // Do nothing if the autocomplete list is not visible
|
return; // Do nothing if the autocomplete list is not visible
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Handle number key presses (1-9,0) to select the corresponding item directly
|
||||||
|
if (['1','2','3','4','5','6','7','8','9','0'].includes(e.key)) {
|
||||||
|
// Map '1' to index 0, '2' to 1, ..., '9' to 8, '0' to 9
|
||||||
|
const numIndex = (e.key === '0') ? 9 : parseInt(e.key, 10) - 1;
|
||||||
|
if (items[numIndex]) {
|
||||||
|
e.preventDefault(); // Prevent any default behavior
|
||||||
|
// Dispatch a mousedown event to simulate a click/select action
|
||||||
|
items[numIndex].dispatchEvent(new Event('mousedown'));
|
||||||
|
return; // Exit after handling the number key
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (e.key === 'ArrowDown') {
|
if (e.key === 'ArrowDown') {
|
||||||
// Navigate down the list
|
// Navigate down the list
|
||||||
currentFocus++;
|
currentFocus++;
|
||||||
|
|
@ -174,7 +206,7 @@ async function searchPrompt(allPrompts, tabType){
|
||||||
if (selectedId) {
|
if (selectedId) {
|
||||||
// If an item is already selected, call sendPrompt with the selected ID
|
// If an item is already selected, call sendPrompt with the selected ID
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
sendPrompt(selectedId); // Call your sendPrompt function
|
sendPrompt(selectedId, tabId); // Call your sendPrompt function
|
||||||
banner.remove(); // Optionally remove the banner after sending the prompt
|
banner.remove(); // Optionally remove the banner after sending the prompt
|
||||||
} else {
|
} else {
|
||||||
// If no item is selected yet, select the highlighted item
|
// If no item is selected yet, select the highlighted item
|
||||||
|
|
@ -217,11 +249,13 @@ async function searchPrompt(allPrompts, tabType){
|
||||||
|
|
||||||
document.body.insertBefore(banner, document.body.firstChild);
|
document.body.insertBefore(banner, document.body.firstChild);
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
input.focus();
|
|
||||||
input.dispatchEvent(new InputEvent('input', { bubbles: true }));
|
input.dispatchEvent(new InputEvent('input', { bubbles: true }));
|
||||||
|
input.focus();
|
||||||
}, 100);
|
}, 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
function sendPrompt(prompt_id){
|
|
||||||
|
function sendPrompt(prompt_id, tabId){
|
||||||
console.log(">>>>>>>>>>>>> [ThunderAI] sendPrompt: " + prompt_id);
|
console.log(">>>>>>>>>>>>> [ThunderAI] sendPrompt: " + prompt_id);
|
||||||
|
browser.runtime.sendMessage({command: "shortcut_do_prompt", tabId: tabId, promptId: prompt_id});
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue