450 lines
13 KiB
QML
450 lines
13 KiB
QML
import QtQuick 2.14
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
import StatusQ.Controls 0.1
|
|
import StatusQ.Popups 0.1
|
|
import StatusQ.Components 0.1
|
|
import StatusQ.Core.Utils 0.1
|
|
|
|
Column {
|
|
spacing: 20
|
|
|
|
StatusButton {
|
|
text: "Simple modal"
|
|
onClicked: simpleModal.open()
|
|
}
|
|
|
|
StatusButton {
|
|
text: "Simple title modal"
|
|
onClicked: simpleTitleModal.open()
|
|
}
|
|
|
|
StatusButton {
|
|
text: "Modal with header image"
|
|
onClicked: headerImageModal.open()
|
|
}
|
|
|
|
StatusButton {
|
|
text: "Modal with footer buttons"
|
|
onClicked: footerButtonsModal.open()
|
|
}
|
|
|
|
StatusButton {
|
|
text: "Modal with header action button"
|
|
onClicked: headerActionButtonModal.open()
|
|
}
|
|
|
|
StatusButton {
|
|
text: "Modal with content"
|
|
onClicked: modalExample.open()
|
|
}
|
|
|
|
StatusButton {
|
|
text: "Modal with changable content"
|
|
onClicked: modalWithContentAccess.open()
|
|
}
|
|
|
|
StatusButton {
|
|
text: "Modal with letter identicon"
|
|
onClicked: modalWithLetterIdenticon.open()
|
|
}
|
|
|
|
StatusButton {
|
|
text: "Modal with identicon"
|
|
onClicked: modalWithIdenticon.open()
|
|
}
|
|
|
|
StatusButton {
|
|
text: "Modal with editable identicon"
|
|
onClicked: modalWithEditableIdenticon.open()
|
|
}
|
|
|
|
StatusButton {
|
|
text: "Modal with long titles"
|
|
onClicked: modalWithLongTitles.open()
|
|
}
|
|
|
|
StatusButton {
|
|
text: "Modal with Header Popup Menu"
|
|
onClicked: modalWithHeaderPopupMenu.open()
|
|
}
|
|
|
|
StatusButton {
|
|
text: "Modal with Editable Title"
|
|
onClicked: editTitleModal.open()
|
|
}
|
|
|
|
StatusButton {
|
|
text: "Modal with Advanced Header/Footer"
|
|
onClicked: advancedHeaderFooterModal.open()
|
|
}
|
|
|
|
|
|
StatusButton {
|
|
text: "Modal with Floating header Buttons"
|
|
onClicked: floatingHeaderModal.open()
|
|
}
|
|
|
|
StatusModal {
|
|
id: simpleModal
|
|
anchors.centerIn: parent
|
|
header.title: "Some Title"
|
|
header.subTitle: "Subtitle"
|
|
}
|
|
|
|
StatusModal {
|
|
id: simpleTitleModal
|
|
anchors.centerIn: parent
|
|
header.title: "Some Title"
|
|
}
|
|
|
|
StatusModal {
|
|
id: headerImageModal
|
|
anchors.centerIn: parent
|
|
header.title: "Some Title"
|
|
header.subTitle: "Subtitle"
|
|
header.asset.isImage: true
|
|
header.asset.name: "qrc:/demoapp/data/profile-image-1.jpeg"
|
|
}
|
|
|
|
StatusModal {
|
|
id: footerButtonsModal
|
|
anchors.centerIn: parent
|
|
header.title: "Some Title"
|
|
header.subTitle: "Subtitle"
|
|
header.asset.isImage: true
|
|
header.asset.name: "qrc:/demoapp/data/profile-image-1.jpeg"
|
|
leftButtons: [
|
|
StatusBackButton { }
|
|
]
|
|
rightButtons: [
|
|
StatusButton {
|
|
text: "Button"
|
|
},
|
|
StatusButton {
|
|
text: "Button"
|
|
}
|
|
]
|
|
}
|
|
|
|
StatusModal {
|
|
id: headerActionButtonModal
|
|
anchors.centerIn: parent
|
|
header.title: "Some Title"
|
|
header.subTitle: "Subtitle"
|
|
header.asset.isImage: true
|
|
header.asset.name: "qrc:/demoapp/data/profile-image-1.jpeg"
|
|
|
|
headerActionButton: StatusFlatRoundButton {
|
|
type: StatusFlatRoundButton.Type.Secondary
|
|
width: 32
|
|
height: 32
|
|
|
|
icon.width: 20
|
|
icon.height: 20
|
|
icon.name: "info"
|
|
}
|
|
|
|
leftButtons: [
|
|
StatusBackButton { }
|
|
]
|
|
rightButtons: [
|
|
StatusButton {
|
|
text: "Button"
|
|
},
|
|
StatusButton {
|
|
text: "Button"
|
|
}
|
|
]
|
|
}
|
|
|
|
StatusModal {
|
|
id: modalExample
|
|
anchors.centerIn: parent
|
|
header.asset.isImage: true
|
|
header.asset.name: "qrc:/demoapp/data/profile-image-1.jpeg"
|
|
header.title: "Header"
|
|
header.subTitle: "SubTitle"
|
|
rightButtons: [
|
|
StatusButton {
|
|
text: "Button"
|
|
},
|
|
StatusButton {
|
|
text: "Button"
|
|
}
|
|
]
|
|
|
|
leftButtons: [
|
|
StatusBackButton { }
|
|
]
|
|
|
|
contentItem: StatusBaseText {
|
|
anchors.centerIn: parent
|
|
text: "Some text content"
|
|
font.pixelSize: 15
|
|
color: Theme.palette.directColor1
|
|
}
|
|
|
|
headerActionButton: StatusFlatRoundButton {
|
|
type: StatusFlatRoundButton.Type.Secondary
|
|
width: 32
|
|
height: 32
|
|
|
|
icon.width: 20
|
|
icon.height: 20
|
|
icon.name: "info"
|
|
}
|
|
}
|
|
|
|
StatusModal {
|
|
id: modalWithContentAccess
|
|
anchors.centerIn: parent
|
|
header.title: "Header"
|
|
header.subTitle: "SubTitle"
|
|
|
|
contentItem: StatusBaseText {
|
|
id: text
|
|
anchors.centerIn: parent
|
|
text: "Some text content"
|
|
font.pixelSize: 15
|
|
color: Theme.palette.directColor1
|
|
}
|
|
|
|
rightButtons: [
|
|
StatusButton {
|
|
text: "Change text"
|
|
onClicked: {
|
|
modalWithContentAccess.contentItem.text = "Changed!"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|
|
StatusModal {
|
|
id: modalWithLetterIdenticon
|
|
anchors.centerIn: parent
|
|
header.title: "Header"
|
|
header.subTitle: "SubTitle"
|
|
header.asset.isLetterIdenticon: true
|
|
header.asset.bgColor: "red"
|
|
|
|
contentItem: StatusBaseText {
|
|
anchors.centerIn: parent
|
|
text: "Some text content"
|
|
font.pixelSize: 15
|
|
color: Theme.palette.directColor1
|
|
}
|
|
|
|
rightButtons: [
|
|
StatusButton {
|
|
text: "Change text"
|
|
onClicked: {
|
|
modalWithLetterIdenticon.contentItem.text = "Changed!"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|
|
StatusModal {
|
|
id: modalWithIdenticon
|
|
anchors.centerIn: parent
|
|
header.title: "Header"
|
|
header.subTitle: "SubTitle"
|
|
header.asset.name: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAlklEQVR4nOzW0QmDQBAG4SSkl7SUQlJGCrElq9F3QdjjVhh/5nv3cFhY9vUIYQiNITSG0BhCExPynn1gWf9bx498P7/
|
|
nzPcxEzGExhBdJGYihtAYQlO+tUZvqrPbqeudo5iJGEJjCE15a3VtodH3q2ImYgiNITTlTdG1nUZ5a92VITQxITFiJmIIjSE0htAYQrMHAAD//+wwFVpz+yqXAAAAAElFTkSuQmCC"
|
|
header.asset.imgIsIdenticon: true
|
|
|
|
contentItem: StatusBaseText {
|
|
anchors.centerIn: parent
|
|
text: "Some text content"
|
|
font.pixelSize: 15
|
|
color: Theme.palette.directColor1
|
|
}
|
|
|
|
rightButtons: [
|
|
StatusButton {
|
|
text: "Change text"
|
|
onClicked: {
|
|
modalWithIdenticon.contentItem.text = "Changed!"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|
|
StatusModal {
|
|
id: modalWithEditableIdenticon
|
|
anchors.centerIn: parent
|
|
header.title: "Header"
|
|
header.subTitle: "SubTitle"
|
|
header.headerImageEditable: true
|
|
header.asset.name: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAlklEQVR4nOzW0QmDQBAG4SSkl7SUQlJGCrElq9F3QdjjVhh/5nv3cFhY9vUIYQiNITSG0BhCExPynn1gWf9bx498P7/
|
|
nzPcxEzGExhBdJGYihtAYQlO+tUZvqrPbqeudo5iJGEJjCE15a3VtodH3q2ImYgiNITTlTdG1nUZ5a92VITQxITFiJmIIjSE0htAYQrMHAAD//+wwFVpz+yqXAAAAAElFTkSuQmCC"
|
|
header.asset.imgIsIdenticon: true
|
|
|
|
contentItem: StatusBaseText {
|
|
anchors.centerIn: parent
|
|
text: "Some text content"
|
|
font.pixelSize: 15
|
|
color: Theme.palette.directColor1
|
|
}
|
|
|
|
rightButtons: [
|
|
StatusButton {
|
|
text: "Change text"
|
|
onClicked: {
|
|
modalWithIdenticon.contentItem.text = "Changed!"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|
|
StatusModal {
|
|
id: modalWithLongTitles
|
|
anchors.centerIn: parent
|
|
header.title: "Some super long text here that exceeds the available space"
|
|
header.subTitle: "Some super long text here that exceeds the available space"
|
|
header.subTitleElide: Text.ElideMiddle
|
|
header.asset.name: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAlklEQVR4nOzW0QmDQBAG4SSkl7SUQlJGCrElq9F3QdjjVhh/5nv3cFhY9vUIYQiNITSG0BhCExPynn1gWf9bx498P7/
|
|
nzPcxEzGExhBdJGYihtAYQlO+tUZvqrPbqeudo5iJGEJjCE15a3VtodH3q2ImYgiNITTlTdG1nUZ5a92VITQxITFiJmIIjSE0htAYQrMHAAD//+wwFVpz+yqXAAAAAElFTkSuQmCC"
|
|
header.asset.imgIsIdenticon: true
|
|
|
|
contentItem: StatusBaseText {
|
|
anchors.centerIn: parent
|
|
text: "Some text content"
|
|
font.pixelSize: 15
|
|
color: Theme.palette.directColor1
|
|
}
|
|
|
|
rightButtons: [
|
|
StatusButton {
|
|
text: "Change text"
|
|
onClicked: {
|
|
modalWithLongTitles.contentItem.text = "Changed!"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|
|
StatusModal {
|
|
id: modalWithHeaderPopupMenu
|
|
anchors.centerIn: parent
|
|
header.title: "helloworld.eth"
|
|
header.subTitle: "Basic address"
|
|
header.popupMenu: StatusMenu {
|
|
id: popupMenu
|
|
|
|
StatusMenuInstantiator {
|
|
model: dummyAccountsModel
|
|
menu: popupMenu
|
|
delegate: StatusAction {
|
|
text: model.name
|
|
assetSettings.name: model.iconName
|
|
onTriggered: {
|
|
popupMenu.dismiss()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
StatusModal {
|
|
id: editTitleModal
|
|
anchors.centerIn: parent
|
|
header.title: "This title can be edited"
|
|
header.editable: true
|
|
}
|
|
|
|
StatusModal {
|
|
id: advancedHeaderFooterModal
|
|
anchors.centerIn: parent
|
|
showHeader: false
|
|
showFooter: false
|
|
showAdvancedHeader: true
|
|
showAdvancedFooter: true
|
|
height: 200
|
|
advancedHeaderComponent: Rectangle {
|
|
width: parent.width
|
|
height: 50
|
|
color: Theme.palette.baseColor1
|
|
border.width: 1
|
|
StatusBaseText {
|
|
anchors.centerIn: parent
|
|
text: "Add any header here"
|
|
font.pixelSize: 15
|
|
color: Theme.palette.directColor1
|
|
}
|
|
|
|
}
|
|
advancedFooterComponent: Rectangle {
|
|
width: parent.width
|
|
height: 50
|
|
color: Theme.palette.baseColor1
|
|
border.width: 1
|
|
StatusBaseText {
|
|
anchors.centerIn: parent
|
|
text: "Add any footer here"
|
|
font.pixelSize: 15
|
|
color: Theme.palette.directColor1
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
StatusModal {
|
|
id: floatingHeaderModal
|
|
anchors.centerIn: parent
|
|
height: 200
|
|
showHeader: false
|
|
showFooter: false
|
|
showAdvancedHeader: true
|
|
hasFloatingButtons: true
|
|
advancedHeaderComponent: StatusFloatingButtonsSelector {
|
|
id: floatingHeader
|
|
|
|
model: dummyAccountsModel
|
|
|
|
delegate: Rectangle {
|
|
width: button.width
|
|
height: button.height
|
|
radius: 8
|
|
visible: floatingHeader.visibleIndices.includes(index)
|
|
color: Theme.palette.statusAppLayout.backgroundColor
|
|
StatusButton {
|
|
id: button
|
|
topPadding: 8
|
|
bottomPadding: 0
|
|
implicitHeight: 32
|
|
leftPadding: 4
|
|
text: name
|
|
asset.emoji: !!emoji ? emoji: ""
|
|
asset.emojiSize: Emoji.size.middle
|
|
asset.name: !emoji ? "filled-account": ""
|
|
normalColor: "transparent"
|
|
highlighted: index === floatingHeader.currentIndex
|
|
onClicked: {
|
|
floatingHeader.currentIndex = index
|
|
}
|
|
}
|
|
}
|
|
|
|
popupMenuDelegate: StatusListItem {
|
|
implicitWidth: 272
|
|
title: name
|
|
onClicked: floatingHeader.selectItem(index)
|
|
}
|
|
}
|
|
}
|
|
|
|
ListModel {
|
|
id: dummyAccountsModel
|
|
ListElement{name: "Account 1"; iconName: "filled-account"; emoji: "🥑" }
|
|
ListElement{name: "Account 2"; iconName: "filled-account"; emoji: "🚀" }
|
|
ListElement{name: "Account 3"; iconName: "filled-account"}
|
|
ListElement{name: "Account 4"; iconName: "filled-account"}
|
|
ListElement{name: "Account 5"; iconName: "filled-account"}
|
|
ListElement{name: "Account 6"; iconName: "filled-account"}
|
|
ListElement{name: "Account 7"; iconName: "filled-account"}
|
|
}
|
|
}
|