Skip to content

Commit e4f29a1

Browse files
committed
fix: add clamptext component for long titles and descriptions per UnlockedLabs#675
1 parent 0b471b6 commit e4f29a1

File tree

4 files changed

+29
-23
lines changed

4 files changed

+29
-23
lines changed

frontend/src/Components/LibraryCard.tsx

+13-10
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import {
1212
FlagIcon as FlagIconOutline,
1313
MagnifyingGlassIcon
1414
} from '@heroicons/react/24/outline';
15+
import ClampedText from './ClampedText';
1516

1617
export default function LibraryCard({
1718
library,
@@ -79,18 +80,20 @@ export default function LibraryCard({
7980
alt={`${library.title} thumbnail`}
8081
/>
8182
</figure>
82-
<h3 className="w-3/4 body my-auto mr-7">{library.title}</h3>
83+
<ClampedText as="h3" className="w-3/4 body my-auto mr-7">
84+
{library.title}
85+
</ClampedText>
8386
</div>
8487
<div className="flex items-center justify-end space-x-2 absolute right-2 top-2 z-100">
85-
{!route.pathname.includes('knowledge-insights') && (
86-
<div onClick={handleSearchClick}>
87-
<ULIComponent
88-
icon={MagnifyingGlassIcon}
89-
iconClassName="!w-5 !h-5"
90-
dataTip={`Search ${library.title}`}
91-
/>
92-
</div>
93-
)}
88+
{!route.pathname.includes('knowledge-insights') && (
89+
<div onClick={handleSearchClick}>
90+
<ULIComponent
91+
icon={MagnifyingGlassIcon}
92+
iconClassName="!w-5 !h-5"
93+
dataTip={`Search ${library.title}`}
94+
/>
95+
</div>
96+
)}
9497
<div onClick={(e) => void handleToggleAction('favorite', e)}>
9598
{!route.pathname.includes('knowledge-insights') && (
9699
<ULIComponent

frontend/src/Components/VideoCard.tsx

+7-8
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import { useToast } from '@/Context/ToastCtx';
1515
import { StarIcon } from '@heroicons/react/24/solid';
1616
import { StarIcon as StarIconOutline } from '@heroicons/react/24/outline';
1717
import { AdminRoles } from '@/useAuth';
18+
import ClampedText from './ClampedText';
1819

1920
export default function VideoCard({
2021
video,
@@ -86,30 +87,28 @@ export default function VideoCard({
8687
{bookmark}
8788
</div>
8889
)}
89-
<div
90-
className="flex flex-col p-4 gap-2 border-b-2"
91-
>
90+
<div className="flex flex-col p-4 gap-2 border-b-2">
9291
<figure className="w-1/2 mx-auto bg-cover">
9392
<img
9493
src={video?.thumbnail_url ?? ''}
9594
alt={`${video.title} thumbnail`}
9695
/>
9796
</figure>
98-
<h3 className="body text-center h-10 line-clamp-2 my-auto">
97+
<ClampedText as="h3" className="body text-center h-10 my-auto">
9998
{video.title}
100-
</h3>
99+
</ClampedText>
101100
</div>
102101
<div className="p-4 space-y-2">
103102
<p className="body font-bold sm:h-10 sm:line-clamp-2">
104103
{video.channel_title} - {toMinutes(video.duration)}
105104
</p>
106-
<p className="body-small h-[40px] leading-5 line-clamp-2">
105+
<ClampedText as="p" className="body-small h-[40px] leading-5">
107106
{videoIsAvailable(video)
108107
? video?.description
109108
: getVideoErrorMessage(video) ??
110109
`Video currently unavailable.
111-
May be in the process of downloading, Please check back later`}
112-
</p>
110+
May be in the process of downloading, Please check back later`}
111+
</ClampedText>
113112
{AdminRoles.includes(role) &&
114113
(videoIsAvailable(video) ? (
115114
<VisibleHiddenToggle

frontend/src/Components/cards/HelpfulLinkCard.tsx

+6-3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import { AdminRoles } from '@/useAuth';
1414
import { useToast } from '@/Context/ToastCtx';
1515
import { StarIcon } from '@heroicons/react/24/solid';
1616
import { StarIcon as StarIconOutline } from '@heroicons/react/24/outline';
17+
import ClampedText from '../ClampedText';
1718

1819
export default function HelpfulLinkCard({
1920
link,
@@ -82,7 +83,9 @@ export default function HelpfulLinkCard({
8283
<figure className="w-[48px] h-[48px] bg-cover">
8384
<img src={link.thumbnail_url ?? ''} alt={link.title} />
8485
</figure>
85-
<h3 className="w-3/4 body my-auto mr-7">{link.title}</h3>
86+
<ClampedText as="h3" className="w-3/4 body my-auto mr-7">
87+
{link.title}
88+
</ClampedText>
8689
</div>
8790
{AdminRoles.includes(role) ? (
8891
showModal != undefined && (
@@ -117,9 +120,9 @@ export default function HelpfulLinkCard({
117120
</div>
118121
)}
119122
<div className="p-4 space-y-2">
120-
<p className="body-small h-[40px] leading-5 line-clamp-2">
123+
<ClampedText as="p" className="body-small h-[40px] leading-5">
121124
{link.description}
122-
</p>
125+
</ClampedText>
123126
{AdminRoles.includes(role) && (
124127
<VisibleHiddenToggle
125128
visible={visible}

frontend/src/Components/dashboard/TopContentList.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { OpenContentItem } from '@/common';
22
import OpenContentCard from '../cards/OpenContentCard';
33
import ULIComponent from '../ULIComponent';
44
import { ArrowTopRightOnSquareIcon } from '@heroicons/react/24/outline';
5+
import ClampedText from '../ClampedText';
56

67
export default function TopContentList({
78
heading,
@@ -32,9 +33,9 @@ export default function TopContentList({
3233
tooltipClassName="h-8 flex items-center"
3334
icon={ArrowTopRightOnSquareIcon}
3435
/>
35-
<h3 className="body font-normal">
36+
<ClampedText as="h3" className="body font-normal">
3637
Explore other content offered
37-
</h3>
38+
</ClampedText>
3839
</div>
3940
)}
4041
</div>

0 commit comments

Comments
 (0)