aboutsummaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
authorNuckyz <61953774+Nuckyz@users.noreply.github.com>2023-03-04 14:49:15 -0300
committerGitHub <noreply@github.com>2023-03-04 18:49:15 +0100
commite219aaa062563202c6b723ada06f115437ab35a7 (patch)
tree66baa307976f8472360d8e69f5d1ec54e51371c2 /src/api
parentcab72e1be627fb7cb06725d0a3e262e214de170f (diff)
downloadVencord-e219aaa062563202c6b723ada06f115437ab35a7.tar.gz
Vencord-e219aaa062563202c6b723ada06f115437ab35a7.tar.bz2
Vencord-e219aaa062563202c6b723ada06f115437ab35a7.zip
Notifications: Permanent option and close button (#563)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/api')
-rw-r--r--src/api/Notifications/NotificationComponent.tsx33
-rw-r--r--src/api/Notifications/Notifications.tsx2
-rw-r--r--src/api/Notifications/styles.css33
3 files changed, 58 insertions, 10 deletions
diff --git a/src/api/Notifications/NotificationComponent.tsx b/src/api/Notifications/NotificationComponent.tsx
index 036cacd..29cd68f 100644
--- a/src/api/Notifications/NotificationComponent.tsx
+++ b/src/api/Notifications/NotificationComponent.tsx
@@ -20,7 +20,7 @@ import "./styles.css";
import { useSettings } from "@api/settings";
import ErrorBoundary from "@components/ErrorBoundary";
-import { Forms, React, useEffect, useMemo, useState, useStateFromStores, WindowStore } from "@webpack/common";
+import { React, useEffect, useMemo, useState, useStateFromStores, WindowStore } from "@webpack/common";
import { NotificationData } from "./Notifications";
@@ -32,7 +32,8 @@ export default ErrorBoundary.wrap(function NotificationComponent({
icon,
onClick,
onClose,
- image
+ image,
+ permanent
}: NotificationData) {
const { timeout, position } = useSettings(["notifications.timeout", "notifications.position"]).notifications;
const hasFocus = useStateFromStores([WindowStore], () => WindowStore.isFocused());
@@ -43,7 +44,7 @@ export default ErrorBoundary.wrap(function NotificationComponent({
const start = useMemo(() => Date.now(), [timeout, isHover, hasFocus]);
useEffect(() => {
- if (isHover || !hasFocus || timeout === 0) return void setElapsed(0);
+ if (isHover || !hasFocus || timeout === 0 || permanent) return void setElapsed(0);
const intervalId = setInterval(() => {
const elapsed = Date.now() - start;
@@ -74,14 +75,36 @@ export default ErrorBoundary.wrap(function NotificationComponent({
<div className="vc-notification">
{icon && <img className="vc-notification-icon" src={icon} alt="" />}
<div className="vc-notification-content">
- <Forms.FormTitle tag="h2">{title}</Forms.FormTitle>
+ <div className="vc-notification-header">
+ <h2 className="vc-notification-title">{title}</h2>
+ <button
+ style={{ all: "unset", cursor: "pointer" }}
+ onClick={e => {
+ e.preventDefault();
+ e.stopPropagation();
+ onClose!();
+ }}
+ >
+ <svg
+ className="vc-notification-close-btn"
+ width="24"
+ height="24"
+ viewBox="0 0 24 24"
+ role="img"
+ aria-labelledby="vc-notification-dismiss-title"
+ >
+ <title id="vc-notification-dismiss-title">Dismiss Notification</title>
+ <path fill="currentColor" d="M18.4 4L12 10.4L5.6 4L4 5.6L10.4 12L4 18.4L5.6 20L12 13.6L18.4 20L20 18.4L13.6 12L20 5.6L18.4 4Z" />
+ </svg>
+ </button>
+ </div>
<div>
{richBody ?? <p className="vc-notification-p">{body}</p>}
</div>
</div>
</div>
{image && <img className="vc-notification-img" src={image} alt="" />}
- {timeout !== 0 && (
+ {timeout !== 0 && !permanent && (
<div
className="vc-notification-progressbar"
style={{ width: `${(1 - timeoutProgress) * 100}%`, backgroundColor: color || "var(--brand-experiment)" }}
diff --git a/src/api/Notifications/Notifications.tsx b/src/api/Notifications/Notifications.tsx
index 46472ad..a6b2ccd 100644
--- a/src/api/Notifications/Notifications.tsx
+++ b/src/api/Notifications/Notifications.tsx
@@ -54,6 +54,8 @@ export interface NotificationData {
onClick?(): void;
onClose?(): void;
color?: string;
+ /** Whether this notification should not have a timeout */
+ permanent?: boolean;
}
function _showNotification(notification: NotificationData, id: number) {
diff --git a/src/api/Notifications/styles.css b/src/api/Notifications/styles.css
index 84d8ff7..a3db81e 100644
--- a/src/api/Notifications/styles.css
+++ b/src/api/Notifications/styles.css
@@ -22,17 +22,40 @@
gap: 1.25rem;
}
+.vc-notification-content {
+ width: 100%;
+}
+
+.vc-notification-header {
+ display: flex;
+ justify-content: space-between;
+}
+
+.vc-notification-title {
+ color: var(--header-primary);
+ font-size: 1rem;
+ font-weight: 600;
+ line-height: 1.25rem;
+ text-transform: uppercase;
+}
+
+.vc-notification-close-btn {
+ color: var(--interactive-normal);
+ opacity: 0.5;
+ transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;
+}
+
+.vc-notification-close-btn:hover {
+ color: var(--interactive-hover);
+ opacity: 1;
+}
+
.vc-notification-icon {
height: 4rem;
width: 4rem;
border-radius: 6px;
}
-/* Discord adding 3km margin to generic tags */
-.vc-notification h2 {
- margin: unset;
-}
-
.vc-notification-progressbar {
height: 0.25rem;
border-radius: 5px;