feat: user issue notifications (#1523)

* feat: added new issue subscriber table

* dev: notification model

* feat: added CRUD operation for issue subscriber

* Revert "feat: added CRUD operation for issue subscriber"

This reverts commit b22e0625768f0b096b5898936ace76d6882b0736.

* feat: added CRUD operation for issue subscriber

* dev: notification models and operations

* dev: remove delete endpoint response data

* dev: notification endpoints and fix bg worker for saving notifications

* feat: added list and unsubscribe function in issue subscriber

* dev: filter by snoozed and response update for list and permissions

* dev: update issue notifications

* dev: notification  segregation

* dev: update notifications

* dev: notification filtering

* dev: add issue name in notifications

* dev: notification new endpoints

* fix: pushing local settings

* feat: notification workflow setup and made basic UI

* style: improved UX with toast alerts and other interactions

refactor: changed classnames according to new theme structure, changed all icons to material icons

* feat: showing un-read notification count

* feat: not showing 'subscribe' button on issue created by user & assigned to user

not showing 'Create by you' for view & guest of the workspace

---------

Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
This commit is contained in:
Dakshesh Jain 2023-07-18 12:07:55 +05:30 committed by GitHub
parent 6e9f3971a5
commit 16a7bd3bda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 4665 additions and 32 deletions

View file

@ -1,10 +1,36 @@
import React from "react";
import { useRouter } from "next/router";
import Link from "next/link";
import { useRouter } from "next/router";
// hooks
import useTheme from "hooks/use-theme";
import { NotificationPopover } from "components/notifications";
const workspaceLinks = (workspaceSlug: string) => [
{
icon: "grid_view",
name: "Dashboard",
href: `/${workspaceSlug}`,
},
{
icon: "bar_chart",
name: "Analytics",
href: `/${workspaceSlug}/analytics`,
},
{
icon: "work",
name: "Projects",
href: `/${workspaceSlug}/projects`,
},
{
icon: "task_alt",
name: "My Issues",
href: `/${workspaceSlug}/me/my-issues`,
},
];
// components
import { Icon, Tooltip } from "components/ui";
@ -15,34 +41,6 @@ export const WorkspaceSidebarMenu = () => {
// theme context
const { collapsed: sidebarCollapse } = useTheme();
const workspaceLinks = (workspaceSlug: string) => [
{
icon: "grid_view",
name: "Dashboard",
href: `/${workspaceSlug}`,
},
{
icon: "bar_chart",
name: "Analytics",
href: `/${workspaceSlug}/analytics`,
},
{
icon: "work",
name: "Projects",
href: `/${workspaceSlug}/projects`,
},
{
icon: "task_alt",
name: "My Issues",
href: `/${workspaceSlug}/me/my-issues`,
},
{
icon: "settings",
name: "Settings",
href: `/${workspaceSlug}/settings`,
},
];
return (
<div className="w-full cursor-pointer space-y-2 px-4 mt-5">
{workspaceLinks(workspaceSlug as string).map((link, index) => {
@ -75,6 +73,8 @@ export const WorkspaceSidebarMenu = () => {
</Link>
);
})}
<NotificationPopover />
</div>
);
};