2019-03-29 16:48:52 +00:00
|
|
|
const filterByKeyword = (list, keyword = '') => {
|
|
|
|
return list.filter(x => x.shortcode.indexOf(keyword) !== -1)
|
|
|
|
}
|
|
|
|
|
2019-03-29 15:49:32 +00:00
|
|
|
const EmojiSelector = {
|
|
|
|
data () {
|
|
|
|
return {
|
2019-03-29 16:48:52 +00:00
|
|
|
open: false,
|
|
|
|
keyword: ''
|
2019-03-29 15:49:32 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
togglePanel () {
|
|
|
|
this.open = !this.open
|
|
|
|
}
|
|
|
|
},
|
|
|
|
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-03-29 15:49:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default EmojiSelector
|