2020-09-29 08:41:27 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import QtGraphicalEffects 1.0
|
2022-06-21 08:56:12 +00:00
|
|
|
import QtQml.Models 2.13
|
2021-09-28 15:04:06 +00:00
|
|
|
|
2022-07-20 14:54:30 +00:00
|
|
|
import StatusQ.Core 0.1
|
2023-04-12 11:28:58 +00:00
|
|
|
import StatusQ.Controls 0.1
|
2022-07-20 14:54:30 +00:00
|
|
|
|
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.panels 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
|
|
|
|
|
2021-10-27 21:27:49 +00:00
|
|
|
//TODO remove this dependency!
|
2022-03-08 18:49:33 +00:00
|
|
|
import AppLayouts.Chat.stores 1.0
|
2020-09-29 08:41:27 +00:00
|
|
|
|
|
|
|
Item {
|
|
|
|
id: root
|
2022-02-14 23:27:23 +00:00
|
|
|
|
|
|
|
property var store
|
2020-09-29 08:41:27 +00:00
|
|
|
property var stickerPacks: StickerPackData {}
|
2023-04-12 10:31:35 +00:00
|
|
|
property string packId
|
2021-07-27 14:04:05 +00:00
|
|
|
|
2020-09-29 08:41:27 +00:00
|
|
|
signal backClicked
|
2023-04-12 10:31:35 +00:00
|
|
|
signal uninstallClicked(string packId)
|
|
|
|
signal installClicked(var stickers, string packId, int index)
|
|
|
|
signal cancelClicked(string packId)
|
|
|
|
signal updateClicked(string packId)
|
|
|
|
signal buyClicked(string packId)
|
2020-09-29 08:41:27 +00:00
|
|
|
|
2022-07-20 14:54:30 +00:00
|
|
|
StatusGridView {
|
2020-09-29 08:41:27 +00:00
|
|
|
id: availableStickerPacks
|
2022-08-11 19:16:59 +00:00
|
|
|
objectName: "stickerMarketStatusGridView"
|
2020-09-29 08:41:27 +00:00
|
|
|
width: parent.width
|
|
|
|
height: 380
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: Style.current.padding
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Style.current.padding
|
|
|
|
cellWidth: parent.width - (Style.current.padding * 2)
|
|
|
|
cellHeight: height - 72
|
2022-06-21 08:56:12 +00:00
|
|
|
|
2023-04-12 11:28:58 +00:00
|
|
|
ScrollBar.vertical: StatusScrollBar {}
|
|
|
|
|
2020-09-29 08:41:27 +00:00
|
|
|
focus: true
|
2022-06-21 08:56:12 +00:00
|
|
|
model: DelegateModel {
|
|
|
|
id: delegateModel
|
|
|
|
|
|
|
|
function update() {
|
|
|
|
if (items.count > 0) {
|
|
|
|
items.setGroups(0, items.count, "items");
|
2020-09-29 08:41:27 +00:00
|
|
|
}
|
2021-03-26 21:21:50 +00:00
|
|
|
|
2022-06-21 08:56:12 +00:00
|
|
|
var visible = [];
|
|
|
|
for (var i = 0; i < items.count; ++i) {
|
|
|
|
var item = items.get(i);
|
|
|
|
if (delegateModel.walletEnabled ||
|
|
|
|
!delegateModel.walletEnabled && item.model.price == 0) {
|
|
|
|
visible.push(item);
|
|
|
|
}
|
2020-09-29 08:41:27 +00:00
|
|
|
}
|
2021-03-26 21:21:50 +00:00
|
|
|
|
2022-06-21 08:56:12 +00:00
|
|
|
for (i = 0; i < visible.length; ++i) {
|
|
|
|
item = visible[i];
|
|
|
|
item.inVisible = true;
|
|
|
|
if (item.visibleIndex !== i) {
|
|
|
|
visibleItems.move(item.visibleIndex, i, 1);
|
|
|
|
}
|
2021-03-26 21:21:50 +00:00
|
|
|
}
|
2022-06-21 08:56:12 +00:00
|
|
|
}
|
|
|
|
|
2023-03-15 13:35:03 +00:00
|
|
|
readonly property bool walletEnabled: SharedStores.RootStore.isWalletEnabled
|
2022-06-21 08:56:12 +00:00
|
|
|
onWalletEnabledChanged: {
|
|
|
|
update()
|
|
|
|
}
|
|
|
|
|
|
|
|
model: stickerPacks
|
|
|
|
items.onChanged: update()
|
|
|
|
filterOnGroup: "visible"
|
|
|
|
groups: DelegateModelGroup {
|
|
|
|
id: visibleItems
|
2021-03-26 21:21:50 +00:00
|
|
|
|
2022-06-21 08:56:12 +00:00
|
|
|
name: "visible"
|
|
|
|
includeByDefault: false
|
|
|
|
}
|
|
|
|
|
|
|
|
delegate: Item {
|
2022-08-11 19:16:59 +00:00
|
|
|
objectName: "stickerMarketDelegateItem" + index
|
|
|
|
readonly property string packId: model.packId // This property is necessary for the tests
|
|
|
|
readonly property bool installed: model.installed // This property is necessary for the tests
|
2022-06-21 08:56:12 +00:00
|
|
|
width: availableStickerPacks.cellWidth
|
|
|
|
height: availableStickerPacks.cellHeight
|
|
|
|
RoundedImage {
|
|
|
|
id: imgPreview
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.left: parent.left
|
2020-09-29 08:41:27 +00:00
|
|
|
anchors.right: parent.right
|
2022-06-21 08:56:12 +00:00
|
|
|
height: 220
|
|
|
|
width: parent.width
|
|
|
|
radius: 12
|
|
|
|
source: model.preview
|
|
|
|
onClicked: {
|
|
|
|
stickerPackDetailsPopup.open()
|
2020-09-29 08:41:27 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-21 08:56:12 +00:00
|
|
|
|
|
|
|
// TODO: replace with StatusModal
|
|
|
|
ModalPopup {
|
|
|
|
id: stickerPackDetailsPopup
|
|
|
|
height: 540
|
|
|
|
header: StatusStickerPackDetails {
|
|
|
|
packThumb: thumbnail
|
|
|
|
packName: name
|
|
|
|
packAuthor: author
|
|
|
|
packNameFontSize: 17
|
|
|
|
spacing: Style.current.padding / 2
|
2021-07-27 14:04:05 +00:00
|
|
|
}
|
2022-06-21 08:56:12 +00:00
|
|
|
|
|
|
|
contentWrapper.anchors.topMargin: 0
|
|
|
|
contentWrapper.anchors.bottomMargin: 0
|
2023-04-12 12:15:39 +00:00
|
|
|
contentWrapper.anchors.rightMargin: 0
|
2022-06-21 08:56:12 +00:00
|
|
|
StatusStickerList {
|
|
|
|
id: stickerGridInPopup
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.topMargin: Style.current.padding
|
|
|
|
model: stickers
|
|
|
|
packId: root.packId
|
2021-07-27 14:04:05 +00:00
|
|
|
}
|
2022-06-21 08:56:12 +00:00
|
|
|
|
|
|
|
footer: StatusStickerButton {
|
2022-08-11 19:16:59 +00:00
|
|
|
objectName: "statusStickerMarketInstallButton"
|
2022-06-21 08:56:12 +00:00
|
|
|
anchors.right: parent.right
|
|
|
|
style: StatusStickerButton.StyleType.LargeNoIcon
|
|
|
|
packPrice: price
|
|
|
|
isInstalled: installed
|
|
|
|
isBought: bought
|
|
|
|
isPending: pending
|
2023-04-04 11:31:04 +00:00
|
|
|
greyedOut: !root.store.networkConnectionStore.stickersNetworkAvailable
|
|
|
|
tooltip.text: root.store.networkConnectionStore.stickersNetworkUnavailableText
|
2022-06-21 08:56:12 +00:00
|
|
|
onInstallClicked: root.installClicked(stickers, packId, index)
|
|
|
|
onUninstallClicked: root.uninstallClicked(packId)
|
|
|
|
onCancelClicked: root.cancelClicked(packId)
|
|
|
|
onUpdateClicked: root.updateClicked(packId)
|
|
|
|
onBuyClicked: {
|
2023-04-12 12:59:39 +00:00
|
|
|
Global.openPopup(stickerPackPurchaseModal, {price})
|
2022-06-21 08:56:12 +00:00
|
|
|
root.buyClicked(packId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-27 14:04:05 +00:00
|
|
|
|
2022-06-21 08:56:12 +00:00
|
|
|
StatusStickerPackDetails {
|
|
|
|
id: stickerPackDetails
|
|
|
|
height: 64 - (Style.current.smallPadding * 2)
|
|
|
|
width: parent.width - (Style.current.padding * 2)
|
|
|
|
anchors.top: imgPreview.bottom
|
|
|
|
anchors.topMargin: Style.current.smallPadding
|
|
|
|
anchors.bottomMargin: Style.current.smallPadding
|
|
|
|
anchors.left: parent.left
|
2020-09-29 08:41:27 +00:00
|
|
|
anchors.right: parent.right
|
2022-06-21 08:56:12 +00:00
|
|
|
packThumb: thumbnail
|
|
|
|
packName: name
|
|
|
|
packAuthor: author
|
|
|
|
|
|
|
|
StatusStickerButton {
|
|
|
|
anchors.right: parent.right
|
2023-04-12 19:08:42 +00:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2022-06-21 08:56:12 +00:00
|
|
|
packPrice: price
|
|
|
|
isInstalled: installed
|
|
|
|
isBought: bought
|
|
|
|
isPending: pending
|
2023-04-04 11:31:04 +00:00
|
|
|
greyedOut: !root.store.networkConnectionStore.stickersNetworkAvailable
|
|
|
|
tooltip.text: root.store.networkConnectionStore.stickersNetworkUnavailableText
|
2022-06-21 08:56:12 +00:00
|
|
|
onInstallClicked: root.installClicked(stickers, packId, index)
|
|
|
|
onUninstallClicked: root.uninstallClicked(packId)
|
|
|
|
onCancelClicked: root.cancelClicked(packId)
|
|
|
|
onUpdateClicked: root.updateClicked(packId)
|
|
|
|
onBuyClicked: {
|
2023-04-12 12:59:39 +00:00
|
|
|
Global.openPopup(stickerPackPurchaseModal, {price})
|
2022-06-21 08:56:12 +00:00
|
|
|
root.buyClicked(packId)
|
2021-08-25 08:09:33 +00:00
|
|
|
}
|
2020-09-29 08:41:27 +00:00
|
|
|
}
|
|
|
|
}
|
2021-08-25 08:09:33 +00:00
|
|
|
}
|
2020-09-29 08:41:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-12 11:28:58 +00:00
|
|
|
Component {
|
|
|
|
id: stickerPackPurchaseModal
|
|
|
|
SendModal {
|
|
|
|
id: buyStickersModal
|
2023-04-12 12:59:39 +00:00
|
|
|
|
|
|
|
required property int price
|
|
|
|
|
2023-04-12 11:28:58 +00:00
|
|
|
interactive: false
|
|
|
|
sendType: Constants.SendType.StickersBuy
|
|
|
|
preSelectedRecipient: root.store.stickersStore.getStickersMarketAddress()
|
|
|
|
preDefinedAmountToSend: LocaleUtils.numberToLocaleString(parseFloat(price))
|
|
|
|
preSelectedAsset: store.getAsset(buyStickersModal.store.currentAccount.assets, JSON.parse(root.store.stickersStore.getStatusToken()).symbol)
|
|
|
|
sendTransaction: function() {
|
|
|
|
if(bestRoutes.length === 1) {
|
|
|
|
let path = bestRoutes[0]
|
|
|
|
let eip1559Enabled = path.gasFees.eip1559Enabled
|
|
|
|
let maxFeePerGas = path.gasFees.maxFeePerGasM
|
|
|
|
root.store.stickersStore.authenticateAndBuy(packId,
|
|
|
|
selectedAccount.address,
|
|
|
|
path.gasAmount,
|
|
|
|
eip1559Enabled ? "" : path.gasFees.gasPrice,
|
|
|
|
eip1559Enabled ? path.gasFees.maxPriorityFeePerGas : "",
|
|
|
|
eip1559Enabled ? maxFeePerGas : path.gasFees.gasPrice,
|
|
|
|
eip1559Enabled)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Connections {
|
|
|
|
target: root.store.stickersStore.stickersModule
|
|
|
|
function onTransactionWasSent(txResult: string) {
|
|
|
|
try {
|
|
|
|
let response = JSON.parse(txResult)
|
|
|
|
if (!response.success) {
|
|
|
|
if (response.result.includes(Constants.walletSection.cancelledMessage)) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
buyStickersModal.sendingError.text = response.result
|
|
|
|
return buyStickersModal.sendingError.open()
|
|
|
|
}
|
|
|
|
for(var i=0; i<buyStickersModal.bestRoutes.length; i++) {
|
|
|
|
let url = "%1/%2".arg(buyStickersModal.store.getEtherscanLink(buyStickersModal.bestRoutes[i].fromNetwork.chainId)).arg(response.result)
|
|
|
|
Global.displayToastMessage(qsTr("Transaction pending..."),
|
|
|
|
qsTr("View on etherscan"),
|
|
|
|
"",
|
|
|
|
true,
|
|
|
|
Constants.ephemeralNotificationType.normal,
|
|
|
|
url)
|
|
|
|
}
|
|
|
|
buyStickersModal.close()
|
|
|
|
} catch (e) {
|
|
|
|
console.error('Error parsing the response', e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-29 08:41:27 +00:00
|
|
|
Item {
|
|
|
|
id: footer
|
2023-04-12 19:08:42 +00:00
|
|
|
height: 44
|
2020-09-29 08:41:27 +00:00
|
|
|
anchors.top: availableStickerPacks.bottom
|
|
|
|
|
2023-04-12 19:08:42 +00:00
|
|
|
StatusBackButton {
|
2020-09-29 08:41:27 +00:00
|
|
|
id: btnBack
|
2023-04-12 19:08:42 +00:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2020-09-29 08:41:27 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: Style.current.padding / 2
|
2023-04-12 19:08:42 +00:00
|
|
|
width: 24
|
|
|
|
height: 24
|
|
|
|
type: StatusRoundButton.Type.Secondary
|
2020-09-29 08:41:27 +00:00
|
|
|
onClicked: {
|
|
|
|
root.backClicked()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|