mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
Removes unused `@rule` mentions and unused APIs from `prompt_store` Follow up to #58067 Release Notes: - N/A
358 lines
11 KiB
Rust
358 lines
11 KiB
Rust
use std::{path::PathBuf, time::Duration};
|
|
|
|
use acp_thread::MentionUri;
|
|
use agent_client_protocol::schema as acp;
|
|
use editor::Editor;
|
|
use gpui::{
|
|
Animation, AnimationExt, AnyView, Context, IntoElement, TaskExt, WeakEntity, Window,
|
|
pulsating_between,
|
|
};
|
|
use language::Buffer;
|
|
use rope::Point;
|
|
use settings::Settings;
|
|
use theme_settings::ThemeSettings;
|
|
use ui::{ButtonLike, TintColor, Tooltip, prelude::*};
|
|
use workspace::{OpenOptions, Workspace};
|
|
|
|
use crate::open_abs_path_at_point;
|
|
|
|
#[derive(IntoElement)]
|
|
pub struct MentionCrease {
|
|
id: ElementId,
|
|
icon: SharedString,
|
|
label: SharedString,
|
|
mention_uri: Option<MentionUri>,
|
|
workspace: Option<WeakEntity<Workspace>>,
|
|
is_toggled: bool,
|
|
is_loading: bool,
|
|
tooltip: Option<SharedString>,
|
|
image_preview: Option<Box<dyn Fn(&mut Window, &mut App) -> AnyView + 'static>>,
|
|
}
|
|
|
|
impl MentionCrease {
|
|
pub fn new(
|
|
id: impl Into<ElementId>,
|
|
icon: impl Into<SharedString>,
|
|
label: impl Into<SharedString>,
|
|
) -> Self {
|
|
Self {
|
|
id: id.into(),
|
|
icon: icon.into(),
|
|
label: label.into(),
|
|
mention_uri: None,
|
|
workspace: None,
|
|
is_toggled: false,
|
|
is_loading: false,
|
|
tooltip: None,
|
|
image_preview: None,
|
|
}
|
|
}
|
|
|
|
pub fn mention_uri(mut self, mention_uri: Option<MentionUri>) -> Self {
|
|
self.mention_uri = mention_uri;
|
|
self
|
|
}
|
|
|
|
pub fn workspace(mut self, workspace: Option<WeakEntity<Workspace>>) -> Self {
|
|
self.workspace = workspace;
|
|
self
|
|
}
|
|
|
|
pub fn is_toggled(mut self, is_toggled: bool) -> Self {
|
|
self.is_toggled = is_toggled;
|
|
self
|
|
}
|
|
|
|
pub fn is_loading(mut self, is_loading: bool) -> Self {
|
|
self.is_loading = is_loading;
|
|
self
|
|
}
|
|
|
|
pub fn tooltip(mut self, tooltip: impl Into<SharedString>) -> Self {
|
|
self.tooltip = Some(tooltip.into());
|
|
self
|
|
}
|
|
|
|
pub fn image_preview(
|
|
mut self,
|
|
builder: impl Fn(&mut Window, &mut App) -> AnyView + 'static,
|
|
) -> Self {
|
|
self.image_preview = Some(Box::new(builder));
|
|
self
|
|
}
|
|
}
|
|
|
|
impl RenderOnce for MentionCrease {
|
|
fn render(self, window: &mut Window, cx: &mut App) -> impl IntoElement {
|
|
let settings = ThemeSettings::get_global(cx);
|
|
let font_size = settings.agent_buffer_font_size(cx);
|
|
let buffer_font = settings.buffer_font.clone();
|
|
let is_loading = self.is_loading;
|
|
let tooltip = self.tooltip;
|
|
let image_preview = self.image_preview;
|
|
|
|
let button_height = DefiniteLength::Absolute(AbsoluteLength::Pixels(
|
|
px(window.line_height().into()) - px(1.),
|
|
));
|
|
|
|
ButtonLike::new(self.id)
|
|
.style(ButtonStyle::Outlined)
|
|
.size(ButtonSize::Compact)
|
|
.height(button_height)
|
|
.selected_style(ButtonStyle::Tinted(TintColor::Accent))
|
|
.toggle_state(self.is_toggled)
|
|
.when_some(
|
|
self.mention_uri.clone().zip(self.workspace.clone()),
|
|
|this, (mention_uri, workspace)| {
|
|
this.on_click(move |_event, window, cx| {
|
|
open_mention_uri(mention_uri.clone(), &workspace, window, cx);
|
|
})
|
|
},
|
|
)
|
|
.child(
|
|
h_flex()
|
|
.pb_px()
|
|
.gap_1()
|
|
.font(buffer_font)
|
|
.text_size(font_size)
|
|
.child(
|
|
Icon::from_path(self.icon.clone())
|
|
.size(IconSize::XSmall)
|
|
.color(Color::Muted),
|
|
)
|
|
.child(self.label.clone())
|
|
.map(|this| {
|
|
if is_loading {
|
|
this.with_animation(
|
|
"loading-context-crease",
|
|
Animation::new(Duration::from_secs(2))
|
|
.repeat()
|
|
.with_easing(pulsating_between(0.4, 0.8)),
|
|
|label, delta| label.opacity(delta),
|
|
)
|
|
.into_any()
|
|
} else {
|
|
this.into_any()
|
|
}
|
|
}),
|
|
)
|
|
.map(|button| {
|
|
if let Some(image_preview) = image_preview {
|
|
button.hoverable_tooltip(image_preview)
|
|
} else {
|
|
button.when_some(tooltip, |this, tooltip_text| {
|
|
this.tooltip(Tooltip::text(tooltip_text))
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
fn open_mention_uri(
|
|
mention_uri: MentionUri,
|
|
workspace: &WeakEntity<Workspace>,
|
|
window: &mut Window,
|
|
cx: &mut App,
|
|
) {
|
|
let Some(workspace) = workspace.upgrade() else {
|
|
return;
|
|
};
|
|
|
|
workspace.update(cx, |workspace, cx| match mention_uri {
|
|
MentionUri::File { abs_path } => {
|
|
open_file(workspace, abs_path, None, window, cx);
|
|
}
|
|
MentionUri::Symbol {
|
|
abs_path,
|
|
line_range,
|
|
..
|
|
} => {
|
|
open_file(
|
|
workspace,
|
|
abs_path,
|
|
Some(Point::new(*line_range.start(), 0)),
|
|
window,
|
|
cx,
|
|
);
|
|
}
|
|
MentionUri::Selection {
|
|
abs_path: Some(abs_path),
|
|
line_range,
|
|
column,
|
|
} => {
|
|
open_file(
|
|
workspace,
|
|
abs_path,
|
|
Some(Point::new(*line_range.start(), column.unwrap_or(0))),
|
|
window,
|
|
cx,
|
|
);
|
|
}
|
|
MentionUri::Directory { abs_path } => {
|
|
reveal_in_project_panel(workspace, abs_path, cx);
|
|
}
|
|
MentionUri::Thread { id, name } => {
|
|
open_thread(workspace, id, name, window, cx);
|
|
}
|
|
MentionUri::Skill {
|
|
skill_file_path, ..
|
|
} => {
|
|
open_skill_file(workspace, skill_file_path, window, cx);
|
|
}
|
|
MentionUri::Fetch { url } => {
|
|
cx.open_url(url.as_str());
|
|
}
|
|
MentionUri::PastedImage { .. }
|
|
| MentionUri::Selection { abs_path: None, .. }
|
|
| MentionUri::Diagnostics { .. }
|
|
| MentionUri::TerminalSelection { .. }
|
|
| MentionUri::GitDiff { .. }
|
|
| MentionUri::MergeConflict { .. } => {}
|
|
});
|
|
}
|
|
|
|
fn open_skill_file(
|
|
workspace: &mut Workspace,
|
|
skill_file_path: PathBuf,
|
|
window: &mut Window,
|
|
cx: &mut Context<Workspace>,
|
|
) {
|
|
// Built-in skills have synthetic paths that don't exist on disk.
|
|
// Open a read-only buffer with the embedded content instead.
|
|
//
|
|
// The buffer is intentionally not registered with the project's buffer
|
|
// store: it has no on-disk backing, isn't searchable, and `Project::
|
|
// create_local_buffer` panics for remote projects (SSH/collab), which
|
|
// would crash Zed if a user clicked a built-in skill mention while
|
|
// connected to a remote project.
|
|
if let Some(content) = agent_skills::builtin_skill_content(&skill_file_path) {
|
|
let languages = workspace.project().read(cx).languages().clone();
|
|
let buffer = cx.new(|cx| Buffer::local(content, cx));
|
|
// Set markdown highlighting asynchronously — the buffer
|
|
// opens instantly and the highlighting appears once loaded.
|
|
cx.spawn({
|
|
let buffer = buffer.clone();
|
|
async move |_, cx| {
|
|
if let Ok(markdown) = languages.language_for_name("Markdown").await {
|
|
buffer.update(cx, |buffer, cx| buffer.set_language(Some(markdown), cx));
|
|
}
|
|
}
|
|
})
|
|
.detach();
|
|
let editor = cx.new(|cx| {
|
|
let mut editor = Editor::for_buffer(buffer, None, window, cx);
|
|
editor.set_read_only(true);
|
|
let title = skill_file_path
|
|
.parent()
|
|
.and_then(|p| p.file_name())
|
|
.map(|n| n.to_string_lossy().into_owned())
|
|
.unwrap_or_else(|| "built-in skill".into());
|
|
editor
|
|
.buffer()
|
|
.update(cx, |buffer, cx| buffer.set_title(title, cx));
|
|
editor
|
|
});
|
|
let pane = workspace.active_pane().clone();
|
|
workspace.add_item(pane, Box::new(editor), None, true, true, window, cx);
|
|
return;
|
|
}
|
|
|
|
workspace
|
|
.open_abs_path(
|
|
skill_file_path,
|
|
OpenOptions {
|
|
focus: Some(true),
|
|
..Default::default()
|
|
},
|
|
window,
|
|
cx,
|
|
)
|
|
.detach_and_log_err(cx);
|
|
}
|
|
|
|
fn open_file(
|
|
workspace: &mut Workspace,
|
|
abs_path: PathBuf,
|
|
point: Option<Point>,
|
|
window: &mut Window,
|
|
cx: &mut Context<Workspace>,
|
|
) {
|
|
if let Some(point) = point {
|
|
if open_abs_path_at_point(workspace, abs_path.clone(), point, window, cx) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
let project = workspace.project();
|
|
if let Some(project_path) =
|
|
project.update(cx, |project, cx| project.find_project_path(&abs_path, cx))
|
|
{
|
|
workspace
|
|
.open_path(project_path, None, true, window, cx)
|
|
.detach_and_log_err(cx);
|
|
} else if abs_path.exists() {
|
|
workspace
|
|
.open_abs_path(
|
|
abs_path,
|
|
OpenOptions {
|
|
focus: Some(true),
|
|
..Default::default()
|
|
},
|
|
window,
|
|
cx,
|
|
)
|
|
.detach_and_log_err(cx);
|
|
}
|
|
}
|
|
|
|
fn reveal_in_project_panel(
|
|
workspace: &mut Workspace,
|
|
abs_path: PathBuf,
|
|
cx: &mut Context<Workspace>,
|
|
) {
|
|
let project = workspace.project();
|
|
let Some(entry_id) = project.update(cx, |project, cx| {
|
|
let path = project.find_project_path(&abs_path, cx)?;
|
|
project.entry_for_path(&path, cx).map(|entry| entry.id)
|
|
}) else {
|
|
return;
|
|
};
|
|
|
|
project.update(cx, |_, cx| {
|
|
cx.emit(project::Event::RevealInProjectPanel(entry_id));
|
|
});
|
|
}
|
|
|
|
fn open_thread(
|
|
workspace: &mut Workspace,
|
|
id: acp::SessionId,
|
|
name: String,
|
|
window: &mut Window,
|
|
cx: &mut Context<Workspace>,
|
|
) {
|
|
use crate::{Agent, AgentPanel, AgentThreadSource, thread_metadata_store::ThreadMetadataStore};
|
|
|
|
let Some(panel) = workspace.panel::<AgentPanel>(cx) else {
|
|
return;
|
|
};
|
|
|
|
// Right now we only support loading threads in the native agent.
|
|
panel.update(cx, |panel, cx| {
|
|
let thread_id = ThreadMetadataStore::try_global(cx)
|
|
.and_then(|store| store.read(cx).entry_by_session(&id).map(|m| m.thread_id));
|
|
if let Some(thread_id) = thread_id {
|
|
panel.load_agent_thread(
|
|
Agent::NativeAgent,
|
|
thread_id,
|
|
None,
|
|
Some(name.into()),
|
|
true,
|
|
AgentThreadSource::AgentPanel,
|
|
window,
|
|
cx,
|
|
);
|
|
} else {
|
|
panel.open_thread(id, None, Some(name.into()), window, cx);
|
|
}
|
|
});
|
|
}
|