add custom emoji display

This commit is contained in:
FloatingGhost 2022-06-12 14:11:07 +01:00 committed by Zero
parent c27845169d
commit 44047458e4
3 changed files with 19 additions and 1 deletions

View File

@ -1,5 +1,11 @@
@import '../../_variables.scss';
.reaction-emoji {
width: 40px;
display: flex;
flex-direction: column;
}
// TODO Copypaste from Status, should unify it somehow
.Notification {
&.-muted {

View File

@ -102,7 +102,18 @@
<span v-if="notification.type === 'pleroma:emoji_reaction'">
<small>
<i18n path="notifications.reacted_with">
<span class="emoji-reaction-emoji">{{ notification.emoji }}</span>
<img
v-if="notification.emoji_url !== null"
class="reaction-emoji"
:src="notification.emoji_url"
:name="notification.emoji"
>
<span
v-else
class="emoji-reaction-emoji"
>
{{ notification.emoji }}
</span>
</i18n>
</small>
</span>

View File

@ -392,6 +392,7 @@ export const parseNotification = (data) => {
: parseUser(data.target)
output.from_profile = parseUser(data.account)
output.emoji = data.emoji
output.emoji_url = data.emoji_url
} else {
const parsedNotice = parseStatus(data.notice)
output.type = data.ntype