tududi/frontend/components/Project
Chris e80847b01f
Fix project name overflow and add 6-word validation limit (#972)
* Fix project name overflow and add validation

This commit addresses issue #971 by implementing both UI fixes and
validation to prevent excessively long project names.

Changes:
1. Add word-break and line-clamp to ProjectBanner.tsx to handle
   overflow gracefully with line-clamp-3 for names
2. Add frontend validation in ProjectModal.tsx limiting names to
   6 words maximum
3. Add backend validation in project.js model with custom wordCount
   validator
4. Show user-friendly error messages when validation fails

This ensures project names remain concise and UI-friendly while
preventing the extreme overflow cases that were possible before.

Fixes #971

* Add overflow-hidden to make line-clamp work properly

The line-clamp utility requires explicit overflow-hidden to function
correctly. Without it, the text continues to display in full rather
than being truncated with ellipsis.

* Fix line-clamp using inline CSS styles

Tailwind's line-clamp utilities weren't working, so switched to using
inline styles with the standard CSS approach:
- display: -webkit-box
- -webkit-line-clamp: 3
- -webkit-box-orient: vertical

This ensures the text truncation works reliably across browsers.

* Use Tailwind line-clamp utilities (already defined in CSS)

The project already has line-clamp-1/2/3 utilities properly defined
in tailwind.css with all the necessary webkit properties. Simplified
the component to use these existing utilities instead of inline styles.

* Add dedicated CSS classes with !important for line-clamp

Created custom project-name-clamp and project-desc-clamp classes
with !important flags to ensure they override any conflicting styles.
This should finally fix the text truncation issue.

* Use component-scoped styles for line-clamp

Adding inline style tag in the component to ensure the line-clamp
CSS is definitely loaded and applied. This bypasses any potential
issues with external CSS compilation or loading order.

* Change project name line-clamp from 3 to 2 lines

Limiting project name display to 2 lines with ellipsis for better
visual density and cleaner appearance.

* Increase line-height for project name in banner

Added line-height: 1.3 to project name for better readability
and visual spacing between lines.
2026-03-24 17:36:24 +02:00
..
AutoSuggestNextActionBox.tsx Fix taskmodal issues with saving and closing 2025-08-01 18:06:50 +03:00
BannerEditModal.tsx Fix asset paths (#623) 2025-11-30 17:07:03 +02:00
ProjectBanner.tsx Fix project name overflow and add 6-word validation limit (#972) 2026-03-24 17:36:24 +02:00
ProjectDetails.tsx Fix bug 722 (#737) 2025-12-28 07:51:15 +02:00
ProjectInsightsPanel.tsx Fix bug 733 (#735) 2025-12-27 21:00:52 +02:00
ProjectItem.tsx Fix bug 722 (#737) 2025-12-28 07:51:15 +02:00
ProjectModal.tsx Fix project name overflow and add 6-word validation limit (#972) 2026-03-24 17:36:24 +02:00
ProjectNotesSection.tsx Tc refactor pt1 (#589) 2025-11-23 21:48:49 +02:00
ProjectShareModal.tsx Fix static base path (#549) 2025-11-16 22:43:06 +02:00
ProjectTasksSection.tsx Fix an issue with task not completing in TaskDetails view (#620) 2025-11-30 14:51:49 +02:00
useProjectMetrics.ts Fix timezone missed rollout (#832) 2026-02-10 22:28:14 +02:00