diff --git a/src/components/items_list.rs b/src/components/items_list.rs index 24e4fb1..2acffa0 100644 --- a/src/components/items_list.rs +++ b/src/components/items_list.rs @@ -352,32 +352,44 @@ pub fn ItemsList( let (wikidata_suggestions, set_wikidata_suggestions) = create_signal(HashMap::>::new()); // Function to fetch Wikidata suggestions - let fetch_wikidata_suggestions = move |key: String, query: String| { - log!("Fetching suggestions for key: {}, query: {}", key, query); - spawn_local(async move { - if query.is_empty() { - set_wikidata_suggestions.update(|suggestions| { - suggestions.remove(&key); - }); - return; - } + let fetch_wikidata_suggestions = { + let mut debounce_timers = std::collections::HashMap::::new(); + Rc::new(move |key: String, query: String| { + log!("Fetching suggestions for key: {}, query: {}", key, query); - let url = format!( - "https://www.wikidata.org/w/api.php?action=wbsearchentities&search={}&language=en&limit=5&format=json&origin=*", - query - ); + // Cancel previous timer for this key + debounce_timers.remove(&key); - match gloo_net::http::Request::get(&url).send().await { - Ok(response) => { - if let Ok(data) = response.json::().await { - set_wikidata_suggestions.update(|suggestions| { - suggestions.insert(key, data.search); - }); - } + // Store new timer + let timer = gloo_timers::future::TimeoutFuture::new(300); + debounce_timers.insert(key.clone(), timer); + + spawn_local(async move { + timer.await; + if query.is_empty() { + set_wikidata_suggestions.update(|suggestions| { + suggestions.remove(&key); + }); + return; } - Err(_) => log!("Failed to fetch Wikidata suggestions"), - } - }); + + let url = format!( + "https://www.wikidata.org/w/api.php?action=wbsearchentities&search={}&language=en&limit=5&format=json&origin=*", + query + ); + + match gloo_net::http::Request::get(&url).send().await { + Ok(response) => { + if let Ok(data) = response.json::().await { + set_wikidata_suggestions.update(|suggestions| { + suggestions.insert(key, data.search); + }); + } + } + Err(_) => log!("Failed to fetch Wikidata suggestions"), + } + }); + }) }; //function to fetch properties @@ -724,6 +736,7 @@ pub fn ItemsList( { property } {move || items.get().iter().enumerate().map(|(index, item)| { let update_item_clone = Arc::clone(&update_item_cloned); + let fetch_wikidata_suggestions_clone = Rc::clone(&fetch_wikidata_suggestions); view! { {match property { @@ -732,8 +745,13 @@ pub fn ItemsList( - {move || { if *show_suggestions.get().get(&format!("name-{}", index)).unwrap_or(&false) { log!("Rendering suggestions list");