Added workspace restart command
This commit is contained in:
parent
ac882c7db5
commit
cf83ecccbb
6 changed files with 58 additions and 10 deletions
|
@ -23,7 +23,8 @@ use gpui::{
|
|||
},
|
||||
impl_actions,
|
||||
platform::{WindowBounds, WindowOptions},
|
||||
AssetSource, AsyncAppContext, Platform, PromptLevel, TitlebarOptions, ViewContext, WindowKind,
|
||||
AssetSource, AsyncAppContext, Platform, PromptLevel, Task, TitlebarOptions, ViewContext,
|
||||
WindowKind,
|
||||
};
|
||||
use language::Rope;
|
||||
use lazy_static::lazy_static;
|
||||
|
@ -34,11 +35,11 @@ use search::{BufferSearchBar, ProjectSearchBar};
|
|||
use serde::Deserialize;
|
||||
use serde_json::to_string_pretty;
|
||||
use settings::{keymap_file_json_schema, settings_file_json_schema, Settings};
|
||||
use std::{borrow::Cow, env, path::Path, str, sync::Arc};
|
||||
use std::{borrow::Cow, env, path::Path, process::Command, str, sync::Arc};
|
||||
use util::{channel::ReleaseChannel, paths, ResultExt, StaffMode};
|
||||
use uuid::Uuid;
|
||||
pub use workspace;
|
||||
use workspace::{sidebar::SidebarSide, AppState, Workspace};
|
||||
use workspace::{sidebar::SidebarSide, AppState, Restart, Workspace};
|
||||
|
||||
#[derive(Deserialize, Clone, PartialEq)]
|
||||
pub struct OpenBrowser {
|
||||
|
@ -129,7 +130,10 @@ pub fn init(app_state: &Arc<AppState>, cx: &mut gpui::MutableAppContext) {
|
|||
}
|
||||
},
|
||||
);
|
||||
cx.add_global_action(quit);
|
||||
cx.add_global_action(|_: &Quit, cx| {
|
||||
quit(cx).detach_and_log_err(cx);
|
||||
});
|
||||
cx.add_global_action(restart);
|
||||
cx.add_global_action(move |action: &OpenBrowser, cx| cx.platform().open_url(&action.url));
|
||||
cx.add_global_action(move |_: &IncreaseBufferFontSize, cx| {
|
||||
cx.update_global::<Settings, _, _>(|settings, cx| {
|
||||
|
@ -403,7 +407,29 @@ pub fn build_window_options(
|
|||
}
|
||||
}
|
||||
|
||||
fn quit(_: &Quit, cx: &mut gpui::MutableAppContext) {
|
||||
fn restart(_: &Restart, cx: &mut gpui::MutableAppContext) {
|
||||
let cli_process = dbg!(cx.platform().path_for_auxiliary_executable("cli"))
|
||||
.log_err()
|
||||
.and_then(|path| {
|
||||
Command::new(path)
|
||||
.args(["--restart-from", &format!("{}", dbg!(std::process::id()))])
|
||||
.spawn()
|
||||
.log_err()
|
||||
});
|
||||
|
||||
cx.spawn(|mut cx| async move {
|
||||
let did_quit = dbg!(cx.update(quit).await?);
|
||||
if !did_quit {
|
||||
if let Some(mut cli_process) = cli_process {
|
||||
cli_process.kill().log_err();
|
||||
}
|
||||
}
|
||||
Ok::<(), anyhow::Error>(())
|
||||
})
|
||||
.detach_and_log_err(cx);
|
||||
}
|
||||
|
||||
fn quit(cx: &mut gpui::MutableAppContext) -> Task<Result<bool>> {
|
||||
let mut workspaces = cx
|
||||
.window_ids()
|
||||
.filter_map(|window_id| cx.root_view::<Workspace>(window_id))
|
||||
|
@ -426,7 +452,7 @@ fn quit(_: &Quit, cx: &mut gpui::MutableAppContext) {
|
|||
.next()
|
||||
.await;
|
||||
if answer != Some(0) {
|
||||
return Ok(());
|
||||
return Ok(false);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -438,13 +464,13 @@ fn quit(_: &Quit, cx: &mut gpui::MutableAppContext) {
|
|||
})
|
||||
.await?
|
||||
{
|
||||
return Ok(());
|
||||
return Ok(false);
|
||||
}
|
||||
}
|
||||
dbg!("about to quit");
|
||||
cx.platform().quit();
|
||||
anyhow::Ok(())
|
||||
anyhow::Ok(true)
|
||||
})
|
||||
.detach_and_log_err(cx);
|
||||
}
|
||||
|
||||
fn about(_: &mut Workspace, _: &About, cx: &mut gpui::ViewContext<Workspace>) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue