import React, { useState, useEffect, useRef, useCallback } from 'react'; import { createPortal } from 'react-dom'; import { PriorityType, Task } from '../../entities/Task'; import ConfirmDialog from '../Shared/ConfirmDialog'; import { useToast } from '../Shared/ToastContext'; import { Project } from '../../entities/Project'; import { useStore } from '../../store/useStore'; import { fetchTaskById } from '../../utils/tasksService'; import { analyzeTaskName, TaskAnalysis, } from '../../utils/taskIntelligenceService'; import { useTranslation } from 'react-i18next'; import { TagIcon, FolderIcon, ArrowPathIcon, TrashIcon, ListBulletIcon, ExclamationTriangleIcon, CalendarIcon, } from '@heroicons/react/24/outline'; // Import form sections import TaskTitleSection from './TaskForm/TaskTitleSection'; import TaskContentSection from './TaskForm/TaskContentSection'; import TaskTagsSection from './TaskForm/TaskTagsSection'; import TaskProjectSection from './TaskForm/TaskProjectSection'; import TaskRecurrenceSection from './TaskForm/TaskRecurrenceSection'; import TaskSubtasksSection from './TaskForm/TaskSubtasksSection'; import PriorityDropdown from '../Shared/PriorityDropdown'; import DatePicker from '../Shared/DatePicker'; interface TaskModalProps { isOpen: boolean; onClose: () => void; task: Task; onSave: (task: Task) => void; onDelete: (taskId: number) => Promise; projects: Project[]; onCreateProject: (name: string) => Promise; onEditParentTask?: (parentTask: Task) => void; autoFocusSubtasks?: boolean; showToast?: boolean; initialSubtasks?: Task[]; } const TaskModal: React.FC = ({ isOpen, onClose, task, onSave, onDelete, projects, onCreateProject, onEditParentTask, autoFocusSubtasks, showToast = true, initialSubtasks = [], }) => { const { tagsStore } = useStore(); // Avoid calling getTags() during component initialization to prevent remounting const availableTags = tagsStore.tags; const { addNewTags } = tagsStore; const [formData, setFormData] = useState(task); const [tags, setTags] = useState( task.tags?.map((tag) => tag.name) || [] ); const [filteredProjects, setFilteredProjects] = useState([]); const [newProjectName, setNewProjectName] = useState(''); const [isCreatingProject, setIsCreatingProject] = useState(false); const [dropdownOpen, setDropdownOpen] = useState(false); const modalRef = useRef(null); const [isClosing, setIsClosing] = useState(false); const [showConfirmDialog, setShowConfirmDialog] = useState(false); const [parentTask, setParentTask] = useState(null); const [parentTaskLoading, setParentTaskLoading] = useState(false); const [taskAnalysis, setTaskAnalysis] = useState(null); const [taskIntelligenceEnabled] = useState(true); const [subtasks, setSubtasks] = useState([]); // Collapsible section states - subtasks is derived from autoFocusSubtasks const [baseSections, setBaseSections] = useState({ tags: false, project: false, priority: false, dueDate: false, recurrence: false, subtasks: false, }); // Derive expanded sections with subtasks controlled by autoFocusSubtasks const expandedSections = { ...baseSections, subtasks: baseSections.subtasks || autoFocusSubtasks, }; const { showSuccessToast, showErrorToast } = useToast(); const { t } = useTranslation(); const scrollToSubtasksSection = () => { const attemptScroll = (attempt = 1) => { const subtasksSection = document.querySelector( '[data-section="subtasks"]' ) as HTMLElement; if (subtasksSection) { subtasksSection.scrollIntoView({ behavior: 'smooth', block: 'end', }); } else if (attempt <= 3) { // Retry up to 3 times with increasing delays setTimeout(() => attemptScroll(attempt + 1), 100 * attempt); } }; setTimeout(() => attemptScroll(), 100); }; const toggleSection = useCallback((section: keyof typeof baseSections) => { setBaseSections((prev) => { const newExpanded = { ...prev, [section]: !prev[section], }; // Auto-scroll to show the expanded section if (newExpanded[section]) { // Special handling for subtasks section if (section === 'subtasks') { scrollToSubtasksSection(); } else { setTimeout(() => { const scrollContainer = document.querySelector( '.absolute.inset-0.overflow-y-auto' ); if (scrollContainer) { scrollContainer.scrollTo({ top: scrollContainer.scrollHeight, behavior: 'smooth', }); } }, 100); // Small delay to ensure DOM is updated } } return newExpanded; }); }, []); // Handle task updates only when the task ID changes or modal opens useEffect(() => { setFormData(task); setTags(task.tags?.map((tag) => tag.name) || []); }, [task.id]); // Handle task analysis separately useEffect(() => { if (isOpen && task.name && taskIntelligenceEnabled) { const analysis = analyzeTaskName(task.name); setTaskAnalysis(analysis); } else { setTaskAnalysis(null); } }, [isOpen, task.name, taskIntelligenceEnabled]); // Handle parent task fetching separately useEffect(() => { const fetchParentTask = async () => { if (task.recurring_parent_id && isOpen) { setParentTaskLoading(true); try { const parent = await fetchTaskById( task.recurring_parent_id ); setParentTask(parent); } catch (error) { console.error('Error fetching parent task:', error); setParentTask(null); } finally { setParentTaskLoading(false); } } else { setParentTask(null); } }; fetchParentTask(); }, [task.recurring_parent_id, isOpen]); // Don't fetch task intelligence setting - use default enabled state // This prevents unnecessary API calls when opening the modal // Auto-scroll to subtasks section when modal opens with autoFocusSubtasks useEffect(() => { if (isOpen && autoFocusSubtasks) { setTimeout(() => { scrollToSubtasksSection(); }, 300); } }, [isOpen, autoFocusSubtasks]); // Load tags when modal opens if not already loaded useEffect(() => { if (isOpen && !tagsStore.hasLoaded && !tagsStore.isLoading) { tagsStore.loadTags(); } }, [isOpen, tagsStore.hasLoaded, tagsStore.isLoading]); const handleEditParent = () => { if (parentTask && onEditParentTask) { onEditParentTask(parentTask); onClose(); // Close current modal } }; const handleParentRecurrenceChange = (field: string, value: any) => { // Update the parent task data in local state if (parentTask) { setParentTask({ ...parentTask, [field]: value }); } // Also update the form data to reflect the change setFormData((prev) => ({ ...prev, [field]: value, update_parent_recurrence: true, })); }; // Note: Tags loading removed to prevent modal closing issues // Tags will be loaded by other components or on app startup const getPriorityString = ( priority: PriorityType | number | undefined ): PriorityType => { if (typeof priority === 'number') { const priorityNames: PriorityType[] = ['low', 'medium', 'high']; return priorityNames[priority] || 'low'; } return priority || 'low'; }; const handleChange = ( e: React.ChangeEvent< HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement > ) => { const { name, value } = e.target; setFormData((prev) => ({ ...prev, [name]: value })); // Analyze task name in real-time (only if intelligence is enabled) if (name === 'name' && taskIntelligenceEnabled) { const analysis = analyzeTaskName(value); setTaskAnalysis(analysis); } }; const handleRecurrenceChange = (field: string, value: any) => { setFormData((prev) => ({ ...prev, [field]: value })); }; const handleTagsChange = useCallback((newTags: string[]) => { setTags(newTags); setFormData((prev) => ({ ...prev, tags: newTags.map((name) => ({ name })), })); }, []); const handleProjectSearch = (e: React.ChangeEvent) => { const query = e.target.value; setNewProjectName(query); setDropdownOpen(true); setFilteredProjects( projects.filter((project) => project.name.toLowerCase().includes(query.toLowerCase()) ) ); }; const handleProjectSelection = (project: Project) => { setFormData({ ...formData, project_id: project.id }); setNewProjectName(project.name); setDropdownOpen(false); }; const handleShowAllProjects = () => { setNewProjectName(''); setFilteredProjects(projects); setDropdownOpen(!dropdownOpen); }; const handleCreateProject = async () => { if (newProjectName.trim() !== '') { setIsCreatingProject(true); try { const newProject = await onCreateProject(newProjectName); setFormData({ ...formData, project_id: newProject.id }); setFilteredProjects([...filteredProjects, newProject]); setNewProjectName(newProject.name); setDropdownOpen(false); showSuccessToast(t('success.projectCreated')); } catch (error) { showErrorToast(t('errors.projectCreationFailed')); console.error('Error creating project:', error); } finally { setIsCreatingProject(false); } } }; const handleSubmit = () => { // Add new tags to the global store const existingTagNames = availableTags.map((tag: any) => tag.name); const newTagNames = tags.filter( (tag) => !existingTagNames.includes(tag) ); if (newTagNames.length > 0) { addNewTags(newTagNames); } // If project name is empty, clear the project_id const finalFormData = { ...formData, project_id: newProjectName.trim() === '' ? null : formData.project_id, tags: tags.map((tag) => ({ name: tag })), subtasks: subtasks, }; onSave(finalFormData as any); if (showToast) { const taskLink = ( {t('task.updated', 'Task')}{' '} {formData.name} {' '} {t('task.updatedSuccessfully', 'updated successfully!')} ); showSuccessToast(taskLink); } handleClose(); }; const handleDeleteClick = () => { setShowConfirmDialog(true); }; const handleDeleteConfirm = async () => { if (formData.id) { try { await onDelete(formData.id); const taskLink = ( {t('task.deleted', 'Task')}{' '} {formData.name} {' '} {t('task.deletedSuccessfully', 'deleted successfully!')} ); showSuccessToast(taskLink); setShowConfirmDialog(false); handleClose(); } catch (error) { console.error('Failed to delete task:', error); showErrorToast(t('task.deleteError', 'Failed to delete task')); } } }; const handleClose = () => { setIsClosing(true); setTimeout(() => { onClose(); setIsClosing(false); }, 300); }; // Handle body scroll when modal opens/closes useEffect(() => { if (isOpen) { // Disable body scroll when modal is open document.body.style.overflow = 'hidden'; } else { // Re-enable body scroll when modal is closed document.body.style.overflow = 'unset'; } return () => { // Clean up: re-enable body scroll document.body.style.overflow = 'unset'; }; }, [isOpen]); useEffect(() => { const handleKeyDown = (event: KeyboardEvent) => { if (event.key === 'Escape') { handleClose(); } }; if (isOpen) { document.addEventListener('keydown', handleKeyDown); } return () => { document.removeEventListener('keydown', handleKeyDown); }; }, [isOpen]); // Load existing subtasks when modal opens - use initialSubtasks if provided, no fetching useEffect(() => { if (isOpen && task.id) { // Always use provided initial subtasks (from parent component) or empty array setSubtasks(initialSubtasks); } else if (!isOpen) { // Reset subtasks when modal closes setSubtasks([]); } }, [isOpen, task.id]); if (!isOpen) return null; return createPortal( <>
{ // Close modal when clicking on backdrop, but not on the modal content if (e.target === e.currentTarget) { handleClose(); } }} >
{ // Close modal when clicking on centering container, but not on the modal content if (e.target === e.currentTarget) { handleClose(); } }} >
{/* Main Form Section */}
{ e.preventDefault(); return false; }} >
{/* Task Title Section - Always Visible */} {/* Content Section - Always Visible */} {/* Expandable Sections - Only show when expanded */} {expandedSections.tags && (

{t( 'forms.task.labels.tags', 'Tags' )}

)} {expandedSections.project && (

{t( 'forms.task.labels.project', 'Project' )}

)} {expandedSections.priority && (

{t( 'forms.task.labels.priority', 'Priority' )}

setFormData({ ...formData, priority: value, }) } />
)} {expandedSections.dueDate && (

{t( 'forms.task.labels.dueDate', 'Due Date' )}

{ const event = { target: { name: 'due_date', value, }, } as React.ChangeEvent; handleChange( event ); }} placeholder={t( 'forms.task.dueDatePlaceholder', 'Select due date' )} />
)} {expandedSections.recurrence && (

{t( 'forms.task.recurrence', 'Recurrence' )}

)} {expandedSections.subtasks && (

{t( 'forms.task.subtasks', 'Subtasks' )}

{ // Update the subtask in the local state setSubtasks( (prev) => prev.map( ( st ) => st.id === updatedSubtask.id ? updatedSubtask : st ) ); }} />
)}
{/* Section Icons - Above border, split layout */}
{/* Left side: Section icons */}
{/* Tags Toggle */} {/* Project Toggle */} {/* Priority Toggle */} {/* Due Date Toggle */} {/* Recurrence Toggle */} {/* Subtasks Toggle */}
{/* Action Buttons - Below border with custom layout */}
{/* Left side: Delete and Cancel */}
{task.id && ( )}
{/* Right side: Save */}
{showConfirmDialog && ( setShowConfirmDialog(false)} /> )} , document.body ); }; export default TaskModal;