assistant panel: Intermediate fix for focus problems (#15674)

This is an intermediate fix for the focus problems in the assistant
panel. Intermediate because I'm going to shred the whole
ConfigurationView now and replace the tabs inside with a list.


Release Notes:

- N/A
This commit is contained in:
Thorsten Ball 2024-08-02 11:05:30 +02:00 committed by GitHub
parent b4dcd6d394
commit e4608e7f12
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 165 additions and 90 deletions

View file

@ -943,7 +943,7 @@ impl AssistantPanel {
}); });
} else { } else {
let configuration = cx.new_view(|cx| { let configuration = cx.new_view(|cx| {
let mut view = ConfigurationView::new(self.focus_handle(cx), cx); let mut view = ConfigurationView::new(cx);
if let Some(provider) = provider { if let Some(provider) = provider {
view.set_active_tab(provider, cx); view.set_active_tab(provider, cx);
} }
@ -3044,11 +3044,6 @@ impl Item for ContextHistory {
} }
} }
pub struct ConfigurationView {
fallback_handle: FocusHandle,
active_tab: Option<ActiveTab>,
}
struct ActiveTab { struct ActiveTab {
provider: Arc<dyn LanguageModelProvider>, provider: Arc<dyn LanguageModelProvider>,
configuration_prompt: AnyView, configuration_prompt: AnyView,
@ -3067,12 +3062,37 @@ impl ActiveTab {
} }
} }
impl ConfigurationView { pub struct ConfigurationView {
fn new(fallback_handle: FocusHandle, _cx: &mut ViewContext<Self>) -> Self { focus_handle: FocusHandle,
Self { active_tab: Option<ActiveTab>,
fallback_handle,
active_tab: None,
} }
impl ConfigurationView {
fn new(cx: &mut ViewContext<Self>) -> Self {
let focus_handle = cx.focus_handle();
cx.on_focus(&focus_handle, |this, cx| {
if let Some(focus_handle) = this
.active_tab
.as_ref()
.and_then(|tab| tab.focus_handle.as_ref())
{
focus_handle.focus(cx);
}
})
.detach();
let mut this = Self {
focus_handle,
active_tab: None,
};
let providers = LanguageModelRegistry::read_global(cx).providers();
if !providers.is_empty() {
this.set_active_tab(providers[0].clone(), cx);
}
this
} }
fn set_active_tab( fn set_active_tab(
@ -3085,7 +3105,7 @@ impl ConfigurationView {
if let Some(focus_handle) = &focus_handle { if let Some(focus_handle) = &focus_handle {
focus_handle.focus(cx); focus_handle.focus(cx);
} else { } else {
self.fallback_handle.focus(cx); self.focus_handle.focus(cx);
} }
let load_credentials = provider.authenticate(cx); let load_credentials = provider.authenticate(cx);
@ -3224,11 +3244,6 @@ impl ConfigurationView {
impl Render for ConfigurationView { impl Render for ConfigurationView {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement { fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let providers = LanguageModelRegistry::read_global(cx).providers(); let providers = LanguageModelRegistry::read_global(cx).providers();
if self.active_tab.is_none() && !providers.is_empty() {
self.set_active_tab(providers[0].clone(), cx);
}
let tabs = h_flex().mx_neg_1().gap_3().children( let tabs = h_flex().mx_neg_1().gap_3().children(
providers providers
.iter() .iter()
@ -3237,6 +3252,7 @@ impl Render for ConfigurationView {
v_flex() v_flex()
.id("assistant-configuration-view") .id("assistant-configuration-view")
.track_focus(&self.focus_handle)
.w_full() .w_full()
.min_h_full() .min_h_full()
.p(Spacing::XXLarge.rems(cx)) .p(Spacing::XXLarge.rems(cx))
@ -3258,7 +3274,12 @@ impl Render for ConfigurationView {
.color(Color::Muted), .color(Color::Muted),
) )
.child(tabs) .child(tabs)
.children(self.render_active_tab_view(cx)), .when(self.active_tab.is_some(), |this| {
this.children(self.render_active_tab_view(cx))
})
.when(self.active_tab.is_none(), |this| {
this.child(Label::new("No providers configured").color(Color::Warning))
}),
) )
} }
} }
@ -3271,10 +3292,7 @@ impl EventEmitter<ConfigurationViewEvent> for ConfigurationView {}
impl FocusableView for ConfigurationView { impl FocusableView for ConfigurationView {
fn focus_handle(&self, _: &AppContext) -> FocusHandle { fn focus_handle(&self, _: &AppContext) -> FocusHandle {
self.active_tab self.focus_handle.clone()
.as_ref()
.and_then(|tab| tab.focus_handle.clone())
.unwrap_or(self.fallback_handle.clone())
} }
} }

View file

@ -383,18 +383,22 @@ impl LanguageModel for AnthropicModel {
} }
struct ConfigurationView { struct ConfigurationView {
focus_handle: FocusHandle,
api_key_editor: View<Editor>, api_key_editor: View<Editor>,
state: gpui::Model<State>, state: gpui::Model<State>,
} }
impl FocusableView for ConfigurationView {
fn focus_handle(&self, cx: &AppContext) -> FocusHandle {
self.api_key_editor.read(cx).focus_handle(cx)
}
}
impl ConfigurationView { impl ConfigurationView {
fn new(state: gpui::Model<State>, cx: &mut WindowContext) -> Self { fn new(state: gpui::Model<State>, cx: &mut ViewContext<Self>) -> Self {
let focus_handle = cx.focus_handle();
cx.on_focus(&focus_handle, |this, cx| {
if this.should_render_editor(cx) {
this.api_key_editor.read(cx).focus_handle(cx).focus(cx)
}
})
.detach();
Self { Self {
api_key_editor: cx.new_view(|cx| { api_key_editor: cx.new_view(|cx| {
let mut editor = Editor::single_line(cx); let mut editor = Editor::single_line(cx);
@ -404,6 +408,7 @@ impl ConfigurationView {
); );
editor editor
}), }),
focus_handle,
state, state,
} }
} }
@ -453,6 +458,16 @@ impl ConfigurationView {
}, },
) )
} }
fn should_render_editor(&self, cx: &mut ViewContext<Self>) -> bool {
!self.state.read(cx).is_authenticated()
}
}
impl FocusableView for ConfigurationView {
fn focus_handle(&self, _cx: &AppContext) -> FocusHandle {
self.focus_handle.clone()
}
} }
impl Render for ConfigurationView { impl Render for ConfigurationView {
@ -464,26 +479,10 @@ impl Render for ConfigurationView {
"Paste your Anthropic API key below and hit enter to use the assistant:", "Paste your Anthropic API key below and hit enter to use the assistant:",
]; ];
if self.state.read(cx).is_authenticated() { if self.should_render_editor(cx) {
h_flex()
.size_full()
.justify_between()
.child(
h_flex()
.gap_2()
.child(Indicator::dot().color(Color::Success))
.child(Label::new("API Key configured").size(LabelSize::Small)),
)
.child(
Button::new("reset-key", "Reset key")
.icon(Some(IconName::Trash))
.icon_size(IconSize::Small)
.icon_position(IconPosition::Start)
.on_click(cx.listener(|this, _, cx| this.reset_api_key(cx))),
)
.into_any()
} else {
v_flex() v_flex()
.id("anthropic-configuration-view")
.track_focus(&self.focus_handle)
.size_full() .size_full()
.on_action(cx.listener(Self::save_api_key)) .on_action(cx.listener(Self::save_api_key))
.children( .children(
@ -506,6 +505,26 @@ impl Render for ConfigurationView {
.size(LabelSize::Small), .size(LabelSize::Small),
) )
.into_any() .into_any()
} else {
h_flex()
.id("anthropic-configuration-view")
.track_focus(&self.focus_handle)
.size_full()
.justify_between()
.child(
h_flex()
.gap_2()
.child(Indicator::dot().color(Color::Success))
.child(Label::new("API Key configured").size(LabelSize::Small)),
)
.child(
Button::new("reset-key", "Reset key")
.icon(Some(IconName::Trash))
.icon_size(IconSize::Small)
.icon_position(IconPosition::Start)
.on_click(cx.listener(|this, _, cx| this.reset_api_key(cx))),
)
.into_any()
} }
} }
} }

View file

@ -292,12 +292,22 @@ impl LanguageModel for GoogleLanguageModel {
} }
struct ConfigurationView { struct ConfigurationView {
focus_handle: FocusHandle,
api_key_editor: View<Editor>, api_key_editor: View<Editor>,
state: gpui::Model<State>, state: gpui::Model<State>,
} }
impl ConfigurationView { impl ConfigurationView {
fn new(state: gpui::Model<State>, cx: &mut WindowContext) -> Self { fn new(state: gpui::Model<State>, cx: &mut ViewContext<Self>) -> Self {
let focus_handle = cx.focus_handle();
cx.on_focus(&focus_handle, |this, cx| {
if this.should_render_editor(cx) {
this.api_key_editor.read(cx).focus_handle(cx).focus(cx)
}
})
.detach();
Self { Self {
api_key_editor: cx.new_view(|cx| { api_key_editor: cx.new_view(|cx| {
let mut editor = Editor::single_line(cx); let mut editor = Editor::single_line(cx);
@ -305,6 +315,7 @@ impl ConfigurationView {
editor editor
}), }),
state, state,
focus_handle,
} }
} }
@ -362,11 +373,15 @@ impl ConfigurationView {
}, },
) )
} }
fn should_render_editor(&self, cx: &mut ViewContext<Self>) -> bool {
!self.state.read(cx).is_authenticated()
}
} }
impl FocusableView for ConfigurationView { impl FocusableView for ConfigurationView {
fn focus_handle(&self, cx: &AppContext) -> FocusHandle { fn focus_handle(&self, _cx: &AppContext) -> FocusHandle {
self.api_key_editor.read(cx).focus_handle(cx) self.focus_handle.clone()
} }
} }
@ -379,26 +394,10 @@ impl Render for ConfigurationView {
"Paste your Google AI API key below and hit enter to use the assistant:", "Paste your Google AI API key below and hit enter to use the assistant:",
]; ];
if self.state.read(cx).is_authenticated() { if self.should_render_editor(cx) {
h_flex()
.size_full()
.justify_between()
.child(
h_flex()
.gap_2()
.child(Indicator::dot().color(Color::Success))
.child(Label::new("API Key configured").size(LabelSize::Small)),
)
.child(
Button::new("reset-key", "Reset key")
.icon(Some(IconName::Trash))
.icon_size(IconSize::Small)
.icon_position(IconPosition::Start)
.on_click(cx.listener(|this, _, cx| this.reset_api_key(cx))),
)
.into_any()
} else {
v_flex() v_flex()
.id("google-ai-configuration-view")
.track_focus(&self.focus_handle)
.size_full() .size_full()
.on_action(cx.listener(Self::save_api_key)) .on_action(cx.listener(Self::save_api_key))
.children( .children(
@ -421,6 +420,26 @@ impl Render for ConfigurationView {
.size(LabelSize::Small), .size(LabelSize::Small),
) )
.into_any() .into_any()
} else {
h_flex()
.id("google-ai-configuration-view")
.track_focus(&self.focus_handle)
.size_full()
.justify_between()
.child(
h_flex()
.gap_2()
.child(Indicator::dot().color(Color::Success))
.child(Label::new("API Key configured").size(LabelSize::Small)),
)
.child(
Button::new("reset-key", "Reset key")
.icon(Some(IconName::Trash))
.icon_size(IconSize::Small)
.icon_position(IconPosition::Start)
.on_click(cx.listener(|this, _, cx| this.reset_api_key(cx))),
)
.into_any()
} }
} }
} }

View file

@ -302,12 +302,22 @@ pub fn count_open_ai_tokens(
} }
struct ConfigurationView { struct ConfigurationView {
focus_handle: FocusHandle,
api_key_editor: View<Editor>, api_key_editor: View<Editor>,
state: gpui::Model<State>, state: gpui::Model<State>,
} }
impl ConfigurationView { impl ConfigurationView {
fn new(state: gpui::Model<State>, cx: &mut WindowContext) -> Self { fn new(state: gpui::Model<State>, cx: &mut ViewContext<Self>) -> Self {
let focus_handle = cx.focus_handle();
cx.on_focus(&focus_handle, |this, cx| {
if this.should_render_editor(cx) {
this.api_key_editor.read(cx).focus_handle(cx).focus(cx)
}
})
.detach();
Self { Self {
api_key_editor: cx.new_view(|cx| { api_key_editor: cx.new_view(|cx| {
let mut editor = Editor::single_line(cx); let mut editor = Editor::single_line(cx);
@ -318,6 +328,7 @@ impl ConfigurationView {
editor editor
}), }),
state, state,
focus_handle,
} }
} }
@ -375,11 +386,15 @@ impl ConfigurationView {
}, },
) )
} }
fn should_render_editor(&self, cx: &mut ViewContext<Self>) -> bool {
!self.state.read(cx).is_authenticated()
}
} }
impl FocusableView for ConfigurationView { impl FocusableView for ConfigurationView {
fn focus_handle(&self, cx: &AppContext) -> FocusHandle { fn focus_handle(&self, _cx: &AppContext) -> FocusHandle {
self.api_key_editor.read(cx).focus_handle(cx) self.focus_handle.clone()
} }
} }
@ -394,26 +409,10 @@ impl Render for ConfigurationView {
"Paste your OpenAI API key below and hit enter to use the assistant:", "Paste your OpenAI API key below and hit enter to use the assistant:",
]; ];
if self.state.read(cx).is_authenticated() { if self.should_render_editor(cx) {
h_flex()
.size_full()
.justify_between()
.child(
h_flex()
.gap_2()
.child(Indicator::dot().color(Color::Success))
.child(Label::new("API Key configured").size(LabelSize::Small)),
)
.child(
Button::new("reset-key", "Reset key")
.icon(Some(IconName::Trash))
.icon_size(IconSize::Small)
.icon_position(IconPosition::Start)
.on_click(cx.listener(|this, _, cx| this.reset_api_key(cx))),
)
.into_any()
} else {
v_flex() v_flex()
.id("openai-configuration-view")
.track_focus(&self.focus_handle)
.size_full() .size_full()
.on_action(cx.listener(Self::save_api_key)) .on_action(cx.listener(Self::save_api_key))
.children( .children(
@ -436,6 +435,26 @@ impl Render for ConfigurationView {
.size(LabelSize::Small), .size(LabelSize::Small),
) )
.into_any() .into_any()
} else {
h_flex()
.id("openai-configuration-view")
.track_focus(&self.focus_handle)
.size_full()
.justify_between()
.child(
h_flex()
.gap_2()
.child(Indicator::dot().color(Color::Success))
.child(Label::new("API Key configured").size(LabelSize::Small)),
)
.child(
Button::new("reset-key", "Reset key")
.icon(Some(IconName::Trash))
.icon_size(IconSize::Small)
.icon_position(IconPosition::Start)
.on_click(cx.listener(|this, _, cx| this.reset_api_key(cx))),
)
.into_any()
} }
} }
} }