43 lines
1012 B
TypeScript
43 lines
1012 B
TypeScript
import type Config from '@typing/config';
|
|
import type GPTAnswer from '@typing/gptAnswer';
|
|
|
|
/**
|
|
* Handle textbox
|
|
* @param config
|
|
* @param inputList
|
|
* @param gptAnswer
|
|
* @returns
|
|
*/
|
|
function handleTextbox(
|
|
config: Config,
|
|
inputList: NodeListOf<HTMLElement>,
|
|
gptAnswer: GPTAnswer
|
|
): boolean {
|
|
const input = inputList[0] as HTMLInputElement | HTMLTextAreaElement;
|
|
|
|
if (
|
|
inputList.length !== 1 || // for now we don't handle many input text
|
|
(input.tagName !== 'TEXTAREA' && input.type !== 'text')
|
|
) {
|
|
return false;
|
|
}
|
|
|
|
if (config.typing) {
|
|
let index = 0;
|
|
input.addEventListener('keydown', function (event: Event) {
|
|
event.preventDefault();
|
|
if ((<KeyboardEvent>event).key === 'Backspace') {
|
|
index = gptAnswer.response.length + 1;
|
|
}
|
|
if (index > gptAnswer.response.length) return;
|
|
input.value = gptAnswer.response.slice(0, ++index);
|
|
});
|
|
} else {
|
|
input.value = gptAnswer.response;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
export default handleTextbox;
|