mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 22:34:56 +00:00
191 files reformatted across views, components, widgets, hybrid, contexts. New components: CCreateSchemaDialog, CAddFieldDialog, CAdminContentPanel. JS helpers: connBadgeStatus/Text, adminStats, exampleLabels, onLevelClicked. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
48 lines
1.3 KiB
QML
48 lines
1.3 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
|
|
import "MaterialPalette.qml" as MaterialPalette
|
|
|
|
Rectangle {
|
|
id: snackbar
|
|
property string message: ""
|
|
property string actionText: ""
|
|
property bool open: false
|
|
signal actionTriggered()
|
|
implicitHeight: 56
|
|
anchors.horizontalCenter: parent ? parent.horizontalCenter : undefined
|
|
width: parent ? Math.min(parent.width * 0.8, 520) : 520
|
|
radius: 12
|
|
color: MaterialPalette.surfaceVariant
|
|
border.color: MaterialPalette.outline
|
|
border.width: 1
|
|
opacity: open ? 1 : 0
|
|
y: open
|
|
? (parent ? parent.height - implicitHeight - 32
|
|
: 0) : (parent ? parent.height : implicitHeight)
|
|
Behavior on y { NumberAnimation { duration: 300
|
|
easing.type: Easing.OutQuad } }
|
|
|
|
RowLayout {
|
|
anchors.fill: parent
|
|
anchors.margins: 12
|
|
spacing: 16
|
|
|
|
Text {
|
|
text: message
|
|
color: MaterialPalette.onSurface
|
|
font.pixelSize: 15
|
|
Layout.fillWidth: true
|
|
wrapMode: Text.Wrap
|
|
}
|
|
|
|
Button {
|
|
visible: actionText.length > 0
|
|
text: actionText
|
|
font.pixelSize: 14
|
|
background: Rectangle { color: "transparent" }
|
|
onClicked: snackbar.actionTriggered()
|
|
}
|
|
}
|
|
}
|