mirror of
https://github.com/overte-org/overte.git
synced 2025-05-08 03:08:54 +02:00
902 lines
31 KiB
QML
902 lines
31 KiB
QML
//
|
|
// Checkout.qml
|
|
// qml/hifi/commerce/checkout
|
|
//
|
|
// Checkout
|
|
//
|
|
// Created by Zach Fox on 2017-08-25
|
|
// Copyright 2017 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
import Hifi 1.0 as Hifi
|
|
import QtQuick 2.5
|
|
import QtQuick.Controls 1.4
|
|
import "../../../styles-uit"
|
|
import "../../../controls-uit" as HifiControlsUit
|
|
import "../../../controls" as HifiControls
|
|
import "../wallet" as HifiWallet
|
|
|
|
// references XXX from root context
|
|
|
|
Rectangle {
|
|
HifiConstants { id: hifi; }
|
|
|
|
id: root;
|
|
property string activeView: "initialize";
|
|
property bool purchasesReceived: false;
|
|
property bool balanceReceived: false;
|
|
property string itemId: "";
|
|
property string itemHref: "";
|
|
property double balanceAfterPurchase: 0;
|
|
property bool alreadyOwned: false;
|
|
property int itemPriceFull: 0;
|
|
property bool itemIsJson: true;
|
|
property bool securityImageResultReceived: false;
|
|
property bool keyFilePathIfExistsResultReceived: false;
|
|
// Style
|
|
color: hifi.colors.baseGray;
|
|
Hifi.QmlCommerce {
|
|
id: commerce;
|
|
|
|
onSecurityImageResult: {
|
|
securityImageResultReceived = true;
|
|
if (!exists && root.activeView !== "notSetUp") { // "If security image is not set up"
|
|
root.activeView = "notSetUp";
|
|
} else if (root.securityImageResultReceived && exists && root.keyFilePathIfExistsResultReceived && root.activeView === "initialize") {
|
|
root.activeView = "checkoutMain";
|
|
} else if (exists) {
|
|
// just set the source again (to be sure the change was noticed)
|
|
securityImage.source = "";
|
|
securityImage.source = "image://security/securityImage";
|
|
}
|
|
}
|
|
|
|
onKeyFilePathIfExistsResult: {
|
|
keyFilePathIfExistsResultReceived = true;
|
|
if (path === "" && root.activeView !== "notSetUp") {
|
|
root.activeView = "notSetUp";
|
|
} else if (root.securityImageResultReceived && root.keyFilePathIfExistsResultReceived && path !== "" && root.activeView === "initialize") {
|
|
root.activeView = "checkoutMain";
|
|
}
|
|
}
|
|
|
|
onBuyResult: {
|
|
if (result.status !== 'success') {
|
|
failureErrorText.text = "Here's some more info about the error:<br><br>" + (result.message);
|
|
root.activeView = "checkoutFailure";
|
|
} else {
|
|
root.activeView = "checkoutSuccess";
|
|
}
|
|
}
|
|
|
|
onBalanceResult: {
|
|
if (result.status !== 'success') {
|
|
console.log("Failed to get balance", result.data.message);
|
|
} else {
|
|
root.balanceReceived = true;
|
|
hfcBalanceText.text = (parseFloat(result.data.balance/100).toFixed(2)) + " HFC";
|
|
balanceAfterPurchase = parseFloat(result.data.balance/100) - root.itemPriceFull/100;
|
|
root.setBuyText();
|
|
}
|
|
}
|
|
|
|
onInventoryResult: {
|
|
if (result.status !== 'success') {
|
|
console.log("Failed to get purchases", result.data.message);
|
|
} else {
|
|
root.purchasesReceived = true;
|
|
if (purchasesContains(result.data.assets, itemId)) {
|
|
root.alreadyOwned = true;
|
|
} else {
|
|
root.alreadyOwned = false;
|
|
}
|
|
root.setBuyText();
|
|
}
|
|
}
|
|
}
|
|
|
|
HifiWallet.SecurityImageModel {
|
|
id: securityImageModel;
|
|
}
|
|
|
|
//
|
|
// TITLE BAR START
|
|
//
|
|
Item {
|
|
id: titleBarContainer;
|
|
// Size
|
|
width: parent.width;
|
|
height: 50;
|
|
// Anchors
|
|
anchors.left: parent.left;
|
|
anchors.top: parent.top;
|
|
|
|
// Title Bar text
|
|
RalewaySemiBold {
|
|
id: titleBarText;
|
|
text: "MARKETPLACE";
|
|
// Text size
|
|
size: hifi.fontSizes.overlayTitle;
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.left: parent.left;
|
|
anchors.leftMargin: 16;
|
|
anchors.bottom: parent.bottom;
|
|
width: paintedWidth;
|
|
// Style
|
|
color: hifi.colors.faintGray;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignHLeft;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
|
|
// Security Image (TEMPORARY!)
|
|
Image {
|
|
id: securityImage;
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.right: parent.right;
|
|
anchors.verticalCenter: parent.verticalCenter;
|
|
height: parent.height - 10;
|
|
width: height;
|
|
fillMode: Image.PreserveAspectFit;
|
|
mipmap: true;
|
|
cache: false;
|
|
source: "image://security/securityImage";
|
|
}
|
|
|
|
// Separator
|
|
HifiControlsUit.Separator {
|
|
anchors.left: parent.left;
|
|
anchors.right: parent.right;
|
|
anchors.bottom: parent.bottom;
|
|
}
|
|
}
|
|
//
|
|
// TITLE BAR END
|
|
//
|
|
|
|
Rectangle {
|
|
id: initialize;
|
|
visible: root.activeView === "initialize";
|
|
anchors.top: titleBarContainer.bottom;
|
|
anchors.bottom: parent.top;
|
|
anchors.left: parent.left;
|
|
anchors.right: parent.right;
|
|
color: hifi.colors.baseGray;
|
|
|
|
Component.onCompleted: {
|
|
commerce.getSecurityImage();
|
|
commerce.getKeyFilePathIfExists();
|
|
}
|
|
}
|
|
|
|
//
|
|
// "WALLET NOT SET UP" START
|
|
//
|
|
Item {
|
|
id: notSetUp;
|
|
visible: root.activeView === "notSetUp";
|
|
anchors.top: titleBarContainer.bottom;
|
|
anchors.bottom: parent.bottom;
|
|
anchors.left: parent.left;
|
|
anchors.right: parent.right;
|
|
|
|
RalewayRegular {
|
|
id: notSetUpText;
|
|
text: "<b>Your wallet isn't set up.</b><br><br>Set up your Wallet (no credit card necessary) to claim your <b>free HFC</b> " +
|
|
"and get items from the Marketplace.";
|
|
// Text size
|
|
size: 24;
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.bottom: notSetUpActionButtonsContainer.top;
|
|
anchors.left: parent.left;
|
|
anchors.leftMargin: 16;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 16;
|
|
// Style
|
|
color: hifi.colors.faintGray;
|
|
wrapMode: Text.WordWrap;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignHCenter;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
|
|
Item {
|
|
id: notSetUpActionButtonsContainer;
|
|
// Size
|
|
width: root.width;
|
|
height: 70;
|
|
// Anchors
|
|
anchors.left: parent.left;
|
|
anchors.bottom: parent.bottom;
|
|
anchors.bottomMargin: 24;
|
|
|
|
// "Cancel" button
|
|
HifiControlsUit.Button {
|
|
id: cancelButton;
|
|
color: hifi.buttons.black;
|
|
colorScheme: hifi.colorSchemes.dark;
|
|
anchors.top: parent.top;
|
|
anchors.topMargin: 3;
|
|
anchors.bottom: parent.bottom;
|
|
anchors.bottomMargin: 3;
|
|
anchors.left: parent.left;
|
|
anchors.leftMargin: 20;
|
|
width: parent.width/2 - anchors.leftMargin*2;
|
|
text: "Cancel"
|
|
onClicked: {
|
|
sendToScript({method: 'checkout_cancelClicked', params: itemId});
|
|
}
|
|
}
|
|
|
|
// "Set Up" button
|
|
HifiControlsUit.Button {
|
|
id: setUpButton;
|
|
color: hifi.buttons.blue;
|
|
colorScheme: hifi.colorSchemes.dark;
|
|
anchors.top: parent.top;
|
|
anchors.topMargin: 3;
|
|
anchors.bottom: parent.bottom;
|
|
anchors.bottomMargin: 3;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 20;
|
|
width: parent.width/2 - anchors.rightMargin*2;
|
|
text: "Set Up Wallet"
|
|
onClicked: {
|
|
sendToScript({method: 'checkout_setUpClicked'});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//
|
|
// "WALLET NOT SET UP" END
|
|
//
|
|
|
|
//
|
|
// CHECKOUT CONTENTS START
|
|
//
|
|
Item {
|
|
id: checkoutContents;
|
|
visible: root.activeView === "checkoutMain";
|
|
anchors.top: titleBarContainer.bottom;
|
|
anchors.bottom: parent.bottom;
|
|
anchors.left: parent.left;
|
|
anchors.right: parent.right;
|
|
|
|
onVisibleChanged: {
|
|
if (visible) {
|
|
commerce.balance();
|
|
commerce.inventory();
|
|
}
|
|
}
|
|
|
|
//
|
|
// ITEM DESCRIPTION START
|
|
//
|
|
Item {
|
|
id: itemDescriptionContainer;
|
|
// Anchors
|
|
anchors.left: parent.left;
|
|
anchors.leftMargin: 32;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 32;
|
|
anchors.top: parent.top;
|
|
anchors.bottom: checkoutActionButtonsContainer.top;
|
|
|
|
// HFC Balance text
|
|
Item {
|
|
id: hfcBalanceContainer;
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.topMargin: 30;
|
|
anchors.left: parent.left;
|
|
anchors.leftMargin: 16;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 16;
|
|
height: childrenRect.height;
|
|
|
|
RalewaySemiBold {
|
|
id: hfcBalanceTextLabel;
|
|
text: "Balance:";
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.left: parent.left;
|
|
width: paintedWidth;
|
|
height: paintedHeight;
|
|
// Text size
|
|
size: 30;
|
|
// Style
|
|
color: hifi.colors.lightGrayText;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignLeft;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
RalewayRegular {
|
|
id: hfcBalanceText;
|
|
text: "-- HFC";
|
|
// Text size
|
|
size: hfcBalanceTextLabel.size;
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.left: hfcBalanceTextLabel.right;
|
|
anchors.leftMargin: 16;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 16;
|
|
height: paintedHeight;
|
|
// Style
|
|
color: hifi.colors.lightGrayText;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignRight;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
}
|
|
|
|
// Item Name text
|
|
Item {
|
|
id: itemNameContainer;
|
|
// Anchors
|
|
anchors.top: hfcBalanceContainer.bottom;
|
|
anchors.topMargin: 32;
|
|
anchors.left: parent.left;
|
|
anchors.leftMargin: 16;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 16;
|
|
height: childrenRect.height;
|
|
|
|
RalewaySemiBold {
|
|
id: itemNameTextLabel;
|
|
text: "Item:";
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.left: parent.left;
|
|
width: paintedWidth;
|
|
height: paintedHeight;
|
|
// Text size
|
|
size: 20;
|
|
// Style
|
|
color: hifi.colors.lightGrayText;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignLeft;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
RalewayRegular {
|
|
id: itemNameText;
|
|
// Text size
|
|
size: itemNameTextLabel.size;
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.left: itemNameTextLabel.right;
|
|
anchors.leftMargin: 16;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 16;
|
|
height: paintedHeight;
|
|
// Style
|
|
color: hifi.colors.lightGrayText;
|
|
elide: Text.ElideRight;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignRight;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
}
|
|
|
|
|
|
// Item Author text
|
|
Item {
|
|
id: itemAuthorContainer;
|
|
// Anchors
|
|
anchors.top: itemNameContainer.bottom;
|
|
anchors.topMargin: 4;
|
|
anchors.left: parent.left;
|
|
anchors.leftMargin: 16;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 16;
|
|
height: childrenRect.height;
|
|
|
|
RalewaySemiBold {
|
|
id: itemAuthorTextLabel;
|
|
text: "Author:";
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.left: parent.left;
|
|
width: paintedWidth;
|
|
height: paintedHeight;
|
|
// Text size
|
|
size: 20;
|
|
// Style
|
|
color: hifi.colors.lightGrayText;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignLeft;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
RalewayRegular {
|
|
id: itemAuthorText;
|
|
// Text size
|
|
size: itemAuthorTextLabel.size;
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.left: itemAuthorTextLabel.right;
|
|
anchors.leftMargin: 16;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 16;
|
|
height: paintedHeight;
|
|
// Style
|
|
color: hifi.colors.lightGrayText;
|
|
elide: Text.ElideRight;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignRight;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
}
|
|
|
|
// "Item Price" container
|
|
Item {
|
|
id: itemPriceContainer;
|
|
// Anchors
|
|
anchors.top: itemAuthorContainer.bottom;
|
|
anchors.topMargin: 32;
|
|
anchors.left: parent.left;
|
|
anchors.leftMargin: 16;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 16;
|
|
height: childrenRect.height;
|
|
|
|
RalewaySemiBold {
|
|
id: itemPriceTextLabel;
|
|
text: "<b>Item Price:</b>";
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.left: parent.left;
|
|
width: paintedWidth;
|
|
height: paintedHeight;
|
|
// Text size
|
|
size: 30;
|
|
// Style
|
|
color: hifi.colors.lightGrayText;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignLeft;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
RalewayRegular {
|
|
id: itemPriceText;
|
|
text: "<b>-- HFC</b>";
|
|
// Text size
|
|
size: itemPriceTextLabel.size;
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.left: itemPriceTextLabel.right;
|
|
anchors.leftMargin: 16;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 16;
|
|
height: paintedHeight;
|
|
// Style
|
|
color: (balanceAfterPurchase >= 0) ? hifi.colors.lightGrayText : hifi.colors.redHighlight;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignRight;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
}
|
|
|
|
// "Balance After Purchase" container
|
|
Item {
|
|
id: balanceAfterPurchaseContainer;
|
|
// Anchors
|
|
anchors.top: itemPriceContainer.bottom;
|
|
anchors.topMargin: 16;
|
|
anchors.left: parent.left;
|
|
anchors.leftMargin: 16;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 16;
|
|
height: childrenRect.height;
|
|
|
|
RalewaySemiBold {
|
|
id: balanceAfterPurchaseTextLabel;
|
|
text: "Balance After Purchase:";
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.left: parent.left;
|
|
width: paintedWidth;
|
|
height: paintedHeight;
|
|
// Text size
|
|
size: 20;
|
|
// Style
|
|
color: hifi.colors.lightGrayText;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignLeft;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
RalewayRegular {
|
|
id: balanceAfterPurchaseText;
|
|
text: balanceAfterPurchase.toFixed(2) + " HFC";
|
|
// Text size
|
|
size: balanceAfterPurchaseTextLabel.size;
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.left: balanceAfterPurchaseTextLabel.right;
|
|
anchors.leftMargin: 16;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 16;
|
|
height: paintedHeight;
|
|
// Style
|
|
color: (balanceAfterPurchase >= 0) ? hifi.colors.lightGrayText : hifi.colors.redHighlight;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignRight;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
}
|
|
}
|
|
//
|
|
// ITEM DESCRIPTION END
|
|
//
|
|
|
|
|
|
//
|
|
// ACTION BUTTONS AND TEXT START
|
|
//
|
|
Item {
|
|
id: checkoutActionButtonsContainer;
|
|
// Size
|
|
width: root.width;
|
|
height: 200;
|
|
// Anchors
|
|
anchors.left: parent.left;
|
|
anchors.bottom: parent.bottom;
|
|
anchors.bottomMargin: 8;
|
|
|
|
// "Cancel" button
|
|
HifiControlsUit.Button {
|
|
id: cancelPurchaseButton;
|
|
color: hifi.buttons.black;
|
|
colorScheme: hifi.colorSchemes.dark;
|
|
anchors.top: parent.top;
|
|
anchors.topMargin: 3;
|
|
height: 40;
|
|
anchors.left: parent.left;
|
|
anchors.leftMargin: 20;
|
|
width: parent.width/2 - anchors.leftMargin*2;
|
|
text: "Cancel"
|
|
onClicked: {
|
|
sendToScript({method: 'checkout_cancelClicked', params: itemId});
|
|
}
|
|
}
|
|
|
|
// "Buy" button
|
|
HifiControlsUit.Button {
|
|
id: buyButton;
|
|
enabled: (balanceAfterPurchase >= 0 && purchasesReceived && balanceReceived) || !itemIsJson;
|
|
color: hifi.buttons.blue;
|
|
colorScheme: hifi.colorSchemes.dark;
|
|
anchors.top: parent.top;
|
|
anchors.topMargin: 3;
|
|
height: 40;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 20;
|
|
width: parent.width/2 - anchors.rightMargin*2;
|
|
text: (itemIsJson ? ((purchasesReceived && balanceReceived) ? (root.alreadyOwned ? "Buy Another" : "Buy"): "--") : "Get Item");
|
|
onClicked: {
|
|
if (itemIsJson) {
|
|
buyButton.enabled = false;
|
|
commerce.buy(itemId, itemPriceFull);
|
|
} else {
|
|
if (urlHandler.canHandleUrl(itemHref)) {
|
|
urlHandler.handleUrl(itemHref);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// "Purchases" button
|
|
HifiControlsUit.Button {
|
|
id: goToPurchasesButton;
|
|
color: hifi.buttons.black;
|
|
colorScheme: hifi.colorSchemes.dark;
|
|
anchors.top: buyButton.bottom;
|
|
anchors.topMargin: 20;
|
|
anchors.bottomMargin: 7;
|
|
height: 40;
|
|
anchors.left: parent.left;
|
|
anchors.leftMargin: 20;
|
|
width: parent.width - anchors.leftMargin*2;
|
|
text: "View Purchases"
|
|
onClicked: {
|
|
sendToScript({method: 'checkout_goToPurchases'});
|
|
}
|
|
}
|
|
|
|
RalewayRegular {
|
|
id: buyText;
|
|
// Text size
|
|
size: 20;
|
|
// Anchors
|
|
anchors.bottom: parent.bottom;
|
|
anchors.bottomMargin: 10;
|
|
height: paintedHeight;
|
|
anchors.left: parent.left;
|
|
anchors.leftMargin: 10;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 10;
|
|
// Style
|
|
color: hifi.colors.faintGray;
|
|
wrapMode: Text.WordWrap;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignHCenter;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
}
|
|
//
|
|
// ACTION BUTTONS END
|
|
//
|
|
}
|
|
//
|
|
// CHECKOUT CONTENTS END
|
|
//
|
|
|
|
//
|
|
// CHECKOUT SUCCESS START
|
|
//
|
|
Item {
|
|
id: checkoutSuccess;
|
|
visible: root.activeView === "checkoutSuccess";
|
|
anchors.top: titleBarContainer.bottom;
|
|
anchors.bottom: root.bottom;
|
|
anchors.left: parent.left;
|
|
anchors.right: parent.right;
|
|
|
|
RalewayRegular {
|
|
id: completeText;
|
|
text: "<b>Purchase Complete!</b><br><br>You bought <b>" + (itemNameText.text) + "</b> by <b>" + (itemAuthorText.text) + "</b>";
|
|
// Text size
|
|
size: 24;
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.topMargin: 40;
|
|
height: paintedHeight;
|
|
anchors.left: parent.left;
|
|
anchors.right: parent.right;
|
|
// Style
|
|
color: hifi.colors.faintGray;
|
|
wrapMode: Text.WordWrap;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignHCenter;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
|
|
Item {
|
|
id: checkoutSuccessActionButtonsContainer;
|
|
// Size
|
|
width: root.width;
|
|
height: 70;
|
|
// Anchors
|
|
anchors.top: completeText.bottom;
|
|
anchors.topMargin: 30;
|
|
anchors.left: parent.left;
|
|
anchors.right: parent.right;
|
|
|
|
// "Purchases" button
|
|
HifiControlsUit.Button {
|
|
id: purchasesButton;
|
|
color: hifi.buttons.black;
|
|
colorScheme: hifi.colorSchemes.dark;
|
|
anchors.top: parent.top;
|
|
anchors.topMargin: 3;
|
|
anchors.bottom: parent.bottom;
|
|
anchors.bottomMargin: 3;
|
|
anchors.left: parent.left;
|
|
anchors.leftMargin: 20;
|
|
width: parent.width/2 - anchors.leftMargin*2;
|
|
text: "View Purchases";
|
|
onClicked: {
|
|
sendToScript({method: 'checkout_goToPurchases'});
|
|
}
|
|
}
|
|
|
|
// "Rez Now!" button
|
|
HifiControlsUit.Button {
|
|
id: rezNowButton;
|
|
color: hifi.buttons.blue;
|
|
colorScheme: hifi.colorSchemes.dark;
|
|
anchors.top: parent.top;
|
|
anchors.topMargin: 3;
|
|
anchors.bottom: parent.bottom;
|
|
anchors.bottomMargin: 3;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 20;
|
|
width: parent.width/2 - anchors.rightMargin*2;
|
|
text: "Rez Now!"
|
|
onClicked: {
|
|
if (urlHandler.canHandleUrl(itemHref)) {
|
|
urlHandler.handleUrl(itemHref);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Item {
|
|
id: continueShoppingButtonContainer;
|
|
// Size
|
|
width: root.width;
|
|
height: 70;
|
|
// Anchors
|
|
anchors.left: parent.left;
|
|
anchors.bottom: parent.bottom;
|
|
anchors.bottomMargin: 8;
|
|
// "Continue Shopping" button
|
|
HifiControlsUit.Button {
|
|
id: continueShoppingButton;
|
|
color: hifi.buttons.black;
|
|
colorScheme: hifi.colorSchemes.dark;
|
|
anchors.top: parent.top;
|
|
anchors.topMargin: 3;
|
|
anchors.bottom: parent.bottom;
|
|
anchors.bottomMargin: 3;
|
|
anchors.left: parent.left;
|
|
anchors.leftMargin: 20;
|
|
width: parent.width/2 - anchors.rightMargin*2;
|
|
text: "Continue Shopping";
|
|
onClicked: {
|
|
sendToScript({method: 'checkout_continueShopping', itemId: itemId});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//
|
|
// CHECKOUT SUCCESS END
|
|
//
|
|
|
|
//
|
|
// CHECKOUT FAILURE START
|
|
//
|
|
Item {
|
|
id: checkoutFailure;
|
|
visible: root.activeView === "checkoutFailure";
|
|
anchors.top: titleBarContainer.bottom;
|
|
anchors.bottom: root.bottom;
|
|
anchors.left: parent.left;
|
|
anchors.right: parent.right;
|
|
|
|
RalewayRegular {
|
|
id: failureHeaderText;
|
|
text: "<b>Purchase Failed.</b><br>Your Purchases and HFC balance haven't changed.";
|
|
// Text size
|
|
size: 24;
|
|
// Anchors
|
|
anchors.top: parent.top;
|
|
anchors.topMargin: 80;
|
|
height: paintedHeight;
|
|
anchors.left: parent.left;
|
|
anchors.right: parent.right;
|
|
// Style
|
|
color: hifi.colors.faintGray;
|
|
wrapMode: Text.WordWrap;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignHCenter;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
|
|
RalewayRegular {
|
|
id: failureErrorText;
|
|
// Text size
|
|
size: 16;
|
|
// Anchors
|
|
anchors.top: failureHeaderText.bottom;
|
|
anchors.topMargin: 35;
|
|
height: paintedHeight;
|
|
anchors.left: parent.left;
|
|
anchors.right: parent.right;
|
|
// Style
|
|
color: hifi.colors.faintGray;
|
|
wrapMode: Text.WordWrap;
|
|
// Alignment
|
|
horizontalAlignment: Text.AlignHCenter;
|
|
verticalAlignment: Text.AlignVCenter;
|
|
}
|
|
|
|
Item {
|
|
id: backToMarketplaceButtonContainer;
|
|
// Size
|
|
width: root.width;
|
|
height: 130;
|
|
// Anchors
|
|
anchors.left: parent.left;
|
|
anchors.bottom: parent.bottom;
|
|
anchors.bottomMargin: 8;
|
|
// "Back to Marketplace" button
|
|
HifiControlsUit.Button {
|
|
id: backToMarketplaceButton;
|
|
color: hifi.buttons.black;
|
|
colorScheme: hifi.colorSchemes.dark;
|
|
anchors.top: parent.top;
|
|
anchors.topMargin: 3;
|
|
anchors.bottom: parent.bottom;
|
|
anchors.bottomMargin: 3;
|
|
anchors.right: parent.right;
|
|
anchors.rightMargin: 20;
|
|
width: parent.width/2 - anchors.rightMargin*2;
|
|
text: "Back to Marketplace";
|
|
onClicked: {
|
|
sendToScript({method: 'checkout_continueShopping', itemId: itemId});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//
|
|
// CHECKOUT FAILURE END
|
|
//
|
|
|
|
//
|
|
// FUNCTION DEFINITIONS START
|
|
//
|
|
//
|
|
// Function Name: fromScript()
|
|
//
|
|
// Relevant Variables:
|
|
// None
|
|
//
|
|
// Arguments:
|
|
// message: The message sent from the JavaScript, in this case the Marketplaces JavaScript.
|
|
// Messages are in format "{method, params}", like json-rpc.
|
|
//
|
|
// Description:
|
|
// Called when a message is received from a script.
|
|
//
|
|
function fromScript(message) {
|
|
switch (message.method) {
|
|
case 'updateCheckoutQML':
|
|
itemId = message.params.itemId;
|
|
itemNameText.text = message.params.itemName;
|
|
itemAuthorText.text = message.params.itemAuthor;
|
|
root.itemPriceFull = message.params.itemPrice;
|
|
itemPriceText.text = root.itemPriceFull === 0 ? "Free" : "<b>" + (parseFloat(root.itemPriceFull/100).toFixed(2)) + " HFC</b>";
|
|
itemHref = message.params.itemHref;
|
|
if (itemHref.indexOf('.json') === -1) {
|
|
root.itemIsJson = false;
|
|
}
|
|
setBuyText();
|
|
break;
|
|
default:
|
|
console.log('Unrecognized message from marketplaces.js:', JSON.stringify(message));
|
|
}
|
|
}
|
|
signal sendToScript(var message);
|
|
|
|
function purchasesContains(purchasesJson, id) {
|
|
for (var idx = 0; idx < purchasesJson.length; idx++) {
|
|
if(purchasesJson[idx].id === id) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
function setBuyText() {
|
|
if (root.itemIsJson) {
|
|
if (root.purchasesReceived && root.balanceReceived) {
|
|
if (root.balanceAfterPurchase < 0) {
|
|
if (root.alreadyOwned) {
|
|
buyText.text = "You do not have enough HFC to purchase this item again. Go to your Purchases to view the copy you own.";
|
|
} else {
|
|
buyText.text = "You do not have enough HFC to purchase this item.";
|
|
}
|
|
} else {
|
|
if (root.alreadyOwned) {
|
|
buyText.text = "<b>You already own this item.</b> If you buy it again, you'll be able to use multiple copies of it at once.";
|
|
} else {
|
|
buyText.text = "This item will be added to your <b>Purchases</b>, which can be accessed from <b>Marketplace</b>.";
|
|
}
|
|
}
|
|
} else {
|
|
buyText.text = "";
|
|
}
|
|
} else {
|
|
buyText.text = "This Marketplace item isn't an entity. It <b>will not</b> be added to your <b>Purchases</b>.";
|
|
}
|
|
}
|
|
|
|
//
|
|
// FUNCTION DEFINITIONS END
|
|
//
|
|
}
|