zed/crates/theme_selector/src/theme_selector.rs

248 lines
7.2 KiB
Rust
Raw Normal View History

use fuzzy::{match_strings, StringMatch, StringMatchCandidate};
use gpui::{
2022-04-14 23:51:14 +00:00
actions, elements::*, AppContext, Element, ElementBox, Entity, MutableAppContext,
2022-04-10 18:39:43 +00:00
RenderContext, View, ViewContext, ViewHandle,
};
2022-04-14 23:51:14 +00:00
use picker::{Picker, PickerDelegate};
use settings::Settings;
2022-04-14 23:51:14 +00:00
use std::sync::Arc;
use theme::{Theme, ThemeRegistry};
2022-04-14 23:51:14 +00:00
use workspace::Workspace;
2021-08-03 02:07:48 +00:00
pub struct ThemeSelector {
2022-04-14 23:51:14 +00:00
registry: Arc<ThemeRegistry>,
theme_names: Vec<String>,
matches: Vec<StringMatch>,
original_theme: Arc<Theme>,
2022-04-14 23:51:14 +00:00
picker: ViewHandle<Picker<Self>>,
selection_completed: bool,
2022-04-14 23:51:14 +00:00
selected_index: usize,
}
actions!(theme_selector, [Toggle, Reload]);
pub fn init(cx: &mut MutableAppContext) {
cx.add_action(ThemeSelector::toggle);
2022-04-14 23:51:14 +00:00
Picker::<ThemeSelector>::init(cx);
}
pub enum Event {
Dismissed,
}
2021-08-03 02:07:48 +00:00
impl ThemeSelector {
fn new(registry: Arc<ThemeRegistry>, cx: &mut ViewContext<Self>) -> Self {
2022-04-14 23:51:14 +00:00
let handle = cx.weak_handle();
let picker = cx.add_view(|cx| Picker::new(handle, cx));
let original_theme = cx.global::<Settings>().theme.clone();
let mut theme_names = registry.list().collect::<Vec<_>>();
theme_names.sort_unstable_by(|a, b| {
a.ends_with("dark")
.cmp(&b.ends_with("dark"))
.then_with(|| a.cmp(&b))
});
2022-04-14 23:51:14 +00:00
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 {
2022-04-14 23:51:14 +00:00
registry,
theme_names,
matches,
picker,
original_theme: original_theme.clone(),
2022-04-14 23:51:14 +00:00
selected_index: 0,
selection_completed: false,
};
this.select_if_matching(&original_theme.name);
this
}
fn toggle(workspace: &mut Workspace, _: &Toggle, cx: &mut ViewContext<Workspace>) {
let themes = workspace.themes();
workspace.toggle_modal(cx, |_, cx| {
2022-04-14 23:51:14 +00:00
let this = cx.add_view(|cx| Self::new(themes, cx));
cx.subscribe(&this, Self::on_event).detach();
this
});
}
#[cfg(debug_assertions)]
pub fn reload(themes: Arc<ThemeRegistry>, cx: &mut MutableAppContext) {
let current_theme_name = cx.global::<Settings>().theme.name.clone();
themes.clear();
match themes.get(&current_theme_name) {
Ok(theme) => {
Self::set_theme(theme, cx);
2021-08-25 22:22:14 +00:00
log::info!("reloaded theme {}", current_theme_name);
}
Err(error) => {
log::error!("failed to load theme {}: {:?}", current_theme_name, error)
}
}
}
fn show_selected_theme(&mut self, cx: &mut ViewContext<Self>) {
if let Some(mat) = self.matches.get(self.selected_index) {
2022-04-14 23:51:14 +00:00
match self.registry.get(&mat.string) {
Ok(theme) => Self::set_theme(theme, cx),
Err(error) => {
log::error!("error loading theme {}: {}", mat.string, error)
}
}
}
}
fn select_if_matching(&mut self, theme_name: &str) {
self.selected_index = self
.matches
.iter()
.position(|mat| mat.string == theme_name)
.unwrap_or(self.selected_index);
}
fn on_event(
workspace: &mut Workspace,
2021-08-03 02:07:48 +00:00
_: ViewHandle<ThemeSelector>,
event: &Event,
cx: &mut ViewContext<Workspace>,
) {
match event {
Event::Dismissed => {
workspace.dismiss_modal(cx);
}
}
}
2022-04-14 23:51:14 +00:00
fn set_theme(theme: Arc<Theme>, cx: &mut MutableAppContext) {
cx.update_global::<Settings, _, _>(|settings, cx| {
settings.theme = theme;
cx.refresh_windows();
});
}
2022-04-14 23:51:14 +00:00
}
2022-04-14 23:51:14 +00:00
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;
}
2022-04-14 23:51:14 +00:00
cx.emit(Event::Dismissed);
}
2022-04-14 23:51:14 +00:00
fn selected_index(&self) -> usize {
self.selected_index
}
2022-04-14 23:51:14 +00:00
fn set_selected_index(&mut self, ix: usize, cx: &mut ViewContext<Self>) {
self.selected_index = ix;
self.show_selected_theme(cx);
}
2022-04-14 23:51:14 +00:00
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<_>>();
2022-04-14 23:51:14 +00:00
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
};
2022-04-14 23:51:14 +00:00
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,
mouse_state: &MouseState,
selected: bool,
cx: &AppContext,
) -> ElementBox {
2022-04-14 23:51:14 +00:00
let settings = cx.global::<Settings>();
let theme = &settings.theme;
let theme_match = &self.matches[ix];
let style = theme.picker.item.style_for(mouse_state, selected);
2022-04-14 23:51:14 +00:00
Label::new(theme_match.string.clone(), style.label.clone())
.with_highlights(theme_match.positions.clone())
.contained()
.with_style(style.container)
.boxed()
}
}
2021-08-03 02:07:48 +00:00
impl Entity for ThemeSelector {
type Event = Event;
fn release(&mut self, cx: &mut MutableAppContext) {
if !self.selection_completed {
Self::set_theme(self.original_theme.clone(), cx);
}
}
}
2021-08-03 02:07:48 +00:00
impl View for ThemeSelector {
fn ui_name() -> &'static str {
2021-08-03 02:07:48 +00:00
"ThemeSelector"
}
2022-04-14 23:51:14 +00:00
fn render(&mut self, _: &mut RenderContext<Self>) -> ElementBox {
ChildView::new(self.picker.clone()).boxed()
}
fn on_focus(&mut self, cx: &mut ViewContext<Self>) {
2022-04-14 23:51:14 +00:00
cx.focus(&self.picker);
}
}