2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2021-02-18 19:14:31 +00:00
|
|
|
import QtMultimedia 5.13
|
2020-05-11 21:24:08 +00:00
|
|
|
import "../imports"
|
2021-02-18 19:14:31 +00:00
|
|
|
import "../sounds"
|
2020-06-23 18:59:16 +00:00
|
|
|
import "../shared"
|
2020-10-27 12:46:19 +00:00
|
|
|
import "../shared/status"
|
2020-05-13 17:27:06 +00:00
|
|
|
import "./AppLayouts"
|
2020-12-17 10:40:37 +00:00
|
|
|
import "./AppLayouts/Timeline"
|
2020-10-15 18:57:43 +00:00
|
|
|
import "./AppLayouts/Wallet"
|
2020-12-29 20:33:54 +00:00
|
|
|
import "./AppLayouts/Chat/components"
|
2021-02-17 16:31:59 +00:00
|
|
|
import "./AppLayouts/Chat/CommunityComponents"
|
2021-02-18 19:14:31 +00:00
|
|
|
import Qt.labs.settings 1.0
|
2020-05-11 21:24:08 +00:00
|
|
|
|
|
|
|
RowLayout {
|
2020-09-15 19:47:13 +00:00
|
|
|
id: appMain
|
2021-03-10 04:59:01 +00:00
|
|
|
property int currentView: sLayout.currentIndex
|
2020-10-08 18:08:50 +00:00
|
|
|
spacing: 0
|
2020-05-13 14:40:51 +00:00
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
2020-05-11 21:24:08 +00:00
|
|
|
|
2021-02-18 19:14:31 +00:00
|
|
|
property alias appSettings: appSettings
|
|
|
|
|
|
|
|
|
2020-12-21 12:08:44 +00:00
|
|
|
function getProfileImage(pubkey, isCurrentUser, useLargeImage) {
|
|
|
|
if (isCurrentUser || (isCurrentUser === undefined && pubkey === profileModel.profile.pubKey)) {
|
|
|
|
return profileModel.profile.thumbnailImage
|
|
|
|
}
|
|
|
|
|
|
|
|
const index = profileModel.contacts.list.getContactIndexByPubkey(pubkey)
|
|
|
|
if (index === -1) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-15 15:37:23 +00:00
|
|
|
if (appSettings.onlyShowContactsProfilePics) {
|
|
|
|
const isContact = profileModel.contacts.list.rowData(index, "isContact")
|
|
|
|
if (isContact === "false") {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-21 12:08:44 +00:00
|
|
|
return profileModel.contacts.list.rowData(index, useLargeImage ? "largeImage" : "thumbnailImage")
|
|
|
|
}
|
|
|
|
|
2020-12-29 20:33:54 +00:00
|
|
|
function openPopup(popupComponent, params = {}) {
|
|
|
|
const popup = popupComponent.createObject(appMain, params);
|
|
|
|
popup.open()
|
|
|
|
return popup
|
|
|
|
}
|
|
|
|
|
2021-01-14 16:03:00 +00:00
|
|
|
function getUserNickname(pubKey) {
|
|
|
|
// Get contact nickname
|
|
|
|
const contactList = profileModel.contacts.list
|
|
|
|
const contactCount = contactList.rowCount()
|
|
|
|
for (let i = 0; i < contactCount; i++) {
|
|
|
|
if (contactList.rowData(i, 'pubKey') === pubKey) {
|
|
|
|
return contactList.rowData(i, 'localNickname')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-29 20:33:54 +00:00
|
|
|
function openLink(link) {
|
|
|
|
if (appSettings.showBrowserSelector) {
|
|
|
|
appMain.openPopup(chooseBrowserPopupComponent, {link: link})
|
|
|
|
} else {
|
|
|
|
if (appSettings.openLinksInStatus) {
|
|
|
|
appMain.changeAppSection(Constants.browser)
|
|
|
|
browserLayoutContainer.item.openUrlInNewTab(link)
|
|
|
|
} else {
|
|
|
|
Qt.openUrlExternally(link)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-18 19:14:31 +00:00
|
|
|
signal settingsLoaded()
|
|
|
|
|
|
|
|
Settings {
|
|
|
|
id: appSettings
|
|
|
|
fileName: profileModel.profileSettingsFile
|
|
|
|
property var chatSplitView
|
|
|
|
property var walletSplitView
|
|
|
|
property var profileSplitView
|
|
|
|
property bool communitiesEnabled: false
|
|
|
|
property bool walletEnabled: false
|
|
|
|
property bool nodeManagementEnabled: false
|
|
|
|
property bool browserEnabled: false
|
|
|
|
property bool displayChatImages: false
|
2021-03-17 12:20:25 +00:00
|
|
|
property bool useCompactMode: true
|
2021-02-18 19:14:31 +00:00
|
|
|
property bool timelineEnabled: true
|
|
|
|
property string locale: "en"
|
|
|
|
property var recentEmojis: []
|
2021-03-11 12:49:29 +00:00
|
|
|
property var hiddenCommunityWelcomeBanners: []
|
2021-02-18 19:14:31 +00:00
|
|
|
property real volume: 0.2
|
|
|
|
property int notificationSetting: Constants.notifyAllMessages
|
|
|
|
property bool notificationSoundsEnabled: true
|
|
|
|
property bool useOSNotifications: true
|
|
|
|
property int notificationMessagePreviewSetting: Constants.notificationPreviewNameAndMessage
|
|
|
|
property bool allowNotificationsFromNonContacts: false
|
|
|
|
property var whitelistedUnfurlingSites: ({})
|
|
|
|
property bool neverAskAboutUnfurlingAgain: false
|
|
|
|
property bool hideChannelSuggestions: false
|
|
|
|
property int fontSize: Constants.fontSizeM
|
|
|
|
property bool hideSignPhraseModal: false
|
|
|
|
property bool onlyShowContactsProfilePics: true
|
2021-02-23 20:14:29 +00:00
|
|
|
property bool quitOnClose: false
|
2021-02-18 19:14:31 +00:00
|
|
|
|
|
|
|
// Browser settings
|
|
|
|
property bool showBrowserSelector: true
|
|
|
|
property bool openLinksInStatus: true
|
2021-03-16 16:13:25 +00:00
|
|
|
property bool shouldShowFavoritesBar: true
|
2021-02-18 19:14:31 +00:00
|
|
|
property string browserHomepage: ""
|
2021-03-16 16:24:35 +00:00
|
|
|
property int shouldShowBrowserSearchEngine: Constants.browserSearchEngineDuckDuckGo
|
|
|
|
property int useBrowserEthereumExplorer: Constants.browserEthereumExplorerEtherscan
|
2021-02-18 19:14:31 +00:00
|
|
|
property bool autoLoadImages: true
|
|
|
|
property bool javaScriptEnabled: true
|
|
|
|
property bool errorPageEnabled: true
|
|
|
|
property bool pluginsEnabled: true
|
|
|
|
property bool autoLoadIconsForPage: true
|
|
|
|
property bool touchIconsEnabled: true
|
|
|
|
property bool webRTCPublicInterfacesOnly: false
|
|
|
|
property bool devToolsEnabled: false
|
|
|
|
property bool pdfViewerEnabled: true
|
|
|
|
property bool compatibilityMode: true
|
|
|
|
}
|
|
|
|
|
2021-03-17 17:00:11 +00:00
|
|
|
ErrorSound {
|
|
|
|
id: errorSound
|
|
|
|
}
|
|
|
|
|
2021-02-18 19:14:31 +00:00
|
|
|
Audio {
|
|
|
|
id: sendMessageSound
|
|
|
|
audioRole: Audio.NotificationRole
|
|
|
|
source: "../../../../sounds/send_message.wav"
|
|
|
|
volume: appSettings.volume
|
|
|
|
muted: !appSettings.notificationSoundsEnabled
|
|
|
|
}
|
|
|
|
|
|
|
|
Audio {
|
|
|
|
id: notificationSound
|
|
|
|
audioRole: Audio.NotificationRole
|
|
|
|
source: "../../../../sounds/notification.wav"
|
|
|
|
volume: appSettings.volume
|
|
|
|
muted: !appSettings.notificationSoundsEnabled
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Connections {
|
|
|
|
target: profileModel
|
|
|
|
onProfileSettingsFileChanged: {
|
|
|
|
if (appSettings.locale !== "en") {
|
|
|
|
profileModel.changeLocale(appSettings.locale)
|
|
|
|
}
|
2021-03-17 12:20:25 +00:00
|
|
|
|
|
|
|
// Since https://github.com/status-im/status-desktop/commit/93668ff75
|
|
|
|
// we're hiding the setting to change appearance for compact normal mode
|
|
|
|
// of the UI. For now, compact mode is the new default.
|
|
|
|
//
|
|
|
|
// Prior to this change, most likely many users are still using the
|
|
|
|
// normal mode configuration, so we have to enforce compact mode for
|
|
|
|
// those.
|
2021-03-17 19:11:42 +00:00
|
|
|
if (!appSettings.useCompactMode) {
|
|
|
|
appSettings.useCompactMode = true
|
2021-03-17 12:20:25 +00:00
|
|
|
}
|
|
|
|
|
2021-02-18 19:14:31 +00:00
|
|
|
const whitelist = profileModel.getLinkPreviewWhitelist()
|
|
|
|
try {
|
|
|
|
const whiteListedSites = JSON.parse(whitelist)
|
|
|
|
let settingsUpdated = false
|
2021-03-05 18:45:39 +00:00
|
|
|
|
|
|
|
// Add Status links to whitelist
|
|
|
|
whiteListedSites.push({title: "Status", address: Constants.deepLinkPrefix, imageSite: false})
|
|
|
|
whiteListedSites.push({title: "Status", address: Constants.joinStatusLink, imageSite: false})
|
|
|
|
|
2021-02-18 19:14:31 +00:00
|
|
|
const settings = appSettings.whitelistedUnfurlingSites
|
2021-03-05 18:45:39 +00:00
|
|
|
|
|
|
|
// Set Status links as true. We intercept thoseURLs so it is privacy-safe
|
|
|
|
if (!settings[Constants.deepLinkPrefix] || !settings[Constants.joinStatusLink]) {
|
|
|
|
settings[Constants.deepLinkPrefix] = true
|
|
|
|
settings[Constants.joinStatusLink] = true
|
|
|
|
settingsUpdated = true
|
|
|
|
}
|
|
|
|
|
2021-02-18 19:14:31 +00:00
|
|
|
const whitelistedHostnames = []
|
|
|
|
|
|
|
|
// Add whitelisted sites in to app settings that are not already there
|
|
|
|
whiteListedSites.forEach(site => {
|
2021-03-05 18:45:39 +00:00
|
|
|
if (!settings.hasOwnProperty(site.address)) {
|
|
|
|
settings[site.address] = false
|
|
|
|
settingsUpdated = true
|
|
|
|
}
|
|
|
|
whitelistedHostnames.push(site.address)
|
|
|
|
})
|
2021-02-18 19:14:31 +00:00
|
|
|
// Remove any whitelisted sites from app settings that don't exist in the
|
|
|
|
// whitelist from status-go
|
|
|
|
Object.keys(settings).forEach(settingsHostname => {
|
|
|
|
if (!whitelistedHostnames.includes(settingsHostname)) {
|
|
|
|
delete settings[settingsHostname]
|
|
|
|
settingsUpdated = true
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if (settingsUpdated) {
|
|
|
|
appSettings.whitelistedUnfurlingSites = settings
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.error('Could not parse the whitelist for sites', e)
|
|
|
|
}
|
|
|
|
appMain.settingsLoaded()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Connections {
|
|
|
|
target: profileModel
|
|
|
|
ignoreUnknownSignals: true
|
|
|
|
enabled: removeMnemonicAfterLogin
|
|
|
|
onInitialized: {
|
|
|
|
profileModel.mnemonic.remove()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-29 20:33:54 +00:00
|
|
|
Component {
|
|
|
|
id: chooseBrowserPopupComponent
|
|
|
|
ChooseBrowserPopup {
|
|
|
|
onClosed: {
|
|
|
|
destroy()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-21 12:08:44 +00:00
|
|
|
|
2020-09-11 17:31:13 +00:00
|
|
|
ToastMessage {
|
|
|
|
id: toastMessage
|
|
|
|
}
|
|
|
|
|
2020-10-15 18:57:43 +00:00
|
|
|
// Add SenmdModal here as it is used by the Wallet as well as the Browser
|
2020-11-03 10:29:56 +00:00
|
|
|
Loader {
|
2020-10-15 18:57:43 +00:00
|
|
|
id: sendModal
|
2020-11-03 10:29:56 +00:00
|
|
|
|
|
|
|
function open() {
|
|
|
|
this.active = true
|
|
|
|
this.item.open()
|
|
|
|
}
|
|
|
|
function closed() {
|
|
|
|
// this.sourceComponent = undefined // kill an opened instance
|
|
|
|
this.active = false
|
|
|
|
}
|
|
|
|
sourceComponent: SendModal {
|
|
|
|
onOpened: {
|
|
|
|
walletModel.getGasPricePredictions()
|
|
|
|
}
|
|
|
|
onClosed: {
|
|
|
|
sendModal.closed()
|
|
|
|
}
|
2020-10-15 18:57:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-17 03:07:01 +00:00
|
|
|
Action {
|
|
|
|
shortcut: "Ctrl+1"
|
|
|
|
onTriggered: changeAppSection(Constants.chat)
|
|
|
|
}
|
|
|
|
Action {
|
|
|
|
shortcut: "Ctrl+2"
|
|
|
|
onTriggered: changeAppSection(Constants.browser)
|
|
|
|
}
|
|
|
|
Action {
|
|
|
|
shortcut: "Ctrl+3"
|
|
|
|
onTriggered: changeAppSection(Constants.wallet)
|
|
|
|
}
|
|
|
|
Action {
|
|
|
|
shortcut: "Ctrl+4, Ctrl+,"
|
|
|
|
onTriggered: changeAppSection(Constants.profile)
|
|
|
|
}
|
2020-12-28 20:03:57 +00:00
|
|
|
Action {
|
|
|
|
shortcut: "Ctrl+K"
|
|
|
|
onTriggered: {
|
|
|
|
if (channelPicker.opened) {
|
|
|
|
channelPicker.close()
|
|
|
|
} else {
|
|
|
|
channelPicker.open()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Component {
|
|
|
|
id: statusIdenticonComponent
|
|
|
|
StatusIdenticon {}
|
|
|
|
}
|
|
|
|
|
|
|
|
StatusInputListPopup {
|
|
|
|
id: channelPicker
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Where do you want to go?"
|
|
|
|
title: qsTrId("where-do-you-want-to-go-")
|
2020-12-28 20:03:57 +00:00
|
|
|
showSearchBox: true
|
|
|
|
width: 350
|
|
|
|
x: parent.width / 2 - width / 2
|
|
|
|
y: parent.height / 2 - height / 2
|
|
|
|
modelList: chatsModel.chats
|
|
|
|
getText: function (modelData) {
|
|
|
|
return modelData.name
|
|
|
|
}
|
|
|
|
getImageComponent: function (parent, modelData) {
|
|
|
|
return statusIdenticonComponent.createObject(parent, {
|
|
|
|
width: channelPicker.imageWidth,
|
|
|
|
height: channelPicker.imageHeight,
|
|
|
|
chatName: modelData.name,
|
|
|
|
chatType: modelData.chatType,
|
|
|
|
identicon: modelData.identicon
|
|
|
|
});
|
|
|
|
}
|
|
|
|
onClicked: function (index) {
|
|
|
|
chatsModel.setActiveChannelByIndex(index)
|
|
|
|
appMain.changeAppSection(Constants.chat)
|
|
|
|
channelPicker.close()
|
|
|
|
}
|
|
|
|
}
|
2020-11-17 03:07:01 +00:00
|
|
|
|
2020-10-21 14:45:28 +00:00
|
|
|
function changeAppSection(section) {
|
2021-02-17 16:31:59 +00:00
|
|
|
sLayout.currentIndex = Utils.getAppSectionIndex(section)
|
2020-10-21 14:45:28 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 21:24:08 +00:00
|
|
|
|
2021-02-17 16:31:59 +00:00
|
|
|
Item {
|
|
|
|
id: leftTab
|
|
|
|
Layout.topMargin: 50
|
|
|
|
Layout.maximumWidth: 78
|
|
|
|
Layout.minimumWidth: 78
|
|
|
|
Layout.preferredWidth: 78
|
|
|
|
Layout.fillHeight: true
|
|
|
|
height: parent.height
|
|
|
|
|
|
|
|
ScrollView {
|
|
|
|
id: scrollView
|
|
|
|
width: leftTab.width
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: leftTabButtons.visible ? leftTabButtons.top : parent.bottom
|
|
|
|
anchors.bottomMargin: tabBar.spacing
|
|
|
|
clip: true
|
|
|
|
|
|
|
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: tabBar
|
|
|
|
spacing: 12
|
|
|
|
width: scrollView.width
|
|
|
|
|
|
|
|
StatusIconTabButton {
|
|
|
|
id: chatBtn
|
|
|
|
icon.name: "message"
|
|
|
|
section: Constants.chat
|
|
|
|
doNotHandleClick: true
|
|
|
|
onClicked: {
|
|
|
|
chatsModel.communities.activeCommunity.active = false
|
|
|
|
appMain.changeAppSection(Constants.chat)
|
|
|
|
}
|
2020-05-11 21:24:08 +00:00
|
|
|
|
2021-02-17 16:31:59 +00:00
|
|
|
checked: !chatsModel.communities.activeCommunity.active && sLayout.currentIndex === Utils.getAppSectionIndex(Constants.chat)
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: chatBadge
|
|
|
|
visible: chatsModel.unreadMessagesCount > 0
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.left: parent.right
|
|
|
|
anchors.leftMargin: -17
|
|
|
|
anchors.topMargin: 1
|
|
|
|
radius: height / 2
|
|
|
|
color: Style.current.blue
|
|
|
|
border.color: chatBtn.hovered ? Style.current.secondaryBackground : Style.current.background
|
|
|
|
border.width: 2
|
|
|
|
width: chatsModel.unreadMessagesCount < 10 ? 22 : messageCount.width + 14
|
|
|
|
height: 22
|
|
|
|
Text {
|
|
|
|
id: messageCount
|
|
|
|
font.pixelSize: chatsModel.unreadMessagesCount > 99 ? 10 : 12
|
|
|
|
color: Style.current.white
|
|
|
|
anchors.centerIn: parent
|
|
|
|
text: chatsModel.unreadMessagesCount > 99 ? "99+" : chatsModel.unreadMessagesCount
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-22 15:12:48 +00:00
|
|
|
|
2021-02-17 16:31:59 +00:00
|
|
|
Loader {
|
|
|
|
id: communitiesListLoader
|
|
|
|
active: appSettings.communitiesEnabled
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
width: parent.width
|
|
|
|
height: {
|
|
|
|
if (item && active) {
|
|
|
|
return item.height
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
sourceComponent: Component {
|
|
|
|
CommunityList {}
|
|
|
|
}
|
|
|
|
}
|
2020-12-17 10:40:37 +00:00
|
|
|
|
2021-02-17 16:31:59 +00:00
|
|
|
Loader {
|
|
|
|
active: !leftTabButtons.visible
|
|
|
|
width: parent.width
|
|
|
|
height: {
|
|
|
|
if (item && active) {
|
|
|
|
return item.height
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
sourceComponent: LeftTabBottomButtons {}
|
|
|
|
}
|
2020-10-26 20:20:31 +00:00
|
|
|
}
|
2020-05-11 21:24:08 +00:00
|
|
|
}
|
2020-05-15 21:10:00 +00:00
|
|
|
|
2021-02-17 16:31:59 +00:00
|
|
|
LeftTabBottomButtons {
|
|
|
|
id: leftTabButtons
|
|
|
|
visible: scrollView.contentHeight > leftTab.height
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: Style.current.padding
|
2020-05-15 21:10:00 +00:00
|
|
|
}
|
2021-02-17 16:31:59 +00:00
|
|
|
}
|
2020-08-25 09:00:03 +00:00
|
|
|
|
2021-02-17 16:31:59 +00:00
|
|
|
Rectangle {
|
|
|
|
height: parent.height
|
2021-03-04 15:07:27 +00:00
|
|
|
Layout.fillHeight: true
|
2021-02-17 16:31:59 +00:00
|
|
|
width: 1
|
|
|
|
color: Style.current.border
|
2020-05-11 21:24:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
StackLayout {
|
2020-10-26 20:20:31 +00:00
|
|
|
id: sLayout
|
2020-05-13 14:40:51 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.alignment: Qt.AlignLeft | Qt.AlignTop
|
|
|
|
Layout.fillHeight: true
|
2021-02-17 16:31:59 +00:00
|
|
|
currentIndex: 0
|
2020-09-23 07:28:20 +00:00
|
|
|
onCurrentIndexChanged: {
|
|
|
|
if (typeof this.children[currentIndex].onActivated === "function") {
|
|
|
|
this.children[currentIndex].onActivated()
|
|
|
|
}
|
2020-10-07 19:49:26 +00:00
|
|
|
|
|
|
|
if(this.children[currentIndex] === browserLayoutContainer && browserLayoutContainer.active == false){
|
|
|
|
browserLayoutContainer.active = true;
|
|
|
|
}
|
2020-11-19 18:30:09 +00:00
|
|
|
|
2021-03-05 18:45:39 +00:00
|
|
|
timelineLayoutContainer.active = this.children[currentIndex] === timelineLayoutContainer
|
2021-02-15 10:50:33 +00:00
|
|
|
|
2020-11-27 16:21:15 +00:00
|
|
|
if(this.children[currentIndex] === walletLayoutContainer){
|
|
|
|
walletLayoutContainer.showSigningPhrasePopup();
|
|
|
|
}
|
2020-09-23 07:28:20 +00:00
|
|
|
}
|
2020-05-11 21:24:08 +00:00
|
|
|
|
2020-05-13 17:27:06 +00:00
|
|
|
ChatLayout {
|
|
|
|
id: chatLayoutContainer
|
2020-05-11 21:24:08 +00:00
|
|
|
Layout.fillWidth: true
|
2020-05-13 17:27:06 +00:00
|
|
|
Layout.alignment: Qt.AlignLeft | Qt.AlignTop
|
|
|
|
Layout.fillHeight: true
|
2020-05-11 21:24:08 +00:00
|
|
|
}
|
2020-05-13 18:17:18 +00:00
|
|
|
|
|
|
|
WalletLayout {
|
|
|
|
id: walletLayoutContainer
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.alignment: Qt.AlignLeft | Qt.AlignTop
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
2020-05-15 21:10:00 +00:00
|
|
|
|
2020-10-07 19:49:26 +00:00
|
|
|
Component {
|
|
|
|
id: browserLayoutComponent
|
|
|
|
BrowserLayout { }
|
|
|
|
}
|
|
|
|
|
|
|
|
Loader {
|
2020-09-22 15:12:48 +00:00
|
|
|
id: browserLayoutContainer
|
2020-10-07 19:49:26 +00:00
|
|
|
sourceComponent: browserLayoutComponent
|
|
|
|
active: false
|
2020-09-22 15:12:48 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.alignment: Qt.AlignLeft | Qt.AlignTop
|
|
|
|
Layout.fillHeight: true
|
2020-10-07 19:49:26 +00:00
|
|
|
// Loaders do not have access to the context, so props need to be set
|
|
|
|
// Adding a "_" to avoid a binding loop
|
|
|
|
property var _chatsModel: chatsModel
|
|
|
|
property var _walletModel: walletModel
|
|
|
|
property var _utilsModel: utilsModel
|
|
|
|
property var _web3Provider: web3Provider
|
2020-09-22 15:12:48 +00:00
|
|
|
}
|
|
|
|
|
2021-02-15 10:50:33 +00:00
|
|
|
Loader {
|
2020-12-17 10:40:37 +00:00
|
|
|
id: timelineLayoutContainer
|
2021-02-17 13:43:48 +00:00
|
|
|
sourceComponent: Component {
|
|
|
|
TimelineLayout {}
|
|
|
|
}
|
2021-02-15 10:50:33 +00:00
|
|
|
onLoaded: timelineLayoutContainer.item.onActivated()
|
|
|
|
active: false
|
2020-12-17 10:40:37 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.alignment: Qt.AlignLeft | Qt.AlignTop
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
|
|
|
|
2020-05-19 19:44:45 +00:00
|
|
|
ProfileLayout {
|
|
|
|
id: profileLayoutContainer
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.alignment: Qt.AlignLeft | Qt.AlignTop
|
|
|
|
Layout.fillHeight: true
|
2020-05-15 21:10:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NodeLayout {
|
|
|
|
id: nodeLayoutContainer
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.alignment: Qt.AlignLeft | Qt.AlignTop
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
2020-08-25 09:00:03 +00:00
|
|
|
|
|
|
|
UIComponents {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.alignment: Qt.AlignLeft | Qt.AlignTop
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
2020-05-11 21:24:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
2021-02-17 16:31:59 +00:00
|
|
|
D{i:0;formeditorZoom:1.75;height:770;width:1232}
|
2020-05-11 21:24:08 +00:00
|
|
|
}
|
|
|
|
##^##*/
|