2023-06-22 10:32:43 +00:00
|
|
|
import QtQuick 2.14
|
|
|
|
|
2022-03-01 14:40:53 +00:00
|
|
|
import StatusQ.Components 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import StatusQ.Core 0.1
|
2023-06-22 10:32:43 +00:00
|
|
|
|
|
|
|
import AppLayouts.Wallet 1.0
|
2022-03-01 14:40:53 +00:00
|
|
|
|
2023-05-22 15:55:47 +00:00
|
|
|
import utils 1.0
|
2022-03-01 14:40:53 +00:00
|
|
|
|
|
|
|
StatusListItem {
|
2022-06-22 12:16:21 +00:00
|
|
|
id: root
|
|
|
|
|
2022-03-01 14:40:53 +00:00
|
|
|
property var account
|
2023-07-21 08:41:24 +00:00
|
|
|
property var getNetworkShortNames: function(chainIds){}
|
2023-06-22 10:32:43 +00:00
|
|
|
property int totalCount: 0
|
2023-08-08 19:01:19 +00:00
|
|
|
property bool nextIconVisible: true
|
2022-06-22 12:16:21 +00:00
|
|
|
|
|
|
|
signal goToAccountView()
|
2023-06-22 10:32:43 +00:00
|
|
|
|
2022-07-20 08:18:27 +00:00
|
|
|
objectName: account.name
|
2023-06-22 10:32:43 +00:00
|
|
|
title: account.name
|
2023-12-20 14:10:50 +00:00
|
|
|
subTitle: WalletUtils.addressToDisplay(account.address, root.getNetworkShortNames(account.preferredSharingChainIds), true, sensor.containsMouse)
|
2023-06-22 10:32:43 +00:00
|
|
|
asset.color: !!account.colorId ? Utils.getColorForId(account.colorId): ""
|
2022-08-11 11:55:08 +00:00
|
|
|
asset.emoji: account.emoji
|
|
|
|
asset.name: !account.emoji ? "filled-account": ""
|
|
|
|
asset.letterSize: 14
|
|
|
|
asset.isLetterIdenticon: !!account.emoji
|
|
|
|
asset.bgColor: Theme.palette.primaryColor3
|
2022-09-27 21:26:26 +00:00
|
|
|
asset.width: 40
|
|
|
|
asset.height: 40
|
2022-06-22 12:16:21 +00:00
|
|
|
|
2023-06-22 10:32:43 +00:00
|
|
|
components: StatusIcon {
|
2023-02-28 14:54:10 +00:00
|
|
|
icon: "next"
|
2022-06-22 12:16:21 +00:00
|
|
|
color: Theme.palette.baseColor1
|
2023-08-08 19:01:19 +00:00
|
|
|
visible: root.nextIconVisible
|
2022-06-22 12:16:21 +00:00
|
|
|
}
|
2023-06-22 10:32:43 +00:00
|
|
|
|
|
|
|
onClicked: goToAccountView()
|
|
|
|
|
|
|
|
// This is used to give the first and last delgate rounded corners
|
|
|
|
Rectangle {
|
|
|
|
visible: totalCount > 1
|
|
|
|
readonly property bool isLastOrFirstItem: index === 0 || index === (totalCount-1)
|
|
|
|
width: parent.width
|
|
|
|
height: isLastOrFirstItem? parent.height/2 : parent.height
|
|
|
|
anchors.top: !isLastOrFirstItem || index === (totalCount-1) ? parent.top: undefined
|
|
|
|
anchors.bottom: index === 0 ? parent.bottom: undefined
|
|
|
|
color: parent.color
|
|
|
|
z: parent.z - 10
|
|
|
|
}
|
2022-03-10 17:01:17 +00:00
|
|
|
}
|