Files
Compass/web/components/widgets/truncate.tsx
Martin Braquet ba9b3cfb06 Add pretty formatting (#29)
* Test

* Add pretty formatting

* Fix Tests

* Fix Tests

* Fix Tests

* Fix

* Add pretty formatting fix

* Fix

* Test

* Fix tests

* Clean typeckech

* Add prettier check

* Fix api tsconfig

* Fix api tsconfig

* Fix tsconfig

* Fix

* Fix

* Prettier
2026-02-20 17:32:27 +01:00

23 lines
434 B
TypeScript

const truncatedLengths = {
sm: 10,
md: 20,
lg: 50,
xl: 75,
}
const TRUNCATE_BUFFER = 3
export function truncateText(
text: string | undefined,
truncateLength: 'sm' | 'md' | 'lg' | 'xl' | 'none',
) {
if (truncateLength === 'none' || !text) {
return text
}
const slice = truncatedLengths[truncateLength]
if (text.length <= slice + TRUNCATE_BUFFER) {
return text
}
return text.slice(0, slice) + '...'
}