2023-11-17 14:08:43 +00:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import QtGraphicalEffects 1.15
|
2022-06-22 12:16:21 +00:00
|
|
|
|
|
|
|
import utils 1.0
|
|
|
|
|
2024-02-12 16:39:06 +00:00
|
|
|
import shared.controls 1.0
|
|
|
|
|
2022-06-22 12:16:21 +00:00
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
property bool active: false
|
2023-11-17 14:08:43 +00:00
|
|
|
property bool cancelButtonVisible: true
|
2022-06-22 12:16:21 +00:00
|
|
|
property bool saveChangesButtonEnabled: false
|
2023-11-17 14:08:43 +00:00
|
|
|
property bool saveForLaterButtonVisible
|
2023-01-11 13:57:50 +00:00
|
|
|
property alias saveChangesText: saveChangesButton.text
|
2024-02-12 16:39:06 +00:00
|
|
|
property alias saveChangesTooltipText: saveChangesButton.tooltipText
|
|
|
|
property alias saveChangesTooltipVisible: saveChangesButton.enabled
|
2023-11-17 14:08:43 +00:00
|
|
|
property alias saveForLaterText: saveForLaterButton.text
|
2023-01-11 13:57:50 +00:00
|
|
|
property alias cancelChangesText: cancelChangesButton.text
|
|
|
|
property alias changesDetectedText: changesDetectedTextItem.text
|
2022-06-22 12:16:21 +00:00
|
|
|
|
2024-02-19 12:09:07 +00:00
|
|
|
readonly property string defaultChangesDetectedText: qsTr("Changes detected")
|
|
|
|
readonly property string defaultSaveChangesText: qsTr("Save changes")
|
|
|
|
readonly property string defaultSaveForLaterText: qsTr("Save for later")
|
|
|
|
readonly property string defaultCancelChangesText: qsTr("Cancel")
|
|
|
|
|
2022-06-22 12:16:21 +00:00
|
|
|
property Flickable flickable: null
|
|
|
|
|
2023-11-17 14:08:43 +00:00
|
|
|
enum Type {
|
|
|
|
Danger,
|
|
|
|
Info
|
|
|
|
}
|
|
|
|
property int type: SettingsDirtyToastMessage.Type.Danger
|
|
|
|
|
2022-06-22 12:16:21 +00:00
|
|
|
signal saveChangesClicked
|
2023-11-17 14:08:43 +00:00
|
|
|
signal saveForLaterClicked
|
2022-06-22 12:16:21 +00:00
|
|
|
signal resetChangesClicked
|
|
|
|
|
|
|
|
function notifyDirty() {
|
|
|
|
toastAlertAnimation.running = true
|
|
|
|
saveChangesButton.forceActiveFocus()
|
|
|
|
}
|
|
|
|
|
|
|
|
implicitHeight: toastContent.implicitHeight + toastContent.anchors.topMargin + toastContent.anchors.bottomMargin
|
|
|
|
implicitWidth: toastContent.implicitWidth + toastContent.anchors.leftMargin + toastContent.anchors.rightMargin
|
|
|
|
|
|
|
|
opacity: active ? 1 : 0
|
|
|
|
color: Theme.palette.statusToastMessage.backgroundColor
|
|
|
|
radius: 8
|
2023-11-17 14:08:43 +00:00
|
|
|
border.color: type === SettingsDirtyToastMessage.Type.Danger ? Theme.palette.dangerColor2 : Theme.palette.primaryColor2
|
2022-06-22 12:16:21 +00:00
|
|
|
border.width: 2
|
2023-11-17 14:08:43 +00:00
|
|
|
|
2022-06-22 12:16:21 +00:00
|
|
|
layer.enabled: true
|
|
|
|
layer.effect: DropShadow {
|
|
|
|
verticalOffset: 3
|
|
|
|
radius: 8
|
|
|
|
samples: 15
|
|
|
|
fast: true
|
|
|
|
cached: true
|
2023-11-17 14:08:43 +00:00
|
|
|
color: root.border.color
|
2022-06-22 12:16:21 +00:00
|
|
|
spread: 0.1
|
|
|
|
}
|
|
|
|
|
|
|
|
onActiveChanged: {
|
|
|
|
if (!active || !flickable)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const item = Global.applicationWindow.activeFocusItem;
|
|
|
|
const h1 = this.height;
|
|
|
|
const y1 = this.mapToGlobal(0, 0).y;
|
|
|
|
const h2 = item.height;
|
|
|
|
const y2 = item.mapToGlobal(0, 0).y;
|
|
|
|
const margin = 20;
|
|
|
|
const offset = h2 - (y1 - y2);
|
|
|
|
|
2022-11-15 13:54:26 +00:00
|
|
|
if (offset <= 0 || flickable.contentHeight <= 0)
|
2022-06-22 12:16:21 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
toastFlickAnimation.from = flickable.contentY;
|
|
|
|
toastFlickAnimation.to = flickable.contentY + offset + margin;
|
|
|
|
toastFlickAnimation.start()
|
|
|
|
}
|
|
|
|
|
|
|
|
NumberAnimation {
|
|
|
|
id: toastFlickAnimation
|
|
|
|
target: root.flickable
|
|
|
|
property: "contentY"
|
|
|
|
duration: 150
|
|
|
|
easing.type: Easing.InOutQuad
|
|
|
|
}
|
|
|
|
|
|
|
|
NumberAnimation on border.width {
|
|
|
|
id: toastAlertAnimation
|
|
|
|
from: 0
|
|
|
|
to: 4
|
|
|
|
loops: 2
|
|
|
|
duration: 600
|
|
|
|
onFinished: root.border.width = 2
|
|
|
|
}
|
|
|
|
|
|
|
|
Behavior on opacity {
|
|
|
|
NumberAnimation {}
|
|
|
|
}
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
visible: root.active // This is required not to change cursorShape
|
|
|
|
enabled: root.active
|
|
|
|
hoverEnabled: true
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
id: toastContent
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
fill: parent
|
|
|
|
margins: 16
|
|
|
|
}
|
|
|
|
|
|
|
|
StatusBaseText {
|
2023-01-11 13:57:50 +00:00
|
|
|
id: changesDetectedTextItem
|
2022-06-22 12:16:21 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
padding: 8
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
color: Theme.palette.directColor1
|
2024-02-19 12:09:07 +00:00
|
|
|
text: root.defaultChangesDetectedText
|
2022-06-22 12:16:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
StatusButton {
|
2023-01-11 13:57:50 +00:00
|
|
|
id: cancelChangesButton
|
2024-02-19 12:09:07 +00:00
|
|
|
text: root.defaultCancelChangesText
|
2022-06-22 12:16:21 +00:00
|
|
|
enabled: root.active
|
2023-11-17 14:08:43 +00:00
|
|
|
visible: root.cancelButtonVisible
|
2022-06-22 12:16:21 +00:00
|
|
|
type: StatusBaseButton.Type.Danger
|
|
|
|
onClicked: root.resetChangesClicked()
|
|
|
|
}
|
|
|
|
|
2023-11-17 14:08:43 +00:00
|
|
|
StatusFlatButton {
|
|
|
|
id: saveForLaterButton
|
2024-02-19 12:09:07 +00:00
|
|
|
text: root.defaultSaveForLaterText
|
2023-11-17 14:08:43 +00:00
|
|
|
enabled: root.active && root.saveChangesButtonEnabled
|
|
|
|
visible: root.saveForLaterButtonVisible
|
|
|
|
onClicked: root.saveForLaterClicked()
|
|
|
|
}
|
|
|
|
|
2024-02-12 16:39:06 +00:00
|
|
|
DisabledTooltipButton {
|
2022-06-22 12:16:21 +00:00
|
|
|
id: saveChangesButton
|
2022-08-03 20:16:43 +00:00
|
|
|
objectName: "settingsDirtyToastMessageSaveButton"
|
2024-02-12 16:39:06 +00:00
|
|
|
buttonType: DisabledTooltipButton.Normal
|
2024-02-19 12:09:07 +00:00
|
|
|
text: root.defaultSaveChangesText
|
2024-02-13 14:09:24 +00:00
|
|
|
enabled: root.active && root.saveChangesButtonEnabled
|
2024-02-12 16:39:06 +00:00
|
|
|
interactive: root.active && root.saveChangesButtonEnabled
|
2022-06-22 12:16:21 +00:00
|
|
|
onClicked: root.saveChangesClicked()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|