Files
worklenz/worklenz-frontend/src/components/common/template-drawer/template-drawer.tsx
chamikaJ a6863d8280 refactor: update code to use centralized Ant Design imports
- Replaced direct import of '@ant-design/icons' with centralized import from '@/shared/antd-imports'
2025-07-23 12:07:48 +05:30

379 lines
11 KiB
TypeScript

import type { MenuProps } from '@/shared/antd-imports';
import {
Empty,
List,
Menu,
Skeleton,
Tabs,
Tag,
Typography,
Image,
Input,
Flex,
} from '@/shared/antd-imports';
import React, { useEffect, useState } from 'react';
import { useSelector } from 'react-redux';
import { useTranslation } from 'react-i18next';
import { RootState } from '@/app/store';
import { projectTemplatesApiService } from '@/api/project-templates/project-templates.api.service';
import {
ICustomTemplate,
IProjectTemplate,
IWorklenzTemplate,
} from '@/types/project-templates/project-templates.types';
import './template-drawer.css';
import { SearchOutlined } from '@/shared/antd-imports';
import logger from '@/utils/errorLogger';
const { Title, Text } = Typography;
interface TemplateDrawerProps {
showBothTabs: boolean;
templateSelected: (templateId: string) => void;
selectedTemplateType: (type: 'worklenz' | 'custom') => void;
}
const TemplateDrawer: React.FC<TemplateDrawerProps> = ({
showBothTabs = false,
templateSelected = (templateId: string) => {
if (!templateId) return;
templateId;
},
selectedTemplateType = (type: 'worklenz' | 'custom') => {
type;
},
}) => {
const themeMode = useSelector((state: RootState) => state.themeReducer.mode);
const { t } = useTranslation('template-drawer');
const [searchQuery, setSearchQuery] = useState('');
const [templates, setTemplates] = useState<IWorklenzTemplate[]>([]);
const [loadingTemplates, setLoadingTemplates] = useState(false);
const [customTemplates, setCustomTemplates] = useState<ICustomTemplate[]>([]);
const [loadingCustomTemplates, setLoadingCustomTemplates] = useState(false);
const [selectedTemplate, setSelectedTemplate] = useState<IProjectTemplate | null>(null);
const [loadingSelectedTemplate, setLoadingSelectedTemplate] = useState(false);
const getSelectedTemplate = async (templateId: string) => {
try {
setLoadingSelectedTemplate(true);
const res = await projectTemplatesApiService.getByTemplateId(templateId);
if (res.done) {
setSelectedTemplate(res.body);
}
} catch (error) {
logger.error('Error loading template:', error);
} finally {
setLoadingSelectedTemplate(false);
}
};
const getTemplates = async () => {
try {
setLoadingTemplates(true);
const res = await projectTemplatesApiService.getWorklenzTemplates();
if (res.done) {
setTemplates(res.body);
if (res.body.length > 0 && res.body[0].id) {
templateSelected(res.body[0].id);
await getSelectedTemplate(res.body[0].id);
}
}
} catch (error) {
logger.error('Error loading templates:', error);
} finally {
setLoadingTemplates(false);
}
};
const getCustomTemplates = async () => {
try {
setLoadingCustomTemplates(true);
const res = await projectTemplatesApiService.getCustomTemplates();
if (res.done) {
setCustomTemplates(res.body);
}
} catch (error) {
logger.error('Error loading custom templates:', error);
} finally {
setLoadingCustomTemplates(false);
}
};
useEffect(() => {
getTemplates();
}, []);
const menuItems: MenuProps['items'] = templates.map(template => ({
key: template.id || '',
label: template.name || t('untitled'),
type: 'item',
}));
const handleMenuClick = (templateId: string) => {
templateSelected(templateId);
getSelectedTemplate(templateId);
};
const filteredCustomTemplates = customTemplates.filter(template =>
template.name?.toLowerCase().includes(searchQuery.toLowerCase())
);
const renderTemplateDetails = () => {
if (!selectedTemplate) {
return <Empty description={t('noTemplateSelected')} />;
}
return (
<div>
{/* Description */}
<div className="template-detail-row mt-2">
<div className="template-detail-label">
<Text strong>{t('description')}</Text>
</div>
<div>
<Text>{selectedTemplate.description || t('noDescription')}</Text>
</div>
</div>
{/* Phase */}
<div className="template-detail-row mt-2">
<div className="template-detail-label">
<Text strong>{t('phase')}</Text>
</div>
<div>
{selectedTemplate.phases?.length ? (
selectedTemplate.phases.map(phase => (
<Tag
key={phase.name}
color={phase.color_code}
style={{ color: 'black', marginBottom: '8px' }}
>
{phase.name}
</Tag>
))
) : (
<Text type="secondary">{t('noPhases')}</Text>
)}
</div>
</div>
{/* Statuses */}
<div className="template-detail-row mt-2">
<div className="template-detail-label">
<Text strong>{t('statuses')}</Text>
</div>
<div>
{selectedTemplate.status?.length ? (
selectedTemplate.status.map(status => (
<Tag
key={status.name}
color={status.color_code}
style={{ color: 'black', marginBottom: '8px' }}
>
{status.name}
</Tag>
))
) : (
<Text type="secondary">{t('noStatuses')}</Text>
)}
</div>
</div>
{/* Priorities */}
<div className="template-detail-row mt-2">
<div className="template-detail-label">
<Text strong>{t('priorities')}</Text>
</div>
<div>
{selectedTemplate.priorities?.length ? (
selectedTemplate.priorities.map(priority => (
<Tag
key={priority.name}
color={priority.color_code}
style={{ color: 'black', marginBottom: '8px' }}
>
{priority.name}
</Tag>
))
) : (
<Text type="secondary">{t('noPriorities')}</Text>
)}
</div>
</div>
{/* Labels */}
<div className="template-detail-row mt-2">
<div className="template-detail-label">
<Text strong>{t('labels')}</Text>
</div>
<div>
{selectedTemplate.labels?.length ? (
selectedTemplate.labels.map(label => (
<Tag
key={label.name}
color={label.color_code}
style={{ color: 'black', marginBottom: '8px' }}
>
{label.name}
</Tag>
))
) : (
<Text type="secondary">{t('noLabels')}</Text>
)}
</div>
</div>
{/* Tasks */}
<div className="template-detail-row mt-2">
<div className="template-detail-label">
<Text strong>{t('tasks')}</Text>
</div>
<div style={{ marginTop: '0.5rem' }}>
{selectedTemplate.tasks?.length ? (
<List
dataSource={selectedTemplate.tasks}
renderItem={item => (
<List.Item key={item.name}>
<Text>{item.name}</Text>
</List.Item>
)}
/>
) : (
<Text type="secondary">{t('noTasks')}</Text>
)}
</div>
</div>
</div>
);
};
const menuContent = (
<div style={{ display: 'flex' }}>
{/* Menu Area */}
<div style={{ minWidth: '250px', overflowY: 'auto', height: '100%' }}>
<Skeleton loading={loadingTemplates} active>
<Menu
className="template-menu"
onClick={({ key }) => handleMenuClick(key)}
style={{ width: 256 }}
defaultSelectedKeys={[templates[0]?.id || '']}
mode="inline"
items={menuItems}
/>
</Skeleton>
</div>
{/* Content Area */}
<div
className="temp-details"
style={{
flex: 1,
maxHeight: 'calc(100vh - 200px)',
padding: '16px',
}}
>
<Title level={4}>Details</Title>
<Skeleton loading={loadingSelectedTemplate} active>
{selectedTemplate?.image_url && (
<Image preview={false} src={selectedTemplate.image_url} alt={selectedTemplate.name} />
)}
{renderTemplateDetails()}
</Skeleton>
</div>
</div>
);
const handleCustomTemplateClick = (templateId: string) => {
const updatedCustomTemplates = customTemplates.map(template =>
template.id === templateId
? { ...template, selected: true }
: { ...template, selected: false }
);
setCustomTemplates(updatedCustomTemplates);
templateSelected(templateId);
selectedTemplateType('custom');
};
const customTemplatesContent = (
<div>
<Flex justify="space-between" align="center">
<Input
placeholder={t('searchTemplates')}
suffix={<SearchOutlined />}
style={{ maxWidth: '300px' }}
onChange={e => setSearchQuery(e.target.value)}
/>
</Flex>
<List
className="custom-template-list mt-4"
bordered
dataSource={filteredCustomTemplates}
loading={loadingCustomTemplates}
renderItem={item => (
<List.Item
key={item.id}
onClick={() => handleCustomTemplateClick(item.id || '')}
className={
item.selected && themeMode === 'dark'
? 'selected-custom-template-dark'
: item.selected && themeMode === 'light'
? 'selected-custom-template'
: ''
}
>
{item.name}
</List.Item>
)}
/>
</div>
);
const tabs = [
{
key: '1',
label: t('worklenzTemplates'),
children: menuContent,
},
{
key: '2',
label: t('yourTemplatesLibrary'),
children: customTemplatesContent,
},
];
const handleTabChange = (key: string) => {
if (key === '1') {
getTemplates();
selectedTemplateType('worklenz');
} else {
getCustomTemplates();
selectedTemplateType('custom');
}
};
return (
<div style={{ height: '100vh', overflow: 'hidden' }}>
<div
style={{
position: 'sticky',
top: 0,
zIndex: 100,
backgroundColor: themeMode === 'dark' ? '' : '#fff',
overflow: 'hidden',
}}
>
{showBothTabs ? (
<Tabs type="card" items={tabs} onChange={handleTabChange} destroyInactiveTabPane />
) : (
menuContent
)}
</div>
</div>
);
};
export default TemplateDrawer;