95 lines
3.3 KiB
QML
95 lines
3.3 KiB
QML
import QtQuick 2.15
|
|
|
|
import SortFilterProxyModel 0.2
|
|
import StatusQ 0.1
|
|
|
|
import utils 1.0
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
/* PRIVATE: Modules used to get data from backend */
|
|
readonly property var _walletModule: walletSectionNewModule
|
|
readonly property var _networksModule: networksModule
|
|
|
|
/* This contains the different sources for the tokens list
|
|
ex. uniswap list, status tokens list */
|
|
readonly property var sourcesOfTokensModel: SortFilterProxyModel {
|
|
sourceModel: root._walletModule.sourcesOfTokensModel
|
|
proxyRoles: ExpressionRole {
|
|
function sourceImage(sourceKey) {
|
|
return Constants.getSupportedTokenSourceImage(sourceKey)
|
|
}
|
|
name: "image"
|
|
expression: sourceImage(model.key)
|
|
}
|
|
}
|
|
|
|
/* This list contains the complete list of tokens with separate
|
|
entry per token which has a unique [address + network] pair */
|
|
readonly property var flatTokensModel: root._walletModule.flatTokensModel
|
|
|
|
/* PRIVATE: This model just combines tokens and network information in one */
|
|
readonly property LeftJoinModel _joinFlatTokensModel : LeftJoinModel {
|
|
leftModel: root.flatTokensModel
|
|
rightModel: root._networksModule.all
|
|
|
|
joinRole: "chainId"
|
|
}
|
|
|
|
/* This list contains the complete list of tokens with separate
|
|
entry per token which has a unique [address + network] pair including extended information
|
|
about the specific network per entry */
|
|
readonly property var extendedFlatTokensModel: SortFilterProxyModel {
|
|
sourceModel: root._joinFlatTokensModel
|
|
|
|
proxyRoles: [
|
|
ExpressionRole {
|
|
name: "explorerUrl"
|
|
expression: { return model.blockExplorerURL + "/" + model.address } // TO REVIEW the correct composition!!
|
|
},
|
|
ExpressionRole {
|
|
function tokenIcon(symbol) {
|
|
return Constants.tokenIcon(symbol)
|
|
}
|
|
name: "image"
|
|
expression: tokenIcon(model.symbol)
|
|
},
|
|
ExpressionRole {
|
|
name: "jsArraySources"
|
|
expression: model.sources.split(";")
|
|
}
|
|
]
|
|
}
|
|
|
|
/* This list contains list of tokens grouped by symbol
|
|
EXCEPTION: We may have different entries for the same symbol in case
|
|
of symbol clash when minting community tokens, so in case of community tokens
|
|
there will be one entry per address + network pair */
|
|
// TODO in #12513
|
|
readonly property var tokensBySymbolModel: SortFilterProxyModel {
|
|
sourceModel: root._walletModule.tokensBySymbolModel
|
|
proxyRoles: [
|
|
ExpressionRole {
|
|
function tokenIcon(symbol) {
|
|
return Constants.tokenIcon(symbol)
|
|
}
|
|
name: "iconSource"
|
|
expression: tokenIcon(model.symbol)
|
|
},
|
|
// TODO: Review if it can be removed
|
|
ExpressionRole {
|
|
name: "shortName"
|
|
expression: model.symbol
|
|
},
|
|
ExpressionRole {
|
|
function getCategory(index) {
|
|
return 0
|
|
}
|
|
name: "category"
|
|
expression: getCategory(model.communityId)
|
|
}
|
|
]
|
|
}
|
|
}
|