4 changed files with 463 additions and 1 deletions
@ -0,0 +1,259 @@
|
||||
import QtQuick 2.6 |
||||
import QtQuick.Layouts 1.0 |
||||
import QtQuick.Controls 2.14 |
||||
import QtQuick.Controls.Material 2.0 |
||||
|
||||
import org.electrum 1.0 |
||||
|
||||
import "controls" |
||||
|
||||
//TODO: listen to tx to be bumped, mined = abort this |
||||
|
||||
ElDialog { |
||||
id: dialog |
||||
|
||||
required property string txid |
||||
required property QtObject cpfpfeebumper |
||||
|
||||
signal txaccepted |
||||
|
||||
title: qsTr('Bump Fee') |
||||
|
||||
width: parent.width |
||||
height: parent.height |
||||
padding: 0 |
||||
|
||||
standardButtons: Dialog.Cancel |
||||
|
||||
modal: true |
||||
parent: Overlay.overlay |
||||
Overlay.modal: Rectangle { |
||||
color: "#aa000000" |
||||
} |
||||
|
||||
ColumnLayout { |
||||
anchors.fill: parent |
||||
spacing: 0 |
||||
|
||||
GridLayout { |
||||
Layout.preferredWidth: parent.width |
||||
Layout.leftMargin: constants.paddingLarge |
||||
Layout.rightMargin: constants.paddingLarge |
||||
columns: 2 |
||||
|
||||
Label { |
||||
Layout.columnSpan: 2 |
||||
Layout.fillWidth: true |
||||
text: qsTr('A CPFP is a transaction that sends an unconfirmed output back to yourself, with a high fee. The goal is to have miners confirm the parent transaction in order to get the fee attached to the child transaction.') |
||||
wrapMode: Text.Wrap |
||||
} |
||||
|
||||
Label { |
||||
Layout.columnSpan: 2 |
||||
Layout.fillWidth: true |
||||
Layout.bottomMargin: constants.paddingLarge |
||||
text: qsTr('The proposed fee is computed using your fee/kB settings, applied to the total size of both child and parent transactions. After you broadcast a CPFP transaction, it is normal to see a new unconfirmed transaction in your history.') |
||||
wrapMode: Text.Wrap |
||||
} |
||||
|
||||
Label { |
||||
Layout.preferredWidth: 1 |
||||
Layout.fillWidth: true |
||||
text: qsTr('Total size') |
||||
color: Material.accentColor |
||||
} |
||||
|
||||
Label { |
||||
Layout.preferredWidth: 1 |
||||
Layout.fillWidth: true |
||||
text: qsTr('%1 bytes').arg(cpfpfeebumper.totalSize) |
||||
} |
||||
|
||||
Label { |
||||
text: qsTr('Input amount') |
||||
color: Material.accentColor |
||||
} |
||||
|
||||
RowLayout { |
||||
Label { |
||||
text: Config.formatSats(cpfpfeebumper.inputAmount) |
||||
} |
||||
|
||||
Label { |
||||
text: Config.baseUnit |
||||
color: Material.accentColor |
||||
} |
||||
} |
||||
|
||||
Label { |
||||
text: qsTr('Output amount') |
||||
color: Material.accentColor |
||||
} |
||||
|
||||
RowLayout { |
||||
Label { |
||||
text: cpfpfeebumper.valid ? Config.formatSats(cpfpfeebumper.outputAmount) : '' |
||||
} |
||||
|
||||
Label { |
||||
visible: cpfpfeebumper.valid |
||||
text: Config.baseUnit |
||||
color: Material.accentColor |
||||
} |
||||
} |
||||
|
||||
Slider { |
||||
id: feeslider |
||||
leftPadding: constants.paddingMedium |
||||
snapMode: Slider.SnapOnRelease |
||||
stepSize: 1 |
||||
from: 0 |
||||
to: cpfpfeebumper.sliderSteps |
||||
onValueChanged: { |
||||
if (activeFocus) |
||||
cpfpfeebumper.sliderPos = value |
||||
} |
||||
Component.onCompleted: { |
||||
value = cpfpfeebumper.sliderPos |
||||
} |
||||
Connections { |
||||
target: cpfpfeebumper |
||||
function onSliderPosChanged() { |
||||
feeslider.value = cpfpfeebumper.sliderPos |
||||
} |
||||
} |
||||
} |
||||
|
||||
FeeMethodComboBox { |
||||
id: feemethod |
||||
feeslider: cpfpfeebumper |
||||
} |
||||
|
||||
Label { |
||||
visible: feemethod.currentValue |
||||
text: qsTr('Target') |
||||
color: Material.accentColor |
||||
} |
||||
|
||||
Label { |
||||
visible: feemethod.currentValue |
||||
text: cpfpfeebumper.target |
||||
} |
||||
|
||||
Label { |
||||
text: qsTr('Fee for child') |
||||
color: Material.accentColor |
||||
} |
||||
|
||||
RowLayout { |
||||
Label { |
||||
id: fee |
||||
text: cpfpfeebumper.valid ? Config.formatSats(cpfpfeebumper.feeForChild) : '' |
||||
} |
||||
|
||||
Label { |
||||
visible: cpfpfeebumper.valid |
||||
text: Config.baseUnit |
||||
color: Material.accentColor |
||||
} |
||||
} |
||||
|
||||
Label { |
||||
text: qsTr('Total fee') |
||||
color: Material.accentColor |
||||
} |
||||
|
||||
RowLayout { |
||||
Label { |
||||
text: cpfpfeebumper.valid ? Config.formatSats(cpfpfeebumper.totalFee) : '' |
||||
} |
||||
|
||||
Label { |
||||
visible: cpfpfeebumper.valid |
||||
text: Config.baseUnit |
||||
color: Material.accentColor |
||||
} |
||||
} |
||||
|
||||
Label { |
||||
text: qsTr('Total fee rate') |
||||
color: Material.accentColor |
||||
} |
||||
|
||||
RowLayout { |
||||
Label { |
||||
text: cpfpfeebumper.valid ? cpfpfeebumper.totalFeeRate : '' |
||||
} |
||||
|
||||
Label { |
||||
visible: cpfpfeebumper.valid |
||||
text: 'sat/vB' |
||||
color: Material.accentColor |
||||
} |
||||
} |
||||
|
||||
InfoTextArea { |
||||
Layout.columnSpan: 2 |
||||
Layout.preferredWidth: parent.width * 3/4 |
||||
Layout.alignment: Qt.AlignHCenter |
||||
Layout.topMargin: constants.paddingLarge |
||||
visible: cpfpfeebumper.warning != '' |
||||
text: cpfpfeebumper.warning |
||||
iconStyle: InfoTextArea.IconStyle.Warn |
||||
} |
||||
|
||||
Label { |
||||
visible: cpfpfeebumper.valid |
||||
text: qsTr('Outputs') |
||||
Layout.columnSpan: 2 |
||||
color: Material.accentColor |
||||
} |
||||
|
||||
Repeater { |
||||
model: cpfpfeebumper.valid ? cpfpfeebumper.outputs : [] |
||||
delegate: TextHighlightPane { |
||||
Layout.columnSpan: 2 |
||||
Layout.fillWidth: true |
||||
padding: 0 |
||||
leftPadding: constants.paddingSmall |
||||
RowLayout { |
||||
width: parent.width |
||||
Label { |
||||
text: modelData.address |
||||
Layout.fillWidth: true |
||||
wrapMode: Text.Wrap |
||||
font.pixelSize: constants.fontSizeLarge |
||||
font.family: FixedFont |
||||
color: modelData.is_mine ? constants.colorMine : Material.foreground |
||||
} |
||||
Label { |
||||
text: Config.formatSats(modelData.value_sats) |
||||
font.pixelSize: constants.fontSizeMedium |
||||
font.family: FixedFont |
||||
} |
||||
Label { |
||||
text: Config.baseUnit |
||||
font.pixelSize: constants.fontSizeMedium |
||||
color: Material.accentColor |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
Item { Layout.fillHeight: true; Layout.preferredWidth: 1 } |
||||
|
||||
FlatButton { |
||||
id: sendButton |
||||
Layout.fillWidth: true |
||||
text: qsTr('Ok') |
||||
icon.source: '../../icons/confirmed.png' |
||||
enabled: cpfpfeebumper.valid |
||||
onClicked: { |
||||
txaccepted() |
||||
dialog.close() |
||||
} |
||||
} |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue