Added truncation logic for text type message

This commit is contained in:
Vishawdeep Singh 2024-12-23 11:21:37 +05:30
parent 35f0e400ad
commit dc1345f7a8
2 changed files with 51 additions and 3 deletions

View file

@ -1,4 +1,4 @@
import React, { ReactNode } from 'react'; import React, { ReactNode, useState, useMemo, useCallback } from 'react';
import { Box, Chip, Icon, Icons, Text, toRem } from 'folds'; import { Box, Chip, Icon, Icons, Text, toRem } from 'folds';
import { IContent } from 'matrix-js-sdk'; import { IContent } from 'matrix-js-sdk';
import { JUMBO_EMOJI_REG, URL_REG } from '../../utils/regex'; import { JUMBO_EMOJI_REG, URL_REG } from '../../utils/regex';
@ -27,6 +27,9 @@ import { FALLBACK_MIMETYPE, getBlobSafeMimeType } from '../../utils/mimeTypes';
import { parseGeoUri, scaleYDimension } from '../../utils/common'; import { parseGeoUri, scaleYDimension } from '../../utils/common';
import { Attachment, AttachmentBox, AttachmentContent, AttachmentHeader } from './attachment'; import { Attachment, AttachmentBox, AttachmentContent, AttachmentHeader } from './attachment';
import { FileHeader } from './FileHeader'; import { FileHeader } from './FileHeader';
import { Button } from 'folds';
const CHARACTER_LIMIT = 750;
export function MBadEncrypted() { export function MBadEncrypted() {
return ( return (
@ -63,6 +66,11 @@ export function BrokenContent() {
); );
} }
const truncateText = (text: string, limit: number) => {
if (text.length <= limit) return text;
return `${text.slice(0, limit).trim()}...`;
};
type RenderBodyProps = { type RenderBodyProps = {
body: string; body: string;
customBody?: string; customBody?: string;
@ -80,6 +88,22 @@ export function MText({ edited, content, renderBody, renderUrlsPreview }: MTextP
const trimmedBody = trimReplyFromBody(body); const trimmedBody = trimReplyFromBody(body);
const urlsMatch = renderUrlsPreview && trimmedBody.match(URL_REG); const urlsMatch = renderUrlsPreview && trimmedBody.match(URL_REG);
const urls = urlsMatch ? [...new Set(urlsMatch)] : undefined; const urls = urlsMatch ? [...new Set(urlsMatch)] : undefined;
const [isExpanded, setIsExpanded] = useState(false);
const { shouldTruncate, finalContent, finalCustomContent } = useMemo(() => {
const contentStr = trimmedBody || '';
const customContentStr = typeof customBody === 'string' ? trimReplyFromBody(customBody) : '';
const needTruncate = contentStr.length > 750 || customContentStr.length > 750;
return {
contentStr,
customContentStr,
shouldTruncate: needTruncate,
finalContent: isExpanded ? contentStr : truncateText(contentStr, CHARACTER_LIMIT),
finalCustomContent: isExpanded
? customContentStr
: truncateText(customContentStr, CHARACTER_LIMIT),
};
}, [trimmedBody, customBody, isExpanded]);
return ( return (
<> <>
@ -88,12 +112,22 @@ export function MText({ edited, content, renderBody, renderUrlsPreview }: MTextP
jumboEmoji={JUMBO_EMOJI_REG.test(trimmedBody)} jumboEmoji={JUMBO_EMOJI_REG.test(trimmedBody)}
> >
{renderBody({ {renderBody({
body: trimmedBody, body: finalContent,
customBody: typeof customBody === 'string' ? customBody : undefined, customBody: typeof customBody === 'string' ? finalCustomContent : undefined,
})} })}
{edited && <MessageEditedContent />} {edited && <MessageEditedContent />}
</MessageTextBody> </MessageTextBody>
{renderUrlsPreview && urls && urls.length > 0 && renderUrlsPreview(urls)} {renderUrlsPreview && urls && urls.length > 0 && renderUrlsPreview(urls)}
{shouldTruncate && (
<button
aria-expanded={isExpanded}
className="show-more"
onClick={() => setIsExpanded(!isExpanded)}
>
{isExpanded ? 'Show Less' : 'Show More'}
</button>
)}
</> </>
); );
} }

View file

@ -495,6 +495,20 @@ textarea {
color: inherit; color: inherit;
word-spacing: inherit; word-spacing: inherit;
} }
.show-more {
cursor: pointer;
color: #5e9ecf;
padding: 5px;
border-radius: 5px;
text-decoration: underline;
}
.show-more:hover {
color: #085fa7;
}
.noselect { .noselect {
-webkit-touch-callout: none; /* iOS Safari */ -webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */ -webkit-user-select: none; /* Safari */