@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
11 lines (9 loc) • 478 B
text/typescript
export default {
createShowMoreHtml: (text: string, length?: number) => {
const sanitizedString = text ? text.replace(/"/g, "'") : ''
const stringLength = length || 100
return `<div class="dpr-show-more" data-content="${sanitizedString}" data-dpr-module="show-more" data-length="${stringLength}">
<div class='dpr-show-more-content'>${sanitizedString}</div><a class="dpr-show-hide-button govuk-link--no-visited-state" href="#">show more</a>
</div>`
},
}