feat: init
This commit is contained in:
53
apps/web/core/components/readonly/estimate.tsx
Normal file
53
apps/web/core/components/readonly/estimate.tsx
Normal file
@@ -0,0 +1,53 @@
|
||||
"use client";
|
||||
|
||||
import { useEffect } from "react";
|
||||
import { observer } from "mobx-react";
|
||||
import { Triangle } from "lucide-react";
|
||||
// plane imports
|
||||
import { useTranslation } from "@plane/i18n";
|
||||
import { EEstimateSystem } from "@plane/types";
|
||||
import { cn, convertMinutesToHoursMinutesString } from "@plane/utils";
|
||||
// hooks
|
||||
import { useProjectEstimates } from "@/hooks/store/estimates";
|
||||
import { useEstimate } from "@/hooks/store/estimates/use-estimate";
|
||||
|
||||
export type TReadonlyEstimateProps = {
|
||||
className?: string;
|
||||
hideIcon?: boolean;
|
||||
value: string | undefined | null;
|
||||
placeholder?: string;
|
||||
projectId: string | undefined;
|
||||
workspaceSlug: string;
|
||||
};
|
||||
|
||||
export const ReadonlyEstimate: React.FC<TReadonlyEstimateProps> = observer((props) => {
|
||||
const { className, hideIcon = false, value, placeholder, projectId, workspaceSlug } = props;
|
||||
|
||||
const { t } = useTranslation();
|
||||
const { currentActiveEstimateIdByProjectId, getEstimateById, getProjectEstimates } = useProjectEstimates();
|
||||
|
||||
const currentActiveEstimateId = projectId ? currentActiveEstimateIdByProjectId(projectId) : undefined;
|
||||
const currentActiveEstimate = currentActiveEstimateId ? getEstimateById(currentActiveEstimateId) : undefined;
|
||||
const { estimatePointById } = useEstimate(currentActiveEstimateId);
|
||||
|
||||
const estimatePoint = value ? estimatePointById(value) : null;
|
||||
|
||||
const displayValue = estimatePoint
|
||||
? currentActiveEstimate?.type === EEstimateSystem.TIME
|
||||
? convertMinutesToHoursMinutesString(Number(estimatePoint.value))
|
||||
: estimatePoint.value
|
||||
: null;
|
||||
|
||||
useEffect(() => {
|
||||
if (projectId) {
|
||||
getProjectEstimates(workspaceSlug, projectId);
|
||||
}
|
||||
}, [projectId, workspaceSlug]);
|
||||
|
||||
return (
|
||||
<div className={cn("flex items-center gap-1 text-sm", className)}>
|
||||
{!hideIcon && <Triangle className="size-4 flex-shrink-0" />}
|
||||
<span className="flex-grow truncate">{displayValue ?? placeholder ?? t("common.none")}</span>
|
||||
</div>
|
||||
);
|
||||
});
|
||||
Reference in New Issue
Block a user