pleroma-fe/src/components/emoji-selector/emoji-selector.js

46 lines
1.0 KiB
JavaScript
Raw Normal View History

2019-03-29 17:48:52 +01:00
const filterByKeyword = (list, keyword = '') => {
return list.filter(x => x.shortcode.indexOf(keyword) !== -1)
}
2019-03-29 16:49:32 +01:00
const EmojiSelector = {
data () {
return {
2019-03-29 17:48:52 +01:00
open: false,
keyword: ''
2019-03-29 16:49:32 +01:00
}
},
methods: {
togglePanel () {
this.open = !this.open
},
onEmoji (emoji) {
const value = emoji.image_url ? `:${emoji.shortcode}:` : emoji.utf
this.$emit('emoji', ` ${value} `)
this.open = false
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 {
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 19:38:07 +02:00
},
serverUrl () {
return this.$store.state.instance.server
2019-03-29 16:49:32 +01:00
}
}
}
export default EmojiSelector