aboutsummaryrefslogtreecommitdiff
path: root/src/components/rich_content/rich_content.jsx
blob: 3b29eb4c1cb97d1646b3abc0d9c1ba35568e5f78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import Vue from 'vue'
import { mapGetters } from 'vuex'
import { processHtml } from 'src/services/tiny_post_html_processor/tiny_post_html_processor.service.js'
import { convertHtml, getTagName, processTextForEmoji, getAttrs } from 'src/services/mini_html_converter/mini_html_converter.service.js'
import { mentionMatchesUrl, extractTagFromUrl } from 'src/services/matcher/matcher.service.js'
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
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(
            item,
            this.emoji,
            ({ shortcode, url }) => {
              return <StillImage
                class="emoji"
                src={url}
                title={`:${shortcode}:`}
                alt={`:${shortcode}:`}
              />
            }
          )
        } else {
          return item
        }
      }
      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>
  }
})