(text: string, lineWidth: number, maxLines: number)
| 20 | const MIN_CARD_WIDTH = 60 // Minimum width per ad card to remain readable |
| 21 | |
| 22 | function truncateToLines(text: string, lineWidth: number, maxLines: number): string { |
| 23 | if (lineWidth <= 0) return text |
| 24 | const maxChars = lineWidth * maxLines |
| 25 | if (text.length <= maxChars) return text |
| 26 | return text.slice(0, maxChars - 1) + '…' |
| 27 | } |
| 28 | |
| 29 | function truncateToWidth(text: string, width: number): string { |
| 30 | if (width <= 0) return '' |