aboutsummaryrefslogtreecommitdiff
path: root/src/components/emoji-selector/emoji-selector.js
blob: 969b880baa374f279f651d0bacc5f0603d97c798 (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
67
68
69
70
71
72
const filterByKeyword = (list, keyword = '') => {
  return list.filter(x => x.shortcode.indexOf(keyword) !== -1)
}

const EmojiSelector = {
  mounted () {
    document.body.addEventListener('click', this.outsideClicked)
  },
  destroyed () {
    document.body.removeEventListener('click', this.outsideClicked)
  },
  data () {
    return {
      open: false,
      keyword: '',
      activeGroup: 'standard'
    }
  },
  methods: {
    togglePanel () {
      this.open = !this.open
    },
    insideClicked (e) {
      e.stopPropagation()
    },
    outsideClicked () {
      this.open = false
    },
    onEmoji (emoji) {
      const value = emoji.image_url ? `:${emoji.shortcode}:` : emoji.utf
      this.$emit('emoji', ` ${value} `)
      this.open = false
    },
    highlight (key) {
      const ref = this.$refs['group-' + key]
      const top = ref[0].offsetTop
      this.$refs['emoji-groups'].scrollTop = top + 1
      this.activeGroup = key
    },
    scrolledGroup (e) {
      const top = e.target.scrollTop
      Object.keys(this.emojis).forEach(key => {
        if (this.$refs['group-' + key][0].offsetTop < top) {
          this.activeGroup = key
        }
      })
    }
  },
  computed: {
    emojis () {
      const standardEmojis = this.$store.state.instance.emoji || []
      const customEmojis = this.$store.state.instance.customEmoji || []
      return {
        standard: {
          text: 'Standard',
          icon: 'icon-star',
          emojis: filterByKeyword(standardEmojis, this.keyword)
        },
        custom: {
          text: 'Custom',
          icon: 'icon-picture',
          emojis: filterByKeyword(customEmojis, this.keyword)
        }
      }
    },
    serverUrl () {
      return this.$store.state.instance.server
    }
  }
}

export default EmojiSelector