[WEB-2846] feat: home integrations (#6321)

* wip

* chore: wip

* fix: preserved old component

* fix

* fix: seperate route added

* fix

* Only return user ID of project members

* Return issue ID

* fix: recents api integrations

* fix: types

* fix: types

* fix: added tooltips

* chore: added apis

---------

Co-authored-by: sangeethailango <sangeethailango21@gmail.com>
Co-authored-by: Bavisetti Narayan <72156168+NarayanBavisetti@users.noreply.github.com>
This commit is contained in:
Akshita Goyal 2025-01-06 20:36:13 +05:30 committed by GitHub
parent 0cabde03f0
commit 790ecee629
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
47 changed files with 2100 additions and 38 deletions

View file

@ -18,6 +18,7 @@ interface IListItemProps {
parentRef: React.RefObject<HTMLDivElement>;
disableLink?: boolean;
className?: string;
itemClassName?: string;
actionItemContainerClassName?: string;
isSidebarOpen?: boolean;
quickActionElement?: JSX.Element;
@ -38,6 +39,7 @@ export const ListItem: FC<IListItemProps> = (props) => {
actionItemContainerClassName = "",
isSidebarOpen = false,
quickActionElement,
itemClassName = "",
} = props;
// router
@ -61,7 +63,7 @@ export const ListItem: FC<IListItemProps> = (props) => {
className
)}
>
<div className="relative flex w-full items-center justify-between gap-3 overflow-hidden">
<div className={cn("relative flex w-full items-center justify-between gap-3 overflow-hidden", itemClassName)}>
<ControlLink
className="relative flex w-full items-center gap-3 overflow-hidden"
href={itemLink}