fix: issue delete notification message updated (#5373)
This commit is contained in:
parent
a36adae995
commit
d60e988ca1
2 changed files with 30 additions and 24 deletions
|
|
@ -28,7 +28,7 @@ export type TNotificationData = {
|
|||
actor: string | undefined;
|
||||
field: string | undefined;
|
||||
issue_comment: string | undefined;
|
||||
verb: "created" | "updated";
|
||||
verb: "created" | "updated" | "deleted";
|
||||
new_value: string | undefined;
|
||||
old_value: string | undefined;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -104,29 +104,35 @@ export const NotificationItem: FC<TNotificationItem> = observer((props) => {
|
|||
: notificationField === "None"
|
||||
? null
|
||||
: replaceUnderscoreIfSnakeCase(notificationField)}{" "}
|
||||
{!["comment", "archived_at", "None"].includes(notificationField) ? "to" : ""}
|
||||
<span className="font-semibold">
|
||||
{" "}
|
||||
{notificationField !== "None" ? (
|
||||
notificationField !== "comment" ? (
|
||||
notificationField === "target_date" ? (
|
||||
renderFormattedDate(notification?.data?.issue_activity.new_value)
|
||||
) : notificationField === "attachment" ? (
|
||||
"the issue"
|
||||
) : notificationField === "description" ? (
|
||||
stripAndTruncateHTML(notification?.data?.issue_activity.new_value || "", 55)
|
||||
) : notificationField === "archived_at" ? null : (
|
||||
notification?.data?.issue_activity.new_value
|
||||
)
|
||||
) : (
|
||||
<span>
|
||||
{sanitizeCommentForNotification(notification?.data?.issue_activity.new_value ?? undefined)}
|
||||
</span>
|
||||
)
|
||||
) : (
|
||||
"the issue and assigned it to you."
|
||||
)}
|
||||
</span>
|
||||
{notification?.data?.issue_activity.verb !== "deleted" && (
|
||||
<>
|
||||
{!["comment", "archived_at", "None"].includes(notificationField) ? "to" : ""}
|
||||
<span className="font-semibold">
|
||||
{" "}
|
||||
{notificationField !== "None" ? (
|
||||
notificationField !== "comment" ? (
|
||||
notificationField === "target_date" ? (
|
||||
renderFormattedDate(notification?.data?.issue_activity.new_value)
|
||||
) : notificationField === "attachment" ? (
|
||||
"the issue"
|
||||
) : notificationField === "description" ? (
|
||||
stripAndTruncateHTML(notification?.data?.issue_activity.new_value || "", 55)
|
||||
) : notificationField === "archived_at" ? null : (
|
||||
notification?.data?.issue_activity.new_value
|
||||
)
|
||||
) : (
|
||||
<span>
|
||||
{sanitizeCommentForNotification(
|
||||
notification?.data?.issue_activity.new_value ?? undefined
|
||||
)}
|
||||
</span>
|
||||
)
|
||||
) : (
|
||||
"the issue and assigned it to you."
|
||||
)}
|
||||
</span>
|
||||
</>
|
||||
)}
|
||||
</>
|
||||
) : (
|
||||
<span className="semi-bold">{notification.message}</span>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue