allow custom reactions

This commit is contained in:
FloatingGhost 2022-06-08 12:37:22 +01:00
parent 170a406cad
commit 3a1d6a1970
2 changed files with 16 additions and 3 deletions

View File

@ -45,7 +45,10 @@ const ReactButton = {
if (this.filterWord !== '') {
const filterWordLowercase = this.filterWord.toLowerCase()
let orderedEmojiList = []
for (const emoji of this.$store.state.instance.emoji) {
for (const emoji of [
...this.$store.state.instance.emoji,
...this.$store.state.instance.customEmoji
]) {
if (emoji.replacement === this.filterWord) return [emoji]
const indexOfFilterWord = emoji.displayText.toLowerCase().indexOf(filterWordLowercase)
@ -58,7 +61,10 @@ const ReactButton = {
}
return orderedEmojiList.flat()
}
return this.$store.state.instance.emoji || []
return [
...this.$store.state.instance.emoji,
...this.$store.state.instance.customEmoji
] || []
},
mergedConfig () {
return this.$store.getters.mergedConfig

View File

@ -34,7 +34,14 @@
:title="emoji.displayText"
@click="addReaction($event, emoji.replacement, close)"
>
{{ emoji.replacement }}
<img
v-if="emoji.imageUrl !== false"
:src="emoji.imageUrl"
width="30px"
>
<span v-else>
{{ emoji.replacement }}
</span>
</span>
<div class="reaction-bottom-fader" />
</div>