moment/harmonyqml/components/UI.qml

104 lines
3.0 KiB
QML
Raw Normal View History

import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.3
import QtQuick.Window 2.7
import "Base"
import "SidePane"
2019-04-28 14:44:55 +10:00
Item {
2019-04-28 11:07:20 +10:00
id: mainUI
2019-04-28 14:44:55 +10:00
HImage {
2019-04-28 14:44:55 +10:00
id: mainUIBackground
fillMode: Image.PreserveAspectCrop
source: "../images/login_background.jpg"
sourceSize.width: Screen.width
sourceSize.height: Screen.height
2019-04-28 14:44:55 +10:00
anchors.fill: parent
}
property bool accountsLoggedIn: Backend.clients.count > 0
HSplitView {
id: uiSplitView
anchors.fill: parent
SidePane {
id: sidePane
visible: accountsLoggedIn
collapsed: width < Layout.minimumWidth + normalSpacing
property int parentWidth: parent.width
property int collapseBelow: 120
function set_width() {
width = parent.width * 0.3 < collapseBelow ?
Layout.minimumWidth : Math.min(parent.width * 0.3, 300)
}
onParentWidthChanged: if (uiSplitView.canAutoSize) { set_width() }
width: set_width() // Initial width
Layout.minimumWidth: HStyle.avatar.size
2019-04-29 02:40:42 +10:00
Layout.maximumWidth: parent.width
Behavior on width {
NumberAnimation {
// Don't slow down the user manually resizing
duration:
(uiSplitView.canAutoSize &&
parent.width * 0.3 < sidePane.collapseBelow * 1.2) ?
2019-05-15 05:15:10 +10:00
HStyle.animationDuration : 0
}
}
}
StackView {
2019-04-28 14:44:55 +10:00
id: pageStack
property bool initialPageSet: false
2019-04-28 11:07:20 +10:00
function showPage(name, properties) {
2019-04-29 02:45:12 +10:00
pageStack.replace("Pages/" + name + ".qml", properties || {})
}
function showRoom(userId, category, roomId) {
pageStack.replace(
"Chat/Chat.qml",
{ userId: userId, category: category, roomId: roomId }
)
}
2019-04-28 14:44:55 +10:00
Component.onCompleted: {
if (pageStack.initialPageSet) { return }
pageStack.initialPageSet = true
2019-05-13 03:17:42 +10:00
showPage(accountsLoggedIn ? "Default" : "SignIn")
if (accountsLoggedIn) { initialRoomTimer.start() }
2019-05-13 03:17:42 +10:00
}
Timer {
// TODO: remove this, debug
id: initialRoomTimer
interval: appWindow.reloadedTimes > 0 ? 0 : 5000
repeat: false
onTriggered: pageStack.showRoom(
"@test_mary:matrix.org",
"Rooms",
"!TSXGsbBbdwsdylIOJZ:matrix.org"
2019-05-13 03:17:42 +10:00
)
2019-04-28 14:44:55 +10:00
}
onCurrentItemChanged: if (currentItem) {
currentItem.forceActiveFocus()
}
// Buggy
replaceExit: null
popExit: null
pushExit: null
}
Keys.onEscapePressed: Backend.pdb() // TODO: only if debug mode True
}
}