mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fix scenario where truncating on a UTF-16 character breaks
This commit is contained in:
parent
bed1858551
commit
4261fec1fa
1 changed files with 17 additions and 2 deletions
|
@ -15,8 +15,23 @@ export const unescapeText = (text: string) => {
|
|||
.replace(/&/g, '&');
|
||||
};
|
||||
|
||||
export const truncateWithEllipsis = (str: string, maxLength: number): string =>
|
||||
str.length > maxLength ? str.substring(0, maxLength - 1) + '…' : str;
|
||||
export const truncateWithEllipsis = (str: string, maxLength: number): string => {
|
||||
const segmenter = new Intl.Segmenter('en', { granularity: 'grapheme' });
|
||||
const segments = segmenter.segment(str);
|
||||
let truncated = '';
|
||||
let length = 0;
|
||||
|
||||
for (const segment of segments) {
|
||||
if (length + segment.segment.length > maxLength) {
|
||||
break;
|
||||
}
|
||||
truncated += segment.segment;
|
||||
length += segment.segment.length;
|
||||
}
|
||||
|
||||
return truncated.length < str.length ? truncated + '…' : truncated;
|
||||
};
|
||||
|
||||
|
||||
const numberFormat = new Intl.NumberFormat('en-US');
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue