2021-06-07 00:14:48 +00:00
|
|
|
import Vue from 'vue'
|
2021-06-07 09:22:15 +00:00
|
|
|
import { unescape } from 'lodash'
|
2021-06-07 00:14:48 +00:00
|
|
|
import { convertHtml, getTagName, processTextForEmoji, getAttrs } from 'src/services/mini_html_converter/mini_html_converter.service.js'
|
|
|
|
import StillImage from 'src/components/still-image/still-image.vue'
|
|
|
|
|
|
|
|
import './rich_content.scss'
|
|
|
|
|
|
|
|
export default Vue.component('RichContent', {
|
|
|
|
name: 'RichContent',
|
|
|
|
props: {
|
|
|
|
html: {
|
|
|
|
required: true,
|
|
|
|
type: String
|
|
|
|
},
|
|
|
|
emoji: {
|
|
|
|
required: true,
|
|
|
|
type: Array
|
|
|
|
}
|
|
|
|
},
|
|
|
|
render (h) {
|
|
|
|
const renderImage = (tag) => {
|
|
|
|
return <StillImage {...{ attrs: getAttrs(tag) }} />
|
|
|
|
}
|
|
|
|
const structure = convertHtml(this.html)
|
|
|
|
const processItem = (item) => {
|
|
|
|
if (typeof item === 'string') {
|
|
|
|
if (item.includes(':')) {
|
|
|
|
return processTextForEmoji(
|
2021-06-07 09:22:15 +00:00
|
|
|
unescape(item),
|
2021-06-07 00:14:48 +00:00
|
|
|
this.emoji,
|
|
|
|
({ shortcode, url }) => {
|
|
|
|
return <StillImage
|
|
|
|
class="emoji"
|
|
|
|
src={url}
|
|
|
|
title={`:${shortcode}:`}
|
|
|
|
alt={`:${shortcode}:`}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
)
|
|
|
|
} else {
|
2021-06-07 09:22:15 +00:00
|
|
|
return unescape(item)
|
2021-06-07 00:14:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (Array.isArray(item)) {
|
|
|
|
const [opener, children] = item
|
|
|
|
const Tag = getTagName(opener)
|
|
|
|
if (Tag === 'img') {
|
|
|
|
return renderImage(opener)
|
|
|
|
}
|
|
|
|
if (children !== undefined) {
|
|
|
|
return <Tag {...{ attrs: getAttrs(opener) }}>
|
|
|
|
{ children.map(processItem) }
|
|
|
|
</Tag>
|
|
|
|
} else {
|
|
|
|
return <Tag/>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return <div>
|
|
|
|
{ structure.map(processItem) }
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
})
|