status-desktop/storybook/pages/PermissionQualificationPanelPage.qml
Noelia 0ab8a62896 feat(Communities): Communities folder reorganization
- Renamed main `CommunitiesPortal` folder to `Communities`.
- Created new `layouts` folder.
- Moved layout files from chat to communities.
- Created new `helpers` folder.
- Moved helpers files from chat to communities.
- Moved `controls/community` files from chat to communities `controls`.
- Moved `panels/communities` files from chat to communities `panels`.
- Moved `popups/community` files from chat to communities `popups`.
- Moved `views/community` files from chat to communities `views`.
- Moved `CommunityBanner` file from shared to `Communities/controls`. Only used in communities context.
- Moved `CommunitySettingsView` and `CommunityColumnView` files from chat to communities `views`.
- Moved `PermissionsStore.qml` file to `shared/stores`.
- Updated imports.
- Updated storybook.

Part of #6204
2023-06-28 14:28:47 +02:00

100 lines
2.4 KiB
QML

import QtQuick 2.14
import QtQuick.Controls 2.14
import QtQuick.Layouts 1.14
import Storybook 1.0
import AppLayouts.Communities.panels 1.0
SplitView {
orientation: Qt.Vertical
Item {
SplitView.fillWidth: true
SplitView.fillHeight: true
Item {
id: container
width: widthSlider.value
height: qualificationPanel.implicitHeight
anchors.centerIn: parent
PermissionQualificationPanel {
id: qualificationPanel
anchors.left: parent.left
anchors.right: parent.right
qualifyingAddresses: qualifyingAddressesSlider.value
knownAddresses: knownAddressesSlider.value
unknownAddresses: unknownAddressesSlider.value
}
}
}
LogsAndControlsPanel {
SplitView.minimumHeight: 100
SplitView.preferredHeight: 250
ColumnLayout {
Row {
Label {
anchors.verticalCenter: parent.verticalCenter
text: "width:"
}
Slider {
id: widthSlider
value: 400
from: 200
to: 600
}
}
Row {
Label {
anchors.verticalCenter: parent.verticalCenter
text: "number of qualifying addresses:"
}
Slider {
id: qualifyingAddressesSlider
value: 200234
from: 0
to: 500000
}
}
Row {
Label {
anchors.verticalCenter: parent.verticalCenter
text: "number of known addresses:"
}
Slider {
id: knownAddressesSlider
value: 663026
from: 1
to: 1000000
}
}
Row {
Label {
anchors.verticalCenter: parent.verticalCenter
text: "number of unknown addresses:"
}
Slider {
id: unknownAddressesSlider
value: 396720
from: 1
to: 1000000
}
}
}
}
}