2019-12-19 22:46:16 +11:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
2019-08-18 17:27:00 +10:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Layouts 1.12
|
2019-12-28 00:06:42 +11:00
|
|
|
import Clipboard 0.1
|
2019-08-18 17:27:00 +10:00
|
|
|
import "../Base"
|
|
|
|
|
2019-08-21 18:39:07 +10:00
|
|
|
HTileDelegate {
|
2019-12-03 07:29:29 +11:00
|
|
|
id: account
|
2019-08-21 18:39:07 +10:00
|
|
|
spacing: 0
|
2019-12-09 05:43:41 +11:00
|
|
|
topPadding: model.index > 0 ? theme.spacing / 2 : 0
|
2019-08-21 18:39:07 +10:00
|
|
|
bottomPadding: topPadding
|
2019-12-03 07:29:29 +11:00
|
|
|
|
2019-12-11 06:17:41 +11:00
|
|
|
backgroundColor: theme.mainPane.account.background
|
2020-02-04 07:19:42 +11:00
|
|
|
opacity: collapsed && ! mainPane.filter ?
|
2019-12-11 06:17:41 +11:00
|
|
|
theme.mainPane.account.collapsedOpacity : 1
|
2019-08-18 17:27:00 +10:00
|
|
|
|
2019-12-03 07:29:29 +11:00
|
|
|
title.color: theme.mainPane.account.name
|
|
|
|
title.text: model.display_name || model.id
|
|
|
|
title.font.pixelSize: theme.fontSize.big
|
|
|
|
title.leftPadding: theme.spacing
|
2019-08-20 04:28:12 +10:00
|
|
|
|
2019-12-03 07:29:29 +11:00
|
|
|
image: HUserAvatar {
|
|
|
|
userId: model.id
|
|
|
|
displayName: model.display_name
|
|
|
|
mxc: model.avatar_url
|
|
|
|
}
|
2019-08-24 00:53:54 +10:00
|
|
|
|
2019-12-03 07:29:29 +11:00
|
|
|
contextMenu: HMenu {
|
|
|
|
HMenuItem {
|
|
|
|
icon.name: "copy-user-id"
|
|
|
|
text: qsTr("Copy user ID")
|
|
|
|
onTriggered: Clipboard.text = model.id
|
|
|
|
}
|
2019-08-18 17:27:00 +10:00
|
|
|
|
2019-12-03 07:29:29 +11:00
|
|
|
HMenuItemPopupSpawner {
|
|
|
|
icon.name: "sign-out"
|
|
|
|
icon.color: theme.colors.negativeBackground
|
|
|
|
text: qsTr("Sign out")
|
2019-08-21 18:39:07 +10:00
|
|
|
|
2019-12-03 07:29:29 +11:00
|
|
|
popup: "Popups/SignOutPopup.qml"
|
|
|
|
properties: { "userId": model.id }
|
|
|
|
}
|
|
|
|
}
|
2019-08-21 18:39:07 +10:00
|
|
|
|
2019-12-03 07:29:29 +11:00
|
|
|
onActivated: pageLoader.showPage(
|
|
|
|
"AccountSettings/AccountSettings", { "userId": model.id }
|
|
|
|
)
|
2019-08-20 00:28:49 +10:00
|
|
|
|
|
|
|
|
2020-02-13 20:56:10 +11:00
|
|
|
readonly property alias addChat: addChat
|
|
|
|
|
2019-12-03 07:29:29 +11:00
|
|
|
readonly property bool collapsed:
|
|
|
|
window.uiState.collapseAccounts[model.id] || false
|
2019-08-18 17:27:00 +10:00
|
|
|
|
2019-08-20 03:09:05 +10:00
|
|
|
|
2019-08-18 17:27:00 +10:00
|
|
|
function toggleCollapse() {
|
2019-12-03 07:29:29 +11:00
|
|
|
window.uiState.collapseAccounts[model.id] = ! collapsed
|
2019-08-18 17:27:00 +10:00
|
|
|
window.uiStateChanged()
|
|
|
|
}
|
|
|
|
|
2019-08-20 03:09:05 +10:00
|
|
|
|
2019-12-03 07:29:29 +11:00
|
|
|
Behavior on opacity { HNumberAnimation {} }
|
2019-08-21 18:39:07 +10:00
|
|
|
|
2019-11-07 21:44:53 +11:00
|
|
|
HButton {
|
|
|
|
id: addChat
|
2019-12-05 00:08:38 +11:00
|
|
|
iconItem.small: true
|
2019-11-10 02:10:00 +11:00
|
|
|
icon.name: "add-chat"
|
2019-11-07 21:44:53 +11:00
|
|
|
backgroundColor: "transparent"
|
|
|
|
toolTip.text: qsTr("Add new chat")
|
2019-11-08 02:08:47 +11:00
|
|
|
onClicked: pageLoader.showPage(
|
2019-12-03 07:29:29 +11:00
|
|
|
"AddChat/AddChat", {userId: model.id},
|
2019-11-08 02:08:47 +11:00
|
|
|
)
|
2019-11-07 21:44:53 +11:00
|
|
|
|
|
|
|
leftPadding: theme.spacing / 2
|
|
|
|
rightPadding: leftPadding
|
|
|
|
|
|
|
|
opacity: expand.loading ? 0 : 1
|
2019-12-22 05:25:17 +11:00
|
|
|
visible: opacity > 0 && Layout.maximumWidth > 0
|
2019-11-07 21:44:53 +11:00
|
|
|
|
|
|
|
Layout.fillHeight: true
|
2019-12-22 05:25:17 +11:00
|
|
|
Layout.maximumWidth:
|
2019-12-03 07:29:29 +11:00
|
|
|
account.width >= 100 * theme.uiScale ? implicitWidth : 0
|
2019-11-07 21:44:53 +11:00
|
|
|
|
2019-12-22 05:25:17 +11:00
|
|
|
Behavior on Layout.maximumWidth { HNumberAnimation {} }
|
2019-12-16 19:42:41 +11:00
|
|
|
Behavior on opacity { HNumberAnimation {} }
|
2019-11-07 21:44:53 +11:00
|
|
|
}
|
|
|
|
|
2019-08-21 18:39:07 +10:00
|
|
|
HButton {
|
|
|
|
id: expand
|
2019-12-03 07:29:29 +11:00
|
|
|
loading:
|
|
|
|
! model.first_sync_done || model.profile_updated < new Date(1)
|
2019-12-05 00:08:38 +11:00
|
|
|
iconItem.small: true
|
2019-08-22 05:45:13 +10:00
|
|
|
icon.name: "expand"
|
2019-08-21 18:39:07 +10:00
|
|
|
backgroundColor: "transparent"
|
2019-08-22 23:27:26 +10:00
|
|
|
toolTip.text: collapsed ? qsTr("Expand") : qsTr("Collapse")
|
2019-12-03 07:29:29 +11:00
|
|
|
onClicked: account.toggleCollapse()
|
2019-08-21 18:39:07 +10:00
|
|
|
|
2019-11-07 21:44:53 +11:00
|
|
|
leftPadding: theme.spacing / 2
|
|
|
|
rightPadding: leftPadding
|
|
|
|
|
2020-02-04 07:19:42 +11:00
|
|
|
opacity: ! loading && mainPane.filter ? 0 : 1
|
2019-12-22 05:25:17 +11:00
|
|
|
visible: opacity > 0 && Layout.maximumWidth > 0
|
2019-08-21 18:39:07 +10:00
|
|
|
|
2019-11-07 21:44:53 +11:00
|
|
|
Layout.fillHeight: true
|
2019-12-22 05:25:17 +11:00
|
|
|
Layout.maximumWidth:
|
2019-12-03 07:29:29 +11:00
|
|
|
account.width >= 120 * theme.uiScale ? implicitWidth : 0
|
2019-12-22 05:25:17 +11:00
|
|
|
|
2019-11-07 21:44:53 +11:00
|
|
|
|
2019-08-22 05:45:13 +10:00
|
|
|
iconItem.transform: Rotation {
|
2019-11-07 21:44:53 +11:00
|
|
|
origin.x: expand.iconItem.width / 2
|
|
|
|
origin.y: expand.iconItem.height / 2
|
2019-08-28 05:00:50 +10:00
|
|
|
angle: expand.loading ? 0 : collapsed ? 180 : 90
|
2019-08-21 18:39:07 +10:00
|
|
|
|
|
|
|
Behavior on angle { HNumberAnimation {} }
|
2019-08-20 08:32:43 +10:00
|
|
|
}
|
2019-08-18 17:27:00 +10:00
|
|
|
|
2019-12-22 05:25:17 +11:00
|
|
|
Behavior on Layout.maximumWidth { HNumberAnimation {} }
|
2019-12-16 19:42:41 +11:00
|
|
|
Behavior on opacity { HNumberAnimation {} }
|
2019-08-18 17:27:00 +10:00
|
|
|
}
|
|
|
|
}
|