114 lines
3.5 KiB
QML
114 lines
3.5 KiB
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import Storybook 1.0
|
|
import Models 1.0
|
|
|
|
import shared.stores 1.0
|
|
import AppLayouts.Wallet.stores 1.0
|
|
import AppLayouts.Wallet.popups.swap 1.0
|
|
|
|
SplitView {
|
|
id: root
|
|
|
|
Logs { id: logs }
|
|
|
|
orientation: Qt.Horizontal
|
|
|
|
QtObject {
|
|
id: d
|
|
function launchPopup() {
|
|
swapSignApproveModal.createObject(root)
|
|
}
|
|
}
|
|
|
|
PopupBackground {
|
|
id: popupBg
|
|
|
|
SplitView.fillWidth: true
|
|
SplitView.fillHeight: true
|
|
|
|
Button {
|
|
id: reopenButton
|
|
anchors.centerIn: parent
|
|
text: "Reopen"
|
|
enabled: !swapSignApproveModal.visible
|
|
|
|
onClicked: d.launchPopup()
|
|
}
|
|
|
|
Component.onCompleted: d.launchPopup()
|
|
|
|
Component {
|
|
id: swapSignApproveModal
|
|
SwapSignApprovePopup {
|
|
id: modal
|
|
visible: true
|
|
modal: false
|
|
closePolicy: Popup.CloseOnEscape
|
|
destroyOnClose: true
|
|
loading: loadingCheckBox.checked
|
|
swapSignApproveInputForm: SwapSignApproveInputForm {
|
|
selectedAccountAddress: "0x7F47C2e18a4BBf5487E6fb082eC2D9Ab0E6d7240"
|
|
selectedNetworkChainId: 11155111
|
|
estimatedTime: 3
|
|
swapProviderName: "ParaSwap"
|
|
approvalGasFees: "2.789231893824e-06"
|
|
approvalAmountRequired: "10000000000000"
|
|
approvalContractAddress: "0x216b4b4ba9f3e719726886d34a177484278bfcae"
|
|
fromTokensKey: "DAI"
|
|
toTokensKey: "ETH"
|
|
fromTokensAmount: "0.00100000000000003"
|
|
toTokensAmount: "0.02925100"
|
|
selectedSlippage: 0.5
|
|
swapFees: 2.789231893824e-06
|
|
}
|
|
adaptor: SwapSignApproveAdaptor {
|
|
swapStore: SwapStore {
|
|
readonly property var accounts: WalletAccountsModel {}
|
|
readonly property var flatNetworks: NetworksModel.flatNetworks
|
|
}
|
|
walletAssetsStore: WalletAssetsStore {
|
|
id: thisWalletAssetStore
|
|
walletTokensStore: TokensStore {
|
|
readonly property var plainTokensBySymbolModel: TokensBySymbolModel {}
|
|
getDisplayAssetsBelowBalanceThresholdDisplayAmount: () => 0
|
|
}
|
|
readonly property var baseGroupedAccountAssetModel: GroupedAccountsAssetsModel {}
|
|
assetsWithFilteredBalances: thisWalletAssetStore.groupedAccountsAssetsModel
|
|
}
|
|
currencyStore: CurrenciesStore {}
|
|
inputFormData: modal.swapSignApproveInputForm
|
|
}
|
|
txType: isApprovalTx.checked ? SwapSignApprovePopup.TxType.Approve : SwapSignApprovePopup.TxType.Swap
|
|
}
|
|
}
|
|
}
|
|
|
|
Pane {
|
|
id: rightPanel
|
|
SplitView.minimumWidth: 300
|
|
SplitView.preferredWidth: 300
|
|
SplitView.minimumHeight: 300
|
|
|
|
ColumnLayout {
|
|
spacing: 10
|
|
|
|
CheckBox {
|
|
id: loadingCheckBox
|
|
text: "loading"
|
|
checked: false
|
|
}
|
|
|
|
CheckBox {
|
|
id: isApprovalTx
|
|
text: "approve tx"
|
|
checked: false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// category: Popups
|