[ImportCommunities] Add token models needed for CommunityIntroPopup
Closes #11773
This commit is contained in:
parent
b5a81badaa
commit
eb65e8899f
|
@ -4,7 +4,6 @@ import utils 1.0
|
||||||
|
|
||||||
import SortFilterProxyModel 0.2
|
import SortFilterProxyModel 0.2
|
||||||
import AppLayouts.Wallet.stores 1.0 as WalletStore
|
import AppLayouts.Wallet.stores 1.0 as WalletStore
|
||||||
import AppLayouts.Chat.stores 1.0 as ChatStore
|
|
||||||
import "../Profile/stores"
|
import "../Profile/stores"
|
||||||
|
|
||||||
QtObject {
|
QtObject {
|
||||||
|
@ -29,8 +28,18 @@ QtObject {
|
||||||
return Constants.LoginType.Password
|
return Constants.LoginType.Password
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO see how these values can be retrieved from the community the user attempts to join
|
function prepareTokenModelForCommunity(publicKey) {
|
||||||
property var permissionsModel: ChatStore.RootStore.permissionsStore.permissionsModel
|
root.communitiesModuleInst.prepareTokenModelForCommunity(publicKey)
|
||||||
|
}
|
||||||
|
|
||||||
|
property string communityKeyToImport
|
||||||
|
onCommunityKeyToImportChanged: {
|
||||||
|
if (!!communityKeyToImport)
|
||||||
|
root.prepareTokenModelForCommunity(communityKeyToImport);
|
||||||
|
}
|
||||||
|
|
||||||
|
property var permissionsModel: !!root.communitiesModuleInst.spectatedCommunityPermissionModel ?
|
||||||
|
root.communitiesModuleInst.spectatedCommunityPermissionModel : null
|
||||||
property var walletAccountsModel: WalletStore.RootStore.receiveAccounts
|
property var walletAccountsModel: WalletStore.RootStore.receiveAccounts
|
||||||
property var assetsModel: SortFilterProxyModel {
|
property var assetsModel: SortFilterProxyModel {
|
||||||
sourceModel: communitiesModuleInst.tokenList
|
sourceModel: communitiesModuleInst.tokenList
|
||||||
|
@ -41,6 +50,20 @@ QtObject {
|
||||||
name: "iconSource"
|
name: "iconSource"
|
||||||
expression: !!model.icon ? model.icon : tokenIcon(model.symbol)
|
expression: !!model.icon ? model.icon : tokenIcon(model.symbol)
|
||||||
}
|
}
|
||||||
|
filters: [
|
||||||
|
AnyOf {
|
||||||
|
// We accept tokens from this community or general (empty community ID)
|
||||||
|
ValueFilter {
|
||||||
|
roleName: "communityId"
|
||||||
|
value: ""
|
||||||
|
}
|
||||||
|
|
||||||
|
ValueFilter {
|
||||||
|
roleName: "communityId"
|
||||||
|
value: root.communityKeyToImport
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
property var collectiblesModel: SortFilterProxyModel {
|
property var collectiblesModel: SortFilterProxyModel {
|
||||||
sourceModel: communitiesModuleInst.collectiblesModel
|
sourceModel: communitiesModuleInst.collectiblesModel
|
||||||
|
@ -51,6 +74,20 @@ QtObject {
|
||||||
name: "iconSource"
|
name: "iconSource"
|
||||||
expression: collectibleIcon(model.icon)
|
expression: collectibleIcon(model.icon)
|
||||||
}
|
}
|
||||||
|
filters: [
|
||||||
|
AnyOf {
|
||||||
|
// We accept tokens from this community or general (empty community ID)
|
||||||
|
ValueFilter {
|
||||||
|
roleName: "communityId"
|
||||||
|
value: ""
|
||||||
|
}
|
||||||
|
|
||||||
|
ValueFilter {
|
||||||
|
roleName: "communityId"
|
||||||
|
value: root.communityKeyToImport
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
function setLatestVersionInfo(newVersionAvailable, latestVersion, downloadURL) {
|
function setLatestVersionInfo(newVersionAvailable, latestVersion, downloadURL) {
|
||||||
|
|
|
@ -537,7 +537,8 @@ QtObject {
|
||||||
communityIntroDialog.close();
|
communityIntroDialog.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
onClosed: { destroy(); }
|
onAboutToShow: { root.rootStore.communityKeyToImport = communityIntroDialog.communityId; }
|
||||||
|
onClosed: { root.rootStore.communityKeyToImport = ""; destroy(); }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue