status-desktop/ui/app/AppLayouts/stores/EmojiReactions.qml
Sale Djenic 96e50a97ac refactor(@desktop/chat-community): ChatContextMenuView and MessageContextMenuView updated
Within this commit apart of `ChatContextMenuView` and `MessageContextMenuView`
some other things are fixed:
- pinned messages model (`asyncFetchChatMessagesTask`), which was corrupted most
likely by resolving conflicts
- `pinned by` part of the pinned messages
- set/remove local nickname for a contact
- contacts in a message list and pinned by name, contact in a pinned message list
and pinned by name, one to one chat details and chat tool bar are updated in a way
that they are responsive to the contact's updates
- pinned messages updated received from remote (from the `status-go`) is handled

Fixes #4366
2022-02-01 11:48:25 +01:00

31 lines
571 B
QML

import QtQuick 2.13
ListModel {
id: reactionModel
ListElement {
emojiId: 1
filename: "emojiReactions/heart"
}
ListElement {
emojiId: 2
filename: "emojiReactions/thumbsUp"
}
ListElement {
emojiId: 3
filename: "emojiReactions/thumbsDown"
}
ListElement {
emojiId: 4
filename: "emojiReactions/laughing"
}
ListElement {
emojiId: 5
filename: "emojiReactions/sad"
}
ListElement {
emojiId: 6
filename: "emojiReactions/angry"
}
}