feat: init
This commit is contained in:
75
apps/web/core/components/readonly/module.tsx
Normal file
75
apps/web/core/components/readonly/module.tsx
Normal file
@@ -0,0 +1,75 @@
|
||||
"use client";
|
||||
|
||||
import { useEffect } from "react";
|
||||
import { observer } from "mobx-react";
|
||||
import { Layers } from "lucide-react";
|
||||
// plane imports
|
||||
import { useTranslation } from "@plane/i18n";
|
||||
import { cn } from "@plane/utils";
|
||||
// hooks
|
||||
import { useModule } from "@/hooks/store/use-module";
|
||||
|
||||
export type TReadonlyModuleProps = {
|
||||
className?: string;
|
||||
hideIcon?: boolean;
|
||||
value: string | string[] | null;
|
||||
placeholder?: string;
|
||||
projectId: string | undefined;
|
||||
multiple?: boolean;
|
||||
showCount?: boolean;
|
||||
workspaceSlug: string;
|
||||
};
|
||||
|
||||
export const ReadonlyModule: React.FC<TReadonlyModuleProps> = observer((props) => {
|
||||
const {
|
||||
className,
|
||||
hideIcon = false,
|
||||
value,
|
||||
placeholder,
|
||||
multiple = false,
|
||||
showCount = true,
|
||||
workspaceSlug,
|
||||
projectId,
|
||||
} = props;
|
||||
|
||||
const { t } = useTranslation();
|
||||
const { getModuleById, fetchModules } = useModule();
|
||||
|
||||
const moduleIds = Array.isArray(value) ? value : value ? [value] : [];
|
||||
const modules = moduleIds.map((id) => getModuleById(id)).filter(Boolean);
|
||||
|
||||
useEffect(() => {
|
||||
if (moduleIds.length > 0 && projectId) {
|
||||
fetchModules(workspaceSlug, projectId);
|
||||
}
|
||||
}, [value, projectId, workspaceSlug]);
|
||||
|
||||
if (modules.length === 0) {
|
||||
return (
|
||||
<div className={cn("flex items-center gap-1 text-sm", className)}>
|
||||
{!hideIcon && <Layers className="size-4 flex-shrink-0" />}
|
||||
<span className="flex-grow truncate">{placeholder ?? t("common.none")}</span>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
if (multiple) {
|
||||
const displayText =
|
||||
showCount && modules.length > 1 ? `${modules[0]?.name} +${modules.length - 1}` : modules[0]?.name;
|
||||
|
||||
return (
|
||||
<div className={cn("flex items-center gap-1 text-sm", className)}>
|
||||
{!hideIcon && <Layers className="size-4 flex-shrink-0" />}
|
||||
<span className="flex-grow truncate">{displayText}</span>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
const moduleItem = modules[0];
|
||||
return (
|
||||
<div className={cn("flex items-center gap-2 text-sm", className)}>
|
||||
{!hideIcon && <Layers className="size-4 flex-shrink-0" />}
|
||||
<span className="flex-grow truncate">{moduleItem?.name}</span>
|
||||
</div>
|
||||
);
|
||||
});
|
||||
Reference in New Issue
Block a user