89 lines
2.2 KiB
QML
89 lines
2.2 KiB
QML
|
import QtQuick 2.15
|
||
|
import QtQuick.Controls 2.15
|
||
|
import QtQuick.Layouts 1.15
|
||
|
|
||
|
import AppLayouts.Profile.popups 1.0
|
||
|
|
||
|
import Storybook 1.0
|
||
|
|
||
|
import utils 1.0
|
||
|
|
||
|
SplitView {
|
||
|
id: root
|
||
|
|
||
|
PopupBackground {
|
||
|
id: popupBg
|
||
|
|
||
|
property var popupIntance: null
|
||
|
|
||
|
SplitView.fillWidth: true
|
||
|
SplitView.fillHeight: true
|
||
|
|
||
|
Button {
|
||
|
id: reopenButton
|
||
|
anchors.centerIn: parent
|
||
|
text: "Reopen"
|
||
|
enabled: globalUtilsMock.ready
|
||
|
|
||
|
onClicked: modal.open()
|
||
|
}
|
||
|
|
||
|
QtObject {
|
||
|
id: globalUtilsMock
|
||
|
|
||
|
property bool ready: false
|
||
|
property var globalUtils: QtObject {
|
||
|
function restartApplication() {
|
||
|
if (popupBg.popupIntance)
|
||
|
popupBg.popupIntance.close()
|
||
|
}
|
||
|
}
|
||
|
Component.onCompleted: {
|
||
|
Utils.globalUtilsInst = globalUtilsMock.globalUtils
|
||
|
globalUtilsMock.ready = true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ConfirmChangePasswordModal {
|
||
|
id: modal
|
||
|
visible: true
|
||
|
onChangePasswordRequested: {
|
||
|
passwordChangedTimer.start()
|
||
|
}
|
||
|
Component.onCompleted: {
|
||
|
popupBg.popupIntance = modal
|
||
|
}
|
||
|
Timer {
|
||
|
id: passwordChangedTimer
|
||
|
interval: 2000
|
||
|
repeat: false
|
||
|
onTriggered: {
|
||
|
if (successFlow.checked) {
|
||
|
modal.passwordSuccessfulyChanged()
|
||
|
} else {
|
||
|
modal.close()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
LogsAndControlsPanel {
|
||
|
SplitView.minimumHeight: 100
|
||
|
SplitView.preferredHeight: 200
|
||
|
SplitView.preferredWidth: 300
|
||
|
|
||
|
ColumnLayout {
|
||
|
CheckBox {
|
||
|
id: successFlow
|
||
|
text: "%1 in 2 seconds".arg(successFlow.checked ? "Success" : "Error")
|
||
|
checked: true
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// category: Popups
|
||
|
|
||
|
// https://www.figma.com/file/d0G7m8X6ELjQlFOEKQpn1g/Profile-WIP?type=design&node-id=11-111195&mode=design&t=j3guZtz78wkceVda-0
|