tf-checkout-react 1.0.55 → 1.0.59
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/api/index.d.ts +2 -0
- package/dist/components/billing-info-container/index.d.ts +3 -1
- package/dist/components/confirmationContainer/index.d.ts +1 -1
- package/dist/components/index.d.ts +2 -0
- package/dist/components/myTicketsContainer/index.d.ts +9 -0
- package/dist/components/myTicketsContainer/row.d.ts +15 -0
- package/dist/components/myTicketsContainer/tableConfig.d.ts +5 -0
- package/dist/components/orderDetailsContainer/index.d.ts +8 -0
- package/dist/components/orderDetailsContainer/ticketsTable.d.ts +6 -0
- package/dist/components/paymentContainer/index.d.ts +3 -1
- package/dist/components/ticketsContainer/index.d.ts +2 -1
- package/dist/tf-checkout-react.cjs.development.css +1 -1
- package/dist/tf-checkout-react.cjs.development.js +85 -48
- 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 +86 -49
- package/dist/tf-checkout-react.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/api/index.ts +6 -1
- package/src/components/billing-info-container/index.tsx +22 -7
- package/src/components/billing-info-container/utils.ts +8 -0
- package/src/components/confirmationContainer/index.tsx +4 -3
- package/src/components/index.ts +2 -0
- package/src/components/loginModal/index.tsx +1 -0
- package/src/components/myTicketsContainer/index.tsx +125 -0
- package/src/components/myTicketsContainer/row.tsx +41 -0
- package/src/components/myTicketsContainer/style.css +40 -0
- package/src/components/myTicketsContainer/tableConfig.tsx +34 -0
- package/src/components/orderDetailsContainer/index.tsx +120 -0
- package/src/components/orderDetailsContainer/style.css +53 -0
- package/src/components/orderDetailsContainer/ticketsTable.tsx +86 -0
- package/src/components/paymentContainer/index.tsx +5 -1
- package/src/components/stripePayment/index.tsx +17 -13
- package/src/components/ticketsContainer/index.tsx +3 -1
- package/src/components/waitingList/index.tsx +2 -1
- package/src/components/waitingList/style.css +7 -0
package/dist/api/index.d.ts
CHANGED
|
@@ -20,6 +20,8 @@ export declare const getProfileData: (accessToken: any) => Promise<import("axios
|
|
|
20
20
|
export declare const getCountries: () => Promise<import("axios").AxiosResponse<any, any>>;
|
|
21
21
|
export declare const getConfirmationData: (orderHash: string) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
22
22
|
export declare const getStates: (countryId: string) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
23
|
+
export declare const getOrders: (page: number, limit: number, eventSlug: string) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
24
|
+
export declare const getOrderDetails: (orderId: string) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
23
25
|
export declare const addToWaitingList: (id: number, data: any) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
24
26
|
export declare const getConditions: (eventId: string) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
25
27
|
export {};
|
|
@@ -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;
|
|
@@ -21,4 +21,4 @@ export interface IConfirmationPage {
|
|
|
21
21
|
onGetConfirmationDataSuccess: (res: any) => void;
|
|
22
22
|
onGetConfirmationDataError: (e: AxiosError) => void;
|
|
23
23
|
}
|
|
24
|
-
export declare const ConfirmationContainer: ({ referralPromotions, shareButtons, shareLink, onGetConfirmationDataSuccess, onGetConfirmationDataError, }: IConfirmationPage) => JSX.Element;
|
|
24
|
+
export declare const ConfirmationContainer: ({ isReferralEnabled, referralPromotions, shareButtons, shareLink, onGetConfirmationDataSuccess, onGetConfirmationDataError, }: IConfirmationPage) => JSX.Element;
|
|
@@ -2,3 +2,5 @@ export { BillingInfoContainer } from './billing-info-container';
|
|
|
2
2
|
export { ConfirmationContainer } from './confirmationContainer';
|
|
3
3
|
export { PaymentContainer } from './paymentContainer';
|
|
4
4
|
export { TicketsContainer } from './ticketsContainer';
|
|
5
|
+
export { MyTicketsContainer } from './myTicketsContainer';
|
|
6
|
+
export { OrderDetailsContainer } from './orderDetailsContainer';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import './style.css';
|
|
3
|
+
interface MyTicketsTypes {
|
|
4
|
+
handleDetailsInfo: (id: string) => void;
|
|
5
|
+
onGetOrdersSuccess: (res: any) => void;
|
|
6
|
+
onGetOrdersError: (err: any) => void;
|
|
7
|
+
}
|
|
8
|
+
export declare const MyTicketsContainer: ({ handleDetailsInfo, onGetOrdersSuccess, onGetOrdersError }: MyTicketsTypes) => JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface RowItems {
|
|
3
|
+
id: string;
|
|
4
|
+
date: string;
|
|
5
|
+
image: string;
|
|
6
|
+
eventName: string;
|
|
7
|
+
amount: string;
|
|
8
|
+
currency: string;
|
|
9
|
+
}
|
|
10
|
+
interface RowPropsTypes {
|
|
11
|
+
row: RowItems;
|
|
12
|
+
handleDetailsInfo: (id: string) => void;
|
|
13
|
+
}
|
|
14
|
+
declare const Row: ({ row, handleDetailsInfo }: RowPropsTypes) => JSX.Element;
|
|
15
|
+
export default Row;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import './style.css';
|
|
3
|
+
interface OrderDetailsTypes {
|
|
4
|
+
onGetOrdersSuccess: (res: any) => void;
|
|
5
|
+
onGetOrdersError: (err: any) => void;
|
|
6
|
+
}
|
|
7
|
+
export declare const OrderDetailsContainer: ({ onGetOrdersSuccess, onGetOrdersError }: OrderDetailsTypes) => JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -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;
|
|
@@ -16,6 +16,7 @@ export interface IGetTickets {
|
|
|
16
16
|
onGetTicketsSuccess: (response: any) => void;
|
|
17
17
|
onGetTicketsError: (e: AxiosError) => void;
|
|
18
18
|
theme?: 'light' | 'dark';
|
|
19
|
+
queryPromoCode?: string;
|
|
19
20
|
}
|
|
20
21
|
export interface ITicket {
|
|
21
22
|
id: string | number;
|
|
@@ -24,5 +25,5 @@ export interface ITicket {
|
|
|
24
25
|
export interface ISelectedTickets {
|
|
25
26
|
[key: string]: string | number;
|
|
26
27
|
}
|
|
27
|
-
export declare const TicketsContainer: ({ getTicketsLabel, eventId, onAddToCartSuccess, contentStyle, onAddToCartError, onGetTicketsSuccess, onGetTicketsError, theme, }: IGetTickets) => JSX.Element;
|
|
28
|
+
export declare const TicketsContainer: ({ getTicketsLabel, eventId, onAddToCartSuccess, contentStyle, onAddToCartError, onGetTicketsSuccess, onGetTicketsError, theme, queryPromoCode }: IGetTickets) => JSX.Element;
|
|
28
29
|
export {};
|
|
@@ -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{font-weight:700;text-align:center}.style_waiting-list__2sJxM .style_added-success-message__FbPZS{font-size:22px}
|
|
@@ -1255,7 +1255,11 @@ var LoginModal = function LoginModal(_ref) {
|
|
|
1255
1255
|
onSubmit: props.handleSubmit
|
|
1256
1256
|
}, React__default.createElement("div", {
|
|
1257
1257
|
className: "modal-title"
|
|
1258
|
-
}, "Login"), React__default.createElement("
|
|
1258
|
+
}, "Login"), React__default.createElement("img", {
|
|
1259
|
+
className: "login-logo-tff",
|
|
1260
|
+
src: "https://www.ticketfairy.com/resources/images/logo-ttf-black.svg",
|
|
1261
|
+
alt: ""
|
|
1262
|
+
}), React__default.createElement("div", {
|
|
1259
1263
|
className: "server_auth__error"
|
|
1260
1264
|
}, error), alreadyHasUser && React__default.createElement("p", {
|
|
1261
1265
|
className: "info-text-for-login"
|
|
@@ -1522,8 +1526,12 @@ var getInitialValues = function getInitialValues(data, propsInitialValues, userV
|
|
|
1522
1526
|
|
|
1523
1527
|
_forEach(results, function (item) {
|
|
1524
1528
|
initialValues[item] = propsInitialValues[item] || userValues[item] || '';
|
|
1525
|
-
});
|
|
1529
|
+
}); // set logged in user as first ticket holder
|
|
1530
|
+
|
|
1526
1531
|
|
|
1532
|
+
initialValues['holderFirstName-0'] = propsInitialValues.firstName || userValues.firstName || '';
|
|
1533
|
+
initialValues['holderLastName-0'] = propsInitialValues.lastName || userValues.lastName || '';
|
|
1534
|
+
initialValues['holderEmail-0'] = propsInitialValues.email || userValues.email || '';
|
|
1527
1535
|
return initialValues;
|
|
1528
1536
|
};
|
|
1529
1537
|
var createRegisterFormData = function createRegisterFormData(values, checkoutBody) {
|
|
@@ -1924,7 +1932,10 @@ var LogicRunner = function LogicRunner(_ref) {
|
|
|
1924
1932
|
brand_opt_in: (parsedData == null ? void 0 : parsedData.brand_opt_in) || '',
|
|
1925
1933
|
city: (parsedData == null ? void 0 : parsedData.city) || '',
|
|
1926
1934
|
confirmPassword: '',
|
|
1927
|
-
password: ''
|
|
1935
|
+
password: '',
|
|
1936
|
+
'holderFirstName-0': (parsedData == null ? void 0 : parsedData.first_name) || '',
|
|
1937
|
+
'holderLastName-0': (parsedData == null ? void 0 : parsedData.last_name) || '',
|
|
1938
|
+
'holderEmail-0': (parsedData == null ? void 0 : parsedData.email) || ''
|
|
1928
1939
|
};
|
|
1929
1940
|
setValues(mappedValues);
|
|
1930
1941
|
setUserValues(mappedValues);
|
|
@@ -1981,47 +1992,56 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
1981
1992
|
_ref3$onAuthorizeErro = _ref3.onAuthorizeError,
|
|
1982
1993
|
onAuthorizeError = _ref3$onAuthorizeErro === void 0 ? function () {} : _ref3$onAuthorizeErro,
|
|
1983
1994
|
_ref3$onLogin = _ref3.onLogin,
|
|
1984
|
-
onLogin = _ref3$onLogin === void 0 ? function () {} : _ref3$onLogin
|
|
1985
|
-
|
|
1986
|
-
|
|
1995
|
+
onLogin = _ref3$onLogin === void 0 ? function () {} : _ref3$onLogin,
|
|
1996
|
+
_ref3$onLoginSuccess = _ref3.onLoginSuccess,
|
|
1997
|
+
onLoginSuccess = _ref3$onLoginSuccess === void 0 ? function () {} : _ref3$onLoginSuccess,
|
|
1998
|
+
_ref3$isLoggedIn = _ref3.isLoggedIn,
|
|
1999
|
+
pIsLoggedIn = _ref3$isLoggedIn === void 0 ? false : _ref3$isLoggedIn;
|
|
2000
|
+
var isWindowDefined = typeof window !== 'undefined';
|
|
2001
|
+
var userData = isWindowDefined && window.localStorage.getItem('user_data') ? JSON.parse(window.localStorage.getItem('user_data') || '') : {};
|
|
2002
|
+
var access_token = isWindowDefined && window.localStorage.getItem('access_token') ? window.localStorage.getItem('access_token') || '' : '';
|
|
1987
2003
|
|
|
1988
2004
|
var _useState = React.useState(data),
|
|
1989
2005
|
dataWithUniqueIds = _useState[0],
|
|
1990
2006
|
setDataWithUniqueIds = _useState[1];
|
|
1991
2007
|
|
|
1992
|
-
var _useState2 = React.useState(
|
|
1993
|
-
|
|
1994
|
-
|
|
2008
|
+
var _useState2 = React.useState(!!access_token),
|
|
2009
|
+
isLoggedIn = _useState2[0],
|
|
2010
|
+
setIsLoggedIn = _useState2[1];
|
|
1995
2011
|
|
|
1996
|
-
var _useState3 = React.useState(
|
|
1997
|
-
|
|
1998
|
-
|
|
2012
|
+
var _useState3 = React.useState({}),
|
|
2013
|
+
cartInfoData = _useState3[0],
|
|
2014
|
+
setCartInfo = _useState3[1];
|
|
1999
2015
|
|
|
2000
2016
|
var _useState4 = React.useState([]),
|
|
2001
|
-
|
|
2002
|
-
|
|
2017
|
+
countries = _useState4[0],
|
|
2018
|
+
setCountries = _useState4[1];
|
|
2003
2019
|
|
|
2004
|
-
var _useState5 = React.useState(
|
|
2005
|
-
|
|
2006
|
-
|
|
2020
|
+
var _useState5 = React.useState([]),
|
|
2021
|
+
states = _useState5[0],
|
|
2022
|
+
setStates = _useState5[1];
|
|
2007
2023
|
|
|
2008
2024
|
var _useState6 = React.useState(false),
|
|
2009
|
-
|
|
2010
|
-
|
|
2025
|
+
showModalLogin = _useState6[0],
|
|
2026
|
+
setShowModalLogin = _useState6[1];
|
|
2011
2027
|
|
|
2012
2028
|
var _useState7 = React.useState(false),
|
|
2013
|
-
|
|
2014
|
-
|
|
2029
|
+
alreadyHasUser = _useState7[0],
|
|
2030
|
+
setAlreadyHasUser = _useState7[1];
|
|
2015
2031
|
|
|
2016
2032
|
var _useState8 = React.useState(false),
|
|
2017
|
-
|
|
2018
|
-
|
|
2033
|
+
userExpired = _useState8[0],
|
|
2034
|
+
setUserExpired = _useState8[1];
|
|
2035
|
+
|
|
2036
|
+
var _useState9 = React.useState(false),
|
|
2037
|
+
showModalRegister = _useState9[0],
|
|
2038
|
+
setShowModalRegister = _useState9[1];
|
|
2019
2039
|
|
|
2020
|
-
var
|
|
2021
|
-
ticketsQuantity =
|
|
2022
|
-
setTicketsQuantity =
|
|
2040
|
+
var _useState10 = React.useState([]),
|
|
2041
|
+
ticketsQuantity = _useState10[0],
|
|
2042
|
+
setTicketsQuantity = _useState10[1];
|
|
2023
2043
|
|
|
2024
|
-
var
|
|
2044
|
+
var _useState11 = React.useState({
|
|
2025
2045
|
firstName: '',
|
|
2026
2046
|
lastName: '',
|
|
2027
2047
|
email: '',
|
|
@@ -2036,10 +2056,8 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2036
2056
|
state: '',
|
|
2037
2057
|
zip: ''
|
|
2038
2058
|
}),
|
|
2039
|
-
userValues =
|
|
2040
|
-
setUserValues =
|
|
2041
|
-
|
|
2042
|
-
var isLoggedIn = !!access_token;
|
|
2059
|
+
userValues = _useState11[0],
|
|
2060
|
+
setUserValues = _useState11[1];
|
|
2043
2061
|
|
|
2044
2062
|
var emailLogged = _get(userData, 'email', '') || _get(userValues, 'email', '');
|
|
2045
2063
|
|
|
@@ -2068,8 +2086,13 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2068
2086
|
qty += +item.quantity;
|
|
2069
2087
|
});
|
|
2070
2088
|
return qty;
|
|
2071
|
-
};
|
|
2089
|
+
};
|
|
2072
2090
|
|
|
2091
|
+
React.useEffect(function () {
|
|
2092
|
+
if ((pIsLoggedIn || access_token) && !isLoggedIn) {
|
|
2093
|
+
setIsLoggedIn(true);
|
|
2094
|
+
}
|
|
2095
|
+
}, [pIsLoggedIn, isLoggedIn, access_token]); //just once
|
|
2073
2096
|
|
|
2074
2097
|
React.useEffect(function () {
|
|
2075
2098
|
// fetch countries data
|
|
@@ -2178,7 +2201,7 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2178
2201
|
case 0:
|
|
2179
2202
|
_context4.prev = 0;
|
|
2180
2203
|
|
|
2181
|
-
if (!(
|
|
2204
|
+
if (!(isWindowDefined && token)) {
|
|
2182
2205
|
_context4.next = 10;
|
|
2183
2206
|
break;
|
|
2184
2207
|
}
|
|
@@ -2259,7 +2282,7 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2259
2282
|
_profileSpecifiedData = _get(updatedUserData, 'data.data');
|
|
2260
2283
|
_profileDataObj = setLoggedUserData(_profileSpecifiedData);
|
|
2261
2284
|
|
|
2262
|
-
if (
|
|
2285
|
+
if (isWindowDefined) {
|
|
2263
2286
|
window.localStorage.setItem('user_data', JSON.stringify(_profileDataObj));
|
|
2264
2287
|
}
|
|
2265
2288
|
|
|
@@ -2337,7 +2360,7 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2337
2360
|
profileSpecifiedData = _get(profileData, 'data.data');
|
|
2338
2361
|
profileDataObj = setLoggedUserData(profileSpecifiedData);
|
|
2339
2362
|
|
|
2340
|
-
if (
|
|
2363
|
+
if (isWindowDefined) {
|
|
2341
2364
|
window.localStorage.setItem('user_data', JSON.stringify(profileDataObj));
|
|
2342
2365
|
}
|
|
2343
2366
|
|
|
@@ -2361,7 +2384,7 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2361
2384
|
|
|
2362
2385
|
if (axios.isAxiosError(_context5.t1)) {
|
|
2363
2386
|
if (((_e$response2 = _context5.t1.response) == null ? void 0 : _e$response2.data.error) === 'invalid_token') {
|
|
2364
|
-
if (
|
|
2387
|
+
if (isWindowDefined) {
|
|
2365
2388
|
window.localStorage.removeItem('user_data');
|
|
2366
2389
|
window.localStorage.removeItem('access_token');
|
|
2367
2390
|
setUserExpired(true);
|
|
@@ -2499,6 +2522,7 @@ var BillingInfoContainer = function BillingInfoContainer(_ref3) {
|
|
|
2499
2522
|
onLogin: function onLogin() {
|
|
2500
2523
|
setShowModalLogin(false);
|
|
2501
2524
|
setUserExpired(false);
|
|
2525
|
+
onLoginSuccess();
|
|
2502
2526
|
},
|
|
2503
2527
|
alreadyHasUser: alreadyHasUser,
|
|
2504
2528
|
userExpired: userExpired,
|
|
@@ -2592,6 +2616,9 @@ var options = {
|
|
|
2592
2616
|
fontSize: '18px',
|
|
2593
2617
|
color: '#ffffff',
|
|
2594
2618
|
letterSpacing: '1px',
|
|
2619
|
+
':-webkit-autofill': {
|
|
2620
|
+
color: '#ffffff'
|
|
2621
|
+
},
|
|
2595
2622
|
'::placeholder': {
|
|
2596
2623
|
color: 'rgba(201, 201, 201, 0.5)'
|
|
2597
2624
|
}
|
|
@@ -2607,7 +2634,7 @@ var CheckoutForm = function CheckoutForm(_ref) {
|
|
|
2607
2634
|
_ref$onSubmit = _ref.onSubmit,
|
|
2608
2635
|
onSubmit = _ref$onSubmit === void 0 ? _identity : _ref$onSubmit,
|
|
2609
2636
|
_ref$stripeCardOption = _ref.stripeCardOptions,
|
|
2610
|
-
stripeCardOptions = _ref$stripeCardOption === void 0 ?
|
|
2637
|
+
stripeCardOptions = _ref$stripeCardOption === void 0 ? {} : _ref$stripeCardOption,
|
|
2611
2638
|
_ref$error = _ref.error,
|
|
2612
2639
|
error = _ref$error === void 0 ? null : _ref$error,
|
|
2613
2640
|
stripe_client_secret = _ref.stripe_client_secret,
|
|
@@ -2794,7 +2821,7 @@ var CheckoutForm = function CheckoutForm(_ref) {
|
|
|
2794
2821
|
}, React__default.createElement("span", {
|
|
2795
2822
|
className: "card_label_text"
|
|
2796
2823
|
}, "Card number"), React__default.createElement(reactStripeJs.CardNumberElement, {
|
|
2797
|
-
options: stripeCardOptions,
|
|
2824
|
+
options: _extends({}, options, stripeCardOptions),
|
|
2798
2825
|
onReady: _identity,
|
|
2799
2826
|
onChange: _identity,
|
|
2800
2827
|
onBlur: _identity,
|
|
@@ -2804,13 +2831,13 @@ var CheckoutForm = function CheckoutForm(_ref) {
|
|
|
2804
2831
|
}, React__default.createElement("span", {
|
|
2805
2832
|
className: "card_label_text"
|
|
2806
2833
|
}, "Expiration date"), React__default.createElement(reactStripeJs.CardExpiryElement, {
|
|
2807
|
-
options: stripeCardOptions
|
|
2834
|
+
options: _extends({}, options, stripeCardOptions)
|
|
2808
2835
|
})), React__default.createElement("label", {
|
|
2809
2836
|
className: "cvc_element"
|
|
2810
2837
|
}, React__default.createElement("span", {
|
|
2811
2838
|
className: "card_label_text"
|
|
2812
2839
|
}, "CVC"), React__default.createElement(reactStripeJs.CardCvcElement, {
|
|
2813
|
-
options: stripeCardOptions
|
|
2840
|
+
options: _extends({}, options, stripeCardOptions)
|
|
2814
2841
|
})), React__default.createElement("label", {
|
|
2815
2842
|
className: "zip_element"
|
|
2816
2843
|
}, React__default.createElement("p", {
|
|
@@ -2876,7 +2903,9 @@ var PaymentContainer = function PaymentContainer(_ref) {
|
|
|
2876
2903
|
_ref$onGetPaymentData2 = _ref.onGetPaymentDataError,
|
|
2877
2904
|
onGetPaymentDataError = _ref$onGetPaymentData2 === void 0 ? function () {} : _ref$onGetPaymentData2,
|
|
2878
2905
|
_ref$onPaymentError = _ref.onPaymentError,
|
|
2879
|
-
onPaymentError = _ref$onPaymentError === void 0 ? function () {} : _ref$onPaymentError
|
|
2906
|
+
onPaymentError = _ref$onPaymentError === void 0 ? function () {} : _ref$onPaymentError,
|
|
2907
|
+
_ref$stripeCardOption = _ref.stripeCardOptions,
|
|
2908
|
+
stripeCardOptions = _ref$stripeCardOption === void 0 ? {} : _ref$stripeCardOption;
|
|
2880
2909
|
|
|
2881
2910
|
var _useState = React.useState(initialReviewValues),
|
|
2882
2911
|
reviewData = _useState[0],
|
|
@@ -3097,13 +3126,15 @@ var PaymentContainer = function PaymentContainer(_ref) {
|
|
|
3097
3126
|
handleSetLoading: function handleSetLoading(value) {
|
|
3098
3127
|
return setPaymentIsLoading(value);
|
|
3099
3128
|
},
|
|
3100
|
-
conditions: conditions
|
|
3129
|
+
conditions: conditions,
|
|
3130
|
+
stripeCardOptions: stripeCardOptions
|
|
3101
3131
|
}))))));
|
|
3102
3132
|
};
|
|
3103
3133
|
|
|
3104
3134
|
var defaultSvg = 'https://img.icons8.com/ios-filled/50/000000/facebook-new.svg';
|
|
3105
3135
|
var ConfirmationContainer = function ConfirmationContainer(_ref) {
|
|
3106
|
-
var
|
|
3136
|
+
var isReferralEnabled = _ref.isReferralEnabled,
|
|
3137
|
+
_ref$referralPromotio = _ref.referralPromotions,
|
|
3107
3138
|
referralPromotions = _ref$referralPromotio === void 0 ? [] : _ref$referralPromotio,
|
|
3108
3139
|
_ref$shareButtons = _ref.shareButtons,
|
|
3109
3140
|
shareButtons = _ref$shareButtons === void 0 ? [] : _ref$shareButtons,
|
|
@@ -3163,7 +3194,7 @@ var ConfirmationContainer = function ConfirmationContainer(_ref) {
|
|
|
3163
3194
|
}
|
|
3164
3195
|
}, _callee, null, [[4, 13]]);
|
|
3165
3196
|
}))();
|
|
3166
|
-
}, [
|
|
3197
|
+
}, []);
|
|
3167
3198
|
return React__default.createElement("div", {
|
|
3168
3199
|
className: "confirmation-page"
|
|
3169
3200
|
}, React__default.createElement("p", {
|
|
@@ -3174,7 +3205,7 @@ var ConfirmationContainer = function ConfirmationContainer(_ref) {
|
|
|
3174
3205
|
className: "main"
|
|
3175
3206
|
}, "Your tickets have been emailed to you"), React__default.createElement("span", {
|
|
3176
3207
|
className: "helper"
|
|
3177
|
-
}, "Please bring them with you to the event")), data.disable_referral === false && React__default.createElement(React__default.Fragment, null, React__default.createElement("div", {
|
|
3208
|
+
}, "Please bring them with you to the event")), data.disable_referral === false && isReferralEnabled && React__default.createElement(React__default.Fragment, null, React__default.createElement("div", {
|
|
3178
3209
|
className: "referral_text_image_section"
|
|
3179
3210
|
}, React__default.createElement("div", {
|
|
3180
3211
|
className: "referral_text_section"
|
|
@@ -3487,7 +3518,11 @@ var WaitingList = function WaitingList(_ref) {
|
|
|
3487
3518
|
className: "waiting-list"
|
|
3488
3519
|
}, showSuccessMessage ? React__default.createElement("div", {
|
|
3489
3520
|
className: "success-message"
|
|
3490
|
-
}, React__default.createElement("
|
|
3521
|
+
}, React__default.createElement("p", {
|
|
3522
|
+
className: "added-success-message"
|
|
3523
|
+
}, "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("p", {
|
|
3524
|
+
className: "no-tickets-text"
|
|
3525
|
+
}, "No tickets are currently available for this event."), React__default.createElement("h2", null, "WAITING LIST"), React__default.createElement(formik.Formik, {
|
|
3491
3526
|
initialValues: {
|
|
3492
3527
|
ticketTypeId: '',
|
|
3493
3528
|
quantity: '',
|
|
@@ -3577,7 +3612,9 @@ var TicketsContainer = function TicketsContainer(_ref) {
|
|
|
3577
3612
|
_ref$onGetTicketsErro = _ref.onGetTicketsError,
|
|
3578
3613
|
onGetTicketsError = _ref$onGetTicketsErro === void 0 ? function () {} : _ref$onGetTicketsErro,
|
|
3579
3614
|
_ref$theme = _ref.theme,
|
|
3580
|
-
theme = _ref$theme === void 0 ? 'light' : _ref$theme
|
|
3615
|
+
theme = _ref$theme === void 0 ? 'light' : _ref$theme,
|
|
3616
|
+
_ref$queryPromoCode = _ref.queryPromoCode,
|
|
3617
|
+
queryPromoCode = _ref$queryPromoCode === void 0 ? '' : _ref$queryPromoCode;
|
|
3581
3618
|
|
|
3582
3619
|
var _useState = React.useState({}),
|
|
3583
3620
|
selectedTickets = _useState[0],
|
|
@@ -3603,7 +3640,7 @@ var TicketsContainer = function TicketsContainer(_ref) {
|
|
|
3603
3640
|
promoCode = _useState6[0],
|
|
3604
3641
|
setPromoCode = _useState6[1];
|
|
3605
3642
|
|
|
3606
|
-
var _useState7 = React.useState(
|
|
3643
|
+
var _useState7 = React.useState(queryPromoCode),
|
|
3607
3644
|
promoCodeUpdated = _useState7[0],
|
|
3608
3645
|
setPromoCodeUpdated = _useState7[1];
|
|
3609
3646
|
|