Skip to content

Commit

Permalink
fix: notification read and snooze bugs (#2639)
Browse files Browse the repository at this point in the history
* fix: marking notification as read doesn't remove it from un-read list

* refactor: arranged imports

* fix: past snooze notifications coming in snooze tab
  • Loading branch information
dakshesh14 authored Nov 3, 2023
1 parent c233e6e commit 91878fb
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 64 deletions.
103 changes: 52 additions & 51 deletions web/components/notifications/notification-card.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
import React from "react";

import Image from "next/image";
import { useRouter } from "next/router";

import { ArchiveRestore, Clock, MessageSquare, User2 } from "lucide-react";
// hooks
import useToast from "hooks/use-toast";

// icons
import { ArchiveIcon, CustomMenu, Tooltip } from "@plane/ui";
import { ArchiveRestore, Clock, MessageSquare, User2 } from "lucide-react";

// constants
import { snoozeOptions } from "constants/notification";
// helper
import { replaceUnderscoreIfSnakeCase, truncateText, stripAndTruncateHTML } from "helpers/string.helper";
import {
Expand All @@ -19,14 +17,12 @@ import {
renderShortDate,
renderShortDateWithYearFormat,
} from "helpers/date-time.helper";

// type
import type { IUserNotification } from "types";
// constants
import { snoozeOptions } from "constants/notification";

type NotificationCardProps = {
notification: IUserNotification;
isSnoozedTabOpen: boolean;
markNotificationReadStatus: (notificationId: string) => Promise<void>;
markNotificationReadStatusToggle: (notificationId: string) => Promise<void>;
markNotificationArchivedStatus: (notificationId: string) => Promise<void>;
Expand All @@ -37,6 +33,7 @@ type NotificationCardProps = {
export const NotificationCard: React.FC<NotificationCardProps> = (props) => {
const {
notification,
isSnoozedTabOpen,
markNotificationReadStatus,
markNotificationReadStatusToggle,
markNotificationArchivedStatus,
Expand All @@ -49,6 +46,8 @@ export const NotificationCard: React.FC<NotificationCardProps> = (props) => {

const { setToastAlert } = useToast();

if (isSnoozedTabOpen && new Date(notification.snoozed_till!) < new Date()) return null;

return (
<div
onClick={() => {
Expand Down Expand Up @@ -92,52 +91,54 @@ export const NotificationCard: React.FC<NotificationCardProps> = (props) => {
)}
</div>
<div className="space-y-2.5 w-full overflow-hidden">
{ !notification.message ? <div className="text-sm w-full break-words">
<span className="font-semibold">
{notification.triggered_by_details.is_bot
? notification.triggered_by_details.first_name
: notification.triggered_by_details.display_name}{" "}
</span>
{notification.data.issue_activity.field !== "comment" && notification.data.issue_activity.verb}{" "}
{notification.data.issue_activity.field === "comment"
? "commented"
: notification.data.issue_activity.field === "None"
? null
: replaceUnderscoreIfSnakeCase(notification.data.issue_activity.field)}{" "}
{notification.data.issue_activity.field !== "comment" && notification.data.issue_activity.field !== "None"
? "to"
: ""}
<span className="font-semibold">
{" "}
{notification.data.issue_activity.field !== "None" ? (
notification.data.issue_activity.field !== "comment" ? (
notification.data.issue_activity.field === "target_date" ? (
renderShortDateWithYearFormat(notification.data.issue_activity.new_value)
) : notification.data.issue_activity.field === "attachment" ? (
"the issue"
) : notification.data.issue_activity.field === "description" ? (
stripAndTruncateHTML(notification.data.issue_activity.new_value, 55)
{!notification.message ? (
<div className="text-sm w-full break-words">
<span className="font-semibold">
{notification.triggered_by_details.is_bot
? notification.triggered_by_details.first_name
: notification.triggered_by_details.display_name}{" "}
</span>
{notification.data.issue_activity.field !== "comment" && notification.data.issue_activity.verb}{" "}
{notification.data.issue_activity.field === "comment"
? "commented"
: notification.data.issue_activity.field === "None"
? null
: replaceUnderscoreIfSnakeCase(notification.data.issue_activity.field)}{" "}
{notification.data.issue_activity.field !== "comment" && notification.data.issue_activity.field !== "None"
? "to"
: ""}
<span className="font-semibold">
{" "}
{notification.data.issue_activity.field !== "None" ? (
notification.data.issue_activity.field !== "comment" ? (
notification.data.issue_activity.field === "target_date" ? (
renderShortDateWithYearFormat(notification.data.issue_activity.new_value)
) : notification.data.issue_activity.field === "attachment" ? (
"the issue"
) : notification.data.issue_activity.field === "description" ? (
stripAndTruncateHTML(notification.data.issue_activity.new_value, 55)
) : (
notification.data.issue_activity.new_value
)
) : (
notification.data.issue_activity.new_value
<span>
{`"`}
{notification.data.issue_activity.new_value.length > 55
? notification?.data?.issue_activity?.issue_comment?.slice(0, 50) + "..."
: notification.data.issue_activity.issue_comment}
{`"`}
</span>
)
) : (
<span>
{`"`}
{notification.data.issue_activity.new_value.length > 55
? notification?.data?.issue_activity?.issue_comment?.slice(0, 50) + "..."
: notification.data.issue_activity.issue_comment}
{`"`}
</span>
)
) : (
"the issue and assigned it to you."
)}
</span>
</div> : <div className="text-sm w-full break-words">
<span className="semi-bold">
{ notification.message }
</span>
</div> }
"the issue and assigned it to you."
)}
</span>
</div>
) : (
<div className="text-sm w-full break-words">
<span className="semi-bold">{notification.message}</span>
</div>
)}

<div className="flex justify-between gap-2 text-xs">
<p className="text-custom-text-300">
Expand Down
9 changes: 2 additions & 7 deletions web/components/notifications/notification-header.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
import React from "react";

// components
import { ArchiveIcon, CustomMenu, Tooltip } from "@plane/ui";

//icon
import { ArrowLeft, CheckCheck, Clock, ListFilter, MoreVertical, RefreshCw, X } from "lucide-react";

// ui
import { ArchiveIcon, CustomMenu, Tooltip } from "@plane/ui";
// helpers
import { getNumberCount } from "helpers/string.helper";

// type
import type { NotificationType, NotificationCount } from "types";

Expand Down
9 changes: 5 additions & 4 deletions web/components/notifications/notification-popover.tsx
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
import React, { Fragment } from "react";
import { Popover, Transition } from "@headlessui/react";
import { Bell } from "lucide-react";
import { observer } from "mobx-react-lite";
// hooks
import useUserNotification from "hooks/use-user-notifications";
// components
import { EmptyState } from "components/common";
import { SnoozeNotificationModal, NotificationCard, NotificationHeader } from "components/notifications";
import { Loader, Tooltip } from "@plane/ui";
// icons
import { Bell } from "lucide-react";
// images
import emptyNotification from "public/empty-state/notification.svg";
// helpers
import { getNumberCount } from "helpers/string.helper";
// mobx store
import { useMobxStore } from "lib/mobx/store-provider";

export const NotificationPopover = () => {
export const NotificationPopover = observer(() => {
const store: any = useMobxStore();

const {
Expand Down Expand Up @@ -121,6 +121,7 @@ export const NotificationPopover = () => {
{notifications.map((notification) => (
<NotificationCard
key={notification.id}
isSnoozedTabOpen={snoozed}
notification={notification}
markNotificationArchivedStatus={markNotificationArchivedStatus}
markNotificationReadStatus={markNotificationAsRead}
Expand Down Expand Up @@ -193,4 +194,4 @@ export const NotificationPopover = () => {
</Popover>
</>
);
};
});
5 changes: 3 additions & 2 deletions web/components/notifications/select-snooze-till-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import { Fragment, FC } from "react";
import { useRouter } from "next/router";
import { useForm, Controller } from "react-hook-form";
import { Transition, Dialog } from "@headlessui/react";
import { X } from "lucide-react";
// date helper
import { getAllTimeIn30MinutesInterval } from "helpers/date-time.helper";
// hooks
import useToast from "hooks/use-toast";
// components
// ui
import { Button, CustomSelect } from "@plane/ui";
import { CustomDatePicker } from "components/ui";
import { X } from "lucide-react";
// types
import type { IUserNotification } from "types";

Expand Down Expand Up @@ -172,6 +172,7 @@ export const SnoozeNotificationModal: FC<SnoozeModalProps> = (props) => {
onChange(val);
}}
className="px-3 py-2 w-full rounded-md border border-custom-border-300 bg-custom-background-100 text-custom-text-100 focus:outline-none !text-sm"
wrapperClassName="w-full"
noBorder
minDate={new Date()}
/>
Expand Down
2 changes: 2 additions & 0 deletions web/hooks/use-user-notifications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ const useUserNotification = () => {
handleReadMutation(isRead ? "unread" : "read");
mutateNotification(notificationId, { read_at: isRead ? null : new Date() });

if (readNotification) removeNotification(notificationId);

if (isRead) {
await userNotificationServices
.markUserNotificationAsUnread(workspaceSlug.toString(), notificationId)
Expand Down

1 comment on commit 91878fb

@vercel
Copy link

@vercel vercel bot commented on 91878fb Nov 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

plane-sh-dev – ./space/

plane-sh-dev-git-develop-plane.vercel.app
plane-space-dev.vercel.app
plane-sh-dev-plane.vercel.app

Please sign in to comment.