
Closes #28782 The linked template path was updated in #28250. This PR also adds the change to the zed action. Since the issue template link was also referenced in workspace, I updated that occurrence to use the `FileBugReport` action instead. For that, I had to move the action to `zed_actions`. However, with this change only one link has to be updated and any database related errors will have the zed version specs attached to them automatically. Release Notes: - Fixed an issue where the `file bug report` action would redirect to an outdated URL.
108 lines
3.2 KiB
Rust
108 lines
3.2 KiB
Rust
use gpui::{App, ClipboardItem, PromptLevel, actions};
|
|
use system_specs::SystemSpecs;
|
|
use util::ResultExt;
|
|
use workspace::Workspace;
|
|
use zed_actions::feedback::FileBugReport;
|
|
|
|
pub mod feedback_modal;
|
|
|
|
pub mod system_specs;
|
|
|
|
actions!(
|
|
zed,
|
|
[
|
|
CopySystemSpecsIntoClipboard,
|
|
EmailZed,
|
|
OpenZedRepo,
|
|
RequestFeature,
|
|
]
|
|
);
|
|
|
|
const ZED_REPO_URL: &str = "https://github.com/zed-industries/zed";
|
|
|
|
const REQUEST_FEATURE_URL: &str = "https://github.com/zed-industries/zed/discussions/new/choose";
|
|
|
|
fn file_bug_report_url(specs: &SystemSpecs) -> String {
|
|
format!(
|
|
concat!(
|
|
"https://github.com/zed-industries/zed/issues/new",
|
|
"?",
|
|
"template=10_bug_report.yml",
|
|
"&",
|
|
"environment={}"
|
|
),
|
|
urlencoding::encode(&specs.to_string())
|
|
)
|
|
}
|
|
|
|
fn email_zed_url(specs: &SystemSpecs) -> String {
|
|
format!(
|
|
concat!("mailto:hi@zed.dev", "?", "body={}"),
|
|
email_body(specs)
|
|
)
|
|
}
|
|
|
|
fn email_body(specs: &SystemSpecs) -> String {
|
|
let body = format!("\n\nSystem Information:\n\n{}", specs);
|
|
urlencoding::encode(&body).to_string()
|
|
}
|
|
|
|
pub fn init(cx: &mut App) {
|
|
cx.observe_new(|workspace: &mut Workspace, window, cx| {
|
|
let Some(window) = window else {
|
|
return;
|
|
};
|
|
feedback_modal::FeedbackModal::register(workspace, window, cx);
|
|
workspace
|
|
.register_action(|_, _: &CopySystemSpecsIntoClipboard, window, cx| {
|
|
let specs = SystemSpecs::new(window, cx);
|
|
|
|
cx.spawn_in(window, async move |_, cx| {
|
|
let specs = specs.await.to_string();
|
|
|
|
cx.update(|_, cx| {
|
|
cx.write_to_clipboard(ClipboardItem::new_string(specs.clone()))
|
|
})
|
|
.log_err();
|
|
|
|
cx.prompt(
|
|
PromptLevel::Info,
|
|
"Copied into clipboard",
|
|
Some(&specs),
|
|
&["OK"],
|
|
)
|
|
.await
|
|
})
|
|
.detach();
|
|
})
|
|
.register_action(|_, _: &RequestFeature, _, cx| {
|
|
cx.open_url(REQUEST_FEATURE_URL);
|
|
})
|
|
.register_action(move |_, _: &FileBugReport, window, cx| {
|
|
let specs = SystemSpecs::new(window, cx);
|
|
cx.spawn_in(window, async move |_, cx| {
|
|
let specs = specs.await;
|
|
cx.update(|_, cx| {
|
|
cx.open_url(&file_bug_report_url(&specs));
|
|
})
|
|
.log_err();
|
|
})
|
|
.detach();
|
|
})
|
|
.register_action(move |_, _: &EmailZed, window, cx| {
|
|
let specs = SystemSpecs::new(window, cx);
|
|
cx.spawn_in(window, async move |_, cx| {
|
|
let specs = specs.await;
|
|
cx.update(|_, cx| {
|
|
cx.open_url(&email_zed_url(&specs));
|
|
})
|
|
.log_err();
|
|
})
|
|
.detach();
|
|
})
|
|
.register_action(move |_, _: &OpenZedRepo, _, cx| {
|
|
cx.open_url(ZED_REPO_URL);
|
|
});
|
|
})
|
|
.detach();
|
|
}
|