aboutsummaryrefslogtreecommitdiff
path: root/src/components/emoji-selector/emoji-selector.js
blob: 07ea0442cfad3a391f96b70ffae4c77278605598 (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
const filterByKeyword = (list, keyword = '') => {
  return list.filter(x => x.shortcode.indexOf(keyword) !== -1)
}

const EmojiSelector = {
  data () {
    return {
      open: false,
      keyword: ''
    }
  },
  methods: {
    togglePanel () {
      this.open = !this.open
    },
    onEmoji (emoji) {
      const value = emoji.image_url ? `:${emoji.shortcode}:` : emoji.utf
      this.$emit('emoji', ` ${value} `)
      this.open = false
    }
  },
  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)
        }
      }
    }
  }
}

export default EmojiSelector