2021-03-08 19:24:39 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import QtGraphicalEffects 1.0
|
2021-09-28 15:04:06 +00:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared 1.0
|
|
|
|
import shared.popups 1.0
|
|
|
|
import shared.status 1.0
|
2022-02-14 23:27:23 +00:00
|
|
|
import shared.stores 1.0 as SharedStores
|
|
|
|
|
|
|
|
//TODO remove this dependency!
|
|
|
|
import "../../../app/AppLayouts/Chat/stores"
|
2021-03-08 19:24:39 +00:00
|
|
|
|
2021-10-14 11:33:34 +00:00
|
|
|
// TODO: replace with StatusModal
|
2021-03-08 19:24:39 +00:00
|
|
|
ModalPopup {
|
|
|
|
id: stickerPackDetailsPopup
|
|
|
|
|
|
|
|
property int packId: -1
|
|
|
|
|
2022-02-14 23:27:23 +00:00
|
|
|
property var store
|
2021-03-08 19:24:39 +00:00
|
|
|
property string thumbnail: ""
|
|
|
|
property string name: ""
|
|
|
|
property string author: ""
|
|
|
|
property string price: ""
|
|
|
|
property bool installed: false;
|
|
|
|
property bool bought: false;
|
|
|
|
property bool pending: false;
|
|
|
|
property var stickers;
|
2021-12-08 21:20:43 +00:00
|
|
|
signal buyClicked(int packId)
|
2021-03-08 19:24:39 +00:00
|
|
|
|
|
|
|
Component.onCompleted: {
|
2021-11-25 17:12:19 +00:00
|
|
|
const idx = stickersModule.stickerPacks.findIndexById(packId, false);
|
2021-03-08 19:24:39 +00:00
|
|
|
if(idx === -1) close();
|
2021-11-25 17:12:19 +00:00
|
|
|
name = stickersModule.stickerPacks.rowData(idx, "name")
|
|
|
|
author = stickersModule.stickerPacks.rowData(idx, "author")
|
|
|
|
thumbnail = stickersModule.stickerPacks.rowData(idx, "thumbnail")
|
|
|
|
price = stickersModule.stickerPacks.rowData(idx, "price")
|
|
|
|
stickers = stickersModule.stickerPacks.getStickers()
|
|
|
|
installed = stickersModule.stickerPacks.rowData(idx, "installed") === "true"
|
|
|
|
bought = stickersModule.stickerPacks.rowData(idx, "bought") === "true"
|
|
|
|
pending = stickersModule.stickerPacks.rowData(idx, "pending") === "true"
|
2021-03-08 19:24:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
height: 472
|
|
|
|
header: StatusStickerPackDetails {
|
|
|
|
id: stickerGrid
|
|
|
|
packThumb: thumbnail
|
|
|
|
packName: name
|
|
|
|
packAuthor: author
|
|
|
|
packNameFontSize: 17
|
|
|
|
spacing: Style.current.padding / 2
|
|
|
|
}
|
2021-03-26 21:21:50 +00:00
|
|
|
|
|
|
|
contentWrapper.anchors.topMargin: 0
|
|
|
|
contentWrapper.anchors.bottomMargin: 0
|
|
|
|
StatusStickerList {
|
|
|
|
id: stickerGridInPopup
|
|
|
|
model: stickers
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.topMargin: Style.current.padding
|
2021-12-08 21:20:43 +00:00
|
|
|
packId: stickerPackDetailsPopup.packId
|
2021-03-26 21:21:50 +00:00
|
|
|
Component {
|
|
|
|
id: stickerPackPurchaseModal
|
2021-07-27 14:04:05 +00:00
|
|
|
StatusSNTTransactionModal {
|
2022-02-14 23:27:23 +00:00
|
|
|
store: stickerPackDetailsPopup.store
|
|
|
|
stickersStore: stickerPackDetailsPopup.store.stickersStore
|
|
|
|
contactsStore: stickerPackDetailsPopup.store.contactsStore
|
|
|
|
contractAddress: root.store.stickersStore.getStickersMarketAddress()
|
2021-07-27 14:04:05 +00:00
|
|
|
assetPrice: price
|
2022-05-19 08:53:57 +00:00
|
|
|
chainId: root.store.stickersStore.getChainIdForStickers()
|
2021-07-27 14:04:05 +00:00
|
|
|
estimateGasFunction: function(selectedAccount, uuid) {
|
|
|
|
if (packId < 0 || !selectedAccount || !price) return 325000
|
2022-02-14 23:27:23 +00:00
|
|
|
return stickerPackDetailsPopup.store.stickersStore.estimate(packId, selectedAccount.address, price, uuid)
|
2021-07-27 14:04:05 +00:00
|
|
|
}
|
2022-05-19 08:53:57 +00:00
|
|
|
onSendTransaction: function(selectedAddress, gasLimit, gasPrice, tipLimit, overallLimit, password, eip1559Enabled) {
|
2022-02-14 23:27:23 +00:00
|
|
|
return root.store.stickersStore.buy(packId,
|
|
|
|
selectedAddress,
|
|
|
|
gasLimit,
|
|
|
|
gasPrice,
|
|
|
|
tipLimit,
|
|
|
|
overallLimit,
|
2022-05-19 08:53:57 +00:00
|
|
|
password,
|
|
|
|
eip1559Enabled)
|
2021-07-27 14:04:05 +00:00
|
|
|
}
|
2021-03-26 21:21:50 +00:00
|
|
|
onClosed: {
|
|
|
|
destroy()
|
|
|
|
}
|
2022-02-14 23:27:23 +00:00
|
|
|
asyncGasEstimateTarget: stickerPackDetailsPopup.store.stickersStore.stickersModule
|
2021-03-26 21:21:50 +00:00
|
|
|
width: stickerPackDetailsPopup.width
|
|
|
|
height: stickerPackDetailsPopup.height
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-08 19:24:39 +00:00
|
|
|
footer: StatusStickerButton {
|
2021-03-26 21:21:50 +00:00
|
|
|
height: 44
|
2021-03-08 19:24:39 +00:00
|
|
|
anchors.right: parent.right
|
|
|
|
style: StatusStickerButton.StyleType.LargeNoIcon
|
|
|
|
packPrice: price
|
|
|
|
isInstalled: installed
|
|
|
|
isBought: bought
|
|
|
|
isPending: pending
|
|
|
|
onInstallClicked: {
|
2021-11-25 17:12:19 +00:00
|
|
|
stickersModule.install(packId);
|
2021-03-08 19:24:39 +00:00
|
|
|
stickerPackDetailsPopup.close();
|
|
|
|
}
|
|
|
|
onUninstallClicked: {
|
2021-11-25 17:12:19 +00:00
|
|
|
stickersModule.uninstall(packId);
|
2021-03-08 19:24:39 +00:00
|
|
|
stickerPackDetailsPopup.close();
|
|
|
|
}
|
|
|
|
onCancelClicked: function(){}
|
|
|
|
onUpdateClicked: function(){}
|
|
|
|
onBuyClicked: {
|
2021-12-08 21:20:43 +00:00
|
|
|
Global.openPopup(stickerPackPurchaseModal);
|
|
|
|
stickerPackDetailsPopup.buyClicked(packId);
|
2021-03-08 19:24:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|