mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
* chore: refactored view store and services * chore: removed unused import * chore: refactored update view component * fix: lint errors
133 lines
4.5 KiB
TypeScript
133 lines
4.5 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
// types
|
|
import { EUserPermissions, EUserPermissionsLevel, PROJECT_VIEW_TRACKER_ELEMENTS } from "@plane/constants";
|
|
import { IProjectView } from "@plane/types";
|
|
// ui
|
|
import { ContextMenu, CustomMenu, TContextMenuItem, TOAST_TYPE, setToast } from "@plane/ui";
|
|
import { copyUrlToClipboard, cn } from "@plane/utils";
|
|
// helpers
|
|
import { captureClick } from "@/helpers/event-tracker.helper";
|
|
// hooks
|
|
import { useUser, useUserPermissions } from "@/hooks/store/user";
|
|
import { useViewMenuItems } from "@/plane-web/components/views/helper";
|
|
import { PublishViewModal, useViewPublish } from "@/plane-web/components/views/publish";
|
|
// local imports
|
|
import { DeleteProjectViewModal } from "./delete-view-modal";
|
|
import { CreateUpdateProjectViewModal } from "./modal";
|
|
|
|
type Props = {
|
|
parentRef: React.RefObject<HTMLElement>;
|
|
projectId: string;
|
|
view: IProjectView;
|
|
workspaceSlug: string;
|
|
customClassName?: string;
|
|
};
|
|
|
|
export const ViewQuickActions: React.FC<Props> = observer((props) => {
|
|
const { parentRef, projectId, view, workspaceSlug, customClassName } = props;
|
|
// states
|
|
const [createUpdateViewModal, setCreateUpdateViewModal] = useState(false);
|
|
const [deleteViewModal, setDeleteViewModal] = useState(false);
|
|
// store hooks
|
|
const { data } = useUser();
|
|
const { allowPermissions } = useUserPermissions();
|
|
// auth
|
|
const isOwner = view?.owned_by === data?.id;
|
|
const isAdmin = allowPermissions([EUserPermissions.ADMIN], EUserPermissionsLevel.PROJECT, workspaceSlug, projectId);
|
|
|
|
const { isPublishModalOpen, setPublishModalOpen, publishContextMenu } = useViewPublish(
|
|
!!view.anchor,
|
|
isAdmin || isOwner
|
|
);
|
|
|
|
const viewLink = `${workspaceSlug}/projects/${projectId}/views/${view.id}`;
|
|
const handleCopyText = () =>
|
|
copyUrlToClipboard(viewLink).then(() => {
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Link Copied!",
|
|
message: "View link copied to clipboard.",
|
|
});
|
|
});
|
|
const handleOpenInNewTab = () => window.open(`/${viewLink}`, "_blank");
|
|
|
|
const MENU_ITEMS: TContextMenuItem[] = useViewMenuItems({
|
|
isOwner,
|
|
isAdmin,
|
|
setDeleteViewModal,
|
|
setCreateUpdateViewModal,
|
|
handleOpenInNewTab,
|
|
handleCopyText,
|
|
isLocked: view.is_locked,
|
|
workspaceSlug,
|
|
projectId,
|
|
viewId: view.id,
|
|
});
|
|
|
|
if (publishContextMenu) MENU_ITEMS.splice(2, 0, publishContextMenu);
|
|
|
|
const CONTEXT_MENU_ITEMS = MENU_ITEMS.map((item) => ({
|
|
...item,
|
|
action: () => {
|
|
captureClick({ elementName: PROJECT_VIEW_TRACKER_ELEMENTS.LIST_ITEM_CONTEXT_MENU });
|
|
item.action();
|
|
},
|
|
}));
|
|
|
|
return (
|
|
<>
|
|
<CreateUpdateProjectViewModal
|
|
isOpen={createUpdateViewModal}
|
|
onClose={() => setCreateUpdateViewModal(false)}
|
|
workspaceSlug={workspaceSlug}
|
|
projectId={projectId}
|
|
data={view}
|
|
/>
|
|
<DeleteProjectViewModal data={view} isOpen={deleteViewModal} onClose={() => setDeleteViewModal(false)} />
|
|
<PublishViewModal isOpen={isPublishModalOpen} onClose={() => setPublishModalOpen(false)} view={view} />
|
|
<ContextMenu parentRef={parentRef} items={CONTEXT_MENU_ITEMS} />
|
|
<CustomMenu ellipsis placement="bottom-end" closeOnSelect buttonClassName={customClassName}>
|
|
{MENU_ITEMS.map((item) => {
|
|
if (item.shouldRender === false) return null;
|
|
return (
|
|
<CustomMenu.MenuItem
|
|
key={item.key}
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
captureClick({ elementName: PROJECT_VIEW_TRACKER_ELEMENTS.QUICK_ACTIONS });
|
|
item.action();
|
|
}}
|
|
className={cn(
|
|
"flex items-center gap-2",
|
|
{
|
|
"text-custom-text-400": item.disabled,
|
|
},
|
|
item.className
|
|
)}
|
|
disabled={item.disabled}
|
|
>
|
|
{item.icon && <item.icon className={cn("h-3 w-3", item.iconClassName)} />}
|
|
<div>
|
|
<h5>{item.title}</h5>
|
|
{item.description && (
|
|
<p
|
|
className={cn("text-custom-text-300 whitespace-pre-line", {
|
|
"text-custom-text-400": item.disabled,
|
|
})}
|
|
>
|
|
{item.description}
|
|
</p>
|
|
)}
|
|
</div>
|
|
</CustomMenu.MenuItem>
|
|
);
|
|
})}
|
|
</CustomMenu>
|
|
</>
|
|
);
|
|
});
|