mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-11 06:47:01 +00:00
feat(StatusChatList): expose hook to lazily calculate chat item names
This commit is contained in:
parent
5faebe7002
commit
98ebedc63c
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user