2021-05-27 09:59:55 -04:00
|
|
|
import { getSanitizeOptions, TEXT_WITH_HTML_RULES } from '@shared/core-utils'
|
|
|
|
|
|
|
|
const sanitizeOptions = getSanitizeOptions()
|
2021-04-11 09:06:36 -04:00
|
|
|
|
|
|
|
const sanitizeHtml = require('sanitize-html')
|
|
|
|
const markdownItEmoji = require('markdown-it-emoji/light')
|
|
|
|
const MarkdownItClass = require('markdown-it')
|
|
|
|
const markdownIt = new MarkdownItClass('default', { linkify: true, breaks: true, html: true })
|
|
|
|
|
|
|
|
markdownIt.enable(TEXT_WITH_HTML_RULES)
|
|
|
|
markdownIt.use(markdownItEmoji)
|
|
|
|
|
|
|
|
const toSafeHtml = text => {
|
2021-04-16 01:41:35 -04:00
|
|
|
if (!text) return ''
|
|
|
|
|
2021-04-11 09:06:36 -04:00
|
|
|
// Restore line feed
|
|
|
|
const textWithLineFeed = text.replace(/<br.?\/?>/g, '\r\n')
|
|
|
|
|
|
|
|
// Convert possible markdown (emojis, emphasis and lists) to html
|
|
|
|
const html = markdownIt.render(textWithLineFeed)
|
|
|
|
|
|
|
|
// Convert to safe Html
|
2021-05-27 09:59:55 -04:00
|
|
|
return sanitizeHtml(html, sanitizeOptions)
|
2021-04-11 09:06:36 -04:00
|
|
|
}
|
|
|
|
|
2021-04-12 05:43:29 -04:00
|
|
|
const mdToPlainText = text => {
|
2021-04-16 01:41:35 -04:00
|
|
|
if (!text) return ''
|
|
|
|
|
2021-04-12 05:43:29 -04:00
|
|
|
// Convert possible markdown (emojis, emphasis and lists) to html
|
|
|
|
const html = markdownIt.render(text)
|
|
|
|
|
|
|
|
// Convert to safe Html
|
2021-05-27 09:59:55 -04:00
|
|
|
const safeHtml = sanitizeHtml(html, sanitizeOptions)
|
2021-04-12 05:43:29 -04:00
|
|
|
|
|
|
|
return safeHtml.replace(/<[^>]+>/g, '')
|
|
|
|
.replace(/\n$/, '')
|
|
|
|
.replace('\n', ', ')
|
|
|
|
}
|
|
|
|
|
2021-04-11 09:06:36 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2021-04-12 05:43:29 -04:00
|
|
|
toSafeHtml,
|
|
|
|
mdToPlainText
|
2021-04-11 09:06:36 -04:00
|
|
|
}
|