55 lines
1.4 KiB
QML
55 lines
1.4 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Layouts 1.13
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
import StatusQ.Components 0.1
|
|
|
|
import utils 1.0
|
|
|
|
import shared.panels 1.0
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
|
|
property int errorType: Constants.NoError
|
|
property bool isLoading: false
|
|
|
|
QtObject {
|
|
id: d
|
|
readonly property bool isValid: root.errorType === Constants.NoError
|
|
}
|
|
|
|
visible: !d.isValid || isLoading
|
|
spacing: 5
|
|
|
|
StatusIcon {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.preferredHeight: 20
|
|
Layout.preferredWidth: 20
|
|
icon: "cancel"
|
|
color: Theme.palette.dangerColor1
|
|
visible: !d.isValid && !isLoading
|
|
}
|
|
StyledText {
|
|
id: txtValidationError
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.preferredHeight: 18
|
|
text: errorType === Constants.SendAmountExceedsBalance ?
|
|
qsTr("Balance exceeded") : qsTr("No route found")
|
|
verticalAlignment: Text.AlignVCenter
|
|
horizontalAlignment: Text.AlignHCenter
|
|
font.pixelSize: 13
|
|
color: Style.current.danger
|
|
visible: !isLoading
|
|
}
|
|
Loader {
|
|
id: loadingComponent
|
|
Layout.preferredHeight: 32
|
|
Layout.preferredWidth: root.width - Style.current.xlPadding
|
|
active: isLoading && d.isValid
|
|
sourceComponent: LoadingComponent { radius: 4 }
|
|
}
|
|
}
|