Refactor text input

This commit is contained in:
Isaac
2025-09-01 21:45:31 +02:00
parent 980ced37a8
commit 871072ba95
28 changed files with 616 additions and 359 deletions

View File

@@ -4340,6 +4340,16 @@ extension ChatControllerImpl {
return
}
self.openTodoEditing(messageId: messageId, itemId: itemId, append: append)
}, displayUndo: { [weak self] content in
guard let self else {
return
}
self.controllerInteraction?.displayUndo(content)
}, sendEmoji: { [weak self] text, attribute, immediately in
guard let self else {
return
}
self.controllerInteraction?.sendEmoji(text, attribute, immediately)
}, updateHistoryFilter: { [weak self] update in
guard let self else {
return