/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import "./notifications.scss"; import React from "react"; import { reaction } from "mobx"; import { disposeOnUnmount, observer } from "mobx-react"; import { JsonApiErrorParsed } from "../../../common/k8s-api/json-api"; import { cssNames, prevDefault } from "../../utils"; import type { Notification, NotificationMessage } from "./notifications.store"; import { notificationsStore, NotificationStatus } from "./notifications.store"; import { Animate } from "../animate"; import { Icon } from "../icon"; @observer export class Notifications extends React.Component { public elem: HTMLDivElement | null = null; static ok(message: NotificationMessage) { return notificationsStore.add({ message, timeout: 2_500, status: NotificationStatus.OK, }); } static checkedError(message: unknown, fallback: string, customOpts?: Partial>) { if (typeof message === "string" || message instanceof Error) { return Notifications.error(message, customOpts); } console.warn("Unknown notification error message, falling back to default", message); return Notifications.error(fallback, customOpts); } static error(message: NotificationMessage, customOpts: Partial> = {}) { return notificationsStore.add({ message, timeout: 10_000, status: NotificationStatus.ERROR, ...customOpts, }); } static shortInfo(message: NotificationMessage, customOpts: Partial> = {}) { return this.info(message, { timeout: 5_000, ...customOpts, }); } static info(message: NotificationMessage, customOpts: Partial> = {}) { return notificationsStore.add({ status: NotificationStatus.INFO, timeout: 0, message, ...customOpts, }); } componentDidMount() { disposeOnUnmount(this, [ reaction(() => notificationsStore.notifications.length, () => { this.scrollToLastNotification(); }, { delay: 250 }), ]); } scrollToLastNotification() { if (!this.elem) { return; } this.elem.scrollTo({ top: this.elem.scrollHeight, behavior: "smooth", }); } getMessage(notification: Notification) { let { message } = notification; if (message instanceof JsonApiErrorParsed || message instanceof Error) { message = message.toString(); } return React.Children.toArray(message); } render() { const { notifications, remove, addAutoHideTimer, removeAutoHideTimer } = notificationsStore; return (
this.elem = e}> {notifications.map(notification => { const { id, status, onClose } = notification; const msgText = this.getMessage(notification); return (
addAutoHideTimer(id)} onMouseEnter={() => removeAutoHideTimer(id)} >
{msgText}
{ remove(id); onClose?.(); })} />
); })}
); } }