mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
092e65b43d
* [WEB-1424] chore: page and view logo implementation, and emoji/icon picker improvement (#4583) * chore: added logo_props * chore: logo props in cycles, views and modules * chore: emoji icon picker types updated * chore: info icon added to plane ui package * chore: icon color adjust helper function added * style: icon picker ui improvement and default color options updated * chore: update page logo action added in store * chore: emoji code to unicode helper function added * chore: common logo renderer component added * chore: app header project logo updated * chore: project logo updated across platform * chore: page logo picker added * chore: control link component improvement * chore: list item improvement * chore: emoji picker component updated * chore: space app and package logo prop type updated * chore: migration * chore: logo added to project view * chore: page logo picker added in create modal and breadcrumbs * chore: view logo picker added in create modal and updated breadcrumbs * fix: build error * chore: AIO docker images for preview deployments (#4605) * fix: adding single docker base file * action added * fix action * dockerfile.base modified * action fix * dockerfile * fix: base aio dockerfile * fix: dockerfile.base * fix: dockerfile base * fix: modified folder structure * fix: action * fix: dockerfile * fix: dockerfile.base * fix: supervisor file name changed * fix: base dockerfile updated * fix dockerfile base * fix: base dockerfile * fix: docker files * fix: base dockerfile * update base image * modified docker aio base * aio base modified to debian-12-slim * fixes * finalize the dockerfiles with volume exposure * modified the aio build and dockerfile * fix: codacy suggestions implemented * fix: codacy fix * update aio build action --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> * fix: merge conflict * chore: lucide react added to planu ui package * chore: new emoji picker component added with lucid icon and code refactor * chore: logo component updated * chore: emoji picker updated for pages and views --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Manish Gupta <59428681+mguptahub@users.noreply.github.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> * fix: build error --------- Co-authored-by: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Manish Gupta <59428681+mguptahub@users.noreply.github.com> Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so>
102 lines
3.2 KiB
TypeScript
102 lines
3.2 KiB
TypeScript
import React, { useRef } 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;
|
|
};
|
|
|
|
export const ModuleListItem: React.FC<Props> = observer((props) => {
|
|
const { moduleId } = props;
|
|
// refs
|
|
const parentRef = useRef(null);
|
|
// 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 },
|
|
});
|
|
}
|
|
};
|
|
|
|
const handleArchivedModuleClick = (e: React.MouseEvent<HTMLButtonElement | HTMLAnchorElement>) => {
|
|
openModuleOverview(e);
|
|
};
|
|
|
|
const handleItemClick = moduleDetails.archived_at ? handleArchivedModuleClick : undefined;
|
|
|
|
return (
|
|
<ListItem
|
|
title={moduleDetails?.name ?? ""}
|
|
itemLink={`/${workspaceSlug}/projects/${moduleDetails.project_id}/modules/${moduleDetails.id}`}
|
|
onItemClick={handleItemClick}
|
|
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-[9px] 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} parentRef={parentRef} />}
|
|
isMobile={isMobile}
|
|
parentRef={parentRef}
|
|
/>
|
|
);
|
|
});
|