72 lines
2.0 KiB
QML
72 lines
2.0 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
import StatusQ.Components 0.1
|
|
import StatusQ.Controls 0.1
|
|
|
|
import shared.panels 1.0
|
|
import utils 1.0
|
|
|
|
import "collectibles"
|
|
|
|
Item {
|
|
id: root
|
|
property var collectiblesModel
|
|
width: parent.width
|
|
|
|
signal collectibleClicked(string address, string tokenId)
|
|
|
|
Loader {
|
|
id: contentLoader
|
|
width: parent.width
|
|
height: parent.height
|
|
|
|
sourceComponent: {
|
|
if (root.collectiblesModel.allCollectiblesLoaded && root.collectiblesModel.count === 0)
|
|
return empty;
|
|
return loaded;
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: empty
|
|
Item {
|
|
StyledText {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
color: Style.current.secondaryText
|
|
text: qsTr("Collectibles will appear here")
|
|
font.pixelSize: 15
|
|
}
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: loaded
|
|
StatusGridView {
|
|
id: gridView
|
|
anchors.fill: parent
|
|
model: root.collectiblesModel
|
|
cellHeight: 229
|
|
cellWidth: 176
|
|
delegate: CollectibleView {
|
|
height: gridView.cellHeight
|
|
width: gridView.cellWidth
|
|
title: model.name ? model.name : "..."
|
|
subTitle: model.collectionName ? model.collectionName : ""
|
|
mediaUrl: model.mediaUrl ? model.mediaUrl : ""
|
|
mediaType: model.mediaType ? model.mediaType : ""
|
|
fallbackImageUrl: model.imageUrl
|
|
backgroundColor: model.backgroundColor ? model.backgroundColor : "transparent"
|
|
isLoading: model.isLoading
|
|
|
|
onClicked: root.collectibleClicked(model.address, model.tokenId)
|
|
}
|
|
|
|
ScrollBar.vertical: StatusScrollBar {}
|
|
}
|
|
}
|
|
}
|