refac: autocompletion

This commit is contained in:
Timothy Jaeryang Baek 2024-11-30 18:02:21 -08:00
parent 9e436fe6b0
commit c192475528

View File

@ -112,6 +112,10 @@ export const AIAutocompletion = Extension.create({
}))
}
// Start debounce logic for AI generation only if the cursor is at the end of the paragraph
if (selection.empty && $head.pos === $head.end()) {
// Set up debounce for AI generation
if (this.options.debounceTime !== null) {
clearTimeout(debounceTimer)
@ -123,8 +127,9 @@ export const AIAutocompletion = Extension.create({
const newState = view.state
const newNode = newState.doc.nodeAt(currentPos)
const currentIsAtEnd = newState.selection.$head.pos === newState.selection.$head.end()
// Check if the node still exists and is still a paragraph
if (newNode && newNode.type.name === 'paragraph') {
if (newNode && newNode.type.name === 'paragraph' && currentIsAtEnd) {
const prompt = newNode.textContent
if (prompt.trim() !== ''){
@ -147,6 +152,7 @@ export const AIAutocompletion = Extension.create({
}, this.options.debounceTime)
}
}
}
return false
},
handleDOMEvents: {
@ -185,6 +191,12 @@ export const AIAutocompletion = Extension.create({
}
return false;
},
mousedown: () => {
// Reset debounce timer on mouse click
clearTimeout(debounceTimer)
return false
},
},
},
}),