2019-12-19 07:46:16 -04:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
2019-07-13 05:39:01 -04:00
|
|
|
import QtQuick 2.12
|
2019-12-27 09:06:42 -04:00
|
|
|
import Clipboard 0.1
|
2019-12-18 04:53:08 -04:00
|
|
|
import "../../../Base"
|
2019-05-12 13:17:42 -04:00
|
|
|
|
2019-08-21 04:39:07 -04:00
|
|
|
HTileDelegate {
|
2019-05-12 13:17:42 -04:00
|
|
|
id: memberDelegate
|
2020-03-13 01:09:04 -04:00
|
|
|
backgroundColor: theme.chat.roomPane.listView.member.background
|
2019-12-17 09:46:18 -04:00
|
|
|
contentOpacity:
|
2020-03-13 01:09:04 -04:00
|
|
|
model.invited ? theme.chat.roomPane.listView.member.invitedOpacity : 1
|
2019-05-12 13:17:42 -04:00
|
|
|
|
2019-08-21 04:39:07 -04:00
|
|
|
image: HUserAvatar {
|
2019-12-02 16:29:29 -04:00
|
|
|
userId: model.id
|
2019-08-21 04:39:07 -04:00
|
|
|
displayName: model.display_name
|
2019-11-03 13:48:12 -04:00
|
|
|
mxc: model.avatar_url
|
2019-11-30 04:59:02 -04:00
|
|
|
powerLevel: model.power_level
|
2019-12-17 09:46:18 -04:00
|
|
|
shiftMembershipIconPosition: ! roomPane.collapsed
|
|
|
|
invited: model.invited
|
2020-03-22 12:50:10 -04:00
|
|
|
compact: memberDelegate.compact
|
2019-05-12 13:17:42 -04:00
|
|
|
}
|
2019-08-21 04:39:07 -04:00
|
|
|
|
2019-12-02 16:29:29 -04:00
|
|
|
title.text: model.display_name || model.id
|
2019-11-30 05:12:00 -04:00
|
|
|
title.color:
|
|
|
|
memberDelegate.hovered ?
|
2019-12-02 16:29:29 -04:00
|
|
|
utils.nameColor(model.display_name || model.id.substring(1)) :
|
2020-03-13 01:09:04 -04:00
|
|
|
theme.chat.roomPane.listView.member.name
|
2019-08-22 05:42:48 -04:00
|
|
|
|
2019-12-02 16:29:29 -04:00
|
|
|
subtitle.text: model.display_name ? model.id : ""
|
2020-03-13 01:09:04 -04:00
|
|
|
subtitle.color: theme.chat.roomPane.listView.member.subtitle
|
2019-11-30 05:12:00 -04:00
|
|
|
|
2019-12-12 08:32:50 -04:00
|
|
|
contextMenu: HMenu {
|
|
|
|
HMenuItem {
|
|
|
|
icon.name: "copy-user-id"
|
|
|
|
text: qsTr("Copy user ID")
|
2019-12-02 16:29:29 -04:00
|
|
|
onTriggered: Clipboard.text = model.id
|
2019-12-12 08:32:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-30 05:12:00 -04:00
|
|
|
|
|
|
|
Behavior on title.color { HColorAnimation {} }
|
2019-12-17 09:46:18 -04:00
|
|
|
Behavior on contentOpacity { HNumberAnimation {} }
|
2019-12-21 12:46:47 -04:00
|
|
|
Behavior on spacing { HNumberAnimation {} }
|
|
|
|
|
|
|
|
Binding on spacing {
|
|
|
|
value: (roomPane.minimumSize - loadedImage.width) / 2
|
|
|
|
when: loadedImage &&
|
|
|
|
roomPane.width < loadedImage.width + theme.spacing * 2
|
|
|
|
}
|
2019-05-12 13:17:42 -04:00
|
|
|
}
|