The feedback modal did not match our keyboard-driven design. We can revisit this later if we want, but for now, removing it makes sense. All actions have been inlined in the `Help` menu to maintain discoverability. Additionally, not all feedback-based actions in the command palette were namespaced under `feedback:`, and now they are, so they can all be found there easily. Release Notes: - Notice: The `Give Feedback` modal has been removed. The options to file bug reports, feature requests, email us, and open the Zed repository can now be found within the `Help` menu directly. The command palette actions have undergone the following changes: - `feedback: give feedback` (removed) - `feedback: file bug report` (no change) - `zed: request feature` → `feedback: request feature` - `zed: email zed` → `feedback: email zed` - `zed: open zed repo` → `contribute: open zed repo`
99 lines
3.1 KiB
Rust
99 lines
3.1 KiB
Rust
use gpui::{App, ClipboardItem, PromptLevel, actions};
|
|
use system_specs::{CopySystemSpecsIntoClipboard, SystemSpecs};
|
|
use util::ResultExt;
|
|
use workspace::Workspace;
|
|
use zed_actions::feedback::{EmailZed, FileBugReport, RequestFeature};
|
|
|
|
actions!(
|
|
zed,
|
|
[
|
|
/// Opens the Zed repository on GitHub.
|
|
OpenZedRepo,
|
|
]
|
|
);
|
|
|
|
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, _, _| {
|
|
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();
|
|
}
|