2023-02-13 10:40:13 +00:00
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
|
2023-06-23 06:17:04 +00:00
|
|
|
import AppLayouts.Communities.helpers 1.0
|
|
|
|
import AppLayouts.Communities.panels 1.0
|
|
|
|
import AppLayouts.Communities.controls 1.0
|
2023-02-13 10:40:13 +00:00
|
|
|
|
|
|
|
import StatusQ.Core.Utils 0.1
|
|
|
|
|
|
|
|
import utils 1.0
|
|
|
|
|
|
|
|
SortFilterProxyModel {
|
|
|
|
property var assetsModel
|
|
|
|
property var collectiblesModel
|
|
|
|
|
2023-02-17 13:36:58 +00:00
|
|
|
readonly property ModelChangeTracker _assetsChanges: ModelChangeTracker {
|
|
|
|
model: assetsModel
|
|
|
|
}
|
|
|
|
|
|
|
|
readonly property ModelChangeTracker _collectiblesChanges: ModelChangeTracker {
|
|
|
|
model: collectiblesModel
|
|
|
|
}
|
|
|
|
|
2023-02-13 10:40:13 +00:00
|
|
|
proxyRoles: [
|
|
|
|
ExpressionRole {
|
|
|
|
name: "text"
|
|
|
|
|
|
|
|
function getName(type, key) {
|
2023-11-07 22:45:47 +00:00
|
|
|
if (type === Constants.TokenType.ENS)
|
2023-02-13 10:40:13 +00:00
|
|
|
return key
|
|
|
|
|
2023-11-07 22:45:47 +00:00
|
|
|
const model = type === Constants.TokenType.ERC20
|
2023-02-13 10:40:13 +00:00
|
|
|
? assetsModel
|
|
|
|
: collectiblesModel
|
2023-06-26 11:48:45 +00:00
|
|
|
const item = PermissionsHelpers.getTokenByKey(model, key)
|
2023-02-13 10:40:13 +00:00
|
|
|
|
2023-08-29 15:28:41 +00:00
|
|
|
return item ? item.symbol || item.shortName || item.name : ""
|
2023-02-13 10:40:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function getText(type, key, amount) {
|
|
|
|
const name = getName(type, key)
|
|
|
|
|
2023-06-26 11:48:45 +00:00
|
|
|
return PermissionsHelpers.setHoldingsTextFormat(
|
2023-02-13 10:40:13 +00:00
|
|
|
type, name, amount)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Direct call for singleton function is not handled properly by
|
|
|
|
// SortFilterProxyModel that's why helper function is used instead.
|
2023-02-17 13:36:58 +00:00
|
|
|
expression: {
|
|
|
|
_assetsChanges.revision
|
|
|
|
_collectiblesChanges.revision
|
2023-02-28 12:44:46 +00:00
|
|
|
return getText(model.type, model.key, model.amount)
|
2023-02-17 13:36:58 +00:00
|
|
|
}
|
2023-02-13 10:40:13 +00:00
|
|
|
},
|
|
|
|
ExpressionRole {
|
|
|
|
name: "imageSource"
|
|
|
|
|
|
|
|
function getIcon(type, key) {
|
2023-11-07 22:45:47 +00:00
|
|
|
if (type === Constants.TokenType.ENS)
|
2023-04-25 11:31:14 +00:00
|
|
|
return Style.png("tokens/ENS")
|
2023-02-13 10:40:13 +00:00
|
|
|
|
2023-11-07 22:45:47 +00:00
|
|
|
const model = type === Constants.TokenType.ERC20
|
2023-02-13 10:40:13 +00:00
|
|
|
? assetsModel : collectiblesModel
|
|
|
|
|
2023-06-26 11:48:45 +00:00
|
|
|
return PermissionsHelpers.getTokenIconByKey(model, key)
|
2023-02-13 10:40:13 +00:00
|
|
|
}
|
|
|
|
|
2023-02-17 13:36:58 +00:00
|
|
|
expression: {
|
|
|
|
_assetsChanges.revision
|
|
|
|
_collectiblesChanges.revision
|
2023-02-28 12:44:46 +00:00
|
|
|
return getIcon(model.type, model.key)
|
2023-02-17 13:36:58 +00:00
|
|
|
}
|
2023-02-13 10:40:13 +00:00
|
|
|
},
|
|
|
|
ExpressionRole {
|
|
|
|
name: "operator"
|
|
|
|
|
|
|
|
// Direct call for singleton enum is not handled properly by SortFilterProxyModel.
|
|
|
|
readonly property int none: OperatorsUtils.Operators.None
|
|
|
|
|
|
|
|
expression: none
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|