pleroma-fe/src/components/emoji_picker/emoji_picker.js

54 lines
1.3 KiB
JavaScript
Raw Normal View History

2019-03-29 17:48:52 +01:00
const filterByKeyword = (list, keyword = '') => {
return list.filter(x => x.displayText.includes(keyword))
2019-03-29 17:48:52 +01:00
}
2019-07-28 12:56:08 +02:00
const EmojiPicker = {
2019-03-29 16:49:32 +01:00
data () {
return {
keyword: '',
activeGroup: 'standard'
2019-03-29 16:49:32 +01:00
}
},
methods: {
onEmoji (emoji) {
const value = emoji.imageUrl ? `:${emoji.displayText}:` : emoji.replacement
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
}
})
2019-03-29 16:49:32 +01:00
}
},
computed: {
2019-03-29 17:48:52 +01:00
emojis () {
const standardEmojis = this.$store.state.instance.emoji || []
const customEmojis = this.$store.state.instance.customEmoji || []
return {
custom: {
text: 'Custom',
icon: 'icon-picture',
emojis: filterByKeyword(customEmojis, this.keyword)
},
standard: {
text: 'Standard',
icon: 'icon-star',
emojis: filterByKeyword(standardEmojis, this.keyword)
2019-03-29 17:48:52 +01:00
}
}
2019-03-29 16:49:32 +01:00
}
}
}
2019-07-28 12:56:08 +02:00
export default EmojiPicker