feat(StatusChatList): expose hook to lazily calculate chat item names

This commit is contained in:
Pascal Precht 2021-06-30 16:12:21 +02:00 committed by Michał Cieślak
parent 5faebe7002
commit 98ebedc63c
1 changed files with 2 additions and 1 deletions

View File

@ -19,6 +19,7 @@ Column {
property var filterFn
property var profileImageFn
property var chatNameFn
signal chatItemSelected(string id)
signal chatItemUnmuted(string id)
@ -44,7 +45,7 @@ Column {
}
chatId: model.chatId || model.id
name: model.name
name: !!statusChatList.chatNameFn ? statusChatList.chatNameFn(model) : model.name
type: model.chatType
muted: !!model.muted
hasUnreadMessages: !!model.hasUnreadMessages || model.unviewedMessagesCount > 0