- Introduced BulkActionBar component for bulk actions on selected tasks, including status, priority, and assignee changes. - Added TaskGroup and TaskRow components to enhance task organization and display. - Implemented grouping functionality with GroupingSelector for improved task categorization. - Enhanced drag-and-drop capabilities for task reordering within groups. - Updated styling and responsiveness across task management components for better user experience.
23 lines
589 B
TypeScript
23 lines
589 B
TypeScript
import React from 'react';
|
|
import { useAppSelector } from '@/hooks/useAppSelector';
|
|
import TaskListBoard from '@/components/task-management/task-list-board';
|
|
|
|
const ProjectViewEnhancedTasks: React.FC = () => {
|
|
const { project } = useAppSelector(state => state.projectReducer);
|
|
|
|
if (!project?.id) {
|
|
return (
|
|
<div className="p-4 text-center text-gray-500">
|
|
Project not found
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="project-view-enhanced-tasks">
|
|
<TaskListBoard projectId={project.id} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ProjectViewEnhancedTasks;
|