tf-checkout-react 1.0.52 → 1.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/billing-info-container/index.d.ts +3 -1
- package/dist/components/paymentContainer/index.d.ts +3 -1
- package/dist/tf-checkout-react.cjs.development.css +1 -1
- package/dist/tf-checkout-react.cjs.development.js +118 -71
- package/dist/tf-checkout-react.cjs.development.js.map +1 -1
- package/dist/tf-checkout-react.cjs.production.min.js +1 -1
- package/dist/tf-checkout-react.cjs.production.min.js.map +1 -1
- package/dist/tf-checkout-react.esm.js +119 -72
- package/dist/tf-checkout-react.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/billing-info-container/index.tsx +74 -87
- package/src/components/billing-info-container/utils.ts +8 -0
- package/src/components/confirmationContainer/index.tsx +1 -1
- package/src/components/paymentContainer/index.tsx +5 -0
- package/src/components/stripePayment/index.tsx +41 -9
- package/src/components/waitingList/index.tsx +2 -1
- package/src/components/waitingList/style.css +6 -0
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
|
@@ -24,8 +24,10 @@ export interface IBillingInfoPage {
|
|
|
24
24
|
onAuthorizeSuccess?: () => void;
|
|
25
25
|
onAuthorizeError?: (e: AxiosError) => void;
|
|
26
26
|
onLogin?: () => void;
|
|
27
|
+
onLoginSuccess?: () => void;
|
|
27
28
|
initialValues?: FormikValues;
|
|
28
29
|
buttonName?: string;
|
|
29
30
|
theme?: 'light' | 'dark';
|
|
31
|
+
isLoggedIn?: boolean;
|
|
30
32
|
}
|
|
31
|
-
export declare const BillingInfoContainer: ({ data, ticketHoldersFields, initialValues, buttonName, handleSubmit, theme, onRegisterSuccess, onRegisterError, onSubmitError, onGetCartSuccess, onGetCartError, onGetCountriesSuccess, onGetCountriesError, onGetStatesSuccess, onGetStatesError, onGetProfileDataSuccess, onGetProfileDataError, onAuthorizeSuccess, onAuthorizeError, onLogin, }: IBillingInfoPage) => JSX.Element;
|
|
33
|
+
export declare const BillingInfoContainer: ({ data, ticketHoldersFields, initialValues, buttonName, handleSubmit, theme, onRegisterSuccess, onRegisterError, onSubmitError, onGetCartSuccess, onGetCartError, onGetCountriesSuccess, onGetCountriesError, onGetStatesSuccess, onGetStatesError, onGetProfileDataSuccess, onGetProfileDataError, onAuthorizeSuccess, onAuthorizeError, onLogin, onLoginSuccess, isLoggedIn: pIsLoggedIn, }: IBillingInfoPage) => JSX.Element;
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
import { AxiosError } from 'axios';
|
|
3
3
|
import './style.css';
|
|
4
4
|
import { IPaymentField } from '../../types';
|
|
5
|
+
import { StripeCardNumberElementOptions } from '@stripe/stripe-js';
|
|
5
6
|
export interface IPaymentPage {
|
|
6
7
|
paymentFields: IPaymentField[];
|
|
7
8
|
handlePayment: any;
|
|
@@ -12,5 +13,6 @@ export interface IPaymentPage {
|
|
|
12
13
|
onGetPaymentDataSuccess: (value: any) => void;
|
|
13
14
|
onGetPaymentDataError: (value: AxiosError) => void;
|
|
14
15
|
onPaymentError: (value: AxiosError) => void;
|
|
16
|
+
stripeCardOptions?: StripeCardNumberElementOptions;
|
|
15
17
|
}
|
|
16
|
-
export declare const PaymentContainer: ({ paymentFields, handlePayment, formTitle, errorText, checkoutData, onErrorClose, onGetPaymentDataSuccess, onGetPaymentDataError, onPaymentError, }: IPaymentPage) => JSX.Element;
|
|
18
|
+
export declare const PaymentContainer: ({ paymentFields, handlePayment, formTitle, errorText, checkoutData, onErrorClose, onGetPaymentDataSuccess, onGetPaymentDataError, onPaymentError, stripeCardOptions, }: IPaymentPage) => JSX.Element;
|
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
.style_card_form_inner__7vzGq{background:#232323;border-radius:8px;margin:0 auto 20px;min-width:325px;padding:15px;width:50%}.style_card_form_inner__7vzGq .style_card_label_text__F7GFa{color:#fff}.style_card_form_inner__7vzGq .style_StripeElement__jS5TJ{margin:5px 0 10px}.style_card_label_text__F7GFa{color:#fff}.style_payment_button__2rkp8{padding-top:15px;text-align:center}.style_payment_button__2rkp8 button{background-color:#212529;border-radius:8px;color:#fff;cursor:pointer;font-size:26px;padding:15px 30px;transition:opacity .5s;width:200px}.style_payment_button__2rkp8 button:hover{opacity:.7}.style_disabled-payment-button__3MiUR button{opacity:.3;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.style_checkout_error_block__3LUN5{color:#e53935;font-weight:600;padding:15px 0}.style_zip_element__31oFa p{margin-bottom:0}.style_zip_element__31oFa input{background-color:#232323;border:none;color:#fff;font-size:18px;margin-top:5px;outline:none;width:100%}
|
|
6
6
|
.style_confirmation-page__1F9Sh{margin:0 auto;max-width:1024px}.style_confirmation-page__1F9Sh .style_strong-text__27fPG{font-weight:700}.style_confirmation-page__1F9Sh .style_title__2Al5H{color:#333;font-size:24px;font-weight:600}.style_confirmation-page__1F9Sh .style_share-message-section__3tRfP{background:#dff0d8;border:1px solid #d6e9c6;border-radius:5px;color:#2c7221;display:flex;flex-direction:column;margin:20px 0;padding:15px}.style_confirmation-page__1F9Sh .style_main__3LBFA{font-size:15px;font-weight:700}.style_confirmation-page__1F9Sh .style_helper__3L5l6,.style_confirmation-page__1F9Sh .style_main__3LBFA{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,Icons16,sans-serif}.style_confirmation-page__1F9Sh .style_helper__3L5l6{font-size:14px;margin-top:5px}.style_confirmation-page__1F9Sh .style_referral_text_image_section__1shCe{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between;margin:20px -10px}.style_confirmation-page__1F9Sh .style_referral_text_image_section__1shCe .style_referral_text_section__3dvbC{margin:10px}.style_confirmation-page__1F9Sh .style_referral_text_image_section__1shCe .style_referral_title_text__1zFZX{color:#f08057;font-size:28px;padding-bottom:10px}.style_confirmation-page__1F9Sh .style_referral_text_image_section__1shCe .style_referral_text__2tAKA{font-size:18px}.style_confirmation-page__1F9Sh .style_referral_text_image_section__1shCe img{margin:10px;max-width:200px}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz{-moz-column-gap:5rem;column-gap:5rem;display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));margin:10px}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_invitation_title__x4iqi{font-size:22px;padding-bottom:12px;padding-top:12px}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_share_section__2XjM2{display:flex;flex-wrap:wrap;justify-content:space-between;margin:0 -10px}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_share_section__2XjM2 .style_invitation_section__1xH0Z{flex:1 1;padding:0 5px}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_share_section__2XjM2 .style_invitation_section__1xH0Z .style_share_buttons__2C4eT{display:grid;flex-wrap:wrap;margin:0 -7px}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_share_section__2XjM2 .style_invitation_section__1xH0Z .style_share_buttons__2C4eT .style_social-media-btns__2kCat{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr))}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_share_section__2XjM2 .style_invitation_section__1xH0Z .style_share_buttons__2C4eT .style_social-media-btns__2kCat .style_sharing-btn__IVnek{min-width:130px}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_share_section__2XjM2 .style_invitation_section__1xH0Z .style_share-btn-inner__2HBGQ.style_share-by-link-copy__25qUa{padding:0;text-align:left}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_share_section__2XjM2 .style_invitation_section__1xH0Z .style_sharing-button__3R2yU{flex:1 1}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_share_section__2XjM2 .style_invitation_section__1xH0Z .style_convenient_buttons__2RFH8.style_sharing-btn__IVnek{display:inline}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_share_section__2XjM2 .style_invitation_section__1xH0Z .style_share-by-link__2B83J{background:#000;color:#fff;padding:0}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_share_section__2XjM2 .style_invitation_section__1xH0Z .style_share-by-link__2B83J.style_label__3FIno{margin:0;padding:0;text-align:left}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_share_section__2XjM2 .style_invitation_section__1xH0Z .style_sharing-btn__IVnek{flex:1 1;padding:7px;text-align:center}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_share_section__2XjM2 .style_invitation_section__1xH0Z .style_share-btn-inner__2HBGQ{background:#000;color:#fff;padding:10px}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_share_section__2XjM2 .style_invitation_section__1xH0Z .style_share-btn-inner__2HBGQ .style_svg_wrapper__268DZ{display:inline}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_share_section__2XjM2 .style_invitation_section__1xH0Z .style_share-btn-inner__2HBGQ .style_share-input__2Pp7g{background-color:#fff;text-align:left;width:300px}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_share_section__2XjM2 .style_invitation_section__1xH0Z .style_share-text__V36JV{display:block;font-size:13px;font-weight:600;padding-top:8px;width:100%}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_pricing-section_wrapper__1aDnf{background:#e3e3e3;border:1px solid #dcdcdc;display:grid;grid-template-columns:1fr 1fr;margin:10px 0;padding:15px}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_pricing-section_wrapper__1aDnf.style_free_price__3Hd0-{background:#e9835b;border:1px solid #eb7b4a;color:#fff}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_pricing-section_label__3SVoy{font-weight:600}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_pricing-section_sublabel__2Ckqd{font-size:14px;font-weight:100}.style_confirmation-page__1F9Sh .style_share_wrapper__3JrMz .style_pricing-section_price__3v8bL{font-weight:600;text-align:right}
|
|
7
7
|
body{margin:0;padding:0}.style_get-tickets-page__11KeR{width:100%}.style_event-detail__tier__2CcMs{background-color:#fff;padding:17px 35px 20px}.style_event-detail__tier-name__116US{color:#000;font-family:Inter-Bold;font-family:Bebas Neue;font-size:.85rem;font-weight:700;letter-spacing:.2em;line-height:1.3;margin-bottom:8px;margin-top:16px;padding-right:20%;text-transform:uppercase}.style_event-detail__tier-status__IbqO1{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;margin-top:8px;width:100%}.style_event-detail__tier-status__IbqO1.style_ticket-button__Nty1u{background-color:#212529;border:3px solid #000;border-radius:0;color:#fff;cursor:pointer;font-weight:700;letter-spacing:.2em;line-height:1.5;margin-bottom:10px;width:200px}.style_event-tickets-container__3vdaQ{align-items:center;display:flex;justify-content:space-between}.style_event-detail__tier-status__IbqO1.style_ticket-button__Nty1u.style_true__g6yhC{background-color:#c1c3c6;border-color:#afb0b1}.style_event-detail__tier-price__3doIb{color:#000;font-family:Inter-Bold;font-size:1.5rem;font-weight:700;line-height:1;text-align:center}.style_event-detail__tier-price__3doIb p{margin:0}.style_event-detail__tier-price__3doIb .style_fees__19QjH{font-size:14px;font-weight:400;margin-top:4px;text-align:left}.style_event-detail__tier-price__3doIb .style_old-price__2mSOJ{color:red;font-size:1.3rem;margin-bottom:5px;text-decoration:line-through}.style_alert-info__24Mx5{background-color:#d9edf7;border:1px solid #bce8f1;border-radius:4px;color:#3a87ad;font-size:1em;margin:0 35px;padding:8px 15px;text-align:center;text-shadow:0 1px 0 hsla(0,0%,100%,.5)}.style_event-detail__tier-state__2ethF{color:#30bc9d;font-family:Inter-Bold;font-size:.75rem;font-weight:300;line-height:1;text-align:right;text-transform:uppercase}.style_promo-code-block__ttqVr input{font-size:14px;padding:1px 8px}.style_book-button__1krJI{background-color:#212529;border:3px solid #000;border-radius:0;color:#fff;cursor:pointer;display:block;font-size:26px;font-weight:700;height:50px;letter-spacing:.2em;line-height:1.5;margin:25px auto 10px;text-align:center;width:100%}.style_book-button__1krJI:hover{background-color:#505050;border-color:#505050}.style_loader-container__3iPe2{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.style_get-tickets-paper__3ZF-f::-webkit-scrollbar{width:5px}.style_get-tickets-paper__3ZF-f::-webkit-scrollbar-track{background:#f1f1f1}.style_get-tickets-paper__3ZF-f::-webkit-scrollbar-thumb{background:#888}.style_get-tickets-paper__3ZF-f::-webkit-scrollbar-thumb:hover{background:#555}.style_get-tickets__3Sghy .style_get-tickets__selectbox__2ApAj{width:100%}.style_disabled__310xq{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.style_hidden__ceCor{display:none}
|
|
8
|
-
.style_waiting-list__2sJxM{padding:17px 35px 20px}.style_waiting-list__2sJxM .style_field-item__34MYc{margin-bottom:30px}.style_waiting-list__2sJxM .style_waiting-list-button__tO7D2{width:100%!important}.style_waiting-list__2sJxM .style_waiting-list-button__tO7D2:hover{background-color:#505050}.style_waiting-list__2sJxM .style_success-message__BvF3R h3{margin:10px 0}.style_waiting-list__2sJxM .style_success-message__BvF3R p{margin:0}
|
|
8
|
+
.style_waiting-list__2sJxM{padding:17px 35px 20px}.style_waiting-list__2sJxM .style_field-item__34MYc{margin-bottom:30px}.style_waiting-list__2sJxM .style_waiting-list-button__tO7D2{width:100%!important}.style_waiting-list__2sJxM .style_waiting-list-button__tO7D2:hover{background-color:#505050}.style_waiting-list__2sJxM .style_success-message__BvF3R h3{margin:10px 0}.style_waiting-list__2sJxM .style_success-message__BvF3R p{margin:0}.style_waiting-list__2sJxM .style_no-tickets-text__zGdaP{text-align:center}.style_waiting-list__2sJxM .style_added-success-message__FbPZS{font-size:22px}
|
|
@@ -1522,8 +1522,12 @@ var getInitialValues = function getInitialValues(data, propsInitialValues, userV
|
|
|
1522
1522
|
|
|
1523
1523
|
_forEach(results, function (item) {
|
|
1524
1524
|
initialValues[item] = propsInitialValues[item] || userValues[item] || '';
|
|
1525
|
-
});
|
|
1525
|
+
}); // set logged in user as first ticket holder
|
|
1526
|
+
|
|
1526
1527
|
|
|
1528
|
+
initialValues['holderFirstName-0'] = propsInitialValues.firstName || userValues.firstName || '';
|
|
1529
|
+
initialValues['holderLastName-0'] = propsInitialValues.lastName || userValues.lastName || '';
|
|
1530
|
+
initialValues['holderEmail-0'] = propsInitialValues.email || userValues.email || '';
|
|
1527
1531
|
return initialValues;
|
|
1528
1532
|
};
|
|
1529
1533
|
var createRegisterFormData = function createRegisterFormData(values, checkoutBody) {
|
|
@@ -1924,7 +1928,10 @@ var LogicRunner = function LogicRunner(_ref) {
|
|
|
1924
1928
|
brand_opt_in: (parsedData == null ? void 0 : parsedData.brand_opt_in) || '',
|
|
1925
1929
|
city: (parsedData == null ? void 0 : parsedData.city) || '',
|
|
1926
1930
|
confirmPassword: '',
|
|
1927
|
-
password: ''
|
|
1931
|
+
password: '',
|
|
1932
|
+
'holderFirstName-0': (parsedData == null ? void 0 : parsedData.first_name) || '',
|
|
1933
|
+
'holderLastName-0': (parsedData == null ? void 0 : parsedData.last_name) || '',
|
|
1934
|
+
'holderEmail-0': (parsedData == null ? void 0 : parsedData.email) || ''
|
|
1928
1935
|
};
|
|
1929
1936
|
setValues(mappedValues);
|
|
1930
1937
|
setUserValues(mappedValues);
|
|
@@ -1981,47 +1988,56 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
1981
1988
|
_ref3$onAuthorizeErro = _ref3.onAuthorizeError,
|
|
1982
1989
|
onAuthorizeError = _ref3$onAuthorizeErro === void 0 ? function () {} : _ref3$onAuthorizeErro,
|
|
1983
1990
|
_ref3$onLogin = _ref3.onLogin,
|
|
1984
|
-
onLogin = _ref3$onLogin === void 0 ? function () {} : _ref3$onLogin
|
|
1985
|
-
|
|
1986
|
-
|
|
1991
|
+
onLogin = _ref3$onLogin === void 0 ? function () {} : _ref3$onLogin,
|
|
1992
|
+
_ref3$onLoginSuccess = _ref3.onLoginSuccess,
|
|
1993
|
+
onLoginSuccess = _ref3$onLoginSuccess === void 0 ? function () {} : _ref3$onLoginSuccess,
|
|
1994
|
+
_ref3$isLoggedIn = _ref3.isLoggedIn,
|
|
1995
|
+
pIsLoggedIn = _ref3$isLoggedIn === void 0 ? false : _ref3$isLoggedIn;
|
|
1996
|
+
var isWindowDefined = typeof window !== 'undefined';
|
|
1997
|
+
var userData = isWindowDefined && window.localStorage.getItem('user_data') ? JSON.parse(window.localStorage.getItem('user_data') || '') : {};
|
|
1998
|
+
var access_token = isWindowDefined && window.localStorage.getItem('access_token') ? window.localStorage.getItem('access_token') || '' : '';
|
|
1987
1999
|
|
|
1988
2000
|
var _useState = React.useState(data),
|
|
1989
2001
|
dataWithUniqueIds = _useState[0],
|
|
1990
2002
|
setDataWithUniqueIds = _useState[1];
|
|
1991
2003
|
|
|
1992
|
-
var _useState2 = React.useState(
|
|
1993
|
-
|
|
1994
|
-
|
|
2004
|
+
var _useState2 = React.useState(!!access_token),
|
|
2005
|
+
isLoggedIn = _useState2[0],
|
|
2006
|
+
setIsLoggedIn = _useState2[1];
|
|
1995
2007
|
|
|
1996
|
-
var _useState3 = React.useState(
|
|
1997
|
-
|
|
1998
|
-
|
|
2008
|
+
var _useState3 = React.useState({}),
|
|
2009
|
+
cartInfoData = _useState3[0],
|
|
2010
|
+
setCartInfo = _useState3[1];
|
|
1999
2011
|
|
|
2000
2012
|
var _useState4 = React.useState([]),
|
|
2001
|
-
|
|
2002
|
-
|
|
2013
|
+
countries = _useState4[0],
|
|
2014
|
+
setCountries = _useState4[1];
|
|
2003
2015
|
|
|
2004
|
-
var _useState5 = React.useState(
|
|
2005
|
-
|
|
2006
|
-
|
|
2016
|
+
var _useState5 = React.useState([]),
|
|
2017
|
+
states = _useState5[0],
|
|
2018
|
+
setStates = _useState5[1];
|
|
2007
2019
|
|
|
2008
2020
|
var _useState6 = React.useState(false),
|
|
2009
|
-
|
|
2010
|
-
|
|
2021
|
+
showModalLogin = _useState6[0],
|
|
2022
|
+
setShowModalLogin = _useState6[1];
|
|
2011
2023
|
|
|
2012
2024
|
var _useState7 = React.useState(false),
|
|
2013
|
-
|
|
2014
|
-
|
|
2025
|
+
alreadyHasUser = _useState7[0],
|
|
2026
|
+
setAlreadyHasUser = _useState7[1];
|
|
2015
2027
|
|
|
2016
2028
|
var _useState8 = React.useState(false),
|
|
2017
|
-
|
|
2018
|
-
|
|
2029
|
+
userExpired = _useState8[0],
|
|
2030
|
+
setUserExpired = _useState8[1];
|
|
2019
2031
|
|
|
2020
|
-
var _useState9 = React.useState(
|
|
2021
|
-
|
|
2022
|
-
|
|
2032
|
+
var _useState9 = React.useState(false),
|
|
2033
|
+
showModalRegister = _useState9[0],
|
|
2034
|
+
setShowModalRegister = _useState9[1];
|
|
2023
2035
|
|
|
2024
|
-
var _useState10 = React.useState(
|
|
2036
|
+
var _useState10 = React.useState([]),
|
|
2037
|
+
ticketsQuantity = _useState10[0],
|
|
2038
|
+
setTicketsQuantity = _useState10[1];
|
|
2039
|
+
|
|
2040
|
+
var _useState11 = React.useState({
|
|
2025
2041
|
firstName: '',
|
|
2026
2042
|
lastName: '',
|
|
2027
2043
|
email: '',
|
|
@@ -2036,10 +2052,8 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2036
2052
|
state: '',
|
|
2037
2053
|
zip: ''
|
|
2038
2054
|
}),
|
|
2039
|
-
userValues =
|
|
2040
|
-
setUserValues =
|
|
2041
|
-
|
|
2042
|
-
var isLoggedIn = !!access_token;
|
|
2055
|
+
userValues = _useState11[0],
|
|
2056
|
+
setUserValues = _useState11[1];
|
|
2043
2057
|
|
|
2044
2058
|
var emailLogged = _get(userData, 'email', '') || _get(userValues, 'email', '');
|
|
2045
2059
|
|
|
@@ -2048,7 +2062,6 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2048
2062
|
var lastNameLogged = _get(userData, 'last_name', '') || _get(userValues, 'last_name', '');
|
|
2049
2063
|
|
|
2050
2064
|
var showDOB = getQueryVariable('age_required') === 'true';
|
|
2051
|
-
var showTicketHolderName = getQueryVariable('names_required') === 'true';
|
|
2052
2065
|
var eventId = getQueryVariable('event_id');
|
|
2053
2066
|
|
|
2054
2067
|
var optedInFieldValue = _get(cartInfoData, 'optedIn', false);
|
|
@@ -2069,8 +2082,13 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2069
2082
|
qty += +item.quantity;
|
|
2070
2083
|
});
|
|
2071
2084
|
return qty;
|
|
2072
|
-
};
|
|
2085
|
+
};
|
|
2073
2086
|
|
|
2087
|
+
React.useEffect(function () {
|
|
2088
|
+
if ((pIsLoggedIn || access_token) && !isLoggedIn) {
|
|
2089
|
+
setIsLoggedIn(true);
|
|
2090
|
+
}
|
|
2091
|
+
}, [pIsLoggedIn, isLoggedIn, access_token]); //just once
|
|
2074
2092
|
|
|
2075
2093
|
React.useEffect(function () {
|
|
2076
2094
|
// fetch countries data
|
|
@@ -2179,7 +2197,7 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2179
2197
|
case 0:
|
|
2180
2198
|
_context4.prev = 0;
|
|
2181
2199
|
|
|
2182
|
-
if (!(
|
|
2200
|
+
if (!(isWindowDefined && token)) {
|
|
2183
2201
|
_context4.next = 10;
|
|
2184
2202
|
break;
|
|
2185
2203
|
}
|
|
@@ -2260,7 +2278,7 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2260
2278
|
_profileSpecifiedData = _get(updatedUserData, 'data.data');
|
|
2261
2279
|
_profileDataObj = setLoggedUserData(_profileSpecifiedData);
|
|
2262
2280
|
|
|
2263
|
-
if (
|
|
2281
|
+
if (isWindowDefined) {
|
|
2264
2282
|
window.localStorage.setItem('user_data', JSON.stringify(_profileDataObj));
|
|
2265
2283
|
}
|
|
2266
2284
|
|
|
@@ -2338,7 +2356,7 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2338
2356
|
profileSpecifiedData = _get(profileData, 'data.data');
|
|
2339
2357
|
profileDataObj = setLoggedUserData(profileSpecifiedData);
|
|
2340
2358
|
|
|
2341
|
-
if (
|
|
2359
|
+
if (isWindowDefined) {
|
|
2342
2360
|
window.localStorage.setItem('user_data', JSON.stringify(profileDataObj));
|
|
2343
2361
|
}
|
|
2344
2362
|
|
|
@@ -2362,7 +2380,7 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2362
2380
|
|
|
2363
2381
|
if (axios.isAxiosError(_context5.t1)) {
|
|
2364
2382
|
if (((_e$response2 = _context5.t1.response) == null ? void 0 : _e$response2.data.error) === 'invalid_token') {
|
|
2365
|
-
if (
|
|
2383
|
+
if (isWindowDefined) {
|
|
2366
2384
|
window.localStorage.removeItem('user_data');
|
|
2367
2385
|
window.localStorage.removeItem('access_token');
|
|
2368
2386
|
setUserExpired(true);
|
|
@@ -2415,35 +2433,18 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2415
2433
|
var label = item.label,
|
|
2416
2434
|
labelClassName = item.labelClassName,
|
|
2417
2435
|
fields = item.fields;
|
|
2418
|
-
|
|
2419
|
-
if (label === 'Ticket Holders' && !showTicketHolderName && !showDOB) {
|
|
2420
|
-
return null;
|
|
2421
|
-
}
|
|
2422
|
-
|
|
2423
2436
|
return React__default.createElement(React__default.Fragment, {
|
|
2424
2437
|
key: item.uniqueId
|
|
2425
2438
|
}, React__default.createElement("p", {
|
|
2426
2439
|
className: labelClassName
|
|
2427
2440
|
}, label), _map(fields, function (group) {
|
|
2428
2441
|
var groupClassname = group.groupClassname,
|
|
2429
|
-
groupItems = group.groupItems
|
|
2430
|
-
groupLabel = group.groupLabel,
|
|
2431
|
-
groupLabelClassName = group.groupLabelClassName;
|
|
2442
|
+
groupItems = group.groupItems;
|
|
2432
2443
|
return React__default.createElement(React__default.Fragment, {
|
|
2433
2444
|
key: group.uniqueId
|
|
2434
|
-
},
|
|
2435
|
-
className: groupLabelClassName
|
|
2436
|
-
}, groupLabel), React__default.createElement("div", {
|
|
2445
|
+
}, React__default.createElement("div", {
|
|
2437
2446
|
className: groupClassname
|
|
2438
2447
|
}, _map(groupItems.filter(function (el) {
|
|
2439
|
-
if (el.name === 'holderFirstName' && !showTicketHolderName) {
|
|
2440
|
-
return false;
|
|
2441
|
-
}
|
|
2442
|
-
|
|
2443
|
-
if (el.name === 'holderLastName' && !showTicketHolderName) {
|
|
2444
|
-
return false;
|
|
2445
|
-
}
|
|
2446
|
-
|
|
2447
2448
|
if (el.name === 'holderAge' && !showDOB) {
|
|
2448
2449
|
return false;
|
|
2449
2450
|
}
|
|
@@ -2454,7 +2455,7 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2454
2455
|
|
|
2455
2456
|
return true;
|
|
2456
2457
|
}), function (element) {
|
|
2457
|
-
return ['password', 'confirmPassword'].includes(element.name) && isLoggedIn ? null : React__default.createElement(React__default.Fragment, {
|
|
2458
|
+
return ['password', 'confirmPassword', 'password-info'].includes(element.name) && isLoggedIn ? null : React__default.createElement(React__default.Fragment, {
|
|
2458
2459
|
key: element.uniqueId
|
|
2459
2460
|
}, element.name === 'email' ? React__default.createElement("div", {
|
|
2460
2461
|
className: "email-checking"
|
|
@@ -2471,7 +2472,7 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2471
2472
|
})));
|
|
2472
2473
|
})));
|
|
2473
2474
|
}));
|
|
2474
|
-
}),
|
|
2475
|
+
}), React__default.createElement("div", {
|
|
2475
2476
|
className: "ticket-holders-fields"
|
|
2476
2477
|
}, React__default.createElement("p", null, ticketHoldersFields.label), _map(ticketsQuantity, function (_item, index) {
|
|
2477
2478
|
return React__default.createElement("div", {
|
|
@@ -2497,7 +2498,7 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2497
2498
|
}));
|
|
2498
2499
|
})));
|
|
2499
2500
|
}));
|
|
2500
|
-
}))
|
|
2501
|
+
})), React__default.createElement("div", {
|
|
2501
2502
|
className: "button-container"
|
|
2502
2503
|
}, React__default.createElement(LoadingButton, {
|
|
2503
2504
|
type: "submit",
|
|
@@ -2517,6 +2518,7 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2517
2518
|
onLogin: function onLogin() {
|
|
2518
2519
|
setShowModalLogin(false);
|
|
2519
2520
|
setUserExpired(false);
|
|
2521
|
+
onLoginSuccess();
|
|
2520
2522
|
},
|
|
2521
2523
|
alreadyHasUser: alreadyHasUser,
|
|
2522
2524
|
userExpired: userExpired,
|
|
@@ -2610,6 +2612,9 @@ var options = {
|
|
|
2610
2612
|
fontSize: '18px',
|
|
2611
2613
|
color: '#ffffff',
|
|
2612
2614
|
letterSpacing: '1px',
|
|
2615
|
+
':-webkit-autofill': {
|
|
2616
|
+
color: '#ffffff'
|
|
2617
|
+
},
|
|
2613
2618
|
'::placeholder': {
|
|
2614
2619
|
color: 'rgba(201, 201, 201, 0.5)'
|
|
2615
2620
|
}
|
|
@@ -2625,7 +2630,7 @@ var CheckoutForm = function CheckoutForm(_ref) {
|
|
|
2625
2630
|
_ref$onSubmit = _ref.onSubmit,
|
|
2626
2631
|
onSubmit = _ref$onSubmit === void 0 ? _identity : _ref$onSubmit,
|
|
2627
2632
|
_ref$stripeCardOption = _ref.stripeCardOptions,
|
|
2628
|
-
stripeCardOptions = _ref$stripeCardOption === void 0 ?
|
|
2633
|
+
stripeCardOptions = _ref$stripeCardOption === void 0 ? {} : _ref$stripeCardOption,
|
|
2629
2634
|
_ref$error = _ref.error,
|
|
2630
2635
|
error = _ref$error === void 0 ? null : _ref$error,
|
|
2631
2636
|
stripe_client_secret = _ref.stripe_client_secret,
|
|
@@ -2648,6 +2653,14 @@ var CheckoutForm = function CheckoutForm(_ref) {
|
|
|
2648
2653
|
stripeError = _useState2[0],
|
|
2649
2654
|
setStripeError = _useState2[1];
|
|
2650
2655
|
|
|
2656
|
+
var _useState3 = React.useState([]),
|
|
2657
|
+
checkboxes = _useState3[0],
|
|
2658
|
+
setCheckboxes = _useState3[1];
|
|
2659
|
+
|
|
2660
|
+
var _useState4 = React.useState(false),
|
|
2661
|
+
allowSubmit = _useState4[0],
|
|
2662
|
+
setAllowSubmit = _useState4[1];
|
|
2663
|
+
|
|
2651
2664
|
var handleSubmit = /*#__PURE__*/function () {
|
|
2652
2665
|
var _ref2 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee(event) {
|
|
2653
2666
|
var card, address, paymentMethodReq, _yield$stripe$confirm, _error;
|
|
@@ -2753,6 +2766,17 @@ var CheckoutForm = function CheckoutForm(_ref) {
|
|
|
2753
2766
|
};
|
|
2754
2767
|
}();
|
|
2755
2768
|
|
|
2769
|
+
var handleCheckboxes = function handleCheckboxes(e) {
|
|
2770
|
+
var checkbox = e.target;
|
|
2771
|
+
var updatedCheckedState = checkboxes.map(function (item) {
|
|
2772
|
+
var value = item.id === checkbox.name ? !item.checked : item.checked;
|
|
2773
|
+
return _extends({}, item, {
|
|
2774
|
+
checked: value
|
|
2775
|
+
});
|
|
2776
|
+
});
|
|
2777
|
+
setCheckboxes(updatedCheckedState);
|
|
2778
|
+
};
|
|
2779
|
+
|
|
2756
2780
|
var onChangePostalCode = function onChangePostalCode(e) {
|
|
2757
2781
|
setPostalCode(e.target.value);
|
|
2758
2782
|
};
|
|
@@ -2766,6 +2790,19 @@ var CheckoutForm = function CheckoutForm(_ref) {
|
|
|
2766
2790
|
zipCode && setPostalCode(zipCode);
|
|
2767
2791
|
}
|
|
2768
2792
|
}, []);
|
|
2793
|
+
React.useEffect(function () {
|
|
2794
|
+
if (conditions.length) {
|
|
2795
|
+
setCheckboxes(conditions);
|
|
2796
|
+
}
|
|
2797
|
+
}, [conditions]);
|
|
2798
|
+
React.useEffect(function () {
|
|
2799
|
+
if (checkboxes.length) {
|
|
2800
|
+
var allChecked = checkboxes.every(function (item) {
|
|
2801
|
+
return (item == null ? void 0 : item.checked) === true;
|
|
2802
|
+
});
|
|
2803
|
+
setAllowSubmit(allChecked);
|
|
2804
|
+
}
|
|
2805
|
+
}, [checkboxes]);
|
|
2769
2806
|
var buttonIsDiabled = !stripe || !!error || isLoading;
|
|
2770
2807
|
return React__default.createElement("div", {
|
|
2771
2808
|
className: "stripe_payment_container"
|
|
@@ -2780,7 +2817,7 @@ var CheckoutForm = function CheckoutForm(_ref) {
|
|
|
2780
2817
|
}, React__default.createElement("span", {
|
|
2781
2818
|
className: "card_label_text"
|
|
2782
2819
|
}, "Card number"), React__default.createElement(reactStripeJs.CardNumberElement, {
|
|
2783
|
-
options: stripeCardOptions,
|
|
2820
|
+
options: _extends({}, options, stripeCardOptions),
|
|
2784
2821
|
onReady: _identity,
|
|
2785
2822
|
onChange: _identity,
|
|
2786
2823
|
onBlur: _identity,
|
|
@@ -2790,13 +2827,13 @@ var CheckoutForm = function CheckoutForm(_ref) {
|
|
|
2790
2827
|
}, React__default.createElement("span", {
|
|
2791
2828
|
className: "card_label_text"
|
|
2792
2829
|
}, "Expiration date"), React__default.createElement(reactStripeJs.CardExpiryElement, {
|
|
2793
|
-
options: stripeCardOptions
|
|
2830
|
+
options: _extends({}, options, stripeCardOptions)
|
|
2794
2831
|
})), React__default.createElement("label", {
|
|
2795
2832
|
className: "cvc_element"
|
|
2796
2833
|
}, React__default.createElement("span", {
|
|
2797
2834
|
className: "card_label_text"
|
|
2798
2835
|
}, "CVC"), React__default.createElement(reactStripeJs.CardCvcElement, {
|
|
2799
|
-
options: stripeCardOptions
|
|
2836
|
+
options: _extends({}, options, stripeCardOptions)
|
|
2800
2837
|
})), React__default.createElement("label", {
|
|
2801
2838
|
className: "zip_element"
|
|
2802
2839
|
}, React__default.createElement("p", {
|
|
@@ -2806,7 +2843,7 @@ var CheckoutForm = function CheckoutForm(_ref) {
|
|
|
2806
2843
|
value: postalCode,
|
|
2807
2844
|
onChange: onChangePostalCode,
|
|
2808
2845
|
placeholder: "ZIP"
|
|
2809
|
-
}))),
|
|
2846
|
+
}))), checkboxes == null ? void 0 : checkboxes.map(function (checkbox) {
|
|
2810
2847
|
return React__default.createElement("div", {
|
|
2811
2848
|
className: 'billing-info-container__singleField',
|
|
2812
2849
|
key: checkbox.id
|
|
@@ -2815,10 +2852,12 @@ var CheckoutForm = function CheckoutForm(_ref) {
|
|
|
2815
2852
|
}, React__default.createElement(CheckboxField, {
|
|
2816
2853
|
name: checkbox.id,
|
|
2817
2854
|
label: checkbox.text,
|
|
2818
|
-
required: true
|
|
2855
|
+
required: true,
|
|
2856
|
+
onChange: handleCheckboxes,
|
|
2857
|
+
checked: checkbox.checked
|
|
2819
2858
|
})));
|
|
2820
2859
|
}), React__default.createElement("div", {
|
|
2821
|
-
className: "payment_button " + (buttonIsDiabled ? 'disabled-payment-button' : '')
|
|
2860
|
+
className: "payment_button " + (buttonIsDiabled || !allowSubmit ? 'disabled-payment-button' : '')
|
|
2822
2861
|
}, React__default.createElement("button", {
|
|
2823
2862
|
disabled: buttonIsDiabled,
|
|
2824
2863
|
type: "submit"
|
|
@@ -2860,7 +2899,9 @@ var PaymentContainer = function PaymentContainer(_ref) {
|
|
|
2860
2899
|
_ref$onGetPaymentData2 = _ref.onGetPaymentDataError,
|
|
2861
2900
|
onGetPaymentDataError = _ref$onGetPaymentData2 === void 0 ? function () {} : _ref$onGetPaymentData2,
|
|
2862
2901
|
_ref$onPaymentError = _ref.onPaymentError,
|
|
2863
|
-
onPaymentError = _ref$onPaymentError === void 0 ? function () {} : _ref$onPaymentError
|
|
2902
|
+
onPaymentError = _ref$onPaymentError === void 0 ? function () {} : _ref$onPaymentError,
|
|
2903
|
+
_ref$stripeCardOption = _ref.stripeCardOptions,
|
|
2904
|
+
stripeCardOptions = _ref$stripeCardOption === void 0 ? {} : _ref$stripeCardOption;
|
|
2864
2905
|
|
|
2865
2906
|
var _useState = React.useState(initialReviewValues),
|
|
2866
2907
|
reviewData = _useState[0],
|
|
@@ -2960,7 +3001,8 @@ var PaymentContainer = function PaymentContainer(_ref) {
|
|
|
2960
3001
|
setConditions(conditionsInfo ? conditionsInfo.map(function (item) {
|
|
2961
3002
|
return {
|
|
2962
3003
|
id: nanoid.nanoid(),
|
|
2963
|
-
text: item
|
|
3004
|
+
text: item,
|
|
3005
|
+
checked: false
|
|
2964
3006
|
};
|
|
2965
3007
|
}) : []);
|
|
2966
3008
|
|
|
@@ -3080,7 +3122,8 @@ var PaymentContainer = function PaymentContainer(_ref) {
|
|
|
3080
3122
|
handleSetLoading: function handleSetLoading(value) {
|
|
3081
3123
|
return setPaymentIsLoading(value);
|
|
3082
3124
|
},
|
|
3083
|
-
conditions: conditions
|
|
3125
|
+
conditions: conditions,
|
|
3126
|
+
stripeCardOptions: stripeCardOptions
|
|
3084
3127
|
}))))));
|
|
3085
3128
|
};
|
|
3086
3129
|
|
|
@@ -3146,7 +3189,7 @@ var ConfirmationContainer = function ConfirmationContainer(_ref) {
|
|
|
3146
3189
|
}
|
|
3147
3190
|
}, _callee, null, [[4, 13]]);
|
|
3148
3191
|
}))();
|
|
3149
|
-
}, [
|
|
3192
|
+
}, []);
|
|
3150
3193
|
return React__default.createElement("div", {
|
|
3151
3194
|
className: "confirmation-page"
|
|
3152
3195
|
}, React__default.createElement("p", {
|
|
@@ -3468,9 +3511,13 @@ var WaitingList = function WaitingList(_ref) {
|
|
|
3468
3511
|
|
|
3469
3512
|
return React__default.createElement("div", {
|
|
3470
3513
|
className: "waiting-list"
|
|
3471
|
-
},
|
|
3514
|
+
}, React__default.createElement("p", {
|
|
3515
|
+
className: "no-tickets-text"
|
|
3516
|
+
}, "No tickets are currently available for this event."), showSuccessMessage ? React__default.createElement("div", {
|
|
3472
3517
|
className: "success-message"
|
|
3473
|
-
}, React__default.createElement("
|
|
3518
|
+
}, React__default.createElement("p", {
|
|
3519
|
+
className: "added-success-message"
|
|
3520
|
+
}, "You've been added to the waiting list!"), React__default.createElement("p", null, "You'll be notified if tickets become available.")) : React__default.createElement(React__default.Fragment, null, React__default.createElement("h2", null, "WAITING LIST"), React__default.createElement(formik.Formik, {
|
|
3474
3521
|
initialValues: {
|
|
3475
3522
|
ticketTypeId: '',
|
|
3476
3523
|
quantity: '',
|