395 lines
12 KiB
Rust
395 lines
12 KiB
Rust
use crate::{
|
|
animation::cubic_bezier,
|
|
button::{Button, ButtonVariants as _},
|
|
h_flex,
|
|
theme::{
|
|
colors::{blue, green, red, yellow},
|
|
scale::ColorScaleStep,
|
|
ActiveTheme as _,
|
|
},
|
|
v_flex, Icon, IconName, Sizable as _, StyledExt,
|
|
};
|
|
use gpui::{
|
|
div, prelude::FluentBuilder, px, Animation, AnimationExt, App, AppContext, ClickEvent, Context,
|
|
DismissEvent, ElementId, Entity, EventEmitter, InteractiveElement as _, IntoElement,
|
|
ParentElement as _, Render, SharedString, StatefulInteractiveElement, Styled, Subscription,
|
|
Window,
|
|
};
|
|
use smol::Timer;
|
|
use std::{
|
|
any::TypeId,
|
|
collections::{HashMap, VecDeque},
|
|
sync::Arc,
|
|
time::Duration,
|
|
};
|
|
|
|
pub enum NotificationType {
|
|
Info,
|
|
Success,
|
|
Warning,
|
|
Error,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq, Clone, Hash, Eq)]
|
|
pub(crate) enum NotificationId {
|
|
Id(TypeId),
|
|
IdAndElementId(TypeId, ElementId),
|
|
}
|
|
|
|
impl From<TypeId> for NotificationId {
|
|
fn from(type_id: TypeId) -> Self {
|
|
Self::Id(type_id)
|
|
}
|
|
}
|
|
|
|
impl From<(TypeId, ElementId)> for NotificationId {
|
|
fn from((type_id, id): (TypeId, ElementId)) -> Self {
|
|
Self::IdAndElementId(type_id, id)
|
|
}
|
|
}
|
|
|
|
type OnClick = Option<Arc<dyn Fn(&ClickEvent, &mut Window, &mut App)>>;
|
|
|
|
/// A notification element.
|
|
pub struct Notification {
|
|
/// The id is used make the notification unique.
|
|
/// Then you push a notification with the same id, the previous notification will be replaced.
|
|
///
|
|
/// None means the notification will be added to the end of the list.
|
|
id: NotificationId,
|
|
type_: NotificationType,
|
|
title: Option<SharedString>,
|
|
message: SharedString,
|
|
icon: Option<Icon>,
|
|
autohide: bool,
|
|
on_click: OnClick,
|
|
closing: bool,
|
|
}
|
|
|
|
impl From<String> for Notification {
|
|
fn from(s: String) -> Self {
|
|
Self::new(s)
|
|
}
|
|
}
|
|
|
|
impl From<SharedString> for Notification {
|
|
fn from(s: SharedString) -> Self {
|
|
Self::new(s)
|
|
}
|
|
}
|
|
|
|
impl From<&'static str> for Notification {
|
|
fn from(s: &'static str) -> Self {
|
|
Self::new(s)
|
|
}
|
|
}
|
|
|
|
impl From<(NotificationType, &'static str)> for Notification {
|
|
fn from((type_, content): (NotificationType, &'static str)) -> Self {
|
|
Self::new(content).with_type(type_)
|
|
}
|
|
}
|
|
|
|
impl From<(NotificationType, SharedString)> for Notification {
|
|
fn from((type_, content): (NotificationType, SharedString)) -> Self {
|
|
Self::new(content).with_type(type_)
|
|
}
|
|
}
|
|
|
|
struct DefaultIdType;
|
|
|
|
impl Notification {
|
|
/// Create a new notification with the given content.
|
|
///
|
|
/// default width is 320px.
|
|
pub fn new(message: impl Into<SharedString>) -> Self {
|
|
let id: SharedString = uuid::Uuid::new_v4().to_string().into();
|
|
let id = (TypeId::of::<DefaultIdType>(), id.into());
|
|
|
|
Self {
|
|
id: id.into(),
|
|
title: None,
|
|
message: message.into(),
|
|
type_: NotificationType::Info,
|
|
icon: None,
|
|
autohide: true,
|
|
on_click: None,
|
|
closing: false,
|
|
}
|
|
}
|
|
|
|
pub fn info(message: impl Into<SharedString>) -> Self {
|
|
Self::new(message).with_type(NotificationType::Info)
|
|
}
|
|
|
|
pub fn success(message: impl Into<SharedString>) -> Self {
|
|
Self::new(message).with_type(NotificationType::Success)
|
|
}
|
|
|
|
pub fn warning(message: impl Into<SharedString>) -> Self {
|
|
Self::new(message).with_type(NotificationType::Warning)
|
|
}
|
|
|
|
pub fn error(message: impl Into<SharedString>) -> Self {
|
|
Self::new(message).with_type(NotificationType::Error)
|
|
}
|
|
|
|
/// Set the type for unique identification of the notification.
|
|
///
|
|
/// ```rs
|
|
/// struct MyNotificationKind;
|
|
/// let notification = Notification::new("Hello").id::<MyNotificationKind>();
|
|
/// ```
|
|
pub fn id<T: Sized + 'static>(mut self) -> Self {
|
|
self.id = TypeId::of::<T>().into();
|
|
self
|
|
}
|
|
|
|
/// Set the type and id of the notification, used to uniquely identify the notification.
|
|
pub fn id1<T: Sized + 'static>(mut self, key: impl Into<ElementId>) -> Self {
|
|
self.id = (TypeId::of::<T>(), key.into()).into();
|
|
self
|
|
}
|
|
|
|
/// Set the title of the notification, default is None.
|
|
///
|
|
/// If title is None, the notification will not have a title.
|
|
pub fn title(mut self, title: impl Into<SharedString>) -> Self {
|
|
self.title = Some(title.into());
|
|
self
|
|
}
|
|
|
|
/// Set the icon of the notification.
|
|
///
|
|
/// If icon is None, the notification will use the default icon of the type.
|
|
pub fn icon(mut self, icon: impl Into<Icon>) -> Self {
|
|
self.icon = Some(icon.into());
|
|
self
|
|
}
|
|
|
|
/// Set the type of the notification, default is NotificationType::Info.
|
|
pub fn with_type(mut self, type_: NotificationType) -> Self {
|
|
self.type_ = type_;
|
|
self
|
|
}
|
|
|
|
/// Set the auto hide of the notification, default is true.
|
|
pub fn autohide(mut self, autohide: bool) -> Self {
|
|
self.autohide = autohide;
|
|
self
|
|
}
|
|
|
|
/// Set the click callback of the notification.
|
|
pub fn on_click(
|
|
mut self,
|
|
on_click: impl Fn(&ClickEvent, &mut Window, &mut App) + 'static,
|
|
) -> Self {
|
|
self.on_click = Some(Arc::new(on_click));
|
|
self
|
|
}
|
|
|
|
fn dismiss(&mut self, _: &ClickEvent, _window: &mut Window, cx: &mut Context<Self>) {
|
|
self.closing = true;
|
|
cx.notify();
|
|
|
|
// Dismiss the notification after 0.15s to show the animation.
|
|
cx.spawn(|view, cx| async move {
|
|
Timer::after(Duration::from_secs_f32(0.15)).await;
|
|
cx.update(|cx| {
|
|
if let Some(view) = view.upgrade() {
|
|
view.update(cx, |view, cx| {
|
|
view.closing = false;
|
|
cx.emit(DismissEvent);
|
|
});
|
|
}
|
|
})
|
|
})
|
|
.detach()
|
|
}
|
|
}
|
|
|
|
impl EventEmitter<DismissEvent> for Notification {}
|
|
|
|
impl FluentBuilder for Notification {}
|
|
|
|
impl Render for Notification {
|
|
fn render(&mut self, _window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement {
|
|
let closing = self.closing;
|
|
let icon = match self.icon.clone() {
|
|
Some(icon) => icon,
|
|
None => match self.type_ {
|
|
NotificationType::Info => {
|
|
Icon::new(IconName::Info).text_color(blue().step(cx, ColorScaleStep::NINE))
|
|
}
|
|
NotificationType::Error => {
|
|
Icon::new(IconName::CircleX).text_color(red().step(cx, ColorScaleStep::NINE))
|
|
}
|
|
NotificationType::Success => Icon::new(IconName::CircleCheck)
|
|
.text_color(green().step(cx, ColorScaleStep::NINE)),
|
|
NotificationType::Warning => Icon::new(IconName::TriangleAlert)
|
|
.text_color(yellow().step(cx, ColorScaleStep::NINE)),
|
|
},
|
|
};
|
|
|
|
div()
|
|
.id("notification")
|
|
.group("")
|
|
.occlude()
|
|
.relative()
|
|
.w_72()
|
|
.border_1()
|
|
.border_color(cx.theme().base.step(cx, ColorScaleStep::FIVE))
|
|
.bg(cx.theme().background)
|
|
.rounded(px(cx.theme().radius))
|
|
.shadow_md()
|
|
.p_2()
|
|
.gap_3()
|
|
.child(div().absolute().top_2p5().left_2().child(icon))
|
|
.child(
|
|
v_flex()
|
|
.pl_6()
|
|
.gap_1()
|
|
.when_some(self.title.clone(), |this, title| {
|
|
this.child(div().text_xs().font_semibold().child(title))
|
|
})
|
|
.overflow_hidden()
|
|
.child(div().text_xs().child(self.message.clone())),
|
|
)
|
|
.when_some(self.on_click.clone(), |this, on_click| {
|
|
this.cursor_pointer()
|
|
.on_click(cx.listener(move |view, event, window, cx| {
|
|
view.dismiss(event, window, cx);
|
|
on_click(event, window, cx);
|
|
}))
|
|
})
|
|
.when(!self.autohide, |this| {
|
|
this.child(
|
|
h_flex()
|
|
.absolute()
|
|
.top_1()
|
|
.right_1()
|
|
.invisible()
|
|
.group_hover("", |this| this.visible())
|
|
.child(
|
|
Button::new("close")
|
|
.icon(IconName::Close)
|
|
.ghost()
|
|
.xsmall()
|
|
.on_click(cx.listener(Self::dismiss)),
|
|
),
|
|
)
|
|
})
|
|
.with_animation(
|
|
ElementId::NamedInteger("slide-down".into(), closing as usize),
|
|
Animation::new(Duration::from_secs_f64(0.15))
|
|
.with_easing(cubic_bezier(0.4, 0., 0.2, 1.)),
|
|
move |this, delta| {
|
|
if closing {
|
|
let x_offset = px(0.) + delta * px(45.);
|
|
this.left(px(0.) + x_offset).opacity(1. - delta)
|
|
} else {
|
|
let y_offset = px(-45.) + delta * px(45.);
|
|
this.top(px(0.) + y_offset).opacity(delta)
|
|
}
|
|
},
|
|
)
|
|
}
|
|
}
|
|
|
|
/// A list of notifications.
|
|
pub struct NotificationList {
|
|
/// Notifications that will be auto hidden.
|
|
pub(crate) notifications: VecDeque<Entity<Notification>>,
|
|
expanded: bool,
|
|
subscriptions: HashMap<NotificationId, Subscription>,
|
|
}
|
|
|
|
impl NotificationList {
|
|
pub fn new(_window: &mut Window, _cx: &mut Context<Self>) -> Self {
|
|
Self {
|
|
notifications: VecDeque::new(),
|
|
expanded: false,
|
|
subscriptions: HashMap::new(),
|
|
}
|
|
}
|
|
|
|
pub fn push(
|
|
&mut self,
|
|
notification: impl Into<Notification>,
|
|
window: &mut Window,
|
|
cx: &mut Context<Self>,
|
|
) {
|
|
let notification = notification.into();
|
|
let id = notification.id.clone();
|
|
let autohide = notification.autohide;
|
|
|
|
// Remove the notification by id, for keep unique.
|
|
self.notifications.retain(|note| note.read(cx).id != id);
|
|
|
|
let notification = cx.new(|_| notification);
|
|
|
|
self.subscriptions.insert(
|
|
id.clone(),
|
|
cx.subscribe(¬ification, move |view, _, _: &DismissEvent, cx| {
|
|
view.notifications.retain(|note| id != note.read(cx).id);
|
|
view.subscriptions.remove(&id);
|
|
}),
|
|
);
|
|
|
|
self.notifications.push_back(notification.clone());
|
|
if autohide {
|
|
// Sleep for 3 seconds to autohide the notification
|
|
cx.spawn_in(window, |_, mut cx| async move {
|
|
Timer::after(Duration::from_secs(3)).await;
|
|
_ = notification.update_in(&mut cx, |note, window, cx| {
|
|
note.dismiss(&ClickEvent::default(), window, cx)
|
|
});
|
|
})
|
|
.detach();
|
|
}
|
|
cx.notify();
|
|
}
|
|
|
|
pub fn clear(&mut self, _window: &mut Window, cx: &mut Context<Self>) {
|
|
self.notifications.clear();
|
|
cx.notify();
|
|
}
|
|
|
|
pub fn notifications(&self) -> Vec<Entity<Notification>> {
|
|
self.notifications.iter().cloned().collect()
|
|
}
|
|
}
|
|
|
|
impl Render for NotificationList {
|
|
fn render(
|
|
&mut self,
|
|
window: &mut gpui::Window,
|
|
cx: &mut gpui::Context<Self>,
|
|
) -> impl IntoElement {
|
|
let size = window.viewport_size();
|
|
let items = self.notifications.iter().rev().take(10).rev().cloned();
|
|
|
|
div()
|
|
.absolute()
|
|
.flex()
|
|
.top_4()
|
|
.bottom_4()
|
|
.right_4()
|
|
.justify_end()
|
|
.child(
|
|
v_flex()
|
|
.id("notification-list")
|
|
.gap_3()
|
|
.absolute()
|
|
.relative()
|
|
.right_0()
|
|
.h(size.height - px(8.))
|
|
.children(items)
|
|
.on_hover(cx.listener(|view, hovered, _window, cx| {
|
|
view.expanded = *hovered;
|
|
cx.notify();
|
|
})),
|
|
)
|
|
}
|
|
}
|