diff --git a/apps/app/components/cycles/sidebar.tsx b/apps/app/components/cycles/sidebar.tsx index 982b108fb..a0c0e4a40 100644 --- a/apps/app/components/cycles/sidebar.tsx +++ b/apps/app/components/cycles/sidebar.tsx @@ -131,6 +131,9 @@ export const CycleDetailsSidebar: React.FC = ({ const isStartValid = new Date(`${cycle?.start_date}`) <= new Date(); const isEndValid = new Date(`${cycle?.end_date}`) >= new Date(`${cycle?.start_date}`); + const progressPercentage = cycleIssues + ? Math.round((groupedIssues.completed.length / cycleIssues?.length) * 100) + : null; return ( <> @@ -329,12 +332,9 @@ export const CycleDetailsSidebar: React.FC = ({
Progress - {!open ? ( + {!open && cycleIssues && progressPercentage ? ( - {Math.round( - (groupedIssues.completed.length / cycleIssues?.length) * 100 - )} - % + {progressPercentage ? `${progressPercentage}%` : ""} ) : ( "" diff --git a/apps/app/components/cycles/single-cycle-card.tsx b/apps/app/components/cycles/single-cycle-card.tsx index 967b0641e..edbaa35c4 100644 --- a/apps/app/components/cycles/single-cycle-card.tsx +++ b/apps/app/components/cycles/single-cycle-card.tsx @@ -11,7 +11,7 @@ import cyclesService from "services/cycles.service"; // hooks import useToast from "hooks/use-toast"; // ui -import { CustomMenu, LinearProgressIndicator } from "components/ui"; +import { CustomMenu, LinearProgressIndicator, Tooltip } from "components/ui"; import { Disclosure, Transition } from "@headlessui/react"; // icons import { CalendarDaysIcon } from "@heroicons/react/20/solid"; @@ -235,7 +235,11 @@ export const SingleCycleCard: React.FC = (props) => {
-

{truncateText(cycle.name,75)}

+ +

+ {truncateText(cycle.name, 75)} +

+
{cycle.is_favorite ? ( @@ -275,8 +279,7 @@ export const SingleCycleCard: React.FC = (props) => { alt={cycle.owned_by.first_name} /> ) : ( - + {cycle.owned_by.first_name.charAt(0)} )} diff --git a/apps/app/components/modules/sidebar.tsx b/apps/app/components/modules/sidebar.tsx index 7ab811378..6466bf4e9 100644 --- a/apps/app/components/modules/sidebar.tsx +++ b/apps/app/components/modules/sidebar.tsx @@ -187,6 +187,10 @@ export const ModuleDetailsSidebar: React.FC = ({ const isStartValid = new Date(`${module?.start_date}`) <= new Date(); const isEndValid = new Date(`${module?.target_date}`) >= new Date(`${module?.start_date}`); + const progressPercentage = moduleIssues + ? Math.round((groupedIssues.completed.length / moduleIssues?.length) * 100) + : null; + return ( <> = ({
Progress - {!open && moduleIssues ? ( + {!open && moduleIssues && progressPercentage ? ( - {Math.round( - (groupedIssues.completed.length / moduleIssues?.length) * 100 - )} - % + {progressPercentage ? `${progressPercentage}%` : ""} ) : ( ""