2021-06-06 17:14:48 -07:00
|
|
|
import Vue from 'vue'
|
2021-06-07 06:16:10 -07:00
|
|
|
import { unescape, flattenDeep } from 'lodash'
|
2021-06-06 17:14:48 -07:00
|
|
|
import { convertHtml, getTagName, processTextForEmoji, getAttrs } from 'src/services/mini_html_converter/mini_html_converter.service.js'
|
2021-06-10 02:08:31 -07:00
|
|
|
import { processHtml } from 'src/services/tiny_post_html_processor/tiny_post_html_processor.service.js'
|
2021-06-06 17:14:48 -07:00
|
|
|
import StillImage from 'src/components/still-image/still-image.vue'
|
2021-06-07 06:16:10 -07:00
|
|
|
import MentionLink from 'src/components/mention_link/mention_link.vue'
|
2021-06-06 17:14:48 -07:00
|
|
|
|
|
|
|
import './rich_content.scss'
|
|
|
|
|
|
|
|
export default Vue.component('RichContent', {
|
|
|
|
name: 'RichContent',
|
|
|
|
props: {
|
2021-06-07 08:39:51 -07:00
|
|
|
// Original html content
|
2021-06-06 17:14:48 -07:00
|
|
|
html: {
|
|
|
|
required: true,
|
|
|
|
type: String
|
|
|
|
},
|
2021-06-07 08:39:51 -07:00
|
|
|
// Emoji object, as in status.emojis, note the "s" at the end...
|
2021-06-06 17:14:48 -07:00
|
|
|
emoji: {
|
|
|
|
required: true,
|
|
|
|
type: Array
|
2021-06-07 08:39:51 -07:00
|
|
|
},
|
|
|
|
// Whether to handle links or not (posts: yes, everything else: no)
|
|
|
|
handleLinks: {
|
|
|
|
required: false,
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2021-06-10 02:08:31 -07:00
|
|
|
},
|
|
|
|
// Meme arrows
|
|
|
|
greentext: {
|
|
|
|
required: false,
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2021-06-06 17:14:48 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
render (h) {
|
2021-06-10 02:08:31 -07:00
|
|
|
// Pre-process HTML
|
|
|
|
const html = this.greentext ? addGreentext(this.html) : this.html
|
|
|
|
|
2021-06-06 17:14:48 -07:00
|
|
|
const renderImage = (tag) => {
|
2021-06-07 08:39:51 -07:00
|
|
|
return <StillImage
|
|
|
|
{...{ attrs: getAttrs(tag) }}
|
|
|
|
class="img"
|
|
|
|
/>
|
2021-06-06 17:14:48 -07:00
|
|
|
}
|
2021-06-10 02:08:31 -07:00
|
|
|
|
2021-06-08 01:38:44 -07:00
|
|
|
const renderMention = (attrs, children, encounteredText) => {
|
2021-06-07 08:39:51 -07:00
|
|
|
return <MentionLink
|
|
|
|
url={attrs.href}
|
|
|
|
content={flattenDeep(children).join('')}
|
2021-06-08 01:38:44 -07:00
|
|
|
firstMention={!encounteredText}
|
2021-06-07 08:39:51 -07:00
|
|
|
/>
|
2021-06-07 06:16:10 -07:00
|
|
|
}
|
2021-06-07 08:39:51 -07:00
|
|
|
|
2021-06-10 02:08:31 -07:00
|
|
|
// We stop treating mentions as "first" ones when we encounter
|
|
|
|
// non-whitespace text
|
2021-06-08 01:38:44 -07:00
|
|
|
let encounteredText = false
|
2021-06-07 08:39:51 -07:00
|
|
|
// Processor to use with mini_html_converter
|
2021-06-06 17:14:48 -07:00
|
|
|
const processItem = (item) => {
|
2021-06-10 02:08:31 -07:00
|
|
|
// Handle text nodes - just add emoji
|
2021-06-06 17:14:48 -07:00
|
|
|
if (typeof item === 'string') {
|
2021-06-08 03:42:16 -07:00
|
|
|
const emptyText = item.trim() === ''
|
|
|
|
if (emptyText) {
|
2021-06-08 01:38:44 -07:00
|
|
|
return encounteredText ? item : item.trim()
|
|
|
|
}
|
|
|
|
let unescapedItem = unescape(item)
|
|
|
|
if (!encounteredText) {
|
|
|
|
unescapedItem = unescapedItem.trimStart()
|
|
|
|
encounteredText = true
|
|
|
|
}
|
2021-06-06 17:14:48 -07:00
|
|
|
if (item.includes(':')) {
|
|
|
|
return processTextForEmoji(
|
2021-06-08 01:38:44 -07:00
|
|
|
unescapedItem,
|
2021-06-06 17:14:48 -07:00
|
|
|
this.emoji,
|
|
|
|
({ shortcode, url }) => {
|
|
|
|
return <StillImage
|
2021-06-07 02:49:54 -07:00
|
|
|
class="emoji img"
|
2021-06-06 17:14:48 -07:00
|
|
|
src={url}
|
|
|
|
title={`:${shortcode}:`}
|
|
|
|
alt={`:${shortcode}:`}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
)
|
|
|
|
} else {
|
2021-06-08 01:38:44 -07:00
|
|
|
return unescapedItem
|
2021-06-06 17:14:48 -07:00
|
|
|
}
|
|
|
|
}
|
2021-06-10 02:08:31 -07:00
|
|
|
|
2021-06-07 08:39:51 -07:00
|
|
|
// Handle tag nodes
|
2021-06-06 17:14:48 -07:00
|
|
|
if (Array.isArray(item)) {
|
|
|
|
const [opener, children] = item
|
|
|
|
const Tag = getTagName(opener)
|
2021-06-07 06:16:10 -07:00
|
|
|
switch (Tag) {
|
2021-06-07 08:39:51 -07:00
|
|
|
case 'img': // replace images with StillImage
|
2021-06-07 06:16:10 -07:00
|
|
|
return renderImage(opener)
|
2021-06-07 08:39:51 -07:00
|
|
|
case 'a': // replace mentions with MentionLink
|
|
|
|
if (!this.handleLinks) break
|
2021-06-07 06:16:10 -07:00
|
|
|
const attrs = getAttrs(opener)
|
|
|
|
if (attrs['class'] && attrs['class'].includes('mention')) {
|
2021-06-08 01:38:44 -07:00
|
|
|
return renderMention(attrs, children, encounteredText)
|
2021-06-10 02:08:31 -07:00
|
|
|
} else {
|
|
|
|
attrs.target = '_blank'
|
|
|
|
return <a {...{ attrs }}>
|
|
|
|
{ children.map(processItem) }
|
|
|
|
</a>
|
2021-06-07 06:16:10 -07:00
|
|
|
}
|
2021-06-06 17:14:48 -07:00
|
|
|
}
|
2021-06-10 02:08:31 -07:00
|
|
|
|
2021-06-07 08:39:51 -07:00
|
|
|
// Render tag as is
|
2021-06-06 17:14:48 -07:00
|
|
|
if (children !== undefined) {
|
|
|
|
return <Tag {...{ attrs: getAttrs(opener) }}>
|
|
|
|
{ children.map(processItem) }
|
|
|
|
</Tag>
|
|
|
|
} else {
|
|
|
|
return <Tag/>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-07 02:49:54 -07:00
|
|
|
return <span class="RichContent">
|
2021-06-10 02:08:31 -07:00
|
|
|
{ this.$slots.prefix }
|
|
|
|
{ convertHtml(html).map(processItem) }
|
|
|
|
{ this.$slots.suffix }
|
2021-06-07 02:49:54 -07:00
|
|
|
</span>
|
2021-06-06 17:14:48 -07:00
|
|
|
}
|
|
|
|
})
|
2021-06-10 02:08:31 -07:00
|
|
|
|
|
|
|
export const addGreentext = (html) => {
|
|
|
|
try {
|
|
|
|
if (html.includes('>')) {
|
|
|
|
// This checks if post has '>' at the beginning, excluding mentions so that @mention >impying works
|
|
|
|
return processHtml(html, (string) => {
|
|
|
|
if (
|
|
|
|
string.includes('>') && string
|
|
|
|
.replace(/<[^>]+?>/gi, '') // remove all tags
|
|
|
|
.replace(/@\w+/gi, '') // remove mentions (even failed ones)
|
|
|
|
.trim()
|
|
|
|
.startsWith('>')
|
|
|
|
) {
|
|
|
|
return `<span class='greentext'>${string}</span>`
|
|
|
|
} else {
|
|
|
|
return string
|
|
|
|
}
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
return html
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.error('Failed to process status html', e)
|
|
|
|
return html
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const getHeadTailLinks = (html) => {
|
|
|
|
// Exported object properties
|
|
|
|
const firstMentions = [] // Mentions that appear in the beginning of post body
|
|
|
|
const lastTags = [] // Tags that appear at the end of post body
|
|
|
|
const writtenMentions = [] // All mentions that appear in post body
|
|
|
|
const writtenTags = [] // All tags that appear in post body
|
|
|
|
|
|
|
|
let encounteredText = false
|
|
|
|
let processingFirstMentions = true
|
|
|
|
let index = 0 // unique index for vue "tag" property
|
|
|
|
|
|
|
|
const getLinkData = (attrs, children, index) => {
|
|
|
|
return {
|
|
|
|
index,
|
|
|
|
url: attrs.href,
|
|
|
|
hashtag: attrs['data-tag'],
|
|
|
|
content: flattenDeep(children).join('')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Processor to use with mini_html_converter
|
|
|
|
const processItem = (item) => {
|
|
|
|
// Handle text nodes - stop treating mentions as "first" when text encountered
|
|
|
|
if (typeof item === 'string') {
|
|
|
|
const emptyText = item.trim() === ''
|
|
|
|
if (emptyText) return
|
|
|
|
if (!encounteredText) {
|
|
|
|
encounteredText = true
|
|
|
|
processingFirstMentions = false
|
|
|
|
}
|
|
|
|
// Encountered text? That means tags we've been collectings aren't "last"!
|
|
|
|
lastTags.splice(0)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Handle tag nodes
|
|
|
|
if (Array.isArray(item)) {
|
|
|
|
const [opener, children] = item
|
|
|
|
const Tag = getTagName(opener)
|
|
|
|
if (Tag !== 'a') return children && children.forEach(processItem)
|
|
|
|
const attrs = getAttrs(opener)
|
|
|
|
if (attrs['class']) {
|
|
|
|
const linkData = getLinkData(attrs, children, index++)
|
|
|
|
if (attrs['class'].includes('mention')) {
|
|
|
|
if (processingFirstMentions) {
|
|
|
|
firstMentions.push(linkData)
|
|
|
|
}
|
|
|
|
writtenMentions.push(linkData)
|
|
|
|
} else if (attrs['class'].includes('hashtag')) {
|
|
|
|
lastTags.push(linkData)
|
|
|
|
writtenTags.push(linkData)
|
|
|
|
}
|
|
|
|
return // Stop processing, we don't care about link's contents
|
|
|
|
}
|
|
|
|
children && children.forEach(processItem)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
convertHtml(html).forEach(processItem)
|
|
|
|
return { firstMentions, writtenMentions, writtenTags, lastTags }
|
|
|
|
}
|