pub mod pane; pub mod pane_group; use crate::{ editor::{Buffer, Editor}, language::LanguageRegistry, rpc, settings::Settings, worktree::{File, Worktree, WorktreeHandle}, AppState, }; use anyhow::{anyhow, Result}; use gpui::{ color::rgbu, elements::*, json::to_string_pretty, keymap::Binding, AnyViewHandle, AppContext, ClipboardItem, Entity, ModelHandle, MutableAppContext, PathPromptOptions, PromptLevel, Task, View, ViewContext, ViewHandle, WeakModelHandle, }; use log::error; pub use pane::*; pub use pane_group::*; use postage::watch; use smol::prelude::*; use std::{ collections::{hash_map::Entry, HashMap, HashSet}, future::Future, path::{Path, PathBuf}, sync::Arc, }; pub fn init(cx: &mut MutableAppContext) { cx.add_global_action("workspace:open", open); cx.add_global_action("workspace:open_paths", open_paths); cx.add_action("workspace:save", Workspace::save_active_item); cx.add_action("workspace:debug_elements", Workspace::debug_elements); cx.add_action("workspace:new_file", Workspace::open_new_file); cx.add_action("workspace:share_worktree", Workspace::share_worktree); cx.add_action("workspace:join_worktree", Workspace::join_worktree); cx.add_bindings(vec![ Binding::new("cmd-s", "workspace:save", None), Binding::new("cmd-alt-i", "workspace:debug_elements", None), ]); pane::init(cx); } pub struct OpenParams { pub paths: Vec, pub app_state: AppState, } fn open(app_state: &AppState, cx: &mut MutableAppContext) { let app_state = app_state.clone(); cx.prompt_for_paths( PathPromptOptions { files: true, directories: true, multiple: true, }, move |paths, cx| { if let Some(paths) = paths { cx.dispatch_global_action("workspace:open_paths", OpenParams { paths, app_state }); } }, ); } fn open_paths(params: &OpenParams, cx: &mut MutableAppContext) { log::info!("open paths {:?}", params.paths); // Open paths in existing workspace if possible for window_id in cx.window_ids().collect::>() { if let Some(handle) = cx.root_view::(window_id) { if handle.update(cx, |view, cx| { if view.contains_paths(¶ms.paths, cx.as_ref()) { let open_paths = view.open_paths(¶ms.paths, cx); cx.foreground().spawn(open_paths).detach(); log::info!("open paths on existing workspace"); true } else { false } }) { return; } } } log::info!("open new workspace"); // Add a new workspace if necessary cx.add_window(|cx| { let mut view = Workspace::new( params.app_state.settings.clone(), params.app_state.language_registry.clone(), params.app_state.rpc.clone(), cx, ); let open_paths = view.open_paths(¶ms.paths, cx); cx.foreground().spawn(open_paths).detach(); view }); } pub trait Item: Entity + Sized { type View: ItemView; fn build_view( handle: ModelHandle, settings: watch::Receiver, cx: &mut ViewContext, ) -> Self::View; fn file(&self) -> Option<&File>; } pub trait ItemView: View { fn title(&self, cx: &AppContext) -> String; fn entry_id(&self, cx: &AppContext) -> Option<(usize, Arc)>; fn clone_on_split(&self, _: &mut ViewContext) -> Option where Self: Sized, { None } fn is_dirty(&self, _: &AppContext) -> bool { false } fn has_conflict(&self, _: &AppContext) -> bool { false } fn save(&mut self, _: Option, _: &mut ViewContext) -> Task>; fn should_activate_item_on_event(_: &Self::Event) -> bool { false } fn should_update_tab_on_event(_: &Self::Event) -> bool { false } } pub trait ItemHandle: Send + Sync { fn boxed_clone(&self) -> Box; fn downgrade(&self) -> Box; } pub trait WeakItemHandle: Send + Sync { fn file<'a>(&'a self, cx: &'a AppContext) -> Option<&'a File>; fn add_view( &self, window_id: usize, settings: watch::Receiver, cx: &mut MutableAppContext, ) -> Option>; fn alive(&self, cx: &AppContext) -> bool; } pub trait ItemViewHandle: Send + Sync { fn title(&self, cx: &AppContext) -> String; fn entry_id(&self, cx: &AppContext) -> Option<(usize, Arc)>; fn boxed_clone(&self) -> Box; fn clone_on_split(&self, cx: &mut MutableAppContext) -> Option>; fn set_parent_pane(&self, pane: &ViewHandle, cx: &mut MutableAppContext); fn id(&self) -> usize; fn to_any(&self) -> AnyViewHandle; fn is_dirty(&self, cx: &AppContext) -> bool; fn has_conflict(&self, cx: &AppContext) -> bool; fn save(&self, file: Option, cx: &mut MutableAppContext) -> Task>; } impl ItemHandle for ModelHandle { fn boxed_clone(&self) -> Box { Box::new(self.clone()) } fn downgrade(&self) -> Box { Box::new(self.downgrade()) } } impl WeakItemHandle for WeakModelHandle { fn file<'a>(&'a self, cx: &'a AppContext) -> Option<&'a File> { self.upgrade(cx).and_then(|h| h.read(cx).file()) } fn add_view( &self, window_id: usize, settings: watch::Receiver, cx: &mut MutableAppContext, ) -> Option> { if let Some(handle) = self.upgrade(cx.as_ref()) { Some(Box::new(cx.add_view(window_id, |cx| { T::build_view(handle, settings, cx) }))) } else { None } } fn alive(&self, cx: &AppContext) -> bool { self.upgrade(cx).is_some() } } impl ItemViewHandle for ViewHandle { fn title(&self, cx: &AppContext) -> String { self.read(cx).title(cx) } fn entry_id(&self, cx: &AppContext) -> Option<(usize, Arc)> { self.read(cx).entry_id(cx) } fn boxed_clone(&self) -> Box { Box::new(self.clone()) } fn clone_on_split(&self, cx: &mut MutableAppContext) -> Option> { self.update(cx, |item, cx| { cx.add_option_view(|cx| item.clone_on_split(cx)) }) .map(|handle| Box::new(handle) as Box) } fn set_parent_pane(&self, pane: &ViewHandle, cx: &mut MutableAppContext) { pane.update(cx, |_, cx| { cx.subscribe_to_view(self, |pane, item, event, cx| { if T::should_activate_item_on_event(event) { if let Some(ix) = pane.item_index(&item) { pane.activate_item(ix, cx); pane.activate(cx); } } if T::should_update_tab_on_event(event) { cx.notify() } }) }) } fn save(&self, file: Option, cx: &mut MutableAppContext) -> Task> { self.update(cx, |item, cx| item.save(file, cx)) } fn is_dirty(&self, cx: &AppContext) -> bool { self.read(cx).is_dirty(cx) } fn has_conflict(&self, cx: &AppContext) -> bool { self.read(cx).has_conflict(cx) } fn id(&self) -> usize { self.id() } fn to_any(&self) -> AnyViewHandle { self.into() } } impl Clone for Box { fn clone(&self) -> Box { self.boxed_clone() } } impl Clone for Box { fn clone(&self) -> Box { self.boxed_clone() } } #[derive(Debug)] pub struct State { pub modal: Option, pub center: PaneGroup, } pub struct Workspace { pub settings: watch::Receiver, language_registry: Arc, rpc: rpc::Client, modal: Option, center: PaneGroup, panes: Vec>, active_pane: ViewHandle, worktrees: HashSet>, items: Vec>, loading_items: HashMap< (usize, Arc), postage::watch::Receiver, Arc>>>, >, } impl Workspace { pub fn new( settings: watch::Receiver, language_registry: Arc, rpc: rpc::Client, cx: &mut ViewContext, ) -> Self { let pane = cx.add_view(|_| Pane::new(settings.clone())); let pane_id = pane.id(); cx.subscribe_to_view(&pane, move |me, _, event, cx| { me.handle_pane_event(pane_id, event, cx) }); cx.focus(&pane); Workspace { modal: None, center: PaneGroup::new(pane.id()), panes: vec![pane.clone()], active_pane: pane.clone(), settings, language_registry, rpc, worktrees: Default::default(), items: Default::default(), loading_items: Default::default(), } } pub fn worktrees(&self) -> &HashSet> { &self.worktrees } pub fn contains_paths(&self, paths: &[PathBuf], cx: &AppContext) -> bool { paths.iter().all(|path| self.contains_path(&path, cx)) } pub fn contains_path(&self, path: &Path, cx: &AppContext) -> bool { for worktree in &self.worktrees { let worktree = worktree.read(cx).as_local(); if worktree.map_or(false, |w| w.contains_abs_path(path)) { return true; } } false } pub fn worktree_scans_complete(&self, cx: &AppContext) -> impl Future + 'static { let futures = self .worktrees .iter() .filter_map(|worktree| worktree.read(cx).as_local()) .map(|worktree| worktree.scan_complete()) .collect::>(); async move { for future in futures { future.await; } } } pub fn open_paths( &mut self, abs_paths: &[PathBuf], cx: &mut ViewContext, ) -> impl Future { let entries = abs_paths .iter() .cloned() .map(|path| self.file_for_path(&path, cx)) .collect::>(); let bg = cx.background_executor().clone(); let tasks = abs_paths .iter() .cloned() .zip(entries.into_iter()) .map(|(abs_path, file)| { let is_file = bg.spawn(async move { abs_path.is_file() }); cx.spawn(|this, mut cx| async move { if is_file.await { return this .update(&mut cx, |this, cx| this.open_entry(file.entry_id(), cx)); } else { None } }) }) .collect::>(); async move { for task in tasks { if let Some(task) = task.await { task.await; } } } } fn file_for_path(&mut self, abs_path: &Path, cx: &mut ViewContext) -> File { for tree in self.worktrees.iter() { if let Some(relative_path) = tree .read(cx) .as_local() .and_then(|t| abs_path.strip_prefix(t.abs_path()).ok()) { return tree.file(relative_path); } } let worktree = self.add_worktree(&abs_path, cx); worktree.file(Path::new("")) } pub fn add_worktree( &mut self, path: &Path, cx: &mut ViewContext, ) -> ModelHandle { let worktree = cx.add_model(|cx| Worktree::local(path, cx)); cx.observe_model(&worktree, |_, _, cx| cx.notify()); self.worktrees.insert(worktree.clone()); cx.notify(); worktree } pub fn toggle_modal(&mut self, cx: &mut ViewContext, add_view: F) where V: 'static + View, F: FnOnce(&mut ViewContext, &mut Self) -> ViewHandle, { if self.modal.as_ref().map_or(false, |modal| modal.is::()) { self.modal.take(); cx.focus_self(); } else { let modal = add_view(cx, self); cx.focus(&modal); self.modal = Some(modal.into()); } cx.notify(); } pub fn modal(&self) -> Option<&AnyViewHandle> { self.modal.as_ref() } pub fn dismiss_modal(&mut self, cx: &mut ViewContext) { if self.modal.take().is_some() { cx.focus(&self.active_pane); cx.notify(); } } pub fn open_new_file(&mut self, _: &(), cx: &mut ViewContext) { let buffer = cx.add_model(|cx| Buffer::new(0, "", cx)); let buffer_view = cx.add_view(|cx| Editor::for_buffer(buffer.clone(), self.settings.clone(), cx)); self.items.push(ItemHandle::downgrade(&buffer)); self.add_item_view(Box::new(buffer_view), cx); } #[must_use] pub fn open_entry( &mut self, entry: (usize, Arc), cx: &mut ViewContext, ) -> Option> { // If the active pane contains a view for this file, then activate // that item view. if self .active_pane() .update(cx, |pane, cx| pane.activate_entry(entry.clone(), cx)) { return None; } // Otherwise, if this file is already open somewhere in the workspace, // then add another view for it. let settings = self.settings.clone(); let mut view_for_existing_item = None; self.items.retain(|item| { if item.alive(cx.as_ref()) { if view_for_existing_item.is_none() && item .file(cx.as_ref()) .map_or(false, |file| file.entry_id() == entry) { view_for_existing_item = Some( item.add_view(cx.window_id(), settings.clone(), cx.as_mut()) .unwrap(), ); } true } else { false } }); if let Some(view) = view_for_existing_item { self.add_item_view(view, cx); return None; } let (worktree_id, path) = entry.clone(); let worktree = match self.worktrees.get(&worktree_id).cloned() { Some(worktree) => worktree, None => { log::error!("worktree {} does not exist", worktree_id); return None; } }; if let Entry::Vacant(entry) = self.loading_items.entry(entry.clone()) { let (mut tx, rx) = postage::watch::channel(); entry.insert(rx); let language_registry = self.language_registry.clone(); cx.as_mut() .spawn(|mut cx| async move { let buffer = worktree .update(&mut cx, |worktree, cx| { worktree.open_buffer(path.as_ref(), language_registry, cx) }) .await; *tx.borrow_mut() = Some( buffer .map(|buffer| Box::new(buffer) as Box) .map_err(Arc::new), ); }) .detach(); } let mut watch = self.loading_items.get(&entry).unwrap().clone(); Some(cx.spawn(|this, mut cx| async move { let load_result = loop { if let Some(load_result) = watch.borrow().as_ref() { break load_result.clone(); } watch.next().await; }; this.update(&mut cx, |this, cx| { this.loading_items.remove(&entry); match load_result { Ok(item) => { let weak_item = item.downgrade(); let view = weak_item .add_view(cx.window_id(), settings, cx.as_mut()) .unwrap(); this.items.push(weak_item); this.add_item_view(view, cx); } Err(error) => { log::error!("error opening item: {}", error); } } }) })) } pub fn active_item(&self, cx: &ViewContext) -> Option> { self.active_pane().read(cx).active_item() } pub fn save_active_item(&mut self, _: &(), cx: &mut ViewContext) { if let Some(item) = self.active_item(cx) { let handle = cx.handle(); if item.entry_id(cx.as_ref()).is_none() { let worktree = self.worktrees.iter().next(); let start_path = worktree .and_then(|w| w.read(cx).as_local()) .map_or(Path::new(""), |w| w.abs_path()) .to_path_buf(); cx.prompt_for_new_path(&start_path, move |path, cx| { if let Some(path) = path { cx.spawn(|mut cx| async move { let result = async move { let file = handle.update(&mut cx, |me, cx| me.file_for_path(&path, cx)); cx.update(|cx| item.save(Some(file), cx)).await } .await; if let Err(error) = result { error!("failed to save item: {:?}, ", error); } }) .detach() } }); return; } else if item.has_conflict(cx.as_ref()) { const CONFLICT_MESSAGE: &'static str = "This file has changed on disk since you started editing it. Do you want to overwrite it?"; cx.prompt( PromptLevel::Warning, CONFLICT_MESSAGE, &["Overwrite", "Cancel"], move |answer, cx| { if answer == 0 { cx.spawn(|mut cx| async move { if let Err(error) = cx.update(|cx| item.save(None, cx)).await { error!("failed to save item: {:?}, ", error); } }) .detach(); } }, ); } else { cx.spawn(|_, mut cx| async move { if let Err(error) = cx.update(|cx| item.save(None, cx)).await { error!("failed to save item: {:?}, ", error); } }) .detach(); } } } pub fn debug_elements(&mut self, _: &(), cx: &mut ViewContext) { match to_string_pretty(&cx.debug_elements()) { Ok(json) => { let kib = json.len() as f32 / 1024.; cx.as_mut().write_to_clipboard(ClipboardItem::new(json)); log::info!( "copied {:.1} KiB of element debug JSON to the clipboard", kib ); } Err(error) => { log::error!("error debugging elements: {}", error); } }; } fn share_worktree(&mut self, _: &(), cx: &mut ViewContext) { let rpc = self.rpc.clone(); let platform = cx.platform(); let task = cx.spawn(|this, mut cx| async move { rpc.log_in_and_connect(&cx).await?; let share_task = this.update(&mut cx, |this, cx| { let worktree = this.worktrees.iter().next()?; worktree.update(cx, |worktree, cx| { let worktree = worktree.as_local_mut()?; Some(worktree.share(rpc, cx)) }) }); if let Some(share_task) = share_task { let (worktree_id, access_token) = share_task.await?; let worktree_url = rpc::encode_worktree_url(worktree_id, &access_token); log::info!("wrote worktree url to clipboard: {}", worktree_url); platform.write_to_clipboard(ClipboardItem::new(worktree_url)); } surf::Result::Ok(()) }); cx.spawn(|_, _| async move { if let Err(e) = task.await { log::error!("sharing failed: {}", e); } }) .detach(); } fn join_worktree(&mut self, _: &(), cx: &mut ViewContext) { let rpc = self.rpc.clone(); let task = cx.spawn(|this, mut cx| async move { rpc.log_in_and_connect(&cx).await?; let worktree_url = cx .platform() .read_from_clipboard() .ok_or_else(|| anyhow!("failed to read url from clipboard"))?; let (worktree_id, access_token) = rpc::decode_worktree_url(worktree_url.text()) .ok_or_else(|| anyhow!("failed to decode worktree url"))?; log::info!("read worktree url from clipboard: {}", worktree_url.text()); let worktree = Worktree::remote(rpc.clone(), worktree_id, access_token, &mut cx).await?; this.update(&mut cx, |workspace, cx| { cx.observe_model(&worktree, |_, _, cx| cx.notify()); workspace.worktrees.insert(worktree); cx.notify(); }); surf::Result::Ok(()) }); cx.spawn(|_, _| async move { if let Err(e) = task.await { log::error!("joining failed: {}", e); } }) .detach(); } fn add_pane(&mut self, cx: &mut ViewContext) -> ViewHandle { let pane = cx.add_view(|_| Pane::new(self.settings.clone())); let pane_id = pane.id(); cx.subscribe_to_view(&pane, move |me, _, event, cx| { me.handle_pane_event(pane_id, event, cx) }); self.panes.push(pane.clone()); self.activate_pane(pane.clone(), cx); pane } fn activate_pane(&mut self, pane: ViewHandle, cx: &mut ViewContext) { self.active_pane = pane; cx.focus(&self.active_pane); cx.notify(); } fn handle_pane_event( &mut self, pane_id: usize, event: &pane::Event, cx: &mut ViewContext, ) { if let Some(pane) = self.pane(pane_id) { match event { pane::Event::Split(direction) => { self.split_pane(pane, *direction, cx); } pane::Event::Remove => { self.remove_pane(pane, cx); } pane::Event::Activate => { self.activate_pane(pane, cx); } } } else { error!("pane {} not found", pane_id); } } fn split_pane( &mut self, pane: ViewHandle, direction: SplitDirection, cx: &mut ViewContext, ) -> ViewHandle { let new_pane = self.add_pane(cx); self.activate_pane(new_pane.clone(), cx); if let Some(item) = pane.read(cx).active_item() { if let Some(clone) = item.clone_on_split(cx.as_mut()) { self.add_item_view(clone, cx); } } self.center .split(pane.id(), new_pane.id(), direction) .unwrap(); cx.notify(); new_pane } fn remove_pane(&mut self, pane: ViewHandle, cx: &mut ViewContext) { if self.center.remove(pane.id()).unwrap() { self.panes.retain(|p| p != &pane); self.activate_pane(self.panes.last().unwrap().clone(), cx); } } fn pane(&self, pane_id: usize) -> Option> { self.panes.iter().find(|pane| pane.id() == pane_id).cloned() } pub fn active_pane(&self) -> &ViewHandle { &self.active_pane } fn add_item_view(&self, item: Box, cx: &mut ViewContext) { let active_pane = self.active_pane(); item.set_parent_pane(&active_pane, cx.as_mut()); active_pane.update(cx, |pane, cx| { let item_idx = pane.add_item(item, cx); pane.activate_item(item_idx, cx); }); } } impl Entity for Workspace { type Event = (); } impl View for Workspace { fn ui_name() -> &'static str { "Workspace" } fn render(&self, _: &AppContext) -> ElementBox { Container::new( // self.center.render(bump) Stack::new() .with_child(self.center.render()) .with_children(self.modal.as_ref().map(|m| ChildView::new(m.id()).boxed())) .boxed(), ) .with_background_color(rgbu(0xea, 0xea, 0xeb)) .named("workspace") } fn on_focus(&mut self, cx: &mut ViewContext) { cx.focus(&self.active_pane); } } #[cfg(test)] pub trait WorkspaceHandle { fn file_entries(&self, cx: &AppContext) -> Vec<(usize, Arc)>; } #[cfg(test)] impl WorkspaceHandle for ViewHandle { fn file_entries(&self, cx: &AppContext) -> Vec<(usize, Arc)> { self.read(cx) .worktrees() .iter() .flat_map(|tree| { let tree_id = tree.id(); tree.read(cx) .files(0) .map(move |f| (tree_id, f.path().clone())) }) .collect::>() } } #[cfg(test)] mod tests { use super::*; use crate::{ editor::Editor, test::{build_app_state, temp_tree}, }; use serde_json::json; use std::{collections::HashSet, fs}; use tempdir::TempDir; #[gpui::test] fn test_open_paths_action(cx: &mut gpui::MutableAppContext) { let app_state = build_app_state(cx.as_ref()); init(cx); let dir = temp_tree(json!({ "a": { "aa": null, "ab": null, }, "b": { "ba": null, "bb": null, }, "c": { "ca": null, "cb": null, }, })); cx.dispatch_global_action( "workspace:open_paths", OpenParams { paths: vec![ dir.path().join("a").to_path_buf(), dir.path().join("b").to_path_buf(), ], app_state: app_state.clone(), }, ); assert_eq!(cx.window_ids().count(), 1); cx.dispatch_global_action( "workspace:open_paths", OpenParams { paths: vec![dir.path().join("a").to_path_buf()], app_state: app_state.clone(), }, ); assert_eq!(cx.window_ids().count(), 1); let workspace_view_1 = cx .root_view::(cx.window_ids().next().unwrap()) .unwrap(); assert_eq!(workspace_view_1.read(cx).worktrees().len(), 2); cx.dispatch_global_action( "workspace:open_paths", OpenParams { paths: vec![ dir.path().join("b").to_path_buf(), dir.path().join("c").to_path_buf(), ], app_state: app_state.clone(), }, ); assert_eq!(cx.window_ids().count(), 2); } #[gpui::test] async fn test_open_entry(mut cx: gpui::TestAppContext) { let dir = temp_tree(json!({ "a": { "file1": "contents 1", "file2": "contents 2", "file3": "contents 3", }, })); let app_state = cx.read(build_app_state); let (_, workspace) = cx.add_window(|cx| { let mut workspace = Workspace::new( app_state.settings, app_state.language_registry, app_state.rpc, cx, ); workspace.add_worktree(dir.path(), cx); workspace }); cx.read(|cx| workspace.read(cx).worktree_scans_complete(cx)) .await; let entries = cx.read(|cx| workspace.file_entries(cx)); let file1 = entries[0].clone(); let file2 = entries[1].clone(); let file3 = entries[2].clone(); // Open the first entry workspace .update(&mut cx, |w, cx| w.open_entry(file1.clone(), cx)) .unwrap() .await; cx.read(|cx| { let pane = workspace.read(cx).active_pane().read(cx); assert_eq!( pane.active_item().unwrap().entry_id(cx), Some(file1.clone()) ); assert_eq!(pane.items().len(), 1); }); // Open the second entry workspace .update(&mut cx, |w, cx| w.open_entry(file2.clone(), cx)) .unwrap() .await; cx.read(|cx| { let pane = workspace.read(cx).active_pane().read(cx); assert_eq!( pane.active_item().unwrap().entry_id(cx), Some(file2.clone()) ); assert_eq!(pane.items().len(), 2); }); // Open the first entry again. The existing pane item is activated. workspace.update(&mut cx, |w, cx| { assert!(w.open_entry(file1.clone(), cx).is_none()) }); cx.read(|cx| { let pane = workspace.read(cx).active_pane().read(cx); assert_eq!( pane.active_item().unwrap().entry_id(cx), Some(file1.clone()) ); assert_eq!(pane.items().len(), 2); }); // Split the pane with the first entry, then open the second entry again. workspace.update(&mut cx, |w, cx| { w.split_pane(w.active_pane().clone(), SplitDirection::Right, cx); assert!(w.open_entry(file2.clone(), cx).is_none()); assert_eq!( w.active_pane() .read(cx) .active_item() .unwrap() .entry_id(cx.as_ref()), Some(file2.clone()) ); }); // Open the third entry twice concurrently. Two pane items // are added. let (t1, t2) = workspace.update(&mut cx, |w, cx| { ( w.open_entry(file3.clone(), cx).unwrap(), w.open_entry(file3.clone(), cx).unwrap(), ) }); t1.await; t2.await; cx.read(|cx| { let pane = workspace.read(cx).active_pane().read(cx); assert_eq!( pane.active_item().unwrap().entry_id(cx), Some(file3.clone()) ); let pane_entries = pane .items() .iter() .map(|i| i.entry_id(cx).unwrap()) .collect::>(); assert_eq!(pane_entries, &[file1, file2, file3.clone(), file3]); }); } #[gpui::test] async fn test_open_paths(mut cx: gpui::TestAppContext) { let dir1 = temp_tree(json!({ "a.txt": "", })); let dir2 = temp_tree(json!({ "b.txt": "", })); let app_state = cx.read(build_app_state); let (_, workspace) = cx.add_window(|cx| { let mut workspace = Workspace::new( app_state.settings, app_state.language_registry, app_state.rpc, cx, ); workspace.add_worktree(dir1.path(), cx); workspace }); cx.read(|cx| workspace.read(cx).worktree_scans_complete(cx)) .await; // Open a file within an existing worktree. cx.update(|cx| { workspace.update(cx, |view, cx| { view.open_paths(&[dir1.path().join("a.txt")], cx) }) }) .await; cx.read(|cx| { assert_eq!( workspace .read(cx) .active_pane() .read(cx) .active_item() .unwrap() .title(cx), "a.txt" ); }); // Open a file outside of any existing worktree. cx.update(|cx| { workspace.update(cx, |view, cx| { view.open_paths(&[dir2.path().join("b.txt")], cx) }) }) .await; cx.read(|cx| { let worktree_roots = workspace .read(cx) .worktrees() .iter() .map(|w| w.read(cx).as_local().unwrap().abs_path()) .collect::>(); assert_eq!( worktree_roots, vec![dir1.path(), &dir2.path().join("b.txt")] .into_iter() .collect(), ); assert_eq!( workspace .read(cx) .active_pane() .read(cx) .active_item() .unwrap() .title(cx), "b.txt" ); }); } #[gpui::test] async fn test_save_conflicting_item(mut cx: gpui::TestAppContext) { let dir = temp_tree(json!({ "a.txt": "", })); let app_state = cx.read(build_app_state); let (window_id, workspace) = cx.add_window(|cx| { let mut workspace = Workspace::new( app_state.settings, app_state.language_registry, app_state.rpc, cx, ); workspace.add_worktree(dir.path(), cx); workspace }); let tree = cx.read(|cx| { let mut trees = workspace.read(cx).worktrees().iter(); trees.next().unwrap().clone() }); tree.flush_fs_events(&cx).await; // Open a file within an existing worktree. cx.update(|cx| { workspace.update(cx, |view, cx| { view.open_paths(&[dir.path().join("a.txt")], cx) }) }) .await; let editor = cx.read(|cx| { let pane = workspace.read(cx).active_pane().read(cx); let item = pane.active_item().unwrap(); item.to_any().downcast::().unwrap() }); cx.update(|cx| editor.update(cx, |editor, cx| editor.insert(&"x".to_string(), cx))); fs::write(dir.path().join("a.txt"), "changed").unwrap(); editor .condition(&cx, |editor, cx| editor.has_conflict(cx)) .await; cx.read(|cx| assert!(editor.is_dirty(cx))); cx.update(|cx| workspace.update(cx, |w, cx| w.save_active_item(&(), cx))); cx.simulate_prompt_answer(window_id, 0); editor .condition(&cx, |editor, cx| !editor.is_dirty(cx)) .await; cx.read(|cx| assert!(!editor.has_conflict(cx))); } #[gpui::test] async fn test_open_and_save_new_file(mut cx: gpui::TestAppContext) { let dir = TempDir::new("test-new-file").unwrap(); let app_state = cx.read(build_app_state); let (_, workspace) = cx.add_window(|cx| { let mut workspace = Workspace::new( app_state.settings, app_state.language_registry, app_state.rpc, cx, ); workspace.add_worktree(dir.path(), cx); workspace }); let tree = cx.read(|cx| { workspace .read(cx) .worktrees() .iter() .next() .unwrap() .clone() }); tree.flush_fs_events(&cx).await; // Create a new untitled buffer let editor = workspace.update(&mut cx, |workspace, cx| { workspace.open_new_file(&(), cx); workspace .active_item(cx) .unwrap() .to_any() .downcast::() .unwrap() }); editor.update(&mut cx, |editor, cx| { assert!(!editor.is_dirty(cx.as_ref())); assert_eq!(editor.title(cx.as_ref()), "untitled"); editor.insert(&"hi".to_string(), cx); assert!(editor.is_dirty(cx.as_ref())); }); // Save the buffer. This prompts for a filename. workspace.update(&mut cx, |workspace, cx| workspace.save_active_item(&(), cx)); cx.simulate_new_path_selection(|parent_dir| { assert_eq!(parent_dir, dir.path()); Some(parent_dir.join("the-new-name")) }); cx.read(|cx| { assert!(editor.is_dirty(cx)); assert_eq!(editor.title(cx), "untitled"); }); // When the save completes, the buffer's title is updated. editor .condition(&cx, |editor, cx| !editor.is_dirty(cx)) .await; cx.read(|cx| { assert!(!editor.is_dirty(cx)); assert_eq!(editor.title(cx), "the-new-name"); }); // Edit the file and save it again. This time, there is no filename prompt. editor.update(&mut cx, |editor, cx| { editor.insert(&" there".to_string(), cx); assert_eq!(editor.is_dirty(cx.as_ref()), true); }); workspace.update(&mut cx, |workspace, cx| workspace.save_active_item(&(), cx)); assert!(!cx.did_prompt_for_new_path()); editor .condition(&cx, |editor, cx| !editor.is_dirty(cx)) .await; cx.read(|cx| assert_eq!(editor.title(cx), "the-new-name")); // Open the same newly-created file in another pane item. The new editor should reuse // the same buffer. workspace.update(&mut cx, |workspace, cx| { workspace.open_new_file(&(), cx); workspace.split_pane(workspace.active_pane().clone(), SplitDirection::Right, cx); assert!(workspace .open_entry((tree.id(), Path::new("the-new-name").into()), cx) .is_none()); }); let editor2 = workspace.update(&mut cx, |workspace, cx| { workspace .active_item(cx) .unwrap() .to_any() .downcast::() .unwrap() }); cx.read(|cx| { assert_eq!(editor2.read(cx).buffer(), editor.read(cx).buffer()); }) } #[gpui::test] async fn test_pane_actions(mut cx: gpui::TestAppContext) { cx.update(|cx| pane::init(cx)); let dir = temp_tree(json!({ "a": { "file1": "contents 1", "file2": "contents 2", "file3": "contents 3", }, })); let app_state = cx.read(build_app_state); let (window_id, workspace) = cx.add_window(|cx| { let mut workspace = Workspace::new( app_state.settings, app_state.language_registry, app_state.rpc, cx, ); workspace.add_worktree(dir.path(), cx); workspace }); cx.read(|cx| workspace.read(cx).worktree_scans_complete(cx)) .await; let entries = cx.read(|cx| workspace.file_entries(cx)); let file1 = entries[0].clone(); let pane_1 = cx.read(|cx| workspace.read(cx).active_pane().clone()); workspace .update(&mut cx, |w, cx| w.open_entry(file1.clone(), cx)) .unwrap() .await; cx.read(|cx| { assert_eq!( pane_1.read(cx).active_item().unwrap().entry_id(cx), Some(file1.clone()) ); }); cx.dispatch_action(window_id, vec![pane_1.id()], "pane:split_right", ()); cx.update(|cx| { let pane_2 = workspace.read(cx).active_pane().clone(); assert_ne!(pane_1, pane_2); let pane2_item = pane_2.read(cx).active_item().unwrap(); assert_eq!(pane2_item.entry_id(cx.as_ref()), Some(file1.clone())); cx.dispatch_action(window_id, vec![pane_2.id()], "pane:close_active_item", ()); let workspace_view = workspace.read(cx); assert_eq!(workspace_view.panes.len(), 1); assert_eq!(workspace_view.active_pane(), &pane_1); }); } }