Wire plugin file install command

This commit is contained in:
2026-05-08 21:20:29 -04:00
parent 527762fd36
commit d769b45f54
6 changed files with 113 additions and 20 deletions
+19
View File
@@ -10,6 +10,8 @@ use crate::services::{
use super::{ElyShell, ShellState};
const PLUGIN_SETTINGS_URL: &str = "ely://settings/plugins";
#[derive(Clone, Debug)]
pub(super) struct PendingPluginInstall {
package: VerifiedPluginPackage,
@@ -56,6 +58,8 @@ impl PendingPluginUninstall {
impl ElyShell {
pub(super) fn choose_plugin_package(&mut self, window: &mut Window, cx: &mut Context<Self>) {
self.ensure_plugin_install_surface(window, cx);
let prompt = cx.prompt_for_paths(PathPromptOptions {
files: false,
directories: true,
@@ -96,6 +100,21 @@ impl ElyShell {
.detach();
}
fn ensure_plugin_install_surface(&mut self, window: &mut Window, cx: &mut Context<Self>) {
if self.active_tab_matches_url(PLUGIN_SETTINGS_URL) {
return;
}
self.open_internal_tab(PLUGIN_SETTINGS_URL, window, cx);
}
fn active_tab_matches_url(&self, url: &str) -> bool {
match &self.state {
ShellState::Ready(core) => core.active_tab().is_ok_and(|tab| tab.url().as_str() == url),
ShellState::StartupError(_) => false,
}
}
pub(super) fn confirm_plugin_install(&mut self, cx: &mut Context<Self>) {
let Some(pending) = self.pending_plugin_install.take() else {
cx.notify();