2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
2020-06-18 15:31:52 +00:00
|
|
|
import "../../../imports"
|
2020-06-19 18:06:58 +00:00
|
|
|
import "../../../shared"
|
2020-05-28 14:54:42 +00:00
|
|
|
|
|
|
|
Item {
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-06-18 15:31:52 +00:00
|
|
|
visible: walletModel.collectibles.rowCount() === 0
|
2020-07-06 20:39:55 +00:00
|
|
|
//% "No collectibles in this account"
|
|
|
|
text: qsTrId("no-collectibles-in-this-account")
|
2020-06-18 15:31:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: collectiblesViewDelegate
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: element
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 0
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 0
|
2020-06-25 13:23:17 +00:00
|
|
|
height: 132
|
2020-06-18 15:31:52 +00:00
|
|
|
|
2020-06-25 13:23:17 +00:00
|
|
|
SVGImage {
|
2020-06-18 15:31:52 +00:00
|
|
|
id: collectibleImage
|
2020-06-25 13:23:17 +00:00
|
|
|
width: 128
|
|
|
|
height: 128
|
2020-06-18 15:31:52 +00:00
|
|
|
source: image
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 0
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
}
|
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-06-18 15:31:52 +00:00
|
|
|
id: collectibleName
|
|
|
|
text: name
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.left: collectibleImage.right
|
2020-07-02 15:14:31 +00:00
|
|
|
anchors.leftMargin: Style.current.padding
|
2020-06-18 15:24:44 +00:00
|
|
|
font.pixelSize: 15
|
|
|
|
}
|
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-06-18 15:24:44 +00:00
|
|
|
id: collectibleIdText
|
|
|
|
text: collectibleId
|
2020-07-02 15:14:31 +00:00
|
|
|
anchors.leftMargin: Style.current.padding
|
2020-06-18 15:24:44 +00:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.left: collectibleName.right
|
2020-07-02 15:14:31 +00:00
|
|
|
color: Style.current.darkGrey
|
2020-06-18 15:31:52 +00:00
|
|
|
font.pixelSize: 15
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ListModel {
|
|
|
|
id: exampleModel
|
|
|
|
|
|
|
|
ListElement {
|
|
|
|
name: "Kitty cat"
|
|
|
|
image: "../../img/token-icons/eth.svg"
|
2020-06-18 15:24:44 +00:00
|
|
|
collectibleId: "1337"
|
2020-06-18 15:31:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ListView {
|
|
|
|
id: assetListView
|
2020-07-02 15:14:31 +00:00
|
|
|
spacing: Style.current.smallPadding
|
|
|
|
anchors.topMargin: Style.current.bigPadding
|
2020-06-18 15:31:52 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
// model: exampleModel
|
|
|
|
model: walletModel.collectibles
|
|
|
|
delegate: collectiblesViewDelegate
|
2020-05-28 14:54:42 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-17 19:18:31 +00:00
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
2020-06-18 15:31:52 +00:00
|
|
|
D{i:0;autoSize:true;formeditorColor:"#ffffff";height:480;width:640}
|
2020-06-17 19:18:31 +00:00
|
|
|
}
|
|
|
|
##^##*/
|