2020-02-28 16:39:47 +00:00
|
|
|
import Popover from '../popover/popover.vue'
|
2019-11-15 14:29:25 +00:00
|
|
|
import { mapGetters } from 'vuex'
|
|
|
|
|
|
|
|
const ReactButton = {
|
2020-05-07 21:10:49 +00:00
|
|
|
props: ['status'],
|
2019-11-15 14:29:25 +00:00
|
|
|
data () {
|
|
|
|
return {
|
2020-02-28 16:39:47 +00:00
|
|
|
filterWord: ''
|
2019-11-15 14:29:25 +00:00
|
|
|
}
|
|
|
|
},
|
2020-02-28 16:39:47 +00:00
|
|
|
components: {
|
|
|
|
Popover
|
|
|
|
},
|
2019-11-15 14:29:25 +00:00
|
|
|
methods: {
|
2020-02-28 16:39:47 +00:00
|
|
|
addReaction (event, emoji, close) {
|
2020-02-11 12:24:51 +00:00
|
|
|
const existingReaction = this.status.emoji_reactions.find(r => r.name === emoji)
|
|
|
|
if (existingReaction && existingReaction.me) {
|
|
|
|
this.$store.dispatch('unreactWithEmoji', { id: this.status.id, emoji })
|
|
|
|
} else {
|
|
|
|
this.$store.dispatch('reactWithEmoji', { id: this.status.id, emoji })
|
|
|
|
}
|
2020-02-28 16:39:47 +00:00
|
|
|
close()
|
2019-11-15 14:29:25 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
2020-01-13 21:34:39 +00:00
|
|
|
commonEmojis () {
|
2020-06-05 15:26:13 +00:00
|
|
|
return ['👍', '😠', '👀', '😂', '🔥']
|
2020-01-13 21:34:39 +00:00
|
|
|
},
|
2019-11-15 14:29:25 +00:00
|
|
|
emojis () {
|
2020-01-13 21:34:39 +00:00
|
|
|
if (this.filterWord !== '') {
|
2020-07-14 19:47:02 +00:00
|
|
|
const filterWordLowercase = this.filterWord.toLowerCase()
|
|
|
|
return this.$store.state.instance.emoji.filter(emoji =>
|
|
|
|
emoji.displayText.toLowerCase().includes(filterWordLowercase)
|
|
|
|
)
|
2020-01-13 21:34:39 +00:00
|
|
|
}
|
2019-11-15 14:29:25 +00:00
|
|
|
return this.$store.state.instance.emoji || []
|
|
|
|
},
|
|
|
|
...mapGetters(['mergedConfig'])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ReactButton
|