From d74e28544767545f8737550b826676526cd673ba Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Mon, 27 May 2024 10:23:19 -0500 Subject: [PATCH] Implement creating TODO items from messages --- src/components/Item.vue | 13 +++++-- src/components/PanelTitle.vue | 2 +- src/components/Thread.vue | 73 ++++++++++++++++++++++++++--------- src/state.ts | 47 ++++++++++++++++++++-- src/{utils.ts => utils.tsx} | 57 ++++++++++++++++++++++++++- 5 files changed, 163 insertions(+), 29 deletions(-) rename src/{utils.ts => utils.tsx} (72%) diff --git a/src/components/Item.vue b/src/components/Item.vue index 37cee5b..5cb88f0 100644 --- a/src/components/Item.vue +++ b/src/components/Item.vue @@ -3,7 +3,9 @@
- {{ item.threads[0].preview }} + + + {{ item.threads[0].count }} @@ -30,7 +32,9 @@
- {{ thread.preview }} + + + {{ thread.count }}
@@ -45,12 +49,13 @@