use crate::{Toast, Workspace}; use collections::HashMap; use gpui::{ AnyView, AppContext, AsyncWindowContext, DismissEvent, Entity, EntityId, EventEmitter, Global, PromptLevel, Render, Task, View, ViewContext, VisualContext, WindowContext, }; use std::{any::TypeId, ops::DerefMut}; pub fn init(cx: &mut AppContext) { cx.set_global(NotificationTracker::new()); } pub trait Notification: EventEmitter + Render {} impl + Render> Notification for V {} pub trait NotificationHandle: Send { fn id(&self) -> EntityId; fn to_any(&self) -> AnyView; } impl NotificationHandle for View { fn id(&self) -> EntityId { self.entity_id() } fn to_any(&self) -> AnyView { self.clone().into() } } impl From<&dyn NotificationHandle> for AnyView { fn from(val: &dyn NotificationHandle) -> Self { val.to_any() } } pub(crate) struct NotificationTracker { notifications_sent: HashMap>, } impl Global for NotificationTracker {} impl std::ops::Deref for NotificationTracker { type Target = HashMap>; fn deref(&self) -> &Self::Target { &self.notifications_sent } } impl DerefMut for NotificationTracker { fn deref_mut(&mut self) -> &mut Self::Target { &mut self.notifications_sent } } impl NotificationTracker { fn new() -> Self { Self { notifications_sent: Default::default(), } } } impl Workspace { pub fn has_shown_notification_once( &self, id: usize, cx: &ViewContext, ) -> bool { cx.global::() .get(&TypeId::of::()) .map(|ids| ids.contains(&id)) .unwrap_or(false) } pub fn show_notification_once( &mut self, id: usize, cx: &mut ViewContext, build_notification: impl FnOnce(&mut ViewContext) -> View, ) { if !self.has_shown_notification_once::(id, cx) { let tracker = cx.global_mut::(); let entry = tracker.entry(TypeId::of::()).or_default(); entry.push(id); self.show_notification::(id, cx, build_notification) } } pub fn show_notification( &mut self, id: usize, cx: &mut ViewContext, build_notification: impl FnOnce(&mut ViewContext) -> View, ) { let type_id = TypeId::of::(); if self .notifications .iter() .all(|(existing_type_id, existing_id, _)| { (*existing_type_id, *existing_id) != (type_id, id) }) { let notification = build_notification(cx); cx.subscribe(¬ification, move |this, _, _: &DismissEvent, cx| { this.dismiss_notification_internal(type_id, id, cx); }) .detach(); self.notifications .push((type_id, id, Box::new(notification))); cx.notify(); } } pub fn show_error(&mut self, err: &E, cx: &mut ViewContext) where E: std::fmt::Debug, { self.show_notification(0, cx, |cx| { cx.new_view(|_cx| { simple_message_notification::MessageNotification::new(format!("Error: {err:?}")) }) }); } pub fn dismiss_notification(&mut self, id: usize, cx: &mut ViewContext) { let type_id = TypeId::of::(); self.dismiss_notification_internal(type_id, id, cx) } pub fn show_toast(&mut self, toast: Toast, cx: &mut ViewContext) { self.dismiss_notification::(toast.id, cx); self.show_notification(toast.id, cx, |cx| { cx.new_view(|_cx| match toast.on_click.as_ref() { Some((click_msg, on_click)) => { let on_click = on_click.clone(); simple_message_notification::MessageNotification::new(toast.msg.clone()) .with_click_message(click_msg.clone()) .on_click(move |cx| on_click(cx)) } None => simple_message_notification::MessageNotification::new(toast.msg.clone()), }) }) } pub fn dismiss_toast(&mut self, id: usize, cx: &mut ViewContext) { self.dismiss_notification::(id, cx); } fn dismiss_notification_internal( &mut self, type_id: TypeId, id: usize, cx: &mut ViewContext, ) { self.notifications .retain(|(existing_type_id, existing_id, _)| { if (*existing_type_id, *existing_id) == (type_id, id) { cx.notify(); false } else { true } }); } } pub mod simple_message_notification { use gpui::{ div, DismissEvent, EventEmitter, InteractiveElement, ParentElement, Render, SharedString, StatefulInteractiveElement, Styled, ViewContext, }; use std::sync::Arc; use ui::prelude::*; use ui::{h_flex, v_flex, Button, Icon, IconName, Label, StyledExt}; pub struct MessageNotification { message: SharedString, on_click: Option)>>, click_message: Option, } impl EventEmitter for MessageNotification {} impl MessageNotification { pub fn new(message: S) -> MessageNotification where S: Into, { Self { message: message.into(), on_click: None, click_message: None, } } pub fn with_click_message(mut self, message: S) -> Self where S: Into, { self.click_message = Some(message.into()); self } pub fn on_click(mut self, on_click: F) -> Self where F: 'static + Fn(&mut ViewContext), { self.on_click = Some(Arc::new(on_click)); self } pub fn dismiss(&mut self, cx: &mut ViewContext) { cx.emit(DismissEvent); } } impl Render for MessageNotification { fn render(&mut self, cx: &mut ViewContext) -> impl IntoElement { v_flex() .elevation_3(cx) .p_4() .child( h_flex() .justify_between() .child(div().max_w_80().child(Label::new(self.message.clone()))) .child( div() .id("cancel") .child(Icon::new(IconName::Close)) .cursor_pointer() .on_click(cx.listener(|this, _, cx| this.dismiss(cx))), ), ) .children(self.click_message.iter().map(|message| { Button::new(message.clone(), message.clone()).on_click(cx.listener( |this, _, cx| { if let Some(on_click) = this.on_click.as_ref() { (on_click)(cx) }; this.dismiss(cx) }, )) })) } } } pub trait NotifyResultExt { type Ok; fn notify_err( self, workspace: &mut Workspace, cx: &mut ViewContext, ) -> Option; fn notify_async_err(self, cx: &mut AsyncWindowContext) -> Option; } impl NotifyResultExt for Result where E: std::fmt::Debug, { type Ok = T; fn notify_err(self, workspace: &mut Workspace, cx: &mut ViewContext) -> Option { match self { Ok(value) => Some(value), Err(err) => { log::error!("TODO {err:?}"); workspace.show_error(&err, cx); None } } } fn notify_async_err(self, cx: &mut AsyncWindowContext) -> Option { match self { Ok(value) => Some(value), Err(err) => { log::error!("TODO {err:?}"); cx.update_root(|view, cx| { if let Ok(workspace) = view.downcast::() { workspace.update(cx, |workspace, cx| workspace.show_error(&err, cx)) } }) .ok(); None } } } } pub trait NotifyTaskExt { fn detach_and_notify_err(self, cx: &mut WindowContext); } impl NotifyTaskExt for Task> where E: std::fmt::Debug + Sized + 'static, R: 'static, { fn detach_and_notify_err(self, cx: &mut WindowContext) { cx.spawn(|mut cx| async move { self.await.notify_async_err(&mut cx) }) .detach(); } } pub trait DetachAndPromptErr { fn detach_and_prompt_err( self, msg: &str, cx: &mut WindowContext, f: impl FnOnce(&anyhow::Error, &mut WindowContext) -> Option + 'static, ); } impl DetachAndPromptErr for Task> where R: 'static, { fn detach_and_prompt_err( self, msg: &str, cx: &mut WindowContext, f: impl FnOnce(&anyhow::Error, &mut WindowContext) -> Option + 'static, ) { let msg = msg.to_owned(); cx.spawn(|mut cx| async move { if let Err(err) = self.await { log::error!("{err:?}"); if let Ok(prompt) = cx.update(|cx| { let detail = f(&err, cx) .unwrap_or_else(|| format!("{err:?}. Please try again.", err = err)); cx.prompt(PromptLevel::Critical, &msg, Some(&detail), &["Ok"]) }) { prompt.await.ok(); } } }) .detach(); } }