73 lines
1.6 KiB
QML
73 lines
1.6 KiB
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtQml 2.15
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import AppLayouts.Communities.popups 1.0
|
|
|
|
import utils 1.0
|
|
|
|
import Storybook 1.0
|
|
|
|
SplitView {
|
|
id: root
|
|
orientation: Qt.Vertical
|
|
|
|
Logs { id: logs }
|
|
|
|
function openDialog() {
|
|
popupComponent.createObject(popupBg)
|
|
}
|
|
|
|
Component.onCompleted: openDialog()
|
|
|
|
Item {
|
|
SplitView.fillWidth: true
|
|
SplitView.fillHeight: true
|
|
|
|
PopupBackground {
|
|
id: popupBg
|
|
anchors.fill: parent
|
|
|
|
Button {
|
|
anchors.centerIn: parent
|
|
text: "Reopen"
|
|
|
|
onClicked: openDialog()
|
|
}
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: popupComponent
|
|
ImportControlNodePopup {
|
|
id: popup
|
|
anchors.centerIn: parent
|
|
modal: false
|
|
visible: true
|
|
community: QtObject {
|
|
property string id: "1"
|
|
property string name: "Socks"
|
|
property var members: { "count": 5 }
|
|
property string image: Theme.png("tokens/UNI")
|
|
property string color: "orchid"
|
|
}
|
|
}
|
|
}
|
|
|
|
LogsAndControlsPanel {
|
|
id: logsAndControlsPanel
|
|
|
|
SplitView.minimumHeight: 100
|
|
SplitView.preferredHeight: 160
|
|
|
|
logsView.logText: logs.logText
|
|
}
|
|
}
|
|
|
|
// category: Popups
|
|
|
|
// https://www.figma.com/file/qHfFm7C9LwtXpfdbxssCK3/Kuba%E2%8E%9CDesktop---Communities?type=design&node-id=36894-685104&mode=design&t=6k1ago8SSQ5Ip9J8-0
|