zed/crates/theme_selector/src/theme_selector.rs

223 lines
7 KiB
Rust
Raw Normal View History

use fuzzy::{match_strings, StringMatch, StringMatchCandidate};
use gpui::{actions, elements::*, AnyElement, AppContext, Element, MouseState, ViewContext};
use picker::{Picker, PickerDelegate, PickerEvent};
use settings::{settings_file::SettingsFile, Settings};
use staff_mode::StaffMode;
2022-04-14 23:51:14 +00:00
use std::sync::Arc;
2022-09-08 21:11:48 +00:00
use theme::{Theme, ThemeMeta, ThemeRegistry};
use util::ResultExt;
use workspace::{AppState, Workspace};
actions!(theme_selector, [Toggle, Reload]);
pub fn init(app_state: Arc<AppState>, cx: &mut AppContext) {
cx.add_action({
let theme_registry = app_state.themes.clone();
move |workspace, _: &Toggle, cx| toggle(workspace, theme_registry.clone(), cx)
});
ThemeSelector::init(cx);
}
fn toggle(workspace: &mut Workspace, themes: Arc<ThemeRegistry>, cx: &mut ViewContext<Workspace>) {
workspace.toggle_modal(cx, |_, cx| {
cx.add_view(|cx| ThemeSelector::new(ThemeSelectorDelegate::new(themes, cx), cx))
});
}
#[cfg(debug_assertions)]
pub fn reload(themes: Arc<ThemeRegistry>, cx: &mut AppContext) {
let current_theme_name = cx.global::<Settings>().theme.meta.name.clone();
themes.clear();
match themes.get(&current_theme_name) {
Ok(theme) => {
ThemeSelectorDelegate::set_theme(theme, cx);
log::info!("reloaded theme {}", current_theme_name);
}
Err(error) => {
log::error!("failed to load theme {}: {:?}", current_theme_name, error)
}
}
}
pub type ThemeSelector = Picker<ThemeSelectorDelegate>;
pub struct ThemeSelectorDelegate {
registry: Arc<ThemeRegistry>,
theme_data: Vec<ThemeMeta>,
matches: Vec<StringMatch>,
original_theme: Arc<Theme>,
selection_completed: bool,
selected_index: usize,
}
impl ThemeSelectorDelegate {
fn new(registry: Arc<ThemeRegistry>, cx: &mut ViewContext<ThemeSelector>) -> Self {
2022-09-08 22:47:27 +00:00
let settings = cx.global::<Settings>();
2022-09-08 22:47:27 +00:00
let original_theme = settings.theme.clone();
let mut theme_names = registry
.list(**cx.default_global::<StaffMode>())
2022-09-08 22:47:27 +00:00
.collect::<Vec<_>>();
theme_names.sort_unstable_by(|a, b| a.is_light.cmp(&b.is_light).then(a.name.cmp(&b.name)));
2022-04-14 23:51:14 +00:00
let matches = theme_names
.iter()
2022-09-08 21:11:48 +00:00
.map(|meta| StringMatch {
2022-04-14 23:51:14 +00:00
candidate_id: 0,
score: 0.0,
positions: Default::default(),
2022-09-08 21:11:48 +00:00
string: meta.name.clone(),
2022-04-14 23:51:14 +00:00
})
.collect();
let mut this = Self {
2022-04-14 23:51:14 +00:00
registry,
2022-09-08 21:11:48 +00:00
theme_data: theme_names,
2022-04-14 23:51:14 +00:00
matches,
original_theme: original_theme.clone(),
2022-04-14 23:51:14 +00:00
selected_index: 0,
selection_completed: false,
};
2022-09-08 21:11:48 +00:00
this.select_if_matching(&original_theme.meta.name);
this
}
fn show_selected_theme(&mut self, cx: &mut ViewContext<ThemeSelector>) {
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 set_theme(theme: Arc<Theme>, cx: &mut AppContext) {
2022-04-14 23:51:14 +00:00
cx.update_global::<Settings, _, _>(|settings, cx| {
settings.theme = theme;
cx.refresh_windows();
});
}
2022-04-14 23:51:14 +00:00
}
impl PickerDelegate for ThemeSelectorDelegate {
fn placeholder_text(&self) -> Arc<str> {
"Select Theme...".into()
}
2022-04-14 23:51:14 +00:00
fn match_count(&self) -> usize {
self.matches.len()
}
fn confirm(&mut self, cx: &mut ViewContext<ThemeSelector>) {
2022-04-14 23:51:14 +00:00
self.selection_completed = true;
2022-10-12 02:18:29 +00:00
let theme_name = cx.global::<Settings>().theme.meta.name.clone();
SettingsFile::update(cx, |settings_content| {
settings_content.theme = Some(theme_name);
});
2022-10-12 02:18:29 +00:00
cx.emit(PickerEvent::Dismiss);
2022-04-14 23:51:14 +00:00
}
fn dismissed(&mut self, cx: &mut ViewContext<ThemeSelector>) {
2022-04-14 23:51:14 +00:00
if !self.selection_completed {
Self::set_theme(self.original_theme.clone(), cx);
self.selection_completed = true;
}
2022-04-14 23:51:14 +00:00
}
2022-04-14 23:51:14 +00:00
fn selected_index(&self) -> usize {
self.selected_index
}
fn set_selected_index(&mut self, ix: usize, cx: &mut ViewContext<ThemeSelector>) {
2022-04-14 23:51:14 +00:00
self.selected_index = ix;
self.show_selected_theme(cx);
}
fn update_matches(
&mut self,
query: String,
cx: &mut ViewContext<ThemeSelector>,
) -> gpui::Task<()> {
2022-04-14 23:51:14 +00:00
let background = cx.background().clone();
let candidates = self
2022-09-08 21:11:48 +00:00
.theme_data
2022-04-14 23:51:14 +00:00
.iter()
.enumerate()
2022-09-08 21:11:48 +00:00
.map(|(id, meta)| StringMatchCandidate {
2022-04-14 23:51:14 +00:00
id,
2022-09-08 21:11:48 +00:00
char_bag: meta.name.as_str().into(),
string: meta.name.clone(),
2022-04-14 23:51:14 +00:00
})
.collect::<Vec<_>>();
cx.spawn_weak(|this, mut cx| async move {
2022-04-14 23:51:14 +00:00
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
};
if let Some(this) = this.upgrade(&cx) {
this.update(&mut cx, |this, cx| {
let delegate = this.delegate_mut();
delegate.matches = matches;
delegate.selected_index = delegate
.selected_index
.min(delegate.matches.len().saturating_sub(1));
delegate.show_selected_theme(cx);
})
.log_err();
}
2022-04-14 23:51:14 +00:00
})
}
fn render_match(
&self,
ix: usize,
mouse_state: &mut MouseState,
selected: bool,
cx: &AppContext,
) -> AnyElement<Picker<Self>> {
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)
.into_any()
}
}