feat(Community Permissions): Update ENS icon in permission pills
Closes #10341
This commit is contained in:
parent
87fa7cfe5a
commit
8ca70ea018
|
@ -108,9 +108,9 @@ QtObject {
|
|||
available: false
|
||||
},
|
||||
{
|
||||
type: HoldingTypes.Type.Collectible,
|
||||
key: "Kitty1",
|
||||
amount: 12,
|
||||
type: HoldingTypes.Type.Ens,
|
||||
key: "Ens",
|
||||
amount: 1,
|
||||
available: true
|
||||
}
|
||||
]
|
||||
|
@ -151,6 +151,35 @@ QtObject {
|
|||
}
|
||||
|
||||
function createHoldingsModel4() {
|
||||
return [
|
||||
{
|
||||
type: HoldingTypes.Type.Asset,
|
||||
key: "socks",
|
||||
amount: 15,
|
||||
available: true
|
||||
},
|
||||
{
|
||||
type: HoldingTypes.Type.Asset,
|
||||
key: "snt",
|
||||
amount: 25000,
|
||||
available: true
|
||||
},
|
||||
{
|
||||
type: HoldingTypes.Type.Ens,
|
||||
key: "ENS",
|
||||
amount: 1,
|
||||
available: false
|
||||
},
|
||||
{
|
||||
type: HoldingTypes.Type.Asset,
|
||||
key: "Amp",
|
||||
amount: 2,
|
||||
available: true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
function createHoldingsModel5() {
|
||||
return [
|
||||
{
|
||||
type: HoldingTypes.Type.Asset,
|
||||
|
|
|
@ -74,7 +74,7 @@ Control {
|
|||
leftPadding: 2
|
||||
title: model.text
|
||||
asset.name: model.imageSource
|
||||
asset.isImage: !model.isIcon
|
||||
asset.isImage: true
|
||||
asset.bgColor: "transparent"
|
||||
asset.height: 28
|
||||
asset.width: asset.height
|
||||
|
|
|
@ -56,7 +56,7 @@ SortFilterProxyModel {
|
|||
|
||||
function getIcon(type, key) {
|
||||
if (type === HoldingTypes.Type.Ens)
|
||||
return "username"
|
||||
return Style.png("tokens/ENS")
|
||||
|
||||
const model = type === HoldingTypes.Type.Asset
|
||||
? assetsModel : collectiblesModel
|
||||
|
@ -70,19 +70,6 @@ SortFilterProxyModel {
|
|||
return getIcon(model.type, model.key)
|
||||
}
|
||||
},
|
||||
ExpressionRole {
|
||||
name: "isIcon"
|
||||
|
||||
function isIconType(type) {
|
||||
return type === HoldingTypes.Type.Ens
|
||||
}
|
||||
|
||||
expression: {
|
||||
_assetsChanges.revision
|
||||
_collectiblesChanges.revision
|
||||
return isIconType(model.type)
|
||||
}
|
||||
},
|
||||
ExpressionRole {
|
||||
name: "operator"
|
||||
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 7.4 KiB |
Loading…
Reference in New Issue