Add plugin marketplace routes

This commit is contained in:
2026-05-08 01:11:19 -04:00
parent a6077fa00a
commit b91f2c0ca1
7 changed files with 809 additions and 4 deletions
+35 -2
View File
@@ -4,8 +4,9 @@ use crate::{
CoreError,
navigation::{
about_url, bookmarks_url, downloads_url, history_url, move_tab_space_name,
new_profile_name, new_space_name, reading_list_url, search_url, settings_page_url,
settings_url, space_icon, switch_profile_name, sync_status_url, task_manager_url,
new_profile_name, new_space_name, plugin_detail_url, plugins_url, reading_list_url,
search_url, settings_page_url, settings_url, space_icon, switch_profile_name,
sync_status_url, task_manager_url,
},
};
@@ -69,6 +70,12 @@ impl BrowserCore {
self.command_query.clear();
}
}
CommandIntent::ScopedSearch { scope: CommandScope::Plugins, query } => {
if let Some(url) = self.find_plugin_match(query)? {
self.open_tab(url);
self.command_query.clear();
}
}
CommandIntent::ScopedSearch { scope: CommandScope::Archive, query }
if self.restore_archived_tab_match(query)?.is_some() =>
{
@@ -130,6 +137,15 @@ impl BrowserCore {
self.open_tab(task_manager_url()?);
Ok(true)
}
"plugins"
| "open-plugins"
| "open plugins"
| "plugin-marketplace"
| "open-plugin-marketplace"
| "open plugin marketplace" => {
self.open_tab(plugins_url()?);
Ok(true)
}
"about" | "open-about" | "open about" => {
self.open_tab(about_url()?);
Ok(true)
@@ -186,4 +202,21 @@ impl BrowserCore {
.find(|profile| profile.name().to_lowercase().contains(&query))
.map(|profile| profile.id().clone())
}
fn find_plugin_match(&self, query: &str) -> Result<Option<ely_domain::UrlText>, CoreError> {
let query = query.trim().to_lowercase();
if query.is_empty() {
return Ok(None);
}
self.installed_plugins
.iter()
.find(|plugin| {
plugin.id().as_str().to_lowercase().contains(&query)
|| plugin.manifest().name().to_lowercase().contains(&query)
|| plugin.manifest().description().to_lowercase().contains(&query)
})
.map(|plugin| plugin_detail_url(plugin.id()))
.transpose()
}
}