2021-07-05 06:04:05 +02:00
|
|
|
// restore flow
|
2021-07-03 19:19:23 +02:00
|
|
|
/* eslint-disable no-undef */
|
|
|
|
/* eslint-disable react/prop-types */
|
|
|
|
import React from 'react';
|
|
|
|
import Page from 'component/page';
|
|
|
|
import Card from 'component/common/card';
|
|
|
|
import { Lbryio } from 'lbryinc';
|
|
|
|
import { STRIPE_PUBLIC_KEY } from 'config';
|
|
|
|
import moment from 'moment';
|
2021-07-06 22:28:29 +02:00
|
|
|
import Plastic from 'react-plastic';
|
|
|
|
import Button from 'component/button';
|
|
|
|
import * as ICONS from 'constants/icons';
|
|
|
|
import * as MODALS from 'constants/modal_types';
|
2021-07-03 19:19:23 +02:00
|
|
|
|
|
|
|
let stripeEnvironment = 'test';
|
|
|
|
// if the key contains pk_live it's a live key
|
|
|
|
// update the environment for the calls to the backend to indicate which environment to hit
|
|
|
|
if (STRIPE_PUBLIC_KEY.indexOf('pk_live') > -1) {
|
|
|
|
stripeEnvironment = 'live';
|
|
|
|
}
|
|
|
|
|
2021-07-06 22:28:29 +02:00
|
|
|
// eslint-disable-next-line flowtype/no-types-missing-file-annotation
|
|
|
|
type Props = {
|
|
|
|
disabled: boolean,
|
|
|
|
label: ?string,
|
|
|
|
email: ?string,
|
|
|
|
scriptFailedToLoad: boolean,
|
|
|
|
doOpenModal: (string, {}) => void,
|
|
|
|
openModal: (string, {}) => void,
|
|
|
|
setAsConfirmingCard: () => void,
|
|
|
|
};
|
2021-07-19 23:29:01 +02:00
|
|
|
|
2021-07-05 06:04:05 +02:00
|
|
|
// type State = {
|
|
|
|
// open: boolean,
|
|
|
|
// currentFlowStage: string,
|
|
|
|
// customerTransactions: Array<any>,
|
|
|
|
// pageTitle: string,
|
|
|
|
// userCardDetails: any, // fill this out
|
|
|
|
// scriptFailedToLoad: boolean,
|
|
|
|
// };
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-06 03:29:46 +02:00
|
|
|
class SettingsStripeCard extends React.Component<Props, State> {
|
2021-07-05 06:04:05 +02:00
|
|
|
constructor(props) {
|
|
|
|
// :Props
|
2021-07-03 19:19:23 +02:00
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
open: false,
|
|
|
|
scriptFailedToLoad: false,
|
|
|
|
currentFlowStage: 'loading', // loading, confirmingCard, cardConfirmed
|
|
|
|
customerTransactions: [],
|
|
|
|
pageTitle: 'Add Card',
|
|
|
|
userCardDetails: {},
|
2021-07-06 22:28:29 +02:00
|
|
|
paymentMethodId: '',
|
2021-07-03 19:19:23 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2021-07-17 18:08:53 +02:00
|
|
|
let that = this;
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-06 22:28:29 +02:00
|
|
|
console.log(this.props);
|
|
|
|
|
2021-07-17 18:08:53 +02:00
|
|
|
let doToast = this.props.doToast;
|
2021-07-06 22:28:29 +02:00
|
|
|
|
2021-07-03 19:19:23 +02:00
|
|
|
const script = document.createElement('script');
|
|
|
|
script.src = 'https://js.stripe.com/v3/';
|
|
|
|
script.async = true;
|
|
|
|
|
|
|
|
// $FlowFixMe
|
|
|
|
document.body.appendChild(script);
|
|
|
|
|
|
|
|
// public key of the stripe account
|
2021-07-17 18:08:53 +02:00
|
|
|
let publicKey = STRIPE_PUBLIC_KEY;
|
2021-07-03 19:19:23 +02:00
|
|
|
|
|
|
|
// client secret of the SetupIntent (don't share with anyone but customer)
|
2021-07-17 18:08:53 +02:00
|
|
|
let clientSecret = '';
|
2021-07-03 19:19:23 +02:00
|
|
|
|
|
|
|
// setting a timeout to let the client secret populate
|
|
|
|
// TODO: fix this, should be a cleaner way
|
2021-07-17 18:08:53 +02:00
|
|
|
setTimeout(function () {
|
2021-07-03 19:19:23 +02:00
|
|
|
// check if customer has card setup already
|
2021-07-05 06:04:05 +02:00
|
|
|
Lbryio.call(
|
|
|
|
'customer',
|
|
|
|
'status',
|
|
|
|
{
|
|
|
|
environment: stripeEnvironment,
|
|
|
|
},
|
|
|
|
'post'
|
|
|
|
)
|
|
|
|
.then((customerStatusResponse) => {
|
|
|
|
// user has a card saved if their defaultPaymentMethod has an id
|
|
|
|
const defaultPaymentMethod = customerStatusResponse.Customer.invoice_settings.default_payment_method;
|
2021-07-17 18:08:53 +02:00
|
|
|
let userHasAlreadySetupPayment = Boolean(defaultPaymentMethod && defaultPaymentMethod.id);
|
2021-07-05 06:04:05 +02:00
|
|
|
|
|
|
|
// show different frontend if user already has card
|
|
|
|
if (userHasAlreadySetupPayment) {
|
2021-07-17 18:08:53 +02:00
|
|
|
let card = customerStatusResponse.PaymentMethods[0].card;
|
2021-07-05 06:04:05 +02:00
|
|
|
|
2021-07-17 18:08:53 +02:00
|
|
|
let customer = customerStatusResponse.Customer;
|
2021-07-06 22:28:29 +02:00
|
|
|
|
2021-07-17 18:08:53 +02:00
|
|
|
let topOfDisplay = customer.email.split('@')[0];
|
|
|
|
let bottomOfDisplay = '@' + customer.email.split('@')[1];
|
2021-07-06 22:28:29 +02:00
|
|
|
|
|
|
|
console.log(customerStatusResponse.Customer);
|
|
|
|
|
2021-07-17 18:08:53 +02:00
|
|
|
let cardDetails = {
|
2021-07-05 06:04:05 +02:00
|
|
|
brand: card.brand,
|
|
|
|
expiryYear: card.exp_year,
|
|
|
|
expiryMonth: card.exp_month,
|
|
|
|
lastFour: card.last4,
|
2021-07-06 22:28:29 +02:00
|
|
|
topOfDisplay: topOfDisplay,
|
|
|
|
bottomOfDisplay: bottomOfDisplay,
|
2021-07-05 06:04:05 +02:00
|
|
|
};
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-05 06:04:05 +02:00
|
|
|
that.setState({
|
|
|
|
currentFlowStage: 'cardConfirmed',
|
|
|
|
pageTitle: 'Tip History',
|
|
|
|
userCardDetails: cardDetails,
|
2021-07-06 22:28:29 +02:00
|
|
|
paymentMethodId: customerStatusResponse.PaymentMethods[0].id,
|
2021-07-05 06:04:05 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// otherwise, prompt them to save a card
|
|
|
|
} else {
|
2021-07-03 19:19:23 +02:00
|
|
|
that.setState({
|
2021-07-05 06:04:05 +02:00
|
|
|
currentFlowStage: 'confirmingCard',
|
2021-07-05 04:28:14 +02:00
|
|
|
});
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-05 06:04:05 +02:00
|
|
|
// get a payment method secret for frontend
|
|
|
|
Lbryio.call(
|
|
|
|
'customer',
|
|
|
|
'setup',
|
|
|
|
{
|
|
|
|
environment: stripeEnvironment,
|
|
|
|
},
|
|
|
|
'post'
|
|
|
|
).then((customerSetupResponse) => {
|
|
|
|
console.log(customerSetupResponse);
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-05 06:04:05 +02:00
|
|
|
clientSecret = customerSetupResponse.client_secret;
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-05 06:04:05 +02:00
|
|
|
// instantiate stripe elements
|
|
|
|
setupStripe();
|
|
|
|
});
|
|
|
|
}
|
2021-07-06 22:28:29 +02:00
|
|
|
|
|
|
|
// get customer transactions
|
|
|
|
Lbryio.call(
|
|
|
|
'customer',
|
|
|
|
'list',
|
|
|
|
{
|
|
|
|
environment: stripeEnvironment,
|
|
|
|
},
|
|
|
|
'post'
|
|
|
|
).then((customerTransactionsResponse) => {
|
|
|
|
that.setState({
|
|
|
|
customerTransactions: customerTransactionsResponse,
|
|
|
|
});
|
|
|
|
|
|
|
|
console.log(customerTransactionsResponse);
|
|
|
|
});
|
2021-07-05 06:04:05 +02:00
|
|
|
// if the status call fails, either an actual error or need to run setup first
|
|
|
|
})
|
2021-07-17 18:08:53 +02:00
|
|
|
.catch(function (error) {
|
2021-07-05 06:04:05 +02:00
|
|
|
console.log(error);
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-05 06:04:05 +02:00
|
|
|
// errorString passed from the API (with a 403 error)
|
|
|
|
const errorString = 'user as customer is not setup yet';
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-05 06:04:05 +02:00
|
|
|
// if it's beamer's error indicating the account is not linked yet
|
2021-07-06 22:28:29 +02:00
|
|
|
if (error.message && error.message.indexOf(errorString) > -1) {
|
2021-07-05 06:04:05 +02:00
|
|
|
// send them to save a card
|
|
|
|
that.setState({
|
|
|
|
currentFlowStage: 'confirmingCard',
|
|
|
|
});
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-05 06:04:05 +02:00
|
|
|
// get a payment method secret for frontend
|
|
|
|
Lbryio.call(
|
|
|
|
'customer',
|
|
|
|
'setup',
|
|
|
|
{
|
|
|
|
environment: stripeEnvironment,
|
|
|
|
},
|
|
|
|
'post'
|
|
|
|
).then((customerSetupResponse) => {
|
|
|
|
console.log(customerSetupResponse);
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-05 06:04:05 +02:00
|
|
|
clientSecret = customerSetupResponse.client_secret;
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-05 06:04:05 +02:00
|
|
|
// instantiate stripe elements
|
|
|
|
setupStripe();
|
|
|
|
});
|
2021-07-06 22:28:29 +02:00
|
|
|
} else if (error === 'internal_apis_down') {
|
2021-07-17 18:08:53 +02:00
|
|
|
var displayString = 'There was an error from the server, please let support know';
|
2021-07-06 22:28:29 +02:00
|
|
|
doToast({ message: displayString, isError: true });
|
2021-07-05 06:04:05 +02:00
|
|
|
} else {
|
|
|
|
console.log('Unseen before error');
|
|
|
|
}
|
|
|
|
});
|
2021-07-03 19:19:23 +02:00
|
|
|
}, 250);
|
|
|
|
|
|
|
|
function setupStripe() {
|
|
|
|
// TODO: have to fix this, using so that the script is available
|
2021-07-17 18:08:53 +02:00
|
|
|
setTimeout(function () {
|
|
|
|
var stripeElements = function (publicKey, setupIntent) {
|
2021-07-03 19:19:23 +02:00
|
|
|
var stripe = Stripe(publicKey);
|
|
|
|
var elements = stripe.elements();
|
|
|
|
|
|
|
|
// Element styles
|
|
|
|
var style = {
|
|
|
|
base: {
|
|
|
|
fontSize: '16px',
|
|
|
|
color: '#32325d',
|
2021-07-05 06:04:05 +02:00
|
|
|
fontFamily: '-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif',
|
2021-07-03 19:19:23 +02:00
|
|
|
fontSmoothing: 'antialiased',
|
|
|
|
'::placeholder': {
|
|
|
|
color: 'rgba(0,0,0,0.4)',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
var card = elements.create('card', { style: style });
|
|
|
|
|
|
|
|
card.mount('#card-element');
|
|
|
|
|
|
|
|
// Element focus ring
|
2021-07-17 18:08:53 +02:00
|
|
|
card.on('focus', function () {
|
2021-07-03 19:19:23 +02:00
|
|
|
var el = document.getElementById('card-element');
|
|
|
|
el.classList.add('focused');
|
|
|
|
});
|
|
|
|
|
2021-07-17 18:08:53 +02:00
|
|
|
card.on('blur', function () {
|
2021-07-03 19:19:23 +02:00
|
|
|
var el = document.getElementById('card-element');
|
|
|
|
el.classList.remove('focused');
|
|
|
|
});
|
|
|
|
|
2021-07-17 18:08:53 +02:00
|
|
|
card.on('ready', function () {
|
2021-07-03 19:19:23 +02:00
|
|
|
card.focus();
|
|
|
|
});
|
|
|
|
|
|
|
|
var email = that.props.email;
|
|
|
|
|
|
|
|
function submitForm(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
// if client secret wasn't loaded properly
|
|
|
|
if (!clientSecret) {
|
|
|
|
var displayErrorText = 'There was an error in generating your payment method. Please contact a developer';
|
|
|
|
var displayError = document.getElementById('card-errors');
|
|
|
|
displayError.textContent = displayErrorText;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
changeLoadingState(true);
|
|
|
|
|
2021-07-05 06:04:05 +02:00
|
|
|
stripe
|
|
|
|
.confirmCardSetup(clientSecret, {
|
|
|
|
payment_method: {
|
|
|
|
card: card,
|
|
|
|
billing_details: { email: email },
|
|
|
|
},
|
|
|
|
})
|
2021-07-17 18:08:53 +02:00
|
|
|
.then(function (result) {
|
2021-07-05 06:04:05 +02:00
|
|
|
if (result.error) {
|
|
|
|
console.log(result);
|
|
|
|
|
|
|
|
changeLoadingState(false);
|
|
|
|
var displayError = document.getElementById('card-errors');
|
|
|
|
displayError.textContent = result.error.message;
|
|
|
|
} else {
|
|
|
|
// The PaymentMethod was successfully set up
|
|
|
|
// hide and show the proper divs
|
|
|
|
orderComplete(stripe, clientSecret);
|
|
|
|
}
|
|
|
|
});
|
2021-07-03 19:19:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Handle payment submission when user clicks the pay button.
|
|
|
|
var button = document.getElementById('submit');
|
2021-07-17 18:08:53 +02:00
|
|
|
button.addEventListener('click', function (event) {
|
2021-07-03 19:19:23 +02:00
|
|
|
submitForm(event);
|
|
|
|
});
|
|
|
|
|
|
|
|
// currently doesn't work because the iframe javascript context is different
|
|
|
|
// would be nice though if it's even technically possible
|
|
|
|
// window.addEventListener('keyup', function(event) {
|
|
|
|
// if (event.keyCode === 13) {
|
|
|
|
// submitForm(event);
|
|
|
|
// }
|
|
|
|
// }, false);
|
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: possible bug here where clientSecret isn't done
|
|
|
|
stripeElements(publicKey, clientSecret);
|
|
|
|
|
|
|
|
// Show a spinner on payment submission
|
2021-07-17 18:08:53 +02:00
|
|
|
var changeLoadingState = function (isLoading) {
|
2021-07-03 19:19:23 +02:00
|
|
|
if (isLoading) {
|
2021-07-05 06:04:05 +02:00
|
|
|
// $FlowFixMe
|
2021-07-03 19:19:23 +02:00
|
|
|
document.querySelector('button').disabled = true;
|
2021-07-05 06:04:05 +02:00
|
|
|
// $FlowFixMe
|
2021-07-05 21:04:07 +02:00
|
|
|
document.querySelector('#stripe-spinner').classList.remove('hidden');
|
2021-07-05 06:04:05 +02:00
|
|
|
// $FlowFixMe
|
2021-07-03 19:19:23 +02:00
|
|
|
document.querySelector('#button-text').classList.add('hidden');
|
|
|
|
} else {
|
2021-07-05 06:04:05 +02:00
|
|
|
// $FlowFixMe
|
2021-07-03 19:19:23 +02:00
|
|
|
document.querySelector('button').disabled = false;
|
2021-07-05 06:04:05 +02:00
|
|
|
// $FlowFixMe
|
2021-07-05 21:04:07 +02:00
|
|
|
document.querySelector('#stripe-spinner').classList.add('hidden');
|
2021-07-05 06:04:05 +02:00
|
|
|
// $FlowFixMe
|
2021-07-03 19:19:23 +02:00
|
|
|
document.querySelector('#button-text').classList.remove('hidden');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// shows a success / error message when the payment is complete
|
2021-07-17 18:08:53 +02:00
|
|
|
var orderComplete = function (stripe, clientSecret) {
|
|
|
|
stripe.retrieveSetupIntent(clientSecret).then(function (result) {
|
2021-07-05 06:04:05 +02:00
|
|
|
Lbryio.call(
|
|
|
|
'customer',
|
|
|
|
'status',
|
|
|
|
{
|
|
|
|
environment: stripeEnvironment,
|
|
|
|
},
|
|
|
|
'post'
|
|
|
|
).then((customerStatusResponse) => {
|
2021-07-17 18:08:53 +02:00
|
|
|
let card = customerStatusResponse.PaymentMethods[0].card;
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-17 18:08:53 +02:00
|
|
|
let customer = customerStatusResponse.Customer;
|
2021-07-06 22:28:29 +02:00
|
|
|
|
2021-07-17 18:08:53 +02:00
|
|
|
let topOfDisplay = customer.email.split('@')[0];
|
|
|
|
let bottomOfDisplay = '@' + customer.email.split('@')[1];
|
2021-07-06 22:28:29 +02:00
|
|
|
|
2021-07-17 18:08:53 +02:00
|
|
|
let cardDetails = {
|
2021-07-03 19:19:23 +02:00
|
|
|
brand: card.brand,
|
|
|
|
expiryYear: card.exp_year,
|
|
|
|
expiryMonth: card.exp_month,
|
|
|
|
lastFour: card.last4,
|
2021-07-06 22:28:29 +02:00
|
|
|
topOfDisplay,
|
|
|
|
bottomOfDisplay,
|
2021-07-03 19:19:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
that.setState({
|
|
|
|
currentFlowStage: 'cardConfirmed',
|
|
|
|
pageTitle: 'Tip History',
|
|
|
|
userCardDetails: cardDetails,
|
2021-07-06 22:28:29 +02:00
|
|
|
paymentMethodId: customerStatusResponse.PaymentMethods[0].id,
|
2021-07-03 19:19:23 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
console.log(result);
|
|
|
|
|
|
|
|
changeLoadingState(false);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-06 22:28:29 +02:00
|
|
|
render() {
|
2021-07-17 18:08:53 +02:00
|
|
|
let that = this;
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-17 18:08:53 +02:00
|
|
|
function setAsConfirmingCard() {
|
2021-07-06 22:28:29 +02:00
|
|
|
that.setState({
|
|
|
|
currentFlowStage: 'confirmingCard',
|
2021-07-17 18:08:53 +02:00
|
|
|
});
|
2021-07-06 22:28:29 +02:00
|
|
|
}
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-17 18:08:53 +02:00
|
|
|
const { scriptFailedToLoad, openModal } = this.props;
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-06 22:28:29 +02:00
|
|
|
const { currentFlowStage, customerTransactions, pageTitle, userCardDetails, paymentMethodId } = this.state;
|
2021-07-03 19:19:23 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Page backout={{ title: pageTitle, backLabel: __('Done') }} noFooter noSideNavigation>
|
|
|
|
<div>
|
|
|
|
{scriptFailedToLoad && (
|
|
|
|
<div className="error__text">There was an error connecting to Stripe. Please try again later.</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
|
2021-07-05 06:04:05 +02:00
|
|
|
{currentFlowStage === 'loading' && (
|
|
|
|
<div className="headerCard toConfirmCard">
|
|
|
|
<Card title={__('Connect your card with Odysee')} subtitle={__('Getting your card connection status...')} />
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
|
2021-07-06 22:28:29 +02:00
|
|
|
{/* customer has not added a card yet */}
|
2021-07-05 06:04:05 +02:00
|
|
|
{currentFlowStage === 'confirmingCard' && (
|
|
|
|
<div className="sr-root">
|
|
|
|
<div className="sr-main">
|
|
|
|
<div className="sr-payment-form card cardInput">
|
|
|
|
<div className="sr-form-row">
|
|
|
|
<label className="payment-details">Card Details</label>
|
|
|
|
<div className="sr-input sr-element sr-card-element" id="card-element" />
|
|
|
|
</div>
|
|
|
|
<div className="sr-field-error" id="card-errors" role="alert" />
|
|
|
|
<button className="linkButton" id="submit">
|
2021-07-05 21:04:07 +02:00
|
|
|
<div className="stripe__spinner hidden" id="stripe-spinner" />
|
2021-07-05 06:04:05 +02:00
|
|
|
<span id="button-text">Add Card</span>
|
|
|
|
</button>
|
2021-07-03 19:19:23 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-05 06:04:05 +02:00
|
|
|
)}
|
|
|
|
|
2021-07-06 22:28:29 +02:00
|
|
|
{/* if the user has already confirmed their card */}
|
2021-07-05 06:04:05 +02:00
|
|
|
{currentFlowStage === 'cardConfirmed' && (
|
|
|
|
<div className="successCard">
|
|
|
|
<Card
|
|
|
|
title={__('Card Details')}
|
|
|
|
body={
|
|
|
|
<>
|
2021-07-06 22:28:29 +02:00
|
|
|
<Plastic
|
|
|
|
type={userCardDetails.brand}
|
|
|
|
name={userCardDetails.topOfDisplay + ' ' + userCardDetails.bottomOfDisplay}
|
|
|
|
expiry={userCardDetails.expiryMonth + '/' + userCardDetails.expiryYear}
|
|
|
|
number={'____________' + userCardDetails.lastFour}
|
|
|
|
/>
|
|
|
|
<br />
|
|
|
|
<Button
|
|
|
|
button="secondary"
|
|
|
|
label={__('Remove Card')}
|
|
|
|
icon={ICONS.DELETE}
|
|
|
|
onClick={(e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
openModal(MODALS.CONFIRM_REMOVE_CARD, {
|
|
|
|
paymentMethodId: paymentMethodId,
|
|
|
|
setAsConfirmingCard: setAsConfirmingCard,
|
|
|
|
});
|
|
|
|
}}
|
2021-07-17 18:08:53 +02:00
|
|
|
/>
|
2021-07-05 06:04:05 +02:00
|
|
|
</>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
<br />
|
|
|
|
|
2021-07-06 22:28:29 +02:00
|
|
|
{/* if a user has no transactions yet */}
|
2021-07-05 06:04:05 +02:00
|
|
|
{(!customerTransactions || customerTransactions.length === 0) && (
|
|
|
|
<Card
|
|
|
|
title={__('Tip History')}
|
|
|
|
subtitle={__('You have not sent any tips yet. When you do they will appear here. ')}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
)}
|
2021-07-06 22:28:29 +02:00
|
|
|
|
|
|
|
{/* customer already has transactions */}
|
|
|
|
{customerTransactions && customerTransactions.length > 0 && (
|
|
|
|
<Card
|
|
|
|
title={__('Tip History')}
|
|
|
|
body={
|
|
|
|
<>
|
|
|
|
<div className="table__wrapper">
|
|
|
|
<table className="table table--transactions">
|
|
|
|
<thead>
|
2021-07-17 18:08:53 +02:00
|
|
|
<tr>
|
|
|
|
<th className="date-header">{__('Date')}</th>
|
|
|
|
<th>{<>{__('Receiving Channel Name')}</>}</th>
|
|
|
|
<th>{__('Tip Location')}</th>
|
|
|
|
<th>{__('Amount (USD)')} </th>
|
|
|
|
<th>{__('Anonymous')}</th>
|
|
|
|
</tr>
|
2021-07-06 22:28:29 +02:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2021-07-17 18:08:53 +02:00
|
|
|
{customerTransactions &&
|
|
|
|
customerTransactions.reverse().map((transaction) => (
|
|
|
|
<tr key={transaction.name + transaction.created_at}>
|
|
|
|
<td>{moment(transaction.created_at).format('LLL')}</td>
|
|
|
|
<td>
|
|
|
|
<Button
|
|
|
|
className="stripe__card-link-text"
|
|
|
|
navigate={'/' + transaction.channel_name + ':' + transaction.channel_claim_id}
|
|
|
|
label={transaction.channel_name}
|
|
|
|
button="link"
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button
|
|
|
|
className="stripe__card-link-text"
|
|
|
|
navigate={'/' + transaction.channel_name + ':' + transaction.source_claim_id}
|
|
|
|
label={
|
|
|
|
transaction.channel_claim_id === transaction.source_claim_id
|
|
|
|
? 'Channel Page'
|
|
|
|
: 'File Page'
|
|
|
|
}
|
|
|
|
button="link"
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
<td>${transaction.tipped_amount / 100}</td>
|
|
|
|
<td>{transaction.private_tip ? 'Yes' : 'No'}</td>
|
|
|
|
</tr>
|
|
|
|
))}
|
2021-07-06 22:28:29 +02:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
)}
|
2021-07-03 19:19:23 +02:00
|
|
|
</Page>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-06 03:29:46 +02:00
|
|
|
export default SettingsStripeCard;
|
2021-07-03 19:19:23 +02:00
|
|
|
/* eslint-enable no-undef */
|
|
|
|
/* eslint-enable react/prop-types */
|