about summary refs log tree commit diff
path: root/src/ui/window.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/window.rs')
-rw-r--r--src/ui/window.rs32
1 files changed, 30 insertions, 2 deletions
diff --git a/src/ui/window.rs b/src/ui/window.rs
index 2270711..8972ed9 100644
--- a/src/ui/window.rs
+++ b/src/ui/window.rs
@@ -115,6 +115,8 @@ glib::wrapper! {
 }
 
 impl FurtheranceWindow {
+    const MIN_PREFIX_LENGTH: i32 = 3;
+
     pub fn new(app: &Application) -> Self {
         glib::Object::builder()
             .property("application", Some(app))
@@ -182,6 +184,13 @@ impl FurtheranceWindow {
         imp.start_button.set_sensitive(false);
         imp.start_button.add_css_class("suggested-action");
         self.refresh_timer();
+
+        let task_autocomplete = gtk::EntryCompletion::new();
+        task_autocomplete.set_text_column(0);
+        task_autocomplete.set_minimum_key_length(FurtheranceWindow::MIN_PREFIX_LENGTH);
+        task_autocomplete.set_match_func(|_ac, _s, _it| { true });
+        imp.task_input.set_completion(Some(&task_autocomplete));
+
         imp.task_input.grab_focus();
 
         if settings_manager::get_bool("autosave") {
@@ -199,12 +208,19 @@ impl FurtheranceWindow {
             .connect_changed(clone!(@weak self as this => move |task_input| {
                 let imp2 = imp::FurtheranceWindow::from_obj(&this);
                 let task_input_text = task_input.text();
-                let split_tags: Vec<&str> = task_input_text.trim().split('#').collect();
-                if split_tags[0].trim().is_empty() {
+                let mut split_tags: Vec<String> = task_input_text.split('#').map(|tag| String::from(tag.trim())).collect();
+                let task_name = split_tags.remove(0);
+                if task_name.is_empty() {
                     imp2.start_button.set_sensitive(false);
                 } else {
                     imp2.start_button.set_sensitive(true);
                 }
+
+                if task_input.text().len() >= FurtheranceWindow::MIN_PREFIX_LENGTH.try_into().unwrap() {
+                    let task_autocomplete = task_input.completion().unwrap();
+                    let model = Self::update_list_model(task_name.to_string(), split_tags).unwrap();
+                    task_autocomplete.set_model(Some(&model));
+                }
             }));
 
         imp.start_button.connect_clicked(clone!(@weak self as this => move |button| {
@@ -528,6 +544,18 @@ impl FurtheranceWindow {
         imp.task_input.set_activates_default(true);
     }
 
+    fn update_list_model(task_name: String, tag_list: Vec<String>) -> Result<gtk::ListStore, anyhow::Error> {
+        let col_types: [glib::Type; 1] = [glib::Type::STRING];
+        let mut task_list = database::get_list_by_name_and_tags(task_name, tag_list)?;
+        task_list.dedup_by(|a, b| a.task_name == b.task_name && a.tags == b.tags);
+        let store = gtk::ListStore::new(&col_types);
+
+        for task in task_list {
+            store.set(&store.append(), &[(0, &task.to_string())]);
+        }
+        Ok(store)
+    }
+
     fn get_idle_time(&self) -> Result<u64, Box<dyn std::error::Error>> {
         let c = Connection::new_session()?;