2023-11-01 16:54:22 +00:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQml 2.15
|
|
|
|
|
2021-12-29 15:09:29 +00:00
|
|
|
import utils 1.0
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
property var profileModule
|
|
|
|
|
2023-02-14 09:20:53 +00:00
|
|
|
property string pubkey: !!Global.userProfile? Global.userProfile.pubKey : ""
|
|
|
|
property string name: !!Global.userProfile? Global.userProfile.name : ""
|
|
|
|
property string username: !!Global.userProfile? Global.userProfile.username : ""
|
|
|
|
property string displayName: !!Global.userProfile? Global.userProfile.displayName : ""
|
|
|
|
property string preferredName: !!Global.userProfile? Global.userProfile.preferredName : ""
|
|
|
|
property string profileLargeImage: !!Global.userProfile? Global.userProfile.largeImage : ""
|
|
|
|
property string icon: !!Global.userProfile? Global.userProfile.icon : ""
|
|
|
|
property bool userDeclinedBackupBanner: Global.appIsReady? localAccountSensitiveSettings.userDeclinedBackupBanner : false
|
2022-07-04 10:37:06 +00:00
|
|
|
property var privacyStore: profileSectionModule.privacyModule
|
2023-05-02 13:37:31 +00:00
|
|
|
readonly property string keyUid: !!Global.userProfile ? Global.userProfile.keyUid : ""
|
|
|
|
readonly property bool isKeycardUser: !!Global.userProfile ? Global.userProfile.isKeycardUser : false
|
2022-07-04 10:37:06 +00:00
|
|
|
|
2022-08-10 08:34:56 +00:00
|
|
|
readonly property string bio: profileModule.bio
|
|
|
|
readonly property string socialLinksJson: profileModule.socialLinksJson
|
|
|
|
readonly property var socialLinksModel: profileModule.socialLinksModel
|
|
|
|
readonly property var temporarySocialLinksModel: profileModule.temporarySocialLinksModel // for editing purposes
|
2023-03-08 01:56:41 +00:00
|
|
|
readonly property var temporarySocialLinksJson: profileModule.temporarySocialLinksJson
|
2022-08-10 08:34:56 +00:00
|
|
|
readonly property bool socialLinksDirty: profileModule.socialLinksDirty
|
|
|
|
|
2023-03-17 11:39:50 +00:00
|
|
|
readonly property bool isWalletEnabled: Global.appIsReady? mainModule.sectionsModel.getItemEnabledBySectionType(Constants.appSection.wallet) : true
|
2023-03-15 13:35:03 +00:00
|
|
|
|
2024-01-25 17:43:36 +00:00
|
|
|
readonly property var collectiblesModel: profileModule.collectiblesModel
|
|
|
|
|
2023-11-01 16:54:22 +00:00
|
|
|
readonly property var profileShowcaseCommunitiesModel: profileModule.profileShowcaseCommunitiesModel
|
|
|
|
readonly property var profileShowcaseAccountsModel: profileModule.profileShowcaseAccountsModel
|
|
|
|
readonly property var profileShowcaseCollectiblesModel: profileModule.profileShowcaseCollectiblesModel
|
|
|
|
readonly property var profileShowcaseAssetsModel: profileModule.profileShowcaseAssetsModel
|
2024-02-23 09:22:50 +00:00
|
|
|
readonly property bool isFirstShowcaseInteraction: localAccountSettings.isFirstShowcaseInteraction
|
2023-11-01 16:54:22 +00:00
|
|
|
|
2022-06-03 10:48:03 +00:00
|
|
|
onUserDeclinedBackupBannerChanged: {
|
|
|
|
if (userDeclinedBackupBanner !== localAccountSensitiveSettings.userDeclinedBackupBanner) {
|
|
|
|
localAccountSensitiveSettings.userDeclinedBackupBanner = userDeclinedBackupBanner
|
|
|
|
}
|
|
|
|
}
|
2021-12-29 15:09:29 +00:00
|
|
|
|
2022-06-22 12:16:21 +00:00
|
|
|
property var details: Utils.getContactDetailsAsJson(pubkey)
|
|
|
|
|
2021-12-29 15:09:29 +00:00
|
|
|
function uploadImage(source, aX, aY, bX, bY) {
|
|
|
|
return root.profileModule.upload(source, aX, aY, bX, bY)
|
|
|
|
}
|
|
|
|
|
|
|
|
function removeImage() {
|
|
|
|
return root.profileModule.remove()
|
|
|
|
}
|
|
|
|
|
2024-02-13 14:10:07 +00:00
|
|
|
function getQrCodeSource(text) {
|
|
|
|
return globalUtils.qrCode(text)
|
2021-12-29 15:09:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function copyToClipboard(value) {
|
|
|
|
globalUtils.copyToClipboard(value)
|
|
|
|
}
|
2022-03-02 00:14:20 +00:00
|
|
|
|
|
|
|
function setDisplayName(displayName) {
|
|
|
|
root.profileModule.setDisplayName(displayName)
|
|
|
|
}
|
2022-08-10 08:34:56 +00:00
|
|
|
|
2023-06-06 11:59:50 +00:00
|
|
|
function containsSocialLink(text, url) {
|
|
|
|
return root.profileModule.containsSocialLink(text, url)
|
|
|
|
}
|
|
|
|
|
2023-03-08 01:56:41 +00:00
|
|
|
function createLink(text, url, linkType, icon) {
|
|
|
|
root.profileModule.createLink(text, url, linkType, icon)
|
2022-08-10 08:34:56 +00:00
|
|
|
}
|
|
|
|
|
2023-03-08 01:56:41 +00:00
|
|
|
function removeLink(uuid) {
|
|
|
|
root.profileModule.removeLink(uuid)
|
2022-08-10 08:34:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function updateLink(uuid, text, url) {
|
|
|
|
root.profileModule.updateLink(uuid, text, url)
|
|
|
|
}
|
|
|
|
|
2023-03-08 01:56:41 +00:00
|
|
|
function moveLink(fromRow, toRow, count) {
|
|
|
|
root.profileModule.moveLink(fromRow, toRow)
|
|
|
|
}
|
|
|
|
|
2022-08-10 08:34:56 +00:00
|
|
|
function resetSocialLinks() {
|
|
|
|
root.profileModule.resetSocialLinks()
|
|
|
|
}
|
|
|
|
|
2023-03-08 01:56:41 +00:00
|
|
|
function saveSocialLinks(silent = false) {
|
|
|
|
root.profileModule.saveSocialLinks(silent)
|
2022-08-10 08:34:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function setBio(bio) {
|
|
|
|
root.profileModule.setBio(bio)
|
|
|
|
}
|
2023-11-01 16:54:22 +00:00
|
|
|
|
|
|
|
function storeProfileShowcasePreferences() {
|
|
|
|
root.profileModule.storeProfileShowcasePreferences()
|
|
|
|
}
|
|
|
|
|
|
|
|
function requestProfileShowcasePreferences() {
|
|
|
|
root.profileModule.requestProfileShowcasePreferences()
|
|
|
|
}
|
2023-10-31 15:26:15 +00:00
|
|
|
|
|
|
|
function requestProfileShowcase(publicKey) {
|
|
|
|
root.profileModule.requestProfileShowcase(publicKey)
|
|
|
|
}
|
2024-02-23 09:22:50 +00:00
|
|
|
|
|
|
|
function setIsFirstShowcaseInteraction() {
|
|
|
|
root.profileModule.setIsFirstShowcaseInteraction()
|
|
|
|
}
|
2021-12-29 15:09:29 +00:00
|
|
|
}
|