diff --git a/src/components/editable_cell.rs b/src/components/editable_cell.rs index 8d269a7..ecbfc4b 100644 --- a/src/components/editable_cell.rs +++ b/src/components/editable_cell.rs @@ -22,17 +22,19 @@ pub fn EditableCell( let new_value = match input_type_clone { InputType::Text => event_target_value(&e), InputType::TextArea => event_target_value(&e), + InputType::Search => event_target_value(&e), }; log!("Input event: {}", new_value); - set_local_value.set(new_value); + set_local_value.set(new_value.clone()); + on_input(new_value); }; - // Commit the input value on blur or enter - let commit_input = move || { - let value = local_value.get(); - log!("Committing input: {}", value); - on_input(value); - }; + // // Commit the input value on blur or enter + // let commit_input = move || { + // let value = local_value.get(); + // log!("Committing input: {}", value); + // on_input(value); + // }; // Focus handling let handle_focus = { @@ -49,7 +51,7 @@ pub fn EditableCell( let handle_blur = move |_| { log!("Focus lost"); set_focused_cell.set(None); - commit_input(); + // commit_input(); if let Some(on_blur) = &on_blur { on_blur.call(()); } @@ -58,10 +60,23 @@ pub fn EditableCell( // Update input field value when focused cell changes create_effect(move |_| { if focused_cell.get().as_deref() == Some(key.as_str()) { - log!("Setting focus for key: {}", key); - if let Some(input) = input_ref.get() { - let _ = input.focus(); - } + log!("Persisting focus for key: {}", key); + let input_ref = input_ref.clone(); + let key_clone = key.clone(); + + // Use requestAnimationFrame for better focus timing + spawn_local(async move { + for _ in 0..3 { // Retry up to 3 times + gloo_timers::future::sleep(std::time::Duration::from_millis(10)).await; + if let Some(input) = input_ref.get() { + let _ = input.focus(); + if document().active_element().as_ref() == Some(input.as_ref() as &web_sys::Element) { + break; + } + } + log!("Focus retry for {}", key_clone); + } + }); } }); @@ -88,6 +103,17 @@ pub fn EditableCell( node_ref=textarea_ref class="editable-cell-input" /> + }.into_view(), + InputType::Search => view! { + }.into_view() }} @@ -98,4 +124,5 @@ pub fn EditableCell( pub enum InputType { Text, TextArea, + Search } \ No newline at end of file diff --git a/src/components/items_list.rs b/src/components/items_list.rs index 8a96598..5e32b63 100644 --- a/src/components/items_list.rs +++ b/src/components/items_list.rs @@ -814,108 +814,92 @@ pub fn ItemsList( {match property { "Name" => view! { -
+
- {move || { if *show_suggestions.get().get(&format!("name-{}", index)).unwrap_or(&false) { - log!("Rendering suggestions list"); view! { -
    - {move || { - let suggestions = wikidata_suggestions.get() - .get(&format!("name-{}", index)) - .cloned() - .unwrap_or_default(); - log!("Suggestions for cell {}: {:?}", index, suggestions); - suggestions.into_iter().map(|suggestion| { - let label_for_click = suggestion.label.clone(); - let label_for_display = suggestion.label.clone(); - let description_for_click = suggestion.description.clone().unwrap_or_default(); - let description_for_display = suggestion.description.clone().unwrap_or_default(); - let id = suggestion.id.clone(); - view! { -
  • +
      + {move || { + let suggestions = wikidata_suggestions.get() + .get(&format!("name-{}", index)) + .cloned() + .unwrap_or_default(); + suggestions.into_iter().map(|suggestion| { + let label = suggestion.label.clone(); + let description = suggestion.description.clone().unwrap_or_default(); + let id = suggestion.id.clone(); - // Fetch additional properties from Wikidata - let wikidata_id = id.clone(); - spawn_local(async move { - let properties = fetch_item_properties(&wikidata_id, set_property_labels.clone(), property_cache.clone(), set_property_cache.clone(), property_labels.clone()).await; - // log!("Fetched properties for Wikidata ID {}: {:?}", wikidata_id, properties); - - // Populate the custom properties for the new item - set_items.update(|items| { - if let Some(item) = items.iter_mut().find(|item| item.wikidata_id.as_ref() == Some(&wikidata_id)) { - for (property, value) in properties { - item.custom_properties.insert(property, value); + // Clone values for the closure + let closure_label = label.clone(); + let closure_description = description.clone(); + let closure_id = id.clone(); + + view! { +
    • - { format!("{} - {}", label_for_display, description_for_display) } -
    • - } - }).collect::>() - }} + }); + set_show_suggestions.update(|s| { + s.insert(format!("name-{}", index), false); + }); + } + > +
      {label}
      +
      {description}
      + //
      {id}
      + + } + }).collect::>() + }}
    +
} } else { - log!("Suggestions list hidden"); - view! { - - } + view! {
} } }}
}.into_view(), + "Description" => view! {