Use Picker in ThemeSelector

This commit is contained in:
Max Brunsfeld 2022-04-14 16:51:14 -07:00
parent 7964464e3d
commit 7b16860806
5 changed files with 142 additions and 232 deletions

1
Cargo.lock generated
View file

@ -5310,6 +5310,7 @@ dependencies = [
"gpui", "gpui",
"log", "log",
"parking_lot", "parking_lot",
"picker",
"postage", "postage",
"settings", "settings",
"smol", "smol",

View file

@ -18,7 +18,7 @@ pub fn init(cx: &mut MutableAppContext) {
actions!(command_palette, [Toggle]); actions!(command_palette, [Toggle]);
pub struct CommandPalette { pub struct CommandPalette {
selector: ViewHandle<Picker<Self>>, picker: ViewHandle<Picker<Self>>,
actions: Vec<Command>, actions: Vec<Command>,
matches: Vec<StringMatch>, matches: Vec<StringMatch>,
selected_ix: usize, selected_ix: usize,
@ -48,9 +48,9 @@ impl CommandPalette {
.map_or(Vec::new(), |binding| binding.keystrokes().to_vec()), .map_or(Vec::new(), |binding| binding.keystrokes().to_vec()),
}) })
.collect(); .collect();
let selector = cx.add_view(|cx| Picker::new(this, cx)); let picker = cx.add_view(|cx| Picker::new(this, cx));
Self { Self {
selector, picker,
actions, actions,
matches: vec![], matches: vec![],
selected_ix: 0, selected_ix: 0,
@ -98,11 +98,11 @@ impl View for CommandPalette {
} }
fn render(&mut self, _: &mut gpui::RenderContext<'_, Self>) -> gpui::ElementBox { fn render(&mut self, _: &mut gpui::RenderContext<'_, Self>) -> gpui::ElementBox {
ChildView::new(self.selector.clone()).boxed() ChildView::new(self.picker.clone()).boxed()
} }
fn on_focus(&mut self, cx: &mut ViewContext<Self>) { fn on_focus(&mut self, cx: &mut ViewContext<Self>) {
cx.focus(&self.selector); cx.focus(&self.picker);
} }
} }
@ -115,7 +115,7 @@ impl PickerDelegate for CommandPalette {
self.selected_ix self.selected_ix
} }
fn set_selected_index(&mut self, ix: usize) { fn set_selected_index(&mut self, ix: usize, _: &mut ViewContext<Self>) {
self.selected_ix = ix; self.selected_ix = ix;
} }

View file

@ -20,7 +20,7 @@ pub struct Picker<D: PickerDelegate> {
pub trait PickerDelegate: View { pub trait PickerDelegate: View {
fn match_count(&self) -> usize; fn match_count(&self) -> usize;
fn selected_index(&self) -> usize; fn selected_index(&self) -> usize;
fn set_selected_index(&mut self, ix: usize); fn set_selected_index(&mut self, ix: usize, cx: &mut ViewContext<Self>);
fn update_matches(&mut self, query: String, cx: &mut ViewContext<Self>) -> Task<()>; fn update_matches(&mut self, query: String, cx: &mut ViewContext<Self>) -> Task<()>;
fn confirm(&mut self, cx: &mut ViewContext<Self>); fn confirm(&mut self, cx: &mut ViewContext<Self>);
fn dismiss(&mut self, cx: &mut ViewContext<Self>); fn dismiss(&mut self, cx: &mut ViewContext<Self>);
@ -159,7 +159,7 @@ impl<D: PickerDelegate> Picker<D> {
fn select_first(&mut self, _: &SelectFirst, cx: &mut ViewContext<Self>) { fn select_first(&mut self, _: &SelectFirst, cx: &mut ViewContext<Self>) {
if let Some(delegate) = self.delegate.upgrade(cx) { if let Some(delegate) = self.delegate.upgrade(cx) {
let index = 0; let index = 0;
delegate.update(cx, |delegate, _| delegate.set_selected_index(0)); delegate.update(cx, |delegate, cx| delegate.set_selected_index(0, cx));
self.list_state.scroll_to(ScrollTarget::Show(index)); self.list_state.scroll_to(ScrollTarget::Show(index));
cx.notify(); cx.notify();
} }
@ -167,10 +167,10 @@ impl<D: PickerDelegate> Picker<D> {
fn select_last(&mut self, _: &SelectLast, cx: &mut ViewContext<Self>) { fn select_last(&mut self, _: &SelectLast, cx: &mut ViewContext<Self>) {
if let Some(delegate) = self.delegate.upgrade(cx) { if let Some(delegate) = self.delegate.upgrade(cx) {
let index = delegate.update(cx, |delegate, _| { let index = delegate.update(cx, |delegate, cx| {
let match_count = delegate.match_count(); let match_count = delegate.match_count();
let index = if match_count > 0 { match_count - 1 } else { 0 }; let index = if match_count > 0 { match_count - 1 } else { 0 };
delegate.set_selected_index(index); delegate.set_selected_index(index, cx);
index index
}); });
self.list_state.scroll_to(ScrollTarget::Show(index)); self.list_state.scroll_to(ScrollTarget::Show(index));
@ -180,11 +180,11 @@ impl<D: PickerDelegate> Picker<D> {
fn select_next(&mut self, _: &SelectNext, cx: &mut ViewContext<Self>) { fn select_next(&mut self, _: &SelectNext, cx: &mut ViewContext<Self>) {
if let Some(delegate) = self.delegate.upgrade(cx) { if let Some(delegate) = self.delegate.upgrade(cx) {
let index = delegate.update(cx, |delegate, _| { let index = delegate.update(cx, |delegate, cx| {
let mut selected_index = delegate.selected_index(); let mut selected_index = delegate.selected_index();
if selected_index + 1 < delegate.match_count() { if selected_index + 1 < delegate.match_count() {
selected_index += 1; selected_index += 1;
delegate.set_selected_index(selected_index); delegate.set_selected_index(selected_index, cx);
} }
selected_index selected_index
}); });
@ -195,11 +195,11 @@ impl<D: PickerDelegate> Picker<D> {
fn select_prev(&mut self, _: &SelectPrev, cx: &mut ViewContext<Self>) { fn select_prev(&mut self, _: &SelectPrev, cx: &mut ViewContext<Self>) {
if let Some(delegate) = self.delegate.upgrade(cx) { if let Some(delegate) = self.delegate.upgrade(cx) {
let index = delegate.update(cx, |delegate, _| { let index = delegate.update(cx, |delegate, cx| {
let mut selected_index = delegate.selected_index(); let mut selected_index = delegate.selected_index();
if selected_index > 0 { if selected_index > 0 {
selected_index -= 1; selected_index -= 1;
delegate.set_selected_index(selected_index); delegate.set_selected_index(selected_index, cx);
} }
selected_index selected_index
}); });

View file

@ -11,6 +11,7 @@ doctest = false
editor = { path = "../editor" } editor = { path = "../editor" }
fuzzy = { path = "../fuzzy" } fuzzy = { path = "../fuzzy" }
gpui = { path = "../gpui" } gpui = { path = "../gpui" }
picker = { path = "../picker" }
theme = { path = "../theme" } theme = { path = "../theme" }
settings = { path = "../settings" } settings = { path = "../settings" }
workspace = { path = "../workspace" } workspace = { path = "../workspace" }

View file

@ -1,35 +1,30 @@
use editor::Editor;
use fuzzy::{match_strings, StringMatch, StringMatchCandidate}; use fuzzy::{match_strings, StringMatch, StringMatchCandidate};
use gpui::{ use gpui::{
actions, elements::*, keymap, AppContext, Axis, Element, ElementBox, Entity, MutableAppContext, actions, elements::*, AppContext, Element, ElementBox, Entity, MutableAppContext,
RenderContext, View, ViewContext, ViewHandle, RenderContext, View, ViewContext, ViewHandle,
}; };
use picker::{Picker, PickerDelegate};
use settings::Settings; use settings::Settings;
use std::{cmp, sync::Arc}; use std::sync::Arc;
use theme::{Theme, ThemeRegistry}; use theme::{Theme, ThemeRegistry};
use workspace::{ use workspace::Workspace;
menu::{Confirm, SelectNext, SelectPrev},
Workspace,
};
pub struct ThemeSelector { pub struct ThemeSelector {
themes: Arc<ThemeRegistry>, registry: Arc<ThemeRegistry>,
theme_names: Vec<String>,
matches: Vec<StringMatch>, matches: Vec<StringMatch>,
query_editor: ViewHandle<Editor>,
list_state: UniformListState,
selected_index: usize,
original_theme: Arc<Theme>, original_theme: Arc<Theme>,
picker: ViewHandle<Picker<Self>>,
selection_completed: bool, selection_completed: bool,
selected_index: usize,
} }
actions!(theme_selector, [Toggle, Reload]); actions!(theme_selector, [Toggle, Reload]);
pub fn init(cx: &mut MutableAppContext) { pub fn init(cx: &mut MutableAppContext) {
cx.add_action(ThemeSelector::confirm);
cx.add_action(ThemeSelector::select_prev);
cx.add_action(ThemeSelector::select_next);
cx.add_action(ThemeSelector::toggle); cx.add_action(ThemeSelector::toggle);
cx.add_action(ThemeSelector::reload); cx.add_action(ThemeSelector::reload);
Picker::<ThemeSelector>::init(cx);
} }
pub enum Event { pub enum Event {
@ -38,38 +33,38 @@ pub enum Event {
impl ThemeSelector { impl ThemeSelector {
fn new(registry: Arc<ThemeRegistry>, cx: &mut ViewContext<Self>) -> Self { fn new(registry: Arc<ThemeRegistry>, cx: &mut ViewContext<Self>) -> Self {
let query_editor = cx.add_view(|cx| { let handle = cx.weak_handle();
Editor::single_line(Some(|theme| theme.selector.input_editor.clone()), cx) let picker = cx.add_view(|cx| Picker::new(handle, cx));
});
cx.subscribe(&query_editor, Self::on_query_editor_event)
.detach();
let original_theme = cx.global::<Settings>().theme.clone(); let original_theme = cx.global::<Settings>().theme.clone();
let theme_names = registry.list().collect::<Vec<_>>();
let matches = theme_names
.iter()
.map(|name| StringMatch {
candidate_id: 0,
score: 0.0,
positions: Default::default(),
string: name.clone(),
})
.collect();
let mut this = Self { let mut this = Self {
themes: registry, registry,
query_editor, theme_names,
matches: Vec::new(), matches,
list_state: Default::default(), picker,
selected_index: 0, // Default index for now
original_theme: original_theme.clone(), original_theme: original_theme.clone(),
selected_index: 0,
selection_completed: false, selection_completed: false,
}; };
this.update_matches(cx);
// Set selected index to current theme
this.select_if_matching(&original_theme.name); this.select_if_matching(&original_theme.name);
this this
} }
fn toggle(workspace: &mut Workspace, _: &Toggle, cx: &mut ViewContext<Workspace>) { fn toggle(workspace: &mut Workspace, _: &Toggle, cx: &mut ViewContext<Workspace>) {
let themes = workspace.themes(); let themes = workspace.themes();
workspace.toggle_modal(cx, |cx, _| { workspace.toggle_modal(cx, |cx, _| {
let selector = cx.add_view(|cx| Self::new(themes, cx)); let this = cx.add_view(|cx| Self::new(themes, cx));
cx.subscribe(&selector, Self::on_event).detach(); cx.subscribe(&this, Self::on_event).detach();
selector this
}); });
} }
@ -88,36 +83,9 @@ impl ThemeSelector {
} }
} }
fn confirm(&mut self, _: &Confirm, cx: &mut ViewContext<Self>) {
self.selection_completed = true;
cx.emit(Event::Dismissed);
}
fn select_prev(&mut self, _: &SelectPrev, cx: &mut ViewContext<Self>) {
if self.selected_index > 0 {
self.selected_index -= 1;
}
self.list_state
.scroll_to(ScrollTarget::Show(self.selected_index));
self.show_selected_theme(cx);
cx.notify();
}
fn select_next(&mut self, _: &SelectNext, cx: &mut ViewContext<Self>) {
if self.selected_index + 1 < self.matches.len() {
self.selected_index += 1;
}
self.list_state
.scroll_to(ScrollTarget::Show(self.selected_index));
self.show_selected_theme(cx);
cx.notify();
}
fn show_selected_theme(&mut self, cx: &mut ViewContext<Self>) { fn show_selected_theme(&mut self, cx: &mut ViewContext<Self>) {
if let Some(mat) = self.matches.get(self.selected_index) { if let Some(mat) = self.matches.get(self.selected_index) {
match self.themes.get(&mat.string) { match self.registry.get(&mat.string) {
Ok(theme) => Self::set_theme(theme, cx), Ok(theme) => Self::set_theme(theme, cx),
Err(error) => { Err(error) => {
log::error!("error loading theme {}: {}", mat.string, error) log::error!("error loading theme {}: {}", mat.string, error)
@ -134,49 +102,6 @@ impl ThemeSelector {
.unwrap_or(self.selected_index); .unwrap_or(self.selected_index);
} }
fn update_matches(&mut self, cx: &mut ViewContext<Self>) {
let background = cx.background().clone();
let candidates = self
.themes
.list()
.enumerate()
.map(|(id, name)| StringMatchCandidate {
id,
char_bag: name.as_str().into(),
string: name,
})
.collect::<Vec<_>>();
let query = self.query_editor.update(cx, |buffer, cx| buffer.text(cx));
self.matches = if query.is_empty() {
candidates
.into_iter()
.enumerate()
.map(|(index, candidate)| StringMatch {
candidate_id: index,
string: candidate.string,
positions: Vec::new(),
score: 0.0,
})
.collect()
} else {
smol::block_on(match_strings(
&candidates,
&query,
false,
100,
&Default::default(),
background,
))
};
self.selected_index = self
.selected_index
.min(self.matches.len().saturating_sub(1));
cx.notify();
}
fn on_event( fn on_event(
workspace: &mut Workspace, workspace: &mut Workspace,
_: ViewHandle<ThemeSelector>, _: ViewHandle<ThemeSelector>,
@ -190,84 +115,6 @@ impl ThemeSelector {
} }
} }
fn on_query_editor_event(
&mut self,
_: ViewHandle<Editor>,
event: &editor::Event,
cx: &mut ViewContext<Self>,
) {
match event {
editor::Event::BufferEdited { .. } => {
self.update_matches(cx);
self.select_if_matching(&cx.global::<Settings>().theme.name);
self.show_selected_theme(cx);
}
editor::Event::Blurred => cx.emit(Event::Dismissed),
_ => {}
}
}
fn render_matches(&self, cx: &mut RenderContext<Self>) -> ElementBox {
if self.matches.is_empty() {
let settings = cx.global::<Settings>();
return Container::new(
Label::new(
"No matches".into(),
settings.theme.selector.empty.label.clone(),
)
.boxed(),
)
.with_style(settings.theme.selector.empty.container)
.named("empty matches");
}
let handle = cx.handle();
let list =
UniformList::new(
self.list_state.clone(),
self.matches.len(),
move |mut range, items, cx| {
let cx = cx.as_ref();
let selector = handle.upgrade(cx).unwrap();
let selector = selector.read(cx);
let start = range.start;
range.end = cmp::min(range.end, selector.matches.len());
items.extend(selector.matches[range].iter().enumerate().map(
move |(i, path_match)| selector.render_match(path_match, start + i, cx),
));
},
);
Container::new(list.boxed())
.with_margin_top(6.0)
.named("matches")
}
fn render_match(&self, theme_match: &StringMatch, index: usize, cx: &AppContext) -> ElementBox {
let settings = cx.global::<Settings>();
let theme = &settings.theme;
let container = Container::new(
Label::new(
theme_match.string.clone(),
if index == self.selected_index {
theme.selector.active_item.label.clone()
} else {
theme.selector.item.label.clone()
},
)
.with_highlights(theme_match.positions.clone())
.boxed(),
)
.with_style(if index == self.selected_index {
theme.selector.active_item.container
} else {
theme.selector.item.container
});
container.boxed()
}
fn set_theme(theme: Arc<Theme>, cx: &mut MutableAppContext) { fn set_theme(theme: Arc<Theme>, cx: &mut MutableAppContext) {
cx.update_global::<Settings, _, _>(|settings, cx| { cx.update_global::<Settings, _, _>(|settings, cx| {
settings.theme = theme; settings.theme = theme;
@ -276,6 +123,99 @@ impl ThemeSelector {
} }
} }
impl PickerDelegate for ThemeSelector {
fn match_count(&self) -> usize {
self.matches.len()
}
fn confirm(&mut self, cx: &mut ViewContext<Self>) {
self.selection_completed = true;
cx.emit(Event::Dismissed);
}
fn dismiss(&mut self, cx: &mut ViewContext<Self>) {
if !self.selection_completed {
Self::set_theme(self.original_theme.clone(), cx);
self.selection_completed = true;
}
cx.emit(Event::Dismissed);
}
fn selected_index(&self) -> usize {
self.selected_index
}
fn set_selected_index(&mut self, ix: usize, cx: &mut ViewContext<Self>) {
self.selected_index = ix;
self.show_selected_theme(cx);
}
fn update_matches(&mut self, query: String, cx: &mut ViewContext<Self>) -> gpui::Task<()> {
let background = cx.background().clone();
let candidates = self
.theme_names
.iter()
.enumerate()
.map(|(id, name)| StringMatchCandidate {
id,
char_bag: name.as_str().into(),
string: name.clone(),
})
.collect::<Vec<_>>();
cx.spawn(|this, mut cx| async move {
let matches = if query.is_empty() {
candidates
.into_iter()
.enumerate()
.map(|(index, candidate)| StringMatch {
candidate_id: index,
string: candidate.string,
positions: Vec::new(),
score: 0.0,
})
.collect()
} else {
match_strings(
&candidates,
&query,
false,
100,
&Default::default(),
background,
)
.await
};
this.update(&mut cx, |this, cx| {
this.matches = matches;
this.selected_index = this
.selected_index
.min(this.matches.len().saturating_sub(1));
this.show_selected_theme(cx);
cx.notify();
});
})
}
fn render_match(&self, ix: usize, selected: bool, cx: &AppContext) -> ElementBox {
let settings = cx.global::<Settings>();
let theme = &settings.theme;
let theme_match = &self.matches[ix];
let style = if selected {
&theme.selector.active_item
} else {
&theme.selector.item
};
Label::new(theme_match.string.clone(), style.label.clone())
.with_highlights(theme_match.positions.clone())
.contained()
.with_style(style.container)
.boxed()
}
}
impl Entity for ThemeSelector { impl Entity for ThemeSelector {
type Event = Event; type Event = Event;
@ -291,43 +231,11 @@ impl View for ThemeSelector {
"ThemeSelector" "ThemeSelector"
} }
fn render(&mut self, cx: &mut RenderContext<Self>) -> ElementBox { fn render(&mut self, _: &mut RenderContext<Self>) -> ElementBox {
let theme = cx.global::<Settings>().theme.clone(); ChildView::new(self.picker.clone()).boxed()
Align::new(
ConstrainedBox::new(
Container::new(
Flex::new(Axis::Vertical)
.with_child(
ChildView::new(&self.query_editor)
.contained()
.with_style(theme.selector.input_editor.container)
.boxed(),
)
.with_child(
FlexItem::new(self.render_matches(cx))
.flex(1., false)
.boxed(),
)
.boxed(),
)
.with_style(theme.selector.container)
.boxed(),
)
.with_max_width(600.0)
.with_max_height(400.0)
.boxed(),
)
.top()
.named("theme selector")
} }
fn on_focus(&mut self, cx: &mut ViewContext<Self>) { fn on_focus(&mut self, cx: &mut ViewContext<Self>) {
cx.focus(&self.query_editor); cx.focus(&self.picker);
}
fn keymap_context(&self, _: &AppContext) -> keymap::Context {
let mut cx = Self::default_keymap_context();
cx.set.insert("menu".into());
cx
} }
} }