logiguard fork: GPUI xdg-activation keyboard-focus serial fix
Some checks failed
Update All Top Ranking Issues / update_top_ranking_issues (push) Has been cancelled
Triage Project Sync (#84) / Sync triage project (push) Has been cancelled
release_nightly / notify_on_failure (push) Has been cancelled
release_nightly / check_style (push) Has been cancelled
release_nightly / run_tests_windows (push) Has been cancelled
release_nightly / clippy_windows (push) Has been cancelled
release_nightly / bundle_linux_aarch64 (push) Has been cancelled
release_nightly / bundle_linux_x86_64 (push) Has been cancelled
release_nightly / bundle_mac_aarch64 (push) Has been cancelled
release_nightly / bundle_mac_x86_64 (push) Has been cancelled
release_nightly / bundle_windows_aarch64 (push) Has been cancelled
release_nightly / bundle_windows_x86_64 (push) Has been cancelled
release_nightly / build_nix_linux_x86_64 (push) Has been cancelled
release_nightly / build_nix_mac_aarch64 (push) Has been cancelled
release_nightly / update_nightly_tag (push) Has been cancelled
Hotfix Review Monitor / check-hotfix-reviews (push) Has been cancelled
Stale PR Review Reminder / check-stale-prs (push) Has been cancelled
Update Weekly Top Ranking Issues / update_top_ranking_issues (push) Has been cancelled
Bump collab-staging Tag / update-collab-staging-tag (push) Has been cancelled
compliance_check / scheduled_compliance_check (push) Has been cancelled
Some checks failed
Update All Top Ranking Issues / update_top_ranking_issues (push) Has been cancelled
Triage Project Sync (#84) / Sync triage project (push) Has been cancelled
release_nightly / notify_on_failure (push) Has been cancelled
release_nightly / check_style (push) Has been cancelled
release_nightly / run_tests_windows (push) Has been cancelled
release_nightly / clippy_windows (push) Has been cancelled
release_nightly / bundle_linux_aarch64 (push) Has been cancelled
release_nightly / bundle_linux_x86_64 (push) Has been cancelled
release_nightly / bundle_mac_aarch64 (push) Has been cancelled
release_nightly / bundle_mac_x86_64 (push) Has been cancelled
release_nightly / bundle_windows_aarch64 (push) Has been cancelled
release_nightly / bundle_windows_x86_64 (push) Has been cancelled
release_nightly / build_nix_linux_x86_64 (push) Has been cancelled
release_nightly / build_nix_mac_aarch64 (push) Has been cancelled
release_nightly / update_nightly_tag (push) Has been cancelled
Hotfix Review Monitor / check-hotfix-reviews (push) Has been cancelled
Stale PR Review Reminder / check-stale-prs (push) Has been cancelled
Update Weekly Top Ranking Issues / update_top_ranking_issues (push) Has been cancelled
Bump collab-staging Tag / update-collab-staging-tag (push) Has been cancelled
compliance_check / scheduled_compliance_check (push) Has been cancelled
Single-commit orphan branch: full zed-industries/zed @ 8c74db0 source tree with a 3-file patch applied (no upstream history). Patch (crates/gpui_linux/src/linux/wayland/): - serial.rs: add SerialKind::KeyboardEnter - client.rs: store wl_keyboard.enter serial; add latest_serial_of() - window.rs: activate() uses keyboard-enter serial (Mutter focus gate) Mutter honors window activation only when the token carries the keyboard- focus serial from wl_keyboard.enter; GPUI used a stale mouse-press serial. See docs/tray-window-focus-wayland.md in logiguard. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
35
crates/theme_selector/Cargo.toml
Normal file
35
crates/theme_selector/Cargo.toml
Normal file
@@ -0,0 +1,35 @@
|
||||
[package]
|
||||
name = "theme_selector"
|
||||
version = "0.1.0"
|
||||
edition.workspace = true
|
||||
publish.workspace = true
|
||||
license = "GPL-3.0-or-later"
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/theme_selector.rs"
|
||||
doctest = false
|
||||
|
||||
[dependencies]
|
||||
fs.workspace = true
|
||||
fuzzy.workspace = true
|
||||
gpui.workspace = true
|
||||
log.workspace = true
|
||||
picker.workspace = true
|
||||
serde.workspace = true
|
||||
settings.workspace = true
|
||||
telemetry.workspace = true
|
||||
theme.workspace = true
|
||||
theme_settings.workspace = true
|
||||
ui.workspace = true
|
||||
util.workspace = true
|
||||
workspace.workspace = true
|
||||
zed_actions.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
editor = { workspace = true, features = ["test-support"] }
|
||||
project.workspace = true
|
||||
serde_json.workspace = true
|
||||
theme = { workspace = true, features = ["test-support"] }
|
||||
1
crates/theme_selector/LICENSE-GPL
Symbolic link
1
crates/theme_selector/LICENSE-GPL
Symbolic link
@@ -0,0 +1 @@
|
||||
../../LICENSE-GPL
|
||||
510
crates/theme_selector/src/icon_theme_selector.rs
Normal file
510
crates/theme_selector/src/icon_theme_selector.rs
Normal file
@@ -0,0 +1,510 @@
|
||||
use fs::Fs;
|
||||
use fuzzy::{StringMatch, StringMatchCandidate, match_strings};
|
||||
use gpui::{
|
||||
App, Context, DismissEvent, Entity, EventEmitter, Focusable, Render, UpdateGlobal, WeakEntity,
|
||||
Window,
|
||||
};
|
||||
use picker::{Picker, PickerDelegate};
|
||||
use settings::{Settings as _, SettingsStore, update_settings_file};
|
||||
use std::sync::Arc;
|
||||
use theme::{Appearance, SystemAppearance, ThemeMeta, ThemeRegistry};
|
||||
use theme_settings::{IconThemeName, IconThemeSelection, ThemeSettings};
|
||||
use ui::{ListItem, ListItemSpacing, prelude::*, v_flex};
|
||||
use util::ResultExt;
|
||||
use workspace::{ModalView, ui::HighlightedLabel};
|
||||
use zed_actions::{ExtensionCategoryFilter, Extensions};
|
||||
|
||||
pub(crate) struct IconThemeSelector {
|
||||
picker: Entity<Picker<IconThemeSelectorDelegate>>,
|
||||
}
|
||||
|
||||
impl EventEmitter<DismissEvent> for IconThemeSelector {}
|
||||
|
||||
impl Focusable for IconThemeSelector {
|
||||
fn focus_handle(&self, cx: &App) -> gpui::FocusHandle {
|
||||
self.picker.focus_handle(cx)
|
||||
}
|
||||
}
|
||||
|
||||
impl ModalView for IconThemeSelector {
|
||||
fn on_before_dismiss(
|
||||
&mut self,
|
||||
_window: &mut Window,
|
||||
cx: &mut Context<Self>,
|
||||
) -> workspace::DismissDecision {
|
||||
self.picker.update(cx, |picker, cx| {
|
||||
picker.delegate.revert_theme(cx);
|
||||
});
|
||||
workspace::DismissDecision::Dismiss(true)
|
||||
}
|
||||
}
|
||||
|
||||
impl IconThemeSelector {
|
||||
pub fn new(
|
||||
delegate: IconThemeSelectorDelegate,
|
||||
window: &mut Window,
|
||||
cx: &mut Context<Self>,
|
||||
) -> Self {
|
||||
let picker = cx.new(|cx| Picker::uniform_list(delegate, window, cx));
|
||||
Self { picker }
|
||||
}
|
||||
}
|
||||
|
||||
impl Render for IconThemeSelector {
|
||||
fn render(&mut self, _window: &mut Window, _cx: &mut Context<Self>) -> impl IntoElement {
|
||||
v_flex()
|
||||
.key_context("IconThemeSelector")
|
||||
.w(rems(34.))
|
||||
.child(self.picker.clone())
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) struct IconThemeSelectorDelegate {
|
||||
fs: Arc<dyn Fs>,
|
||||
themes: Vec<ThemeMeta>,
|
||||
matches: Vec<StringMatch>,
|
||||
original_theme: IconThemeName,
|
||||
selection_completed: bool,
|
||||
selected_theme: Option<IconThemeName>,
|
||||
selected_index: usize,
|
||||
selector: WeakEntity<IconThemeSelector>,
|
||||
}
|
||||
|
||||
impl IconThemeSelectorDelegate {
|
||||
pub fn new(
|
||||
selector: WeakEntity<IconThemeSelector>,
|
||||
fs: Arc<dyn Fs>,
|
||||
themes_filter: Option<&Vec<String>>,
|
||||
cx: &mut Context<IconThemeSelector>,
|
||||
) -> Self {
|
||||
let theme_settings = ThemeSettings::get_global(cx);
|
||||
let original_theme = theme_settings
|
||||
.icon_theme
|
||||
.name(SystemAppearance::global(cx).0);
|
||||
|
||||
let registry = ThemeRegistry::global(cx);
|
||||
let mut themes = registry
|
||||
.list_icon_themes()
|
||||
.into_iter()
|
||||
.filter(|meta| {
|
||||
if let Some(theme_filter) = themes_filter {
|
||||
theme_filter.contains(&meta.name.to_string())
|
||||
} else {
|
||||
true
|
||||
}
|
||||
})
|
||||
.collect::<Vec<_>>();
|
||||
|
||||
themes.sort_unstable_by(|a, b| {
|
||||
a.appearance
|
||||
.is_light()
|
||||
.cmp(&b.appearance.is_light())
|
||||
.then(a.name.cmp(&b.name))
|
||||
});
|
||||
let matches = themes
|
||||
.iter()
|
||||
.map(|meta| StringMatch {
|
||||
candidate_id: 0,
|
||||
score: 0.0,
|
||||
positions: Default::default(),
|
||||
string: meta.name.to_string(),
|
||||
})
|
||||
.collect();
|
||||
let mut this = Self {
|
||||
fs,
|
||||
themes,
|
||||
matches,
|
||||
original_theme: original_theme.clone(),
|
||||
selected_index: 0,
|
||||
selected_theme: None,
|
||||
selection_completed: false,
|
||||
selector,
|
||||
};
|
||||
|
||||
this.select_if_matching(&original_theme.0);
|
||||
this
|
||||
}
|
||||
|
||||
fn show_selected_theme(
|
||||
&mut self,
|
||||
cx: &mut Context<Picker<IconThemeSelectorDelegate>>,
|
||||
) -> Option<IconThemeName> {
|
||||
let mat = self.matches.get(self.selected_index)?;
|
||||
let name = IconThemeName(mat.string.clone().into());
|
||||
Self::set_icon_theme(name.clone(), cx);
|
||||
Some(name)
|
||||
}
|
||||
|
||||
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 revert_theme(&mut self, cx: &mut App) {
|
||||
if !self.selection_completed {
|
||||
Self::set_icon_theme(self.original_theme.clone(), cx);
|
||||
self.selection_completed = true;
|
||||
}
|
||||
}
|
||||
|
||||
fn set_icon_theme(name: IconThemeName, cx: &mut App) {
|
||||
SettingsStore::update_global(cx, |store, _| {
|
||||
let mut theme_settings = store.get::<ThemeSettings>(None).clone();
|
||||
theme_settings.icon_theme = IconThemeSelection::Static(name);
|
||||
store.override_global(theme_settings);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
impl PickerDelegate for IconThemeSelectorDelegate {
|
||||
type ListItem = ui::ListItem;
|
||||
|
||||
fn placeholder_text(&self, _window: &mut Window, _cx: &mut App) -> Arc<str> {
|
||||
"Select Icon Theme...".into()
|
||||
}
|
||||
|
||||
fn match_count(&self) -> usize {
|
||||
self.matches.len()
|
||||
}
|
||||
|
||||
fn confirm(
|
||||
&mut self,
|
||||
_: bool,
|
||||
window: &mut Window,
|
||||
cx: &mut Context<Picker<IconThemeSelectorDelegate>>,
|
||||
) {
|
||||
self.selection_completed = true;
|
||||
|
||||
let theme_settings = ThemeSettings::get_global(cx);
|
||||
let theme_name = theme_settings
|
||||
.icon_theme
|
||||
.name(SystemAppearance::global(cx).0);
|
||||
|
||||
telemetry::event!(
|
||||
"Settings Changed",
|
||||
setting = "icon_theme",
|
||||
value = theme_name
|
||||
);
|
||||
|
||||
let appearance = Appearance::from(window.appearance());
|
||||
|
||||
update_settings_file(self.fs.clone(), cx, move |settings, _| {
|
||||
theme_settings::set_icon_theme(settings, theme_name, appearance);
|
||||
});
|
||||
|
||||
self.selector
|
||||
.update(cx, |_, cx| {
|
||||
cx.emit(DismissEvent);
|
||||
})
|
||||
.ok();
|
||||
}
|
||||
|
||||
fn dismissed(&mut self, _: &mut Window, cx: &mut Context<Picker<IconThemeSelectorDelegate>>) {
|
||||
self.revert_theme(cx);
|
||||
|
||||
self.selector
|
||||
.update(cx, |_, cx| cx.emit(DismissEvent))
|
||||
.log_err();
|
||||
}
|
||||
|
||||
fn selected_index(&self) -> usize {
|
||||
self.selected_index
|
||||
}
|
||||
|
||||
fn set_selected_index(
|
||||
&mut self,
|
||||
ix: usize,
|
||||
_: &mut Window,
|
||||
cx: &mut Context<Picker<IconThemeSelectorDelegate>>,
|
||||
) {
|
||||
self.selected_index = ix;
|
||||
self.selected_theme = self.show_selected_theme(cx);
|
||||
}
|
||||
|
||||
fn update_matches(
|
||||
&mut self,
|
||||
query: String,
|
||||
window: &mut Window,
|
||||
cx: &mut Context<Picker<IconThemeSelectorDelegate>>,
|
||||
) -> gpui::Task<()> {
|
||||
let background = cx.background_executor().clone();
|
||||
let candidates = self
|
||||
.themes
|
||||
.iter()
|
||||
.enumerate()
|
||||
.map(|(id, meta)| StringMatchCandidate::new(id, &meta.name))
|
||||
.collect::<Vec<_>>();
|
||||
|
||||
cx.spawn_in(window, async move |this, cx| {
|
||||
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,
|
||||
true,
|
||||
100,
|
||||
&Default::default(),
|
||||
background,
|
||||
)
|
||||
.await
|
||||
};
|
||||
|
||||
this.update(cx, |this, cx| {
|
||||
this.delegate.matches = matches;
|
||||
if query.is_empty() && this.delegate.selected_theme.is_none() {
|
||||
this.delegate.selected_index = this
|
||||
.delegate
|
||||
.selected_index
|
||||
.min(this.delegate.matches.len().saturating_sub(1));
|
||||
} else if let Some(selected) = this.delegate.selected_theme.as_ref() {
|
||||
this.delegate.selected_index = this
|
||||
.delegate
|
||||
.matches
|
||||
.iter()
|
||||
.enumerate()
|
||||
.find(|(_, mtch)| mtch.string.as_str() == selected.0.as_ref())
|
||||
.map(|(ix, _)| ix)
|
||||
.unwrap_or_default();
|
||||
} else {
|
||||
this.delegate.selected_index = 0;
|
||||
}
|
||||
// Preserve the previously selected theme when the filter yields no results.
|
||||
if let Some(theme) = this.delegate.show_selected_theme(cx) {
|
||||
this.delegate.selected_theme = Some(theme);
|
||||
}
|
||||
})
|
||||
.log_err();
|
||||
})
|
||||
}
|
||||
|
||||
fn render_match(
|
||||
&self,
|
||||
ix: usize,
|
||||
selected: bool,
|
||||
_window: &mut Window,
|
||||
_cx: &mut Context<Picker<Self>>,
|
||||
) -> Option<Self::ListItem> {
|
||||
let theme_match = &self.matches.get(ix)?;
|
||||
|
||||
Some(
|
||||
ListItem::new(ix)
|
||||
.inset(true)
|
||||
.spacing(ListItemSpacing::Sparse)
|
||||
.toggle_state(selected)
|
||||
.child(HighlightedLabel::new(
|
||||
theme_match.string.clone(),
|
||||
theme_match.positions.clone(),
|
||||
)),
|
||||
)
|
||||
}
|
||||
|
||||
fn render_footer(
|
||||
&self,
|
||||
_window: &mut Window,
|
||||
cx: &mut Context<Picker<Self>>,
|
||||
) -> Option<gpui::AnyElement> {
|
||||
Some(
|
||||
h_flex()
|
||||
.p_2()
|
||||
.w_full()
|
||||
.justify_between()
|
||||
.gap_2()
|
||||
.border_t_1()
|
||||
.border_color(cx.theme().colors().border_variant)
|
||||
.child(
|
||||
Button::new("docs", "View Icon Theme Docs")
|
||||
.end_icon(
|
||||
Icon::new(IconName::ArrowUpRight)
|
||||
.size(IconSize::Small)
|
||||
.color(Color::Muted),
|
||||
)
|
||||
.on_click(|_event, _window, cx| {
|
||||
cx.open_url("https://zed.dev/docs/icon-themes");
|
||||
}),
|
||||
)
|
||||
.child(
|
||||
Button::new("more-icon-themes", "Install Icon Themes").on_click(
|
||||
move |_event, window, cx| {
|
||||
window.dispatch_action(
|
||||
Box::new(Extensions {
|
||||
category_filter: Some(ExtensionCategoryFilter::IconThemes),
|
||||
id: None,
|
||||
}),
|
||||
cx,
|
||||
);
|
||||
},
|
||||
),
|
||||
)
|
||||
.into_any_element(),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
use std::collections::HashMap;
|
||||
|
||||
use gpui::{TestAppContext, VisualTestContext};
|
||||
use project::Project;
|
||||
use serde_json::json;
|
||||
use theme::{ChevronIcons, DirectoryIcons, IconTheme, ThemeRegistry};
|
||||
use util::path;
|
||||
use workspace::MultiWorkspace;
|
||||
|
||||
fn init_test(cx: &mut TestAppContext) -> Arc<workspace::AppState> {
|
||||
cx.update(|cx| {
|
||||
let app_state = workspace::AppState::test(cx);
|
||||
settings::init(cx);
|
||||
theme::init(theme::LoadThemes::JustBase, cx);
|
||||
editor::init(cx);
|
||||
crate::init(cx);
|
||||
app_state
|
||||
})
|
||||
}
|
||||
|
||||
fn register_test_icon_themes(cx: &mut TestAppContext) {
|
||||
cx.update(|cx| {
|
||||
let registry = ThemeRegistry::global(cx);
|
||||
let make_icon_theme = |name: &str, appearance: Appearance| IconTheme {
|
||||
id: name.to_lowercase().replace(' ', "-"),
|
||||
name: SharedString::from(name.to_string()),
|
||||
appearance,
|
||||
directory_icons: DirectoryIcons {
|
||||
collapsed: None,
|
||||
expanded: None,
|
||||
},
|
||||
named_directory_icons: HashMap::default(),
|
||||
chevron_icons: ChevronIcons {
|
||||
collapsed: None,
|
||||
expanded: None,
|
||||
},
|
||||
file_icons: HashMap::default(),
|
||||
file_stems: HashMap::default(),
|
||||
file_suffixes: HashMap::default(),
|
||||
};
|
||||
registry.register_test_icon_themes([
|
||||
make_icon_theme("Test Icons A", Appearance::Dark),
|
||||
make_icon_theme("Test Icons B", Appearance::Dark),
|
||||
]);
|
||||
});
|
||||
}
|
||||
|
||||
async fn setup_test(cx: &mut TestAppContext) -> Arc<workspace::AppState> {
|
||||
let app_state = init_test(cx);
|
||||
register_test_icon_themes(cx);
|
||||
app_state
|
||||
.fs
|
||||
.as_fake()
|
||||
.insert_tree(path!("/test"), json!({}))
|
||||
.await;
|
||||
app_state
|
||||
}
|
||||
|
||||
fn open_icon_theme_selector(
|
||||
workspace: &Entity<workspace::Workspace>,
|
||||
cx: &mut VisualTestContext,
|
||||
) -> Entity<Picker<IconThemeSelectorDelegate>> {
|
||||
cx.dispatch_action(zed_actions::icon_theme_selector::Toggle {
|
||||
themes_filter: None,
|
||||
});
|
||||
cx.run_until_parked();
|
||||
workspace.update(cx, |workspace, cx| {
|
||||
workspace
|
||||
.active_modal::<IconThemeSelector>(cx)
|
||||
.expect("icon theme selector should be open")
|
||||
.read(cx)
|
||||
.picker
|
||||
.clone()
|
||||
})
|
||||
}
|
||||
|
||||
fn selected_theme_name(
|
||||
picker: &Entity<Picker<IconThemeSelectorDelegate>>,
|
||||
cx: &mut VisualTestContext,
|
||||
) -> String {
|
||||
picker.read_with(cx, |picker, _| {
|
||||
picker
|
||||
.delegate
|
||||
.matches
|
||||
.get(picker.delegate.selected_index)
|
||||
.expect("selected index should point to a match")
|
||||
.string
|
||||
.clone()
|
||||
})
|
||||
}
|
||||
|
||||
fn previewed_theme_name(
|
||||
_picker: &Entity<Picker<IconThemeSelectorDelegate>>,
|
||||
cx: &mut VisualTestContext,
|
||||
) -> String {
|
||||
cx.read(|cx| {
|
||||
ThemeSettings::get_global(cx)
|
||||
.icon_theme
|
||||
.name(SystemAppearance::global(cx).0)
|
||||
.0
|
||||
.to_string()
|
||||
})
|
||||
}
|
||||
|
||||
#[gpui::test]
|
||||
async fn test_icon_theme_selector_preserves_selection_on_empty_filter(cx: &mut TestAppContext) {
|
||||
let app_state = setup_test(cx).await;
|
||||
let project = Project::test(app_state.fs.clone(), [path!("/test").as_ref()], cx).await;
|
||||
let (multi_workspace, cx) =
|
||||
cx.add_window_view(|window, cx| MultiWorkspace::test_new(project.clone(), window, cx));
|
||||
let workspace =
|
||||
multi_workspace.read_with(cx, |multi_workspace, _| multi_workspace.workspace().clone());
|
||||
let picker = open_icon_theme_selector(&workspace, cx);
|
||||
|
||||
let target_index = picker.read_with(cx, |picker, _| {
|
||||
picker
|
||||
.delegate
|
||||
.matches
|
||||
.iter()
|
||||
.position(|m| m.string == "Test Icons A")
|
||||
.unwrap()
|
||||
});
|
||||
picker.update_in(cx, |picker, window, cx| {
|
||||
picker.set_selected_index(target_index, None, true, window, cx);
|
||||
});
|
||||
cx.run_until_parked();
|
||||
|
||||
assert_eq!(previewed_theme_name(&picker, cx), "Test Icons A");
|
||||
|
||||
picker.update_in(cx, |picker, window, cx| {
|
||||
picker.update_matches("zzz".to_string(), window, cx);
|
||||
});
|
||||
cx.run_until_parked();
|
||||
|
||||
picker.update_in(cx, |picker, window, cx| {
|
||||
picker.update_matches("".to_string(), window, cx);
|
||||
});
|
||||
cx.run_until_parked();
|
||||
|
||||
assert_eq!(
|
||||
selected_theme_name(&picker, cx),
|
||||
"Test Icons A",
|
||||
"selected icon theme should be preserved after clearing an empty filter"
|
||||
);
|
||||
assert_eq!(
|
||||
previewed_theme_name(&picker, cx),
|
||||
"Test Icons A",
|
||||
"previewed icon theme should be preserved after clearing an empty filter"
|
||||
);
|
||||
}
|
||||
}
|
||||
691
crates/theme_selector/src/theme_selector.rs
Normal file
691
crates/theme_selector/src/theme_selector.rs
Normal file
@@ -0,0 +1,691 @@
|
||||
mod icon_theme_selector;
|
||||
|
||||
use fs::Fs;
|
||||
use fuzzy::{StringMatch, StringMatchCandidate, match_strings};
|
||||
use gpui::{
|
||||
App, Context, DismissEvent, Entity, EventEmitter, Focusable, Render, UpdateGlobal, WeakEntity,
|
||||
Window, actions,
|
||||
};
|
||||
use picker::{Picker, PickerDelegate};
|
||||
use settings::{Settings, SettingsStore, update_settings_file};
|
||||
use std::sync::Arc;
|
||||
use theme::{Appearance, SystemAppearance, Theme, ThemeMeta, ThemeRegistry};
|
||||
use theme_settings::{
|
||||
ThemeAppearanceMode, ThemeName, ThemeSelection, ThemeSettings, appearance_to_mode,
|
||||
};
|
||||
use ui::{ListItem, ListItemSpacing, prelude::*, v_flex};
|
||||
use util::ResultExt;
|
||||
use workspace::{ModalView, Workspace, ui::HighlightedLabel, with_active_or_new_workspace};
|
||||
use zed_actions::{ExtensionCategoryFilter, Extensions};
|
||||
|
||||
use crate::icon_theme_selector::{IconThemeSelector, IconThemeSelectorDelegate};
|
||||
|
||||
actions!(
|
||||
theme_selector,
|
||||
[
|
||||
/// Reloads all themes from disk.
|
||||
Reload
|
||||
]
|
||||
);
|
||||
|
||||
pub fn init(cx: &mut App) {
|
||||
cx.on_action(|action: &zed_actions::theme_selector::Toggle, cx| {
|
||||
let action = action.clone();
|
||||
with_active_or_new_workspace(cx, move |workspace, window, cx| {
|
||||
toggle_theme_selector(workspace, &action, window, cx);
|
||||
});
|
||||
});
|
||||
cx.on_action(|action: &zed_actions::icon_theme_selector::Toggle, cx| {
|
||||
let action = action.clone();
|
||||
with_active_or_new_workspace(cx, move |workspace, window, cx| {
|
||||
toggle_icon_theme_selector(workspace, &action, window, cx);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
fn toggle_theme_selector(
|
||||
workspace: &mut Workspace,
|
||||
toggle: &zed_actions::theme_selector::Toggle,
|
||||
window: &mut Window,
|
||||
cx: &mut Context<Workspace>,
|
||||
) {
|
||||
let fs = workspace.app_state().fs.clone();
|
||||
workspace.toggle_modal(window, cx, |window, cx| {
|
||||
let delegate = ThemeSelectorDelegate::new(
|
||||
cx.entity().downgrade(),
|
||||
fs,
|
||||
toggle.themes_filter.as_ref(),
|
||||
cx,
|
||||
);
|
||||
ThemeSelector::new(delegate, window, cx)
|
||||
});
|
||||
}
|
||||
|
||||
fn toggle_icon_theme_selector(
|
||||
workspace: &mut Workspace,
|
||||
toggle: &zed_actions::icon_theme_selector::Toggle,
|
||||
window: &mut Window,
|
||||
cx: &mut Context<Workspace>,
|
||||
) {
|
||||
let fs = workspace.app_state().fs.clone();
|
||||
workspace.toggle_modal(window, cx, |window, cx| {
|
||||
let delegate = IconThemeSelectorDelegate::new(
|
||||
cx.entity().downgrade(),
|
||||
fs,
|
||||
toggle.themes_filter.as_ref(),
|
||||
cx,
|
||||
);
|
||||
IconThemeSelector::new(delegate, window, cx)
|
||||
});
|
||||
}
|
||||
|
||||
impl ModalView for ThemeSelector {
|
||||
fn on_before_dismiss(
|
||||
&mut self,
|
||||
_window: &mut Window,
|
||||
cx: &mut Context<Self>,
|
||||
) -> workspace::DismissDecision {
|
||||
self.picker.update(cx, |picker, cx| {
|
||||
picker.delegate.revert_theme(cx);
|
||||
});
|
||||
workspace::DismissDecision::Dismiss(true)
|
||||
}
|
||||
}
|
||||
|
||||
struct ThemeSelector {
|
||||
picker: Entity<Picker<ThemeSelectorDelegate>>,
|
||||
}
|
||||
|
||||
impl EventEmitter<DismissEvent> for ThemeSelector {}
|
||||
|
||||
impl Focusable for ThemeSelector {
|
||||
fn focus_handle(&self, cx: &App) -> gpui::FocusHandle {
|
||||
self.picker.focus_handle(cx)
|
||||
}
|
||||
}
|
||||
|
||||
impl Render for ThemeSelector {
|
||||
fn render(&mut self, _window: &mut Window, _cx: &mut Context<Self>) -> impl IntoElement {
|
||||
v_flex()
|
||||
.key_context("ThemeSelector")
|
||||
.w(rems(34.))
|
||||
.child(self.picker.clone())
|
||||
}
|
||||
}
|
||||
|
||||
impl ThemeSelector {
|
||||
pub fn new(
|
||||
delegate: ThemeSelectorDelegate,
|
||||
window: &mut Window,
|
||||
cx: &mut Context<Self>,
|
||||
) -> Self {
|
||||
let picker = cx.new(|cx| Picker::uniform_list(delegate, window, cx));
|
||||
Self { picker }
|
||||
}
|
||||
}
|
||||
|
||||
struct ThemeSelectorDelegate {
|
||||
fs: Arc<dyn Fs>,
|
||||
themes: Vec<ThemeMeta>,
|
||||
matches: Vec<StringMatch>,
|
||||
/// The theme that was selected before the `ThemeSelector` menu was opened.
|
||||
///
|
||||
/// We use this to return back to theme that was set if the user dismisses the menu.
|
||||
original_theme_settings: ThemeSettings,
|
||||
/// The current system appearance.
|
||||
original_system_appearance: Appearance,
|
||||
/// The currently selected new theme.
|
||||
new_theme: Arc<Theme>,
|
||||
selection_completed: bool,
|
||||
selected_theme: Option<Arc<Theme>>,
|
||||
selected_index: usize,
|
||||
selector: WeakEntity<ThemeSelector>,
|
||||
}
|
||||
|
||||
impl ThemeSelectorDelegate {
|
||||
fn new(
|
||||
selector: WeakEntity<ThemeSelector>,
|
||||
fs: Arc<dyn Fs>,
|
||||
themes_filter: Option<&Vec<String>>,
|
||||
cx: &mut Context<ThemeSelector>,
|
||||
) -> Self {
|
||||
let original_theme = cx.theme().clone();
|
||||
let original_theme_settings = ThemeSettings::get_global(cx).clone();
|
||||
let original_system_appearance = SystemAppearance::global(cx).0;
|
||||
|
||||
let registry = ThemeRegistry::global(cx);
|
||||
let mut themes = registry
|
||||
.list()
|
||||
.into_iter()
|
||||
.filter(|meta| {
|
||||
if let Some(theme_filter) = themes_filter {
|
||||
theme_filter.contains(&meta.name.to_string())
|
||||
} else {
|
||||
true
|
||||
}
|
||||
})
|
||||
.collect::<Vec<_>>();
|
||||
|
||||
// Sort by dark vs light, then by name.
|
||||
themes.sort_unstable_by(|a, b| {
|
||||
a.appearance
|
||||
.is_light()
|
||||
.cmp(&b.appearance.is_light())
|
||||
.then(a.name.cmp(&b.name))
|
||||
});
|
||||
|
||||
let matches: Vec<StringMatch> = themes
|
||||
.iter()
|
||||
.map(|meta| StringMatch {
|
||||
candidate_id: 0,
|
||||
score: 0.0,
|
||||
positions: Default::default(),
|
||||
string: meta.name.to_string(),
|
||||
})
|
||||
.collect();
|
||||
|
||||
// The current theme is likely in this list, so default to first showing that.
|
||||
let selected_index = matches
|
||||
.iter()
|
||||
.position(|mat| mat.string == original_theme.name)
|
||||
.unwrap_or(0);
|
||||
|
||||
Self {
|
||||
fs,
|
||||
themes,
|
||||
matches,
|
||||
original_theme_settings,
|
||||
original_system_appearance,
|
||||
new_theme: original_theme, // Start with the original theme.
|
||||
selected_index,
|
||||
selection_completed: false,
|
||||
selected_theme: None,
|
||||
selector,
|
||||
}
|
||||
}
|
||||
|
||||
fn show_selected_theme(
|
||||
&mut self,
|
||||
cx: &mut Context<Picker<ThemeSelectorDelegate>>,
|
||||
) -> Option<Arc<Theme>> {
|
||||
if let Some(mat) = self.matches.get(self.selected_index) {
|
||||
let registry = ThemeRegistry::global(cx);
|
||||
|
||||
match registry.get(&mat.string) {
|
||||
Ok(theme) => {
|
||||
self.set_theme(theme.clone(), cx);
|
||||
Some(theme)
|
||||
}
|
||||
Err(error) => {
|
||||
log::error!("error loading theme {}: {}", mat.string, error);
|
||||
None
|
||||
}
|
||||
}
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
fn revert_theme(&mut self, cx: &mut App) {
|
||||
if !self.selection_completed {
|
||||
SettingsStore::update_global(cx, |store, _| {
|
||||
store.override_global(self.original_theme_settings.clone());
|
||||
});
|
||||
self.selection_completed = true;
|
||||
}
|
||||
}
|
||||
|
||||
fn set_theme(&mut self, new_theme: Arc<Theme>, cx: &mut App) {
|
||||
// Update the global (in-memory) theme settings.
|
||||
SettingsStore::update_global(cx, |store, _| {
|
||||
override_global_theme(
|
||||
store,
|
||||
&new_theme,
|
||||
&self.original_theme_settings.theme,
|
||||
self.original_system_appearance,
|
||||
)
|
||||
});
|
||||
|
||||
self.new_theme = new_theme;
|
||||
}
|
||||
}
|
||||
|
||||
/// Overrides the global (in-memory) theme settings.
|
||||
///
|
||||
/// Note that this does **not** update the user's `settings.json` file (see the
|
||||
/// [`ThemeSelectorDelegate::confirm`] method and [`theme_settings::set_theme`] function).
|
||||
fn override_global_theme(
|
||||
store: &mut SettingsStore,
|
||||
new_theme: &Theme,
|
||||
original_theme: &ThemeSelection,
|
||||
system_appearance: Appearance,
|
||||
) {
|
||||
let theme_name = ThemeName(new_theme.name.clone().into());
|
||||
let new_appearance = new_theme.appearance();
|
||||
let new_theme_is_light = new_appearance.is_light();
|
||||
|
||||
let mut curr_theme_settings = store.get::<ThemeSettings>(None).clone();
|
||||
|
||||
match (original_theme, &curr_theme_settings.theme) {
|
||||
// Override the currently selected static theme.
|
||||
(ThemeSelection::Static(_), ThemeSelection::Static(_)) => {
|
||||
curr_theme_settings.theme = ThemeSelection::Static(theme_name);
|
||||
}
|
||||
|
||||
// If the current theme selection is dynamic, then only override the global setting for the
|
||||
// specific mode (light or dark).
|
||||
(
|
||||
ThemeSelection::Dynamic {
|
||||
mode: original_mode,
|
||||
light: original_light,
|
||||
dark: original_dark,
|
||||
},
|
||||
ThemeSelection::Dynamic { .. },
|
||||
) => {
|
||||
let new_mode = update_mode_if_new_appearance_is_different_from_system(
|
||||
original_mode,
|
||||
system_appearance,
|
||||
new_appearance,
|
||||
);
|
||||
|
||||
let updated_theme = retain_original_opposing_theme(
|
||||
new_theme_is_light,
|
||||
new_mode,
|
||||
theme_name,
|
||||
original_light,
|
||||
original_dark,
|
||||
);
|
||||
|
||||
curr_theme_settings.theme = updated_theme;
|
||||
}
|
||||
|
||||
// The theme selection mode changed while selecting new themes (someone edited the settings
|
||||
// file on disk while we had the dialogue open), so don't do anything.
|
||||
_ => return,
|
||||
};
|
||||
|
||||
store.override_global(curr_theme_settings);
|
||||
}
|
||||
|
||||
/// Helper function for determining the new [`ThemeAppearanceMode`] for the new theme.
|
||||
///
|
||||
/// If the the original theme mode was [`System`] and the new theme's appearance matches the system
|
||||
/// appearance, we don't need to change the mode setting.
|
||||
///
|
||||
/// Otherwise, we need to change the mode in order to see the new theme.
|
||||
///
|
||||
/// [`System`]: ThemeAppearanceMode::System
|
||||
fn update_mode_if_new_appearance_is_different_from_system(
|
||||
original_mode: &ThemeAppearanceMode,
|
||||
system_appearance: Appearance,
|
||||
new_appearance: Appearance,
|
||||
) -> ThemeAppearanceMode {
|
||||
if original_mode == &ThemeAppearanceMode::System && system_appearance == new_appearance {
|
||||
ThemeAppearanceMode::System
|
||||
} else {
|
||||
appearance_to_mode(new_appearance)
|
||||
}
|
||||
}
|
||||
|
||||
/// Helper function for updating / displaying the [`ThemeSelection`] while using the theme selector.
|
||||
///
|
||||
/// We want to retain the alternate theme selection of the original settings (before the menu was
|
||||
/// opened), not the currently selected theme (which likely has changed multiple times while the
|
||||
/// menu has been open).
|
||||
fn retain_original_opposing_theme(
|
||||
new_theme_is_light: bool,
|
||||
new_mode: ThemeAppearanceMode,
|
||||
theme_name: ThemeName,
|
||||
original_light: &ThemeName,
|
||||
original_dark: &ThemeName,
|
||||
) -> ThemeSelection {
|
||||
if new_theme_is_light {
|
||||
ThemeSelection::Dynamic {
|
||||
mode: new_mode,
|
||||
light: theme_name,
|
||||
dark: original_dark.clone(),
|
||||
}
|
||||
} else {
|
||||
ThemeSelection::Dynamic {
|
||||
mode: new_mode,
|
||||
light: original_light.clone(),
|
||||
dark: theme_name,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl PickerDelegate for ThemeSelectorDelegate {
|
||||
type ListItem = ui::ListItem;
|
||||
|
||||
fn placeholder_text(&self, _window: &mut Window, _cx: &mut App) -> Arc<str> {
|
||||
"Select Theme...".into()
|
||||
}
|
||||
|
||||
fn match_count(&self) -> usize {
|
||||
self.matches.len()
|
||||
}
|
||||
|
||||
fn confirm(
|
||||
&mut self,
|
||||
_secondary: bool,
|
||||
_window: &mut Window,
|
||||
cx: &mut Context<Picker<ThemeSelectorDelegate>>,
|
||||
) {
|
||||
self.selection_completed = true;
|
||||
|
||||
let theme_name: Arc<str> = self.new_theme.name.as_str().into();
|
||||
let theme_appearance = self.new_theme.appearance;
|
||||
let system_appearance = SystemAppearance::global(cx).0;
|
||||
|
||||
telemetry::event!("Settings Changed", setting = "theme", value = theme_name);
|
||||
|
||||
update_settings_file(self.fs.clone(), cx, move |settings, _| {
|
||||
theme_settings::set_theme(settings, theme_name, theme_appearance, system_appearance);
|
||||
});
|
||||
|
||||
self.selector
|
||||
.update(cx, |_, cx| {
|
||||
cx.emit(DismissEvent);
|
||||
})
|
||||
.ok();
|
||||
}
|
||||
|
||||
fn dismissed(&mut self, _: &mut Window, cx: &mut Context<Picker<ThemeSelectorDelegate>>) {
|
||||
self.revert_theme(cx);
|
||||
|
||||
self.selector
|
||||
.update(cx, |_, cx| cx.emit(DismissEvent))
|
||||
.log_err();
|
||||
}
|
||||
|
||||
fn selected_index(&self) -> usize {
|
||||
self.selected_index
|
||||
}
|
||||
|
||||
fn set_selected_index(
|
||||
&mut self,
|
||||
ix: usize,
|
||||
_: &mut Window,
|
||||
cx: &mut Context<Picker<ThemeSelectorDelegate>>,
|
||||
) {
|
||||
self.selected_index = ix;
|
||||
self.selected_theme = self.show_selected_theme(cx);
|
||||
}
|
||||
|
||||
fn update_matches(
|
||||
&mut self,
|
||||
query: String,
|
||||
window: &mut Window,
|
||||
cx: &mut Context<Picker<ThemeSelectorDelegate>>,
|
||||
) -> gpui::Task<()> {
|
||||
let background = cx.background_executor().clone();
|
||||
let candidates = self
|
||||
.themes
|
||||
.iter()
|
||||
.enumerate()
|
||||
.map(|(id, meta)| StringMatchCandidate::new(id, &meta.name))
|
||||
.collect::<Vec<_>>();
|
||||
|
||||
cx.spawn_in(window, async move |this, cx| {
|
||||
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,
|
||||
true,
|
||||
100,
|
||||
&Default::default(),
|
||||
background,
|
||||
)
|
||||
.await
|
||||
};
|
||||
|
||||
this.update(cx, |this, cx| {
|
||||
this.delegate.matches = matches;
|
||||
if query.is_empty() && this.delegate.selected_theme.is_none() {
|
||||
this.delegate.selected_index = this
|
||||
.delegate
|
||||
.selected_index
|
||||
.min(this.delegate.matches.len().saturating_sub(1));
|
||||
} else if let Some(selected) = this.delegate.selected_theme.as_ref() {
|
||||
this.delegate.selected_index = this
|
||||
.delegate
|
||||
.matches
|
||||
.iter()
|
||||
.enumerate()
|
||||
.find(|(_, mtch)| mtch.string == selected.name)
|
||||
.map(|(ix, _)| ix)
|
||||
.unwrap_or_default();
|
||||
} else {
|
||||
this.delegate.selected_index = 0;
|
||||
}
|
||||
// Preserve the previously selected theme when the filter yields no results.
|
||||
if let Some(theme) = this.delegate.show_selected_theme(cx) {
|
||||
this.delegate.selected_theme = Some(theme);
|
||||
}
|
||||
})
|
||||
.log_err();
|
||||
})
|
||||
}
|
||||
|
||||
fn render_match(
|
||||
&self,
|
||||
ix: usize,
|
||||
selected: bool,
|
||||
_window: &mut Window,
|
||||
_cx: &mut Context<Picker<Self>>,
|
||||
) -> Option<Self::ListItem> {
|
||||
let theme_match = &self.matches.get(ix)?;
|
||||
|
||||
Some(
|
||||
ListItem::new(ix)
|
||||
.inset(true)
|
||||
.spacing(ListItemSpacing::Sparse)
|
||||
.toggle_state(selected)
|
||||
.child(HighlightedLabel::new(
|
||||
theme_match.string.clone(),
|
||||
theme_match.positions.clone(),
|
||||
)),
|
||||
)
|
||||
}
|
||||
|
||||
fn render_footer(
|
||||
&self,
|
||||
_: &mut Window,
|
||||
cx: &mut Context<Picker<Self>>,
|
||||
) -> Option<gpui::AnyElement> {
|
||||
Some(
|
||||
h_flex()
|
||||
.p_2()
|
||||
.w_full()
|
||||
.justify_between()
|
||||
.gap_2()
|
||||
.border_t_1()
|
||||
.border_color(cx.theme().colors().border_variant)
|
||||
.child(
|
||||
Button::new("docs", "View Theme Docs")
|
||||
.end_icon(
|
||||
Icon::new(IconName::ArrowUpRight)
|
||||
.size(IconSize::Small)
|
||||
.color(Color::Muted),
|
||||
)
|
||||
.on_click(cx.listener(|_, _, _, cx| {
|
||||
cx.open_url("https://zed.dev/docs/themes");
|
||||
})),
|
||||
)
|
||||
.child(
|
||||
Button::new("more-themes", "Install Themes").on_click(cx.listener({
|
||||
move |_, _, window, cx| {
|
||||
window.dispatch_action(
|
||||
Box::new(Extensions {
|
||||
category_filter: Some(ExtensionCategoryFilter::Themes),
|
||||
id: None,
|
||||
}),
|
||||
cx,
|
||||
);
|
||||
}
|
||||
})),
|
||||
)
|
||||
.into_any_element(),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
use gpui::{TestAppContext, VisualTestContext};
|
||||
use project::Project;
|
||||
use serde_json::json;
|
||||
use theme::{Appearance, ThemeFamily, ThemeRegistry, default_color_scales};
|
||||
use util::path;
|
||||
use workspace::MultiWorkspace;
|
||||
|
||||
fn init_test(cx: &mut TestAppContext) -> Arc<workspace::AppState> {
|
||||
cx.update(|cx| {
|
||||
let app_state = workspace::AppState::test(cx);
|
||||
settings::init(cx);
|
||||
theme::init(theme::LoadThemes::JustBase, cx);
|
||||
editor::init(cx);
|
||||
super::init(cx);
|
||||
app_state
|
||||
})
|
||||
}
|
||||
|
||||
fn register_test_themes(cx: &mut TestAppContext) {
|
||||
cx.update(|cx| {
|
||||
let registry = ThemeRegistry::global(cx);
|
||||
let base_theme = registry.get("One Dark").unwrap();
|
||||
|
||||
let mut test_light = (*base_theme).clone();
|
||||
test_light.id = "test-light".to_string();
|
||||
test_light.name = "Test Light".into();
|
||||
test_light.appearance = Appearance::Light;
|
||||
|
||||
let mut test_dark_a = (*base_theme).clone();
|
||||
test_dark_a.id = "test-dark-a".to_string();
|
||||
test_dark_a.name = "Test Dark A".into();
|
||||
|
||||
let mut test_dark_b = (*base_theme).clone();
|
||||
test_dark_b.id = "test-dark-b".to_string();
|
||||
test_dark_b.name = "Test Dark B".into();
|
||||
|
||||
registry.register_test_themes([ThemeFamily {
|
||||
id: "test-family".to_string(),
|
||||
name: "Test Family".into(),
|
||||
author: "test".into(),
|
||||
themes: vec![test_light, test_dark_a, test_dark_b],
|
||||
scales: default_color_scales(),
|
||||
}]);
|
||||
});
|
||||
}
|
||||
|
||||
async fn setup_test(cx: &mut TestAppContext) -> Arc<workspace::AppState> {
|
||||
let app_state = init_test(cx);
|
||||
register_test_themes(cx);
|
||||
app_state
|
||||
.fs
|
||||
.as_fake()
|
||||
.insert_tree(path!("/test"), json!({}))
|
||||
.await;
|
||||
app_state
|
||||
}
|
||||
|
||||
fn open_theme_selector(
|
||||
workspace: &Entity<workspace::Workspace>,
|
||||
cx: &mut VisualTestContext,
|
||||
) -> Entity<Picker<ThemeSelectorDelegate>> {
|
||||
cx.dispatch_action(zed_actions::theme_selector::Toggle {
|
||||
themes_filter: None,
|
||||
});
|
||||
cx.run_until_parked();
|
||||
workspace.update(cx, |workspace, cx| {
|
||||
workspace
|
||||
.active_modal::<ThemeSelector>(cx)
|
||||
.expect("theme selector should be open")
|
||||
.read(cx)
|
||||
.picker
|
||||
.clone()
|
||||
})
|
||||
}
|
||||
|
||||
fn selected_theme_name(
|
||||
picker: &Entity<Picker<ThemeSelectorDelegate>>,
|
||||
cx: &mut VisualTestContext,
|
||||
) -> String {
|
||||
picker.read_with(cx, |picker, _| {
|
||||
picker
|
||||
.delegate
|
||||
.matches
|
||||
.get(picker.delegate.selected_index)
|
||||
.expect("selected index should point to a match")
|
||||
.string
|
||||
.clone()
|
||||
})
|
||||
}
|
||||
|
||||
fn previewed_theme_name(
|
||||
picker: &Entity<Picker<ThemeSelectorDelegate>>,
|
||||
cx: &mut VisualTestContext,
|
||||
) -> String {
|
||||
picker.read_with(cx, |picker, _| picker.delegate.new_theme.name.to_string())
|
||||
}
|
||||
|
||||
#[gpui::test]
|
||||
async fn test_theme_selector_preserves_selection_on_empty_filter(cx: &mut TestAppContext) {
|
||||
let app_state = setup_test(cx).await;
|
||||
let project = Project::test(app_state.fs.clone(), [path!("/test").as_ref()], cx).await;
|
||||
let (multi_workspace, cx) =
|
||||
cx.add_window_view(|window, cx| MultiWorkspace::test_new(project.clone(), window, cx));
|
||||
let workspace =
|
||||
multi_workspace.read_with(cx, |multi_workspace, _| multi_workspace.workspace().clone());
|
||||
let picker = open_theme_selector(&workspace, cx);
|
||||
|
||||
let target_index = picker.read_with(cx, |picker, _| {
|
||||
picker
|
||||
.delegate
|
||||
.matches
|
||||
.iter()
|
||||
.position(|m| m.string == "Test Light")
|
||||
.unwrap()
|
||||
});
|
||||
picker.update_in(cx, |picker, window, cx| {
|
||||
picker.set_selected_index(target_index, None, true, window, cx);
|
||||
});
|
||||
cx.run_until_parked();
|
||||
|
||||
assert_eq!(previewed_theme_name(&picker, cx), "Test Light");
|
||||
|
||||
picker.update_in(cx, |picker, window, cx| {
|
||||
picker.update_matches("zzz".to_string(), window, cx);
|
||||
});
|
||||
cx.run_until_parked();
|
||||
|
||||
picker.update_in(cx, |picker, window, cx| {
|
||||
picker.update_matches("".to_string(), window, cx);
|
||||
});
|
||||
cx.run_until_parked();
|
||||
|
||||
assert_eq!(
|
||||
selected_theme_name(&picker, cx),
|
||||
"Test Light",
|
||||
"selected theme should be preserved after clearing an empty filter"
|
||||
);
|
||||
assert_eq!(
|
||||
previewed_theme_name(&picker, cx),
|
||||
"Test Light",
|
||||
"previewed theme should be preserved after clearing an empty filter"
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user