2019-03-29 16:48:52 +00:00
|
|
|
const filterByKeyword = (list, keyword = '') => {
|
|
|
|
return list.filter(x => x.shortcode.indexOf(keyword) !== -1)
|
|
|
|
}
|
|
|
|
|
2019-07-28 10:56:08 +00:00
|
|
|
const EmojiPicker = {
|
2019-04-08 15:50:12 +00:00
|
|
|
mounted () {
|
|
|
|
document.body.addEventListener('click', this.outsideClicked)
|
|
|
|
},
|
|
|
|
destroyed () {
|
|
|
|
document.body.removeEventListener('click', this.outsideClicked)
|
|
|
|
},
|
2019-03-29 15:49:32 +00:00
|
|
|
data () {
|
|
|
|
return {
|
2019-03-29 16:48:52 +00:00
|
|
|
open: false,
|
2019-04-05 18:51:25 +00:00
|
|
|
keyword: '',
|
|
|
|
activeGroup: 'standard'
|
2019-03-29 15:49:32 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
togglePanel () {
|
|
|
|
this.open = !this.open
|
2019-03-29 19:56:50 +00:00
|
|
|
},
|
2019-04-08 15:50:12 +00:00
|
|
|
insideClicked (e) {
|
|
|
|
e.stopPropagation()
|
|
|
|
},
|
|
|
|
outsideClicked () {
|
|
|
|
this.open = false
|
|
|
|
},
|
2019-03-29 19:56:50 +00:00
|
|
|
onEmoji (emoji) {
|
|
|
|
const value = emoji.image_url ? `:${emoji.shortcode}:` : emoji.utf
|
|
|
|
this.$emit('emoji', ` ${value} `)
|
|
|
|
this.open = false
|
2019-04-05 18:51:25 +00:00
|
|
|
},
|
|
|
|
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
|
|
|
|
}
|
|
|
|
})
|
2019-03-29 15:49:32 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
2019-03-29 16:48:52 +00:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
2019-04-02 17:38:07 +00:00
|
|
|
},
|
|
|
|
serverUrl () {
|
|
|
|
return this.$store.state.instance.server
|
2019-03-29 15:49:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 10:56:08 +00:00
|
|
|
export default EmojiPicker
|