mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
87a606446f
* chore: global list layout and list item component added * chore: project view list layout consistency * chore: project view sub header consistency * chore: pages list layout consistency * chore: project view sub header improvement * chore: list layout item component improvement * chore: module list layout consistency * chore: cycle list layout consistency * chore: issue list layout consistency * chore: header height consistency * chore: sub header consistency * chore: list layout improvement * chore: inbox sidebar improvement * fix: cycle quick action * chore: inbox selected issue improvement * chore: label option removed from pages filter * chore: inbox create issue modal improvement
100 lines
3.0 KiB
TypeScript
100 lines
3.0 KiB
TypeScript
import React from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { useRouter } from "next/router";
|
|
// icons
|
|
import { Check, Info } from "lucide-react";
|
|
// ui
|
|
import { CircularProgressIndicator } from "@plane/ui";
|
|
// components
|
|
import { ListItem } from "@/components/core/list";
|
|
import { ModuleListItemAction } from "@/components/modules";
|
|
// hooks
|
|
import { useModule } from "@/hooks/store";
|
|
import { usePlatformOS } from "@/hooks/use-platform-os";
|
|
|
|
type Props = {
|
|
moduleId: string;
|
|
isArchived?: boolean;
|
|
};
|
|
|
|
export const ModuleListItem: React.FC<Props> = observer((props) => {
|
|
const { moduleId, isArchived = false } = props;
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
// store hooks
|
|
const { getModuleById } = useModule();
|
|
const { isMobile } = usePlatformOS();
|
|
|
|
// derived values
|
|
const moduleDetails = getModuleById(moduleId);
|
|
|
|
if (!moduleDetails) return null;
|
|
|
|
const completionPercentage =
|
|
((moduleDetails.completed_issues + moduleDetails.cancelled_issues) / moduleDetails.total_issues) * 100;
|
|
|
|
const progress = isNaN(completionPercentage) ? 0 : Math.floor(completionPercentage);
|
|
|
|
const completedModuleCheck = moduleDetails.status === "completed";
|
|
|
|
// handlers
|
|
const openModuleOverview = (e: React.MouseEvent<HTMLButtonElement | HTMLAnchorElement>) => {
|
|
e.stopPropagation();
|
|
e.preventDefault();
|
|
const { query } = router;
|
|
|
|
if (query.peekModule) {
|
|
delete query.peekModule;
|
|
router.push({
|
|
pathname: router.pathname,
|
|
query: { ...query },
|
|
});
|
|
} else {
|
|
router.push({
|
|
pathname: router.pathname,
|
|
query: { ...query, peekModule: moduleId },
|
|
});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<ListItem
|
|
title={moduleDetails?.name ?? ""}
|
|
itemLink={`/${workspaceSlug}/projects/${moduleDetails.project_id}/modules/${moduleDetails.id}`}
|
|
onItemClick={(e) => {
|
|
if (isArchived) {
|
|
openModuleOverview(e);
|
|
}
|
|
}}
|
|
prependTitleElement={
|
|
<CircularProgressIndicator size={30} percentage={progress} strokeWidth={3}>
|
|
{completedModuleCheck ? (
|
|
progress === 100 ? (
|
|
<Check className="h-3 w-3 stroke-[2] text-custom-primary-100" />
|
|
) : (
|
|
<span className="text-sm text-custom-primary-100">{`!`}</span>
|
|
)
|
|
) : progress === 100 ? (
|
|
<Check className="h-3 w-3 stroke-[2] text-custom-primary-100" />
|
|
) : (
|
|
<span className="text-xs text-custom-text-300">{`${progress}%`}</span>
|
|
)}
|
|
</CircularProgressIndicator>
|
|
}
|
|
appendTitleElement={
|
|
<button
|
|
onClick={openModuleOverview}
|
|
className={`z-[5] flex-shrink-0 ${isMobile ? "flex" : "hidden group-hover:flex"}`}
|
|
>
|
|
<Info className="h-4 w-4 text-custom-text-400" />
|
|
</button>
|
|
}
|
|
actionableItems={
|
|
<ModuleListItemAction moduleId={moduleId} moduleDetails={moduleDetails} isArchived={isArchived} />
|
|
}
|
|
isMobile={isMobile}
|
|
/>
|
|
);
|
|
});
|