Spectral/qml/form/ListForm.qml

196 lines
5.8 KiB
QML
Raw Normal View History

import QtQuick 2.11
import QtQuick.Controls 2.4
import QtQuick.Layouts 1.11
2018-02-23 14:39:14 +00:00
import QtGraphicalEffects 1.0
2018-07-09 02:45:26 +00:00
import QtQuick.Controls.Material 2.4
import QtQml.Models 2.4
import Matrique 0.1
2018-02-23 14:39:14 +00:00
import "qrc:/qml/component"
Item {
property alias listModel: delegateModel.model
2018-03-05 11:11:55 +00:00
property alias currentIndex: listView.currentIndex
readonly property bool mini: width <= 80 // Used as an indicator of whether the listform should be displayed as "Mini mode".
DelegateModel {
id: delegateModel
groups: [
DelegateModelGroup {
name: "filterGroup"; includeByDefault: true
}
]
filterOnGroup: "filterGroup"
delegate: ItemDelegate {
width: parent.width
height: 80
onClicked: listView.currentIndex = index
2018-07-09 14:50:22 +00:00
ToolTip.visible: mini && hovered
2018-07-09 02:45:26 +00:00
ToolTip.text: name
contentItem: RowLayout {
anchors.fill: parent
anchors.margins: 16
spacing: 16
ImageStatus {
Layout.preferredWidth: height
Layout.fillHeight: true
2018-07-09 02:45:26 +00:00
source: avatar ? "image://mxc/" + avatar : ""
displayText: name
opaqueBackground: true
}
ColumnLayout {
Layout.fillWidth: true
Layout.fillHeight: true
Layout.alignment: Qt.AlignHCenter
2018-07-07 11:06:13 +00:00
visible: parent.width > 80
Label {
Layout.fillWidth: true
Layout.fillHeight: true
text: {
2018-07-09 02:45:26 +00:00
if (name) {
return name;
}
2018-07-09 02:45:26 +00:00
if (alias) {
return alias;
}
return id
}
font.pointSize: 16
elide: Text.ElideRight
wrapMode: Text.NoWrap
}
Label {
Layout.fillWidth: true
Layout.fillHeight: true
2018-07-09 02:45:26 +00:00
text: topic ? topic : "No topic yet."
elide: Text.ElideRight
wrapMode: Text.NoWrap
}
}
}
}
function applyFilter(filterName){
var roomCount = listModel.rowCount();
for (var i = 0; i < roomCount; i++){
var roomName = listModel.roomAt(i).displayName;
if (roomName.toLowerCase().indexOf(filterName.toLowerCase()) !== -1) {
items.addGroups(i, 1, "filterGroup");
} else {items.removeGroups(i, 1, "filterGroup");}
}
}
}
2018-03-05 11:11:55 +00:00
2018-02-23 14:39:14 +00:00
ColumnLayout {
anchors.fill: parent
spacing: 0
Pane {
z: 10
Layout.fillWidth: true
Layout.preferredHeight: 80
background: Rectangle {
color: Qt.tint(Material.accent, "#20FFFFFF")
}
TextField {
id: searchField
2018-02-23 14:39:14 +00:00
width: parent.width
height: 36
leftPadding: mini ? 4 : 16
2018-02-23 14:39:14 +00:00
topPadding: 0
bottomPadding: 0
anchors.verticalCenter: parent.verticalCenter
background: Item {
Row {
anchors.fill: parent
MaterialIcon {
icon: "\ue8b6"
2018-02-23 14:39:14 +00:00
color: "white"
width: mini ? parent.width : parent.height
height: parent.height
2018-02-23 14:39:14 +00:00
}
Text {
height: parent.height
visible: !mini
2018-02-23 14:39:14 +00:00
text: "Search"
color: "white"
font.pointSize: 12
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
}
Rectangle {
2018-07-09 02:45:26 +00:00
width: searchField.activeFocus || searchField.text ? parent.width : 0
2018-02-23 14:39:14 +00:00
height: parent.height
color: "white"
Behavior on width {
PropertyAnimation { easing.type: Easing.InOutCubic; duration: 200 }
2018-02-23 14:39:14 +00:00
}
}
}
onTextChanged: {
delegateModel.applyFilter(text);
}
2018-02-23 14:39:14 +00:00
}
}
Pane {
Layout.fillWidth: true
Layout.fillHeight: true
padding: 0
2018-03-01 11:56:02 +00:00
background: Item {
anchors.fill: parent
Rectangle {
anchors.fill: parent
color: Material.theme == Material.Light ? "#eaeaea" : "#242424"
2018-03-01 11:56:02 +00:00
}
Label {
2018-03-01 11:56:02 +00:00
z: 10
text: mini ? "Empty" : "Here? No, not here."
2018-03-01 11:56:02 +00:00
anchors.centerIn: parent
visible: listView.count === 0
}
2018-02-23 14:39:14 +00:00
}
ListView {
id: listView
width: parent.width
height: parent.height
highlight: Rectangle {
color: Material.accent
opacity: 0.2
}
highlightMoveDuration: 250
2018-02-23 14:39:14 +00:00
2018-07-08 12:54:06 +00:00
currentIndex: -1
2018-02-23 14:39:14 +00:00
ScrollBar.vertical: ScrollBar { id: scrollBar }
model: delegateModel
2018-02-23 14:39:14 +00:00
}
}
}
}