After updating zed, a notification is shown in the bottom right with the new version number, a link to the release notes, and an 'x' to dismiss the dialog. Before this PR, clicking the link to the release notes would not dismiss the modal. So, a user returning to the IDE after viewing the notes in the browser would still see the notification. With this change, clicking 'View release notes' also dismisses the notification. Co-authored-by: tomholford <tomholford@users.noreply.github.com> Release Notes: - Made update notification to dismiss when viewing releases notes
60 lines
1.9 KiB
Rust
60 lines
1.9 KiB
Rust
use gpui::{
|
|
div, DismissEvent, EventEmitter, InteractiveElement, IntoElement, ParentElement, Render,
|
|
SemanticVersion, StatefulInteractiveElement, Styled, ViewContext,
|
|
};
|
|
use menu::Cancel;
|
|
use release_channel::ReleaseChannel;
|
|
use workspace::ui::{h_flex, v_flex, Icon, IconName, Label, StyledExt};
|
|
|
|
pub struct UpdateNotification {
|
|
version: SemanticVersion,
|
|
}
|
|
|
|
impl EventEmitter<DismissEvent> for UpdateNotification {}
|
|
|
|
impl Render for UpdateNotification {
|
|
fn render(&mut self, cx: &mut gpui::ViewContext<Self>) -> impl IntoElement {
|
|
let app_name = ReleaseChannel::global(cx).display_name();
|
|
|
|
v_flex()
|
|
.on_action(cx.listener(UpdateNotification::dismiss))
|
|
.elevation_3(cx)
|
|
.p_4()
|
|
.child(
|
|
h_flex()
|
|
.justify_between()
|
|
.child(Label::new(format!(
|
|
"Updated to {app_name} {}",
|
|
self.version
|
|
)))
|
|
.child(
|
|
div()
|
|
.id("cancel")
|
|
.child(Icon::new(IconName::Close))
|
|
.cursor_pointer()
|
|
.on_click(cx.listener(|this, _, cx| this.dismiss(&menu::Cancel, cx))),
|
|
),
|
|
)
|
|
.child(
|
|
div()
|
|
.id("notes")
|
|
.child(Label::new("View the release notes"))
|
|
.cursor_pointer()
|
|
.on_click(cx.listener(|this, _, cx| {
|
|
crate::view_release_notes(&Default::default(), cx);
|
|
this.dismiss(&menu::Cancel, cx)
|
|
})),
|
|
);
|
|
}
|
|
}
|
|
|
|
impl UpdateNotification {
|
|
pub fn new(version: SemanticVersion) -> Self {
|
|
Self { version }
|
|
}
|
|
|
|
pub fn dismiss(&mut self, _: &Cancel, cx: &mut ViewContext<Self>) {
|
|
cx.emit(DismissEvent);
|
|
}
|
|
}
|