2019-07-17 02:37:11 +10:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.12
|
|
|
|
import QtQuick.Layouts 1.12
|
|
|
|
import "../SidePane"
|
|
|
|
|
|
|
|
SwipeView {
|
|
|
|
default property alias columnChildren: contentColumn.children
|
Big performance refactoring & various improvements
Instead of passing all sorts of events for the JS to handle and manually
add to different data models, we now handle everything we can in Python.
For any change, the python models send a sync event with their
contents (no more than 4 times per second) to JS, and the QSyncable
library's JsonListModel takes care of converting it to a QML ListModel
and sending the appropriate signals.
The SortFilterProxyModel library is not used anymore, the only case
where we need to filter/sort something now is when the user interacts
with the "Filter rooms" or "Filter members" fields. These cases are
handled by a simple JS function.
We now keep separated room and timeline models for different accounts,
the previous approach of sharing all the data we could between accounts
created a lot of complications (local echoes, decrypted messages
replacing others, etc).
The users's own account profile changes are now hidden in the timeline.
On startup, if all events for a room were only own profile changes, more
events will be loaded.
Any kind of image format supported by Qt is now handled by the
pyotherside image provider, instead of just PNG/JPG.
SVGs which previously caused errors are supported as well.
The typing members bar paddings/margins are fixed.
The behavior of the avatar/"upload a profile picture" overlay is fixed.
Config files read from disk are now cached (TODO: make them reloadable
again).
Pylint is not used anymore because of all its annoying false warnings
and lack of understanding for dataclasses, it is replaced by flake8 with
a custom config and various plugins.
Debug mode is now considered on if the program was compiled with
the right option, instead of taking an argument from CLI.
When on, C++ will set a flag in the Window QML component.
The loading screen is now unloaded after the UI is ready, where
previously it just stayed in the background invisible and wasted CPU.
The overall refactoring and improvements make us now able to handle
rooms with thousand of members and no lazy-loading, where previously
everything would freeze and simply scrolling up to load past events
in any room would block the UI for a few seconds.
2019-08-11 22:01:22 +10:00
|
|
|
|
2019-07-17 02:37:11 +10:00
|
|
|
property alias page: innerPage
|
2019-07-17 07:08:06 +10:00
|
|
|
property alias header: innerPage.header
|
|
|
|
property alias footer: innerPage.header
|
2019-07-17 02:37:11 +10:00
|
|
|
property alias flickable: innerFlickable
|
|
|
|
|
2019-07-17 02:53:52 +10:00
|
|
|
property alias headerLabel: innerHeaderLabel
|
|
|
|
property var hideHeaderUnderHeight: null
|
|
|
|
|
2019-07-17 02:37:11 +10:00
|
|
|
property int currentSpacing:
|
2019-07-25 06:41:32 +10:00
|
|
|
Math.min(theme.spacing * width / 400, theme.spacing)
|
2019-07-17 02:37:11 +10:00
|
|
|
|
|
|
|
id: swipeView
|
|
|
|
clip: true
|
|
|
|
interactive: sidePane.reduce
|
2019-08-18 03:35:43 +10:00
|
|
|
currentIndex: 1
|
2019-07-17 02:37:11 +10:00
|
|
|
|
|
|
|
SidePane {
|
2019-07-18 03:34:02 +10:00
|
|
|
implicitWidth: swipeView.width
|
2019-08-18 03:35:43 +10:00
|
|
|
animateWidth: false // Without this, the SidePane gets auto-focused
|
2019-07-17 07:08:06 +10:00
|
|
|
collapse: false
|
|
|
|
reduce: false
|
2019-07-17 02:37:11 +10:00
|
|
|
visible: swipeView.interactive
|
2019-07-17 07:08:06 +10:00
|
|
|
onVisibleChanged: if (currentIndex != 1) swipeView.setCurrentIndex(1)
|
2019-07-17 02:37:11 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
Page {
|
|
|
|
id: innerPage
|
|
|
|
background: null
|
|
|
|
|
2019-07-17 02:53:52 +10:00
|
|
|
header: HRectangle {
|
2019-07-17 07:08:06 +10:00
|
|
|
implicitWidth: parent ? parent.width : 0
|
2019-07-24 16:14:34 +10:00
|
|
|
color: theme.controls.header.background
|
2019-07-17 02:53:52 +10:00
|
|
|
|
2019-08-18 03:01:43 +10:00
|
|
|
height: innerHeaderLabel.text && (
|
|
|
|
! hideHeaderUnderHeight ||
|
|
|
|
window.height >=
|
|
|
|
hideHeaderUnderHeight +
|
|
|
|
theme.baseElementsHeight +
|
|
|
|
currentSpacing * 2
|
|
|
|
) ? theme.baseElementsHeight : 0
|
2019-07-17 02:53:52 +10:00
|
|
|
|
|
|
|
Behavior on height { HNumberAnimation {} }
|
|
|
|
visible: height > 0
|
|
|
|
|
|
|
|
HRowLayout {
|
|
|
|
width: parent.width
|
|
|
|
|
|
|
|
HLabel {
|
|
|
|
id: innerHeaderLabel
|
|
|
|
textFormat: Text.StyledText
|
|
|
|
font.pixelSize: theme.fontSize.big
|
|
|
|
elide: Text.ElideRight
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
2019-07-19 14:10:46 +10:00
|
|
|
verticalAlignment: Text.AlignVCenter
|
2019-07-17 02:53:52 +10:00
|
|
|
|
|
|
|
Layout.leftMargin: currentSpacing
|
|
|
|
Layout.rightMargin: Layout.leftMargin
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-17 02:37:11 +10:00
|
|
|
leftPadding: currentSpacing < theme.spacing ? 0 : currentSpacing
|
|
|
|
rightPadding: leftPadding
|
|
|
|
Behavior on leftPadding { HNumberAnimation {} }
|
|
|
|
|
2019-07-21 05:06:38 +10:00
|
|
|
HFlickable {
|
2019-07-17 02:37:11 +10:00
|
|
|
id: innerFlickable
|
|
|
|
anchors.fill: parent
|
|
|
|
clip: true
|
|
|
|
contentWidth: parent.width
|
|
|
|
contentHeight: contentColumn.childrenRect.height
|
|
|
|
|
|
|
|
HColumnLayout {
|
|
|
|
id: contentColumn
|
|
|
|
width: innerFlickable.width
|
|
|
|
height: innerFlickable.height
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|