tf-checkout-react 1.7.30 → 2.0.0-beta.0
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/LICENSE +1 -1
- package/README.md +141 -1033
- package/dist/checkout.css +17 -0
- package/dist/index.d.mts +3930 -0
- package/dist/index.d.ts +3930 -30
- package/dist/index.esm.js +9123 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +9277 -6
- package/dist/index.js.map +1 -0
- package/dist/styles/addons.css +75 -0
- package/dist/styles/auth.css +294 -0
- package/dist/styles/billing.css +98 -0
- package/dist/styles/confirmation.css +51 -0
- package/dist/styles/foundation.css +146 -0
- package/dist/styles/payment.css +179 -0
- package/dist/styles/primitives.css +356 -0
- package/dist/styles/seat-map.css +46 -0
- package/dist/styles/tickets.css +285 -0
- package/dist/styles/verification-confirmation.css +258 -0
- package/package.json +93 -78
- package/src/.d.ts +1 -1
- package/src/CardInput.tsx +374 -0
- package/src/EmbeddedCheckout.tsx +400 -0
- package/src/ResumedCheckout.tsx +132 -0
- package/src/auth/AuthModal.tsx +231 -0
- package/src/auth/ForgotPasswordForm.tsx +93 -0
- package/src/auth/LoginForm.tsx +104 -0
- package/src/auth/PasswordInput.tsx +33 -0
- package/src/auth/RegisterForm.tsx +333 -0
- package/src/auth/ResetPasswordForm.tsx +112 -0
- package/src/auth/index.ts +5 -0
- package/src/checkout.css +17 -0
- package/src/configure.ts +29 -0
- package/src/confirmer.ts +439 -0
- package/src/index.ts +41 -30
- package/src/instance.ts +21 -0
- package/src/sections/AddOns.tsx +241 -0
- package/src/sections/BillingInfo.tsx +743 -0
- package/src/sections/Confirmation.tsx +146 -0
- package/src/sections/IDVerification.tsx +76 -0
- package/src/sections/OrderConfirmation.tsx +277 -0
- package/src/sections/OrderIDVerification.tsx +117 -0
- package/src/sections/OrderSummary.tsx +84 -0
- package/src/sections/Payment.tsx +541 -0
- package/src/sections/SeatMap.tsx +512 -0
- package/src/sections/Tickets.tsx +573 -0
- package/src/sections/billing/BillingAddressFields.tsx +138 -0
- package/src/sections/billing/BuyerField.tsx +75 -0
- package/src/sections/billing/TicketHoldersCard.tsx +119 -0
- package/src/sections/billing/types.ts +10 -0
- package/src/sections/index.ts +15 -0
- package/src/sections/seatMap.utils.ts +105 -0
- package/src/styles/addons.css +75 -0
- package/src/styles/auth.css +294 -0
- package/src/styles/billing.css +98 -0
- package/src/styles/confirmation.css +51 -0
- package/src/styles/foundation.css +146 -0
- package/src/styles/payment.css +179 -0
- package/src/styles/primitives.css +356 -0
- package/src/styles/seat-map.css +46 -0
- package/src/styles/tickets.css +285 -0
- package/src/styles/verification-confirmation.css +258 -0
- package/src/typings.d.ts +2 -2
- package/src/ui/Button.tsx +38 -0
- package/src/ui/Card.tsx +54 -0
- package/src/ui/CheckoutProvider.tsx +172 -0
- package/src/ui/CustomFields.tsx +195 -0
- package/src/ui/Field.tsx +114 -0
- package/src/ui/I18nProvider.tsx +36 -0
- package/src/ui/InstallmentPicker.tsx +69 -0
- package/src/ui/Loader.tsx +12 -0
- package/src/ui/PaymentMethods.tsx +133 -0
- package/src/ui/PriceLine.tsx +24 -0
- package/src/ui/QuantitySelect.tsx +50 -0
- package/src/ui/Stepper.tsx +36 -0
- package/src/ui/Timer.tsx +34 -0
- package/src/ui/TimerBanner.tsx +55 -0
- package/src/ui/cx.ts +3 -0
- package/src/ui/index.ts +54 -0
- package/src/ui/theme.ts +83 -0
- package/src/useCheckout.ts +35 -0
- package/src/xendit.ts +438 -0
- package/dist/adapters/customFields.d.ts +0 -12
- package/dist/adapters/index.d.ts +0 -1
- package/dist/api/auth.d.ts +0 -27
- package/dist/api/cart.d.ts +0 -2
- package/dist/api/checkout.d.ts +0 -3
- package/dist/api/common.d.ts +0 -11
- package/dist/api/guestTicketDelegation.d.ts +0 -47
- package/dist/api/index.d.ts +0 -82
- package/dist/api/interceptors.d.ts +0 -1
- package/dist/api/orders.d.ts +0 -2
- package/dist/api/payment.d.ts +0 -5
- package/dist/api/preRegistrationComplete.d.ts +0 -3
- package/dist/api/publicRequest.d.ts +0 -9
- package/dist/api/resale.d.ts +0 -5
- package/dist/components/account-settings/index.d.ts +0 -3
- package/dist/components/addonsContainer/AddonComponent.d.ts +0 -18
- package/dist/components/addonsContainer/SimpleAddonsContainer.d.ts +0 -20
- package/dist/components/addonsContainer/adapters/index.d.ts +0 -12
- package/dist/components/addonsContainer/index.d.ts +0 -22
- package/dist/components/addonsContainer/normalizers/index.d.ts +0 -1
- package/dist/components/addonsContainer/useAddons.d.ts +0 -23
- package/dist/components/addonsContainer/utils/index.d.ts +0 -16
- package/dist/components/billing-info-container/hooks/index.d.ts +0 -3
- package/dist/components/billing-info-container/hooks/usePaymentContext.d.ts +0 -5
- package/dist/components/billing-info-container/hooks/usePaymentRedirect.d.ts +0 -14
- package/dist/components/billing-info-container/hooks/useStripePayment.d.ts +0 -18
- package/dist/components/billing-info-container/index.d.ts +0 -69
- package/dist/components/billing-info-container/utils.d.ts +0 -59
- package/dist/components/common/Checkbox.d.ts +0 -11
- package/dist/components/common/CheckboxField/index.d.ts +0 -9
- package/dist/components/common/CopyField.d.ts +0 -12
- package/dist/components/common/CopyMessageModal.d.ts +0 -7
- package/dist/components/common/CustomField.d.ts +0 -26
- package/dist/components/common/DatePickerField.d.ts +0 -20
- package/dist/components/common/FieldSection/index.d.ts +0 -19
- package/dist/components/common/FieldSection/utils/index.d.ts +0 -8
- package/dist/components/common/FormikPhoneNumberField.d.ts +0 -11
- package/dist/components/common/Loader.d.ts +0 -2
- package/dist/components/common/ModalComponent/index.d.ts +0 -16
- package/dist/components/common/NativeSelectFeild/index.d.ts +0 -21
- package/dist/components/common/PhoneNumberField.d.ts +0 -14
- package/dist/components/common/PoweredBy.d.ts +0 -2
- package/dist/components/common/RadioField.d.ts +0 -11
- package/dist/components/common/RadioGroupField/index.d.ts +0 -17
- package/dist/components/common/RedirectModal.d.ts +0 -7
- package/dist/components/common/SelectField/index.d.ts +0 -19
- package/dist/components/common/SnackbarAlert.d.ts +0 -13
- package/dist/components/common/index.d.ts +0 -11
- package/dist/components/common/socials.d.ts +0 -10
- package/dist/components/confirmModal/index.d.ts +0 -10
- package/dist/components/confirmationContainer/config.d.ts +0 -1
- package/dist/components/confirmationContainer/index.d.ts +0 -46
- package/dist/components/confirmationContainer/social-buttons.d.ts +0 -16
- package/dist/components/countdown/index.d.ts +0 -14
- package/dist/components/delegationsContainer/IssueComponent.d.ts +0 -10
- package/dist/components/delegationsContainer/IssueTicketForm.d.ts +0 -9
- package/dist/components/delegationsContainer/TicketsAssignedTable.d.ts +0 -11
- package/dist/components/delegationsContainer/TicketsAvailableTable.d.ts +0 -11
- package/dist/components/delegationsContainer/index.d.ts +0 -10
- package/dist/components/forgotPasswordModal/index.d.ts +0 -12
- package/dist/components/idVerificationContainer/VerificationPendingModal.d.ts +0 -10
- package/dist/components/idVerificationContainer/constants.d.ts +0 -21
- package/dist/components/idVerificationContainer/index.d.ts +0 -16
- package/dist/components/index.d.ts +0 -12
- package/dist/components/loginForm/index.d.ts +0 -31
- package/dist/components/loginModal/SignUpForm.d.ts +0 -10
- package/dist/components/loginModal/constants.d.ts +0 -39
- package/dist/components/loginModal/index.d.ts +0 -22
- package/dist/components/myTicketsContainer/index.d.ts +0 -16
- package/dist/components/myTicketsContainer/row.d.ts +0 -3
- package/dist/components/myTicketsContainer/tableConfig.d.ts +0 -5
- package/dist/components/orderDetailsContainer/CustomFieldsForm.d.ts +0 -12
- package/dist/components/orderDetailsContainer/TicketHolderCustomFields.d.ts +0 -10
- package/dist/components/orderDetailsContainer/index.d.ts +0 -66
- package/dist/components/orderDetailsContainer/ticketsTable.d.ts +0 -46
- package/dist/components/orderDetailsContainer/utils/index.d.ts +0 -6
- package/dist/components/paymentContainer/OrderDetails.d.ts +0 -9
- package/dist/components/paymentContainer/PaymentPlanSection.d.ts +0 -10
- package/dist/components/paymentContainer/handlePayment.d.ts +0 -15
- package/dist/components/paymentContainer/index.d.ts +0 -39
- package/dist/components/preRegistration/FieldsSection.d.ts +0 -19
- package/dist/components/preRegistration/Influancers.d.ts +0 -2
- package/dist/components/preRegistration/PreRegistrationComplete.d.ts +0 -13
- package/dist/components/preRegistration/PreRegistrationInformations.d.ts +0 -2
- package/dist/components/preRegistration/Prewards.d.ts +0 -2
- package/dist/components/preRegistration/ShareOptions.d.ts +0 -2
- package/dist/components/preRegistration/constants.d.ts +0 -2
- package/dist/components/preRegistration/index.d.ts +0 -23
- package/dist/components/preRegistration/utils.d.ts +0 -12
- package/dist/components/registerForm/adapters/index.d.ts +0 -4
- package/dist/components/registerForm/constants.d.ts +0 -1
- package/dist/components/registerForm/index.d.ts +0 -16
- package/dist/components/registerModal/index.d.ts +0 -12
- package/dist/components/resetPasswordContainer/index.d.ts +0 -10
- package/dist/components/rsvpContainer/index.d.ts +0 -7
- package/dist/components/seatMapContainer/SeatMapComponent.d.ts +0 -8
- package/dist/components/seatMapContainer/TicketsSection.d.ts +0 -9
- package/dist/components/seatMapContainer/addToCart.d.ts +0 -14
- package/dist/components/seatMapContainer/index.d.ts +0 -2
- package/dist/components/seatMapContainer/utils.d.ts +0 -6
- package/dist/components/signupModal/index.d.ts +0 -12
- package/dist/components/ticketResale/index.d.ts +0 -12
- package/dist/components/ticketResaleModal/index.d.ts +0 -19
- package/dist/components/ticketsContainer/AccessCodeSection.d.ts +0 -7
- package/dist/components/ticketsContainer/InfoIcon.d.ts +0 -5
- package/dist/components/ticketsContainer/PromoCodeSection.d.ts +0 -15
- package/dist/components/ticketsContainer/ReferralLogic.d.ts +0 -5
- package/dist/components/ticketsContainer/TicketRow.d.ts +0 -13
- package/dist/components/ticketsContainer/TicketsSection.d.ts +0 -20
- package/dist/components/ticketsContainer/TimeSlotTicketRow.d.ts +0 -19
- package/dist/components/ticketsContainer/TimeSlotsSection.d.ts +0 -25
- package/dist/components/ticketsContainer/index.d.ts +0 -93
- package/dist/components/ticketsContainer/utils.d.ts +0 -13
- package/dist/components/timerWidget/index.d.ts +0 -16
- package/dist/components/waitingList/index.d.ts +0 -9
- package/dist/constants/index.d.ts +0 -7
- package/dist/env.d.ts +0 -16
- package/dist/hoc/CustomFields/index.d.ts +0 -3
- package/dist/hoc/index.d.ts +0 -1
- package/dist/hooks/index.d.ts +0 -1
- package/dist/hooks/useCookieListener.d.ts +0 -1
- package/dist/hooks/useEventListener.d.ts +0 -1
- package/dist/hooks/useLocalStorageListener.d.ts +0 -1
- package/dist/hooks/useOnline.d.ts +0 -1
- package/dist/hooks/usePixel.d.ts +0 -6
- package/dist/images/Polygon.png +0 -0
- package/dist/images/cross.svg +0 -44
- package/dist/images/done.svg +0 -3
- package/dist/images/edit.svg +0 -10
- package/dist/images/email.svg +0 -1
- package/dist/images/instagram.svg +0 -5
- package/dist/images/logo-ttf.png +0 -0
- package/dist/images/spotify.svg +0 -6
- package/dist/images/user.svg +0 -1
- package/dist/images/xmark.svg +0 -92
- package/dist/normalizers/index.d.ts +0 -4
- package/dist/tf-checkout-react.cjs.development.js +0 -16149
- package/dist/tf-checkout-react.cjs.development.js.map +0 -1
- package/dist/tf-checkout-react.cjs.production.min.js +0 -2
- package/dist/tf-checkout-react.cjs.production.min.js.map +0 -1
- package/dist/tf-checkout-react.esm.js +0 -16116
- package/dist/tf-checkout-react.esm.js.map +0 -1
- package/dist/tf-checkout-styles.css +0 -1
- package/dist/types/add_on.d.ts +0 -8
- package/dist/types/billing-info-data.d.ts +0 -27
- package/dist/types/checkoutPageConfigs.d.ts +0 -13
- package/dist/types/index.d.ts +0 -6
- package/dist/types/order-data.d.ts +0 -15
- package/dist/types/payment-field.d.ts +0 -6
- package/dist/types/payment-plan-configuration.d.ts +0 -18
- package/dist/types/referral-promotion.d.ts +0 -6
- package/dist/types/verification.d.ts +0 -12
- package/dist/utils/adaptStripeErrors.d.ts +0 -8
- package/dist/utils/auth.d.ts +0 -21
- package/dist/utils/cookies.d.ts +0 -3
- package/dist/utils/createCheckoutDataBodyWithDefaultHolder.d.ts +0 -23
- package/dist/utils/createMarkup.d.ts +0 -3
- package/dist/utils/customFields.d.ts +0 -35
- package/dist/utils/downloadPDF.d.ts +0 -1
- package/dist/utils/form.d.ts +0 -3
- package/dist/utils/formikErrorFocus.d.ts +0 -2
- package/dist/utils/getDomain.d.ts +0 -1
- package/dist/utils/getImage.d.ts +0 -1
- package/dist/utils/getQueryVariable.d.ts +0 -1
- package/dist/utils/htmlNodeFromString.d.ts +0 -1
- package/dist/utils/index.d.ts +0 -15
- package/dist/utils/isBrowser.d.ts +0 -1
- package/dist/utils/isValidNumber.d.ts +0 -1
- package/dist/utils/jsonUtils.d.ts +0 -1
- package/dist/utils/replaceVarInString.d.ts +0 -1
- package/dist/utils/setConfigs.d.ts +0 -11
- package/dist/utils/showZero.d.ts +0 -1
- package/dist/validators/index.d.ts +0 -8
- package/src/adapters/customFields.ts +0 -85
- package/src/adapters/index.ts +0 -1
- package/src/api/auth.ts +0 -88
- package/src/api/cart.ts +0 -28
- package/src/api/checkout.ts +0 -28
- package/src/api/common.ts +0 -190
- package/src/api/guestTicketDelegation.ts +0 -79
- package/src/api/index.ts +0 -346
- package/src/api/interceptors.ts +0 -77
- package/src/api/orders.ts +0 -30
- package/src/api/payment.ts +0 -77
- package/src/api/preRegistrationComplete.ts +0 -37
- package/src/api/publicRequest.ts +0 -47
- package/src/api/resale.ts +0 -28
- package/src/assets/images/Polygon.png +0 -0
- package/src/assets/images/cross.svg +0 -44
- package/src/assets/images/done.svg +0 -3
- package/src/assets/images/edit.svg +0 -10
- package/src/assets/images/email.svg +0 -1
- package/src/assets/images/instagram.svg +0 -5
- package/src/assets/images/logo-ttf.png +0 -0
- package/src/assets/images/spotify.svg +0 -6
- package/src/assets/images/user.svg +0 -1
- package/src/assets/images/xmark.svg +0 -92
- package/src/components/account-settings/index.tsx +0 -161
- package/src/components/account-settings/style.css +0 -200
- package/src/components/addonsContainer/AddonComponent.tsx +0 -204
- package/src/components/addonsContainer/SimpleAddonsContainer.tsx +0 -459
- package/src/components/addonsContainer/adapters/index.tsx +0 -62
- package/src/components/addonsContainer/index.tsx +0 -353
- package/src/components/addonsContainer/normalizers/index.ts +0 -5
- package/src/components/addonsContainer/useAddons.ts +0 -248
- package/src/components/addonsContainer/utils/index.tsx +0 -231
- package/src/components/billing-info-container/hooks/index.ts +0 -3
- package/src/components/billing-info-container/hooks/usePaymentContext.ts +0 -22
- package/src/components/billing-info-container/hooks/usePaymentRedirect.ts +0 -145
- package/src/components/billing-info-container/hooks/useStripePayment.ts +0 -119
- package/src/components/billing-info-container/index.tsx +0 -1695
- package/src/components/billing-info-container/style.css +0 -150
- package/src/components/billing-info-container/utils.tsx +0 -413
- package/src/components/common/Checkbox.tsx +0 -51
- package/src/components/common/CheckboxField/index.tsx +0 -41
- package/src/components/common/CopyField.tsx +0 -53
- package/src/components/common/CopyMessageModal.tsx +0 -34
- package/src/components/common/CustomField.tsx +0 -168
- package/src/components/common/DatePickerField.tsx +0 -126
- package/src/components/common/FieldSection/index.tsx +0 -141
- package/src/components/common/FieldSection/utils/index.tsx +0 -92
- package/src/components/common/FormikPhoneNumberField.tsx +0 -51
- package/src/components/common/Loader.tsx +0 -8
- package/src/components/common/ModalComponent/index.tsx +0 -68
- package/src/components/common/NativeSelectFeild/index.tsx +0 -86
- package/src/components/common/PhoneNumberField.tsx +0 -117
- package/src/components/common/PoweredBy.tsx +0 -15
- package/src/components/common/RadioField.tsx +0 -36
- package/src/components/common/RadioGroupField/index.tsx +0 -76
- package/src/components/common/RedirectModal.tsx +0 -43
- package/src/components/common/SelectField/index.tsx +0 -104
- package/src/components/common/SnackbarAlert.tsx +0 -52
- package/src/components/common/index.tsx +0 -11
- package/src/components/common/socials.tsx +0 -33
- package/src/components/confirmModal/index.tsx +0 -60
- package/src/components/confirmationContainer/config.ts +0 -79
- package/src/components/confirmationContainer/index.tsx +0 -349
- package/src/components/confirmationContainer/social-buttons.tsx +0 -149
- package/src/components/confirmationContainer/style.css +0 -206
- package/src/components/countdown/index.tsx +0 -100
- package/src/components/countdown/style.css +0 -10
- package/src/components/delegationsContainer/IssueComponent.tsx +0 -156
- package/src/components/delegationsContainer/IssueTicketForm.tsx +0 -109
- package/src/components/delegationsContainer/TicketsAssignedTable.tsx +0 -55
- package/src/components/delegationsContainer/TicketsAvailableTable.tsx +0 -54
- package/src/components/delegationsContainer/index.tsx +0 -83
- package/src/components/forgotPasswordModal/index.tsx +0 -138
- package/src/components/forgotPasswordModal/style.css +0 -47
- package/src/components/idVerificationContainer/VerificationPendingModal.tsx +0 -47
- package/src/components/idVerificationContainer/constants.ts +0 -27
- package/src/components/idVerificationContainer/index.tsx +0 -323
- package/src/components/index.ts +0 -12
- package/src/components/loginForm/index.tsx +0 -202
- package/src/components/loginModal/SignUpForm.tsx +0 -329
- package/src/components/loginModal/constants.ts +0 -46
- package/src/components/loginModal/index.tsx +0 -263
- package/src/components/loginModal/style.css +0 -116
- package/src/components/myTicketsContainer/index.tsx +0 -228
- package/src/components/myTicketsContainer/row.tsx +0 -46
- package/src/components/myTicketsContainer/style.css +0 -40
- package/src/components/myTicketsContainer/tableConfig.tsx +0 -80
- package/src/components/myTicketsContainer/types.d.ts +0 -41
- package/src/components/orderDetailsContainer/CustomFieldsForm.tsx +0 -75
- package/src/components/orderDetailsContainer/TicketHolderCustomFields.tsx +0 -100
- package/src/components/orderDetailsContainer/index.tsx +0 -586
- package/src/components/orderDetailsContainer/style.css +0 -77
- package/src/components/orderDetailsContainer/ticketsTable.tsx +0 -246
- package/src/components/orderDetailsContainer/utils/index.tsx +0 -55
- package/src/components/paymentContainer/OrderDetails.tsx +0 -277
- package/src/components/paymentContainer/PaymentPlanSection.tsx +0 -169
- package/src/components/paymentContainer/handlePayment.ts +0 -86
- package/src/components/paymentContainer/index.tsx +0 -643
- package/src/components/paymentContainer/style.css +0 -196
- package/src/components/preRegistration/FieldsSection.tsx +0 -150
- package/src/components/preRegistration/Influancers.tsx +0 -34
- package/src/components/preRegistration/PreRegistrationComplete.tsx +0 -186
- package/src/components/preRegistration/PreRegistrationInformations.tsx +0 -60
- package/src/components/preRegistration/Prewards.tsx +0 -41
- package/src/components/preRegistration/ShareOptions.tsx +0 -77
- package/src/components/preRegistration/constants.tsx +0 -169
- package/src/components/preRegistration/index.tsx +0 -330
- package/src/components/preRegistration/style.css +0 -3
- package/src/components/preRegistration/utils.ts +0 -163
- package/src/components/registerForm/adapters/index.tsx +0 -10
- package/src/components/registerForm/constants.tsx +0 -98
- package/src/components/registerForm/index.tsx +0 -188
- package/src/components/registerModal/index.tsx +0 -154
- package/src/components/registerModal/style.css +0 -18
- package/src/components/resetPasswordContainer/index.tsx +0 -102
- package/src/components/resetPasswordContainer/style.css +0 -36
- package/src/components/rsvpContainer/index.tsx +0 -126
- package/src/components/seatMapContainer/SeatMapComponent.tsx +0 -77
- package/src/components/seatMapContainer/TicketsSection.tsx +0 -286
- package/src/components/seatMapContainer/addToCart.ts +0 -66
- package/src/components/seatMapContainer/index.tsx +0 -443
- package/src/components/seatMapContainer/utils.ts +0 -133
- package/src/components/signupModal/index.tsx +0 -178
- package/src/components/signupModal/style.css +0 -58
- package/src/components/ticketResale/index.tsx +0 -86
- package/src/components/ticketResaleModal/index.tsx +0 -224
- package/src/components/ticketResaleModal/style.css +0 -28
- package/src/components/ticketsContainer/AccessCodeSection.tsx +0 -50
- package/src/components/ticketsContainer/InfoIcon.tsx +0 -35
- package/src/components/ticketsContainer/PromoCodeSection.tsx +0 -116
- package/src/components/ticketsContainer/ReferralLogic.tsx +0 -33
- package/src/components/ticketsContainer/TicketRow.tsx +0 -107
- package/src/components/ticketsContainer/TicketsSection.tsx +0 -350
- package/src/components/ticketsContainer/TimeSlotTicketRow.tsx +0 -243
- package/src/components/ticketsContainer/TimeSlotsSection.tsx +0 -194
- package/src/components/ticketsContainer/index.tsx +0 -986
- package/src/components/ticketsContainer/style.css +0 -178
- package/src/components/ticketsContainer/utils.ts +0 -35
- package/src/components/timerWidget/index.tsx +0 -97
- package/src/components/timerWidget/style.css +0 -35
- package/src/components/waitingList/index.tsx +0 -190
- package/src/components/waitingList/style.css +0 -27
- package/src/constants/index.ts +0 -3
- package/src/env.ts +0 -29
- package/src/hoc/CustomFields/index.tsx +0 -85
- package/src/hoc/index.ts +0 -1
- package/src/hooks/index.ts +0 -1
- package/src/hooks/useCookieListener.ts +0 -32
- package/src/hooks/useEventListener.ts +0 -32
- package/src/hooks/useLocalStorageListener.ts +0 -32
- package/src/hooks/useOnline.ts +0 -21
- package/src/hooks/usePixel.ts +0 -88
- package/src/normalizers/index.ts +0 -49
- package/src/types/add_on.ts +0 -8
- package/src/types/api/auth.d.ts +0 -63
- package/src/types/api/axiosResponse.d.ts +0 -6
- package/src/types/api/cart.d.ts +0 -73
- package/src/types/api/checkout.d.ts +0 -92
- package/src/types/api/common.d.ts +0 -153
- package/src/types/api/guestTicketDelegation.d.ts +0 -18
- package/src/types/api/orders.d.ts +0 -116
- package/src/types/api/payment.d.ts +0 -180
- package/src/types/api/preRegistration.d.ts +0 -11
- package/src/types/api/preRegistrationComplete.d.ts +0 -95
- package/src/types/api/ticketResale.d.ts +0 -13
- package/src/types/billing-info-data.ts +0 -37
- package/src/types/checkoutPageConfigs.ts +0 -13
- package/src/types/formFields.d.ts +0 -29
- package/src/types/index.ts +0 -6
- package/src/types/order-data.ts +0 -16
- package/src/types/payment-field.ts +0 -7
- package/src/types/payment-plan-configuration.ts +0 -19
- package/src/types/pre-registration-complete.d.ts +0 -47
- package/src/types/referral-promotion.ts +0 -7
- package/src/types/seatMap.d.ts +0 -159
- package/src/types/verification.ts +0 -12
- package/src/utils/adaptStripeErrors.ts +0 -26
- package/src/utils/auth.ts +0 -45
- package/src/utils/cookies.ts +0 -73
- package/src/utils/createCheckoutDataBodyWithDefaultHolder.ts +0 -81
- package/src/utils/createMarkup.ts +0 -1
- package/src/utils/customFields.ts +0 -80
- package/src/utils/downloadPDF.tsx +0 -42
- package/src/utils/form.ts +0 -34
- package/src/utils/formikErrorFocus.ts +0 -24
- package/src/utils/getDomain.ts +0 -21
- package/src/utils/getImage.ts +0 -14
- package/src/utils/getQueryVariable.ts +0 -13
- package/src/utils/htmlNodeFromString.ts +0 -6
- package/src/utils/index.ts +0 -15
- package/src/utils/isBrowser.ts +0 -2
- package/src/utils/isValidNumber.ts +0 -8
- package/src/utils/jsonUtils.ts +0 -8
- package/src/utils/replaceVarInString.ts +0 -9
- package/src/utils/setConfigs.ts +0 -24
- package/src/utils/showZero.tsx +0 -10
- package/src/validators/index.ts +0 -61
package/src/api/orders.ts
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { AxiosRequestConfig, AxiosResponse } from 'axios'
|
|
2
|
-
|
|
3
|
-
import { CONFIGS } from '../utils'
|
|
4
|
-
import { publicRequest } from './publicRequest'
|
|
5
|
-
|
|
6
|
-
export const getOrders = async (
|
|
7
|
-
page: number,
|
|
8
|
-
limit: number,
|
|
9
|
-
eventSlug: string
|
|
10
|
-
): Promise<IOrdersResponse> => {
|
|
11
|
-
const slug = eventSlug || CONFIGS.EVENT_SLUG || ''
|
|
12
|
-
|
|
13
|
-
const response: AxiosResponse<IOrdersResponse, AxiosRequestConfig> =
|
|
14
|
-
await publicRequest.get(
|
|
15
|
-
`v1/account/orders/?page=${page}&limit=${limit}&filter[event]=${slug}&${
|
|
16
|
-
CONFIGS.BRAND_SLUG
|
|
17
|
-
? `filter[brand]=${CONFIGS.BRAND_SLUG}&filter[subbrands]=true`
|
|
18
|
-
: ''
|
|
19
|
-
}`
|
|
20
|
-
)
|
|
21
|
-
|
|
22
|
-
return response.data
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export const getOrderDetails = async (orderId: string): Promise<IOrderResponse> => {
|
|
26
|
-
const response: AxiosResponse<IOrderResponse, AxiosRequestConfig> =
|
|
27
|
-
await publicRequest.get(`v1/account/order/${orderId}`)
|
|
28
|
-
|
|
29
|
-
return response.data
|
|
30
|
-
}
|
package/src/api/payment.ts
DELETED
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import { AxiosRequestConfig, AxiosResponse } from 'axios'
|
|
2
|
-
import _map from 'lodash/map'
|
|
3
|
-
import { nanoid } from 'nanoid'
|
|
4
|
-
|
|
5
|
-
import { isBrowser } from '../utils'
|
|
6
|
-
import { publicRequest } from './publicRequest'
|
|
7
|
-
|
|
8
|
-
export const getPaymentData = async (hash: string): Promise<IPaymentDataResponse> => {
|
|
9
|
-
const response: AxiosResponse<IPaymentDataResponse, AxiosRequestConfig> =
|
|
10
|
-
await publicRequest.get(`v1/order/${hash}/review`, {
|
|
11
|
-
headers: { 'Referer-Url': isBrowser ? document.referrer : '' },
|
|
12
|
-
})
|
|
13
|
-
|
|
14
|
-
return response.data
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export const handlePaymentSuccess = async (
|
|
18
|
-
orderHash: string
|
|
19
|
-
): Promise<IPaymentSuccessDataResponse> => {
|
|
20
|
-
const response: AxiosResponse<IPaymentSuccessDataResponse, AxiosRequestConfig> =
|
|
21
|
-
await publicRequest.post(`v1/order/${orderHash}/success`, undefined, {
|
|
22
|
-
headers: {
|
|
23
|
-
...publicRequest.defaults.headers.common,
|
|
24
|
-
'Referer-Url': isBrowser ? document.referrer : '',
|
|
25
|
-
},
|
|
26
|
-
})
|
|
27
|
-
return response.data
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
export const handleFreeSuccess = async (
|
|
31
|
-
orderHash: string
|
|
32
|
-
): Promise<IFreeRegistrationDataResponse> => {
|
|
33
|
-
const response: AxiosResponse<IFreeRegistrationDataResponse, AxiosRequestConfig> =
|
|
34
|
-
await publicRequest.post(
|
|
35
|
-
`v1/order/${orderHash}/complete_free_registration`,
|
|
36
|
-
undefined,
|
|
37
|
-
{ headers: { 'Referer-Url': isBrowser ? document.referrer : '' } }
|
|
38
|
-
)
|
|
39
|
-
return response.data
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
export const getConfirmationData = async (
|
|
43
|
-
orderHash: string
|
|
44
|
-
): Promise<ICheckoutCompleteDataResponse> => {
|
|
45
|
-
const response: AxiosResponse<ICheckoutCompleteDataResponse, AxiosRequestConfig> =
|
|
46
|
-
await publicRequest.get(`v1/order/${orderHash}/payment/complete`)
|
|
47
|
-
return response.data
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
export const getConditions = async (
|
|
51
|
-
eventId: string
|
|
52
|
-
): Promise<IConditionsAdaptedDataResponse> => {
|
|
53
|
-
const response: AxiosResponse<IConditionsDataResponse, AxiosRequestConfig> =
|
|
54
|
-
await publicRequest.get(`v1/event/${eventId}/conditions`)
|
|
55
|
-
|
|
56
|
-
const adaptedData: IConditionsAdaptedData[] = _map(
|
|
57
|
-
response.data.data.attributes,
|
|
58
|
-
item => ({
|
|
59
|
-
id: nanoid(),
|
|
60
|
-
text: item,
|
|
61
|
-
checked: false,
|
|
62
|
-
})
|
|
63
|
-
)
|
|
64
|
-
|
|
65
|
-
const returnData: AxiosResponse<IConditionsAdaptedDataResponse, AxiosRequestConfig> = {
|
|
66
|
-
...response,
|
|
67
|
-
data: {
|
|
68
|
-
...response.data,
|
|
69
|
-
data: {
|
|
70
|
-
...response.data.data,
|
|
71
|
-
attributes: adaptedData,
|
|
72
|
-
},
|
|
73
|
-
},
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
return returnData.data
|
|
77
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { AxiosRequestConfig, AxiosResponse } from 'axios'
|
|
2
|
-
|
|
3
|
-
import { publicRequest } from '../api/publicRequest'
|
|
4
|
-
|
|
5
|
-
export const getPreRegistrationInfluencers = async (
|
|
6
|
-
data: IInfluancersRequestData
|
|
7
|
-
): Promise<IInfluancersResponseData> => {
|
|
8
|
-
const response: AxiosResponse<IInfluancersResponseData, AxiosRequestConfig> =
|
|
9
|
-
await publicRequest.get(`v1/event/${data.eventId}/pre-registration/influencers`)
|
|
10
|
-
return response.data
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export const getPreRegistrationShareOptions = async (
|
|
14
|
-
data: IShareOptionsRequestData
|
|
15
|
-
): Promise<IShareOptionsResponseData> => {
|
|
16
|
-
const response: AxiosResponse<IShareOptionsResponseData, AxiosRequestConfig> =
|
|
17
|
-
await publicRequest.get(`/v1/pre-registration/${data.hash}/confirmation-page`)
|
|
18
|
-
return response.data
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
export const submitShareAction = async (
|
|
22
|
-
data: ISubmitShareActionRequestData
|
|
23
|
-
): Promise<ISubmitShareActionResponseData> => {
|
|
24
|
-
const { eventActionId, accessToken, hash } = data
|
|
25
|
-
|
|
26
|
-
const response: AxiosResponse<ISubmitShareActionResponseData, AxiosRequestConfig> =
|
|
27
|
-
await publicRequest.post(`/v1/pre-registration/${hash}/submit-action`, {
|
|
28
|
-
data: {
|
|
29
|
-
attributes: {
|
|
30
|
-
phase: 'pre-registration',
|
|
31
|
-
eventActionId: Number(eventActionId),
|
|
32
|
-
accessToken,
|
|
33
|
-
},
|
|
34
|
-
},
|
|
35
|
-
})
|
|
36
|
-
return response.data
|
|
37
|
-
}
|
package/src/api/publicRequest.ts
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import axios, { AxiosInstance } from 'axios'
|
|
2
|
-
|
|
3
|
-
import { getCookieByName } from '../utils'
|
|
4
|
-
|
|
5
|
-
const headers: { [key: string]: string } = {
|
|
6
|
-
Accept: 'application/vnd.api+json',
|
|
7
|
-
'Content-Type': 'application/vnd.api+json',
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
const isWindowDefined = typeof window !== 'undefined'
|
|
11
|
-
const authGuestToken = isWindowDefined ? localStorage.getItem('auth_guest_token') : ''
|
|
12
|
-
if (isWindowDefined && authGuestToken) {
|
|
13
|
-
headers['Authorization-Guest'] = authGuestToken
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
export const setAxiosHeader = (key: string, value: string | number) => {
|
|
17
|
-
headers[key] = `${value}`
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
interface IPublicRequest extends AxiosInstance {
|
|
21
|
-
setBaseUrl: (baseUrl: string) => void;
|
|
22
|
-
setGuestToken: (guestToken: string) => void;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export const publicRequest: IPublicRequest = axios.create({
|
|
26
|
-
baseURL: 'https://www.ticketfairy.com/api',
|
|
27
|
-
headers,
|
|
28
|
-
withCredentials: true,
|
|
29
|
-
}) as IPublicRequest
|
|
30
|
-
|
|
31
|
-
publicRequest.interceptors.request.use(config => {
|
|
32
|
-
if (getCookieByName('X-TF-ECOMMERCE')) {
|
|
33
|
-
config.headers['X-TF-ECOMMERCE'] = getCookieByName('X-TF-ECOMMERCE')
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
return config
|
|
37
|
-
})
|
|
38
|
-
|
|
39
|
-
publicRequest.setBaseUrl = (baseUrl: string) =>
|
|
40
|
-
(publicRequest.defaults.baseURL = baseUrl + '/api')
|
|
41
|
-
|
|
42
|
-
publicRequest.setGuestToken = (guestToken: string) =>
|
|
43
|
-
(publicRequest.defaults.headers.common['Authorization-Guest'] = guestToken)
|
|
44
|
-
|
|
45
|
-
export const setBaseUrl = (baseUrl: string) => {
|
|
46
|
-
publicRequest.setBaseUrl(baseUrl)
|
|
47
|
-
}
|
package/src/api/resale.ts
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { AxiosRequestConfig, AxiosResponse } from 'axios'
|
|
2
|
-
|
|
3
|
-
import { publicRequest } from './publicRequest'
|
|
4
|
-
|
|
5
|
-
export const resaleTicket = async (
|
|
6
|
-
data: FormData,
|
|
7
|
-
hash: string
|
|
8
|
-
): Promise<IResaleTicketResponse> => {
|
|
9
|
-
const response: AxiosResponse<IResaleTicketResponse, AxiosRequestConfig> =
|
|
10
|
-
await publicRequest.post(`v1/ticket/${hash}/sell`, data)
|
|
11
|
-
|
|
12
|
-
return response.data
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export const removeFromResale = async (
|
|
16
|
-
hash: string
|
|
17
|
-
): Promise<IRemoveFromResaleResponse> => {
|
|
18
|
-
const response: AxiosResponse<IRemoveFromResaleResponse, AxiosRequestConfig> =
|
|
19
|
-
await publicRequest.delete(`v1/ticket/${hash}/sell`)
|
|
20
|
-
|
|
21
|
-
return response.data
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export const processTicket = (hash: string) =>
|
|
25
|
-
publicRequest.post(`v1/ticket/${hash}/process`)
|
|
26
|
-
|
|
27
|
-
export const declineInvitation = (hash: string) =>
|
|
28
|
-
publicRequest.post(`v1/ticket/${hash}/decline`)
|
|
Binary file
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
4
|
-
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
5
|
-
width="94.926px" height="94.926px" viewBox="0 0 94.926 94.926" style="enable-background:new 0 0 94.926 94.926;"
|
|
6
|
-
xml:space="preserve">
|
|
7
|
-
<g>
|
|
8
|
-
<path d="M55.931,47.463L94.306,9.09c0.826-0.827,0.826-2.167,0-2.994L88.833,0.62C88.436,0.224,87.896,0,87.335,0
|
|
9
|
-
c-0.562,0-1.101,0.224-1.498,0.62L47.463,38.994L9.089,0.62c-0.795-0.795-2.202-0.794-2.995,0L0.622,6.096
|
|
10
|
-
c-0.827,0.827-0.827,2.167,0,2.994l38.374,38.373L0.622,85.836c-0.827,0.827-0.827,2.167,0,2.994l5.473,5.476
|
|
11
|
-
c0.397,0.396,0.936,0.62,1.498,0.62s1.1-0.224,1.497-0.62l38.374-38.374l38.374,38.374c0.397,0.396,0.937,0.62,1.498,0.62
|
|
12
|
-
s1.101-0.224,1.498-0.62l5.473-5.476c0.826-0.827,0.826-2.167,0-2.994L55.931,47.463z"/>
|
|
13
|
-
</g>
|
|
14
|
-
<g>
|
|
15
|
-
</g>
|
|
16
|
-
<g>
|
|
17
|
-
</g>
|
|
18
|
-
<g>
|
|
19
|
-
</g>
|
|
20
|
-
<g>
|
|
21
|
-
</g>
|
|
22
|
-
<g>
|
|
23
|
-
</g>
|
|
24
|
-
<g>
|
|
25
|
-
</g>
|
|
26
|
-
<g>
|
|
27
|
-
</g>
|
|
28
|
-
<g>
|
|
29
|
-
</g>
|
|
30
|
-
<g>
|
|
31
|
-
</g>
|
|
32
|
-
<g>
|
|
33
|
-
</g>
|
|
34
|
-
<g>
|
|
35
|
-
</g>
|
|
36
|
-
<g>
|
|
37
|
-
</g>
|
|
38
|
-
<g>
|
|
39
|
-
</g>
|
|
40
|
-
<g>
|
|
41
|
-
</g>
|
|
42
|
-
<g>
|
|
43
|
-
</g>
|
|
44
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 20C15.5228 20 20 15.5228 20 10C20 4.47717 15.5228 0 10 0C4.47717 0 0 4.47717 0 10C0 15.5228 4.47717 20 10 20ZM8.14661 15.8678L16.8782 6.39722C16.9561 6.31335 17 6.19922 17 6.08008C17 5.96094 16.9561 5.8468 16.8782 5.76282L16.3016 5.12854C16.1386 4.95715 15.8796 4.95715 15.7167 5.12854L7.85004 13.661L4.28326 9.79236C4.20593 9.70776 4.10071 9.66016 3.99084 9.66016C3.9353 9.66016 3.88086 9.67236 3.83069 9.69531C3.78168 9.71777 3.73663 9.75061 3.69843 9.79236L3.12183 10.4177C3.07635 10.4667 3.04248 10.5259 3.02216 10.5905C3.00763 10.6365 3 10.6853 3 10.735C3 10.8541 3.04388 10.9683 3.12183 11.0521L7.56177 15.8678C7.6391 15.9524 7.74438 16 7.85419 16C7.96399 16 8.06927 15.9524 8.14661 15.8678Z" fill="#569F44"/>
|
|
3
|
-
</svg>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_996_11495)">
|
|
3
|
-
<path d="M6.162 12.6667L5 13.6667L2 14.0001V11.1714L8.6 4.57139L11.428 7.40072L6.16133 12.6667H6.162ZM9.542 3.62939L10.9567 2.21472C11.0817 2.08974 11.2512 2.01953 11.428 2.01953C11.6048 2.01953 11.7743 2.08974 11.8993 2.21472L13.7853 4.10072C13.9103 4.22574 13.9805 4.39528 13.9805 4.57206C13.9805 4.74883 13.9103 4.91837 13.7853 5.04339L12.3707 6.45739L9.54267 3.62939H9.542Z" fill="#03053D"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<clipPath id="clip0_996_11495">
|
|
7
|
-
<rect width="16" height="16" fill="white"/>
|
|
8
|
-
</clipPath>
|
|
9
|
-
</defs>
|
|
10
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="envelope" class="svg-inline--fa fa-envelope fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg fill="#ffffff" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="32px" height="32px">
|
|
2
|
-
<circle cx="32" cy="32" r="31" fill='#A01173' />
|
|
3
|
-
<path
|
|
4
|
-
d="M 23.8513 12.0905 C 17.3957 12.0905 12.0905 17.3886 12.0905 23.8513 L 12.0905 40.3279 C 12.0905 46.7835 17.3886 52.0887 23.8513 52.0887 L 40.3279 52.0887 C 46.7835 52.0887 52.0887 46.7906 52.0887 40.3279 L 52.0887 23.8513 C 52.0887 17.3957 46.7906 12.0905 40.3279 12.0905 Z M 23.8513 15.7267 L 40.3279 15.7267 C 44.8234 15.7267 48.4525 19.3558 48.4525 23.8513 L 48.4525 40.3279 C 48.4525 44.8234 44.8234 48.4525 40.3279 48.4525 L 23.8513 48.4525 C 19.3558 48.4525 15.7267 44.8234 15.7267 40.3279 L 15.7267 23.8513 C 15.7267 19.3558 19.3558 15.7267 23.8513 15.7267 Z M 42.8278 19.7038 C 41.9116 19.7038 41.1801 20.4353 41.1801 21.3514 C 41.1801 22.2676 41.9116 22.9991 42.8278 22.9991 C 43.7439 22.9991 44.4754 22.2676 44.4754 21.3514 C 44.4754 20.4353 43.7439 19.7038 42.8278 19.7038 Z M 32.0896 21.181 C 26.0885 21.181 21.181 26.0885 21.181 32.0896 C 21.181 38.0907 26.0885 42.9982 32.0896 42.9982 C 38.0907 42.9982 42.9982 38.0907 42.9982 32.0896 C 42.9982 26.0885 38.0907 21.181 32.0896 21.181 Z M 32.0896 24.8172 C 36.1306 24.8172 39.362 28.0486 39.362 32.0896 C 39.362 36.1306 36.1306 39.362 32.0896 39.362 C 28.0486 39.362 24.8172 36.1306 24.8172 32.0896 C 24.8172 28.0486 28.0486 24.8172 32.0896 24.8172 Z" />
|
|
5
|
-
</svg>
|
|
Binary file
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0"?><svg fill="#ffffff" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="32px"
|
|
2
|
-
height="32px">
|
|
3
|
-
<circle cx="32" cy="32" r="31" fill='#60BD82' />
|
|
4
|
-
<path
|
|
5
|
-
d="M 11 25 z M 45.3205 48.134 c -0.4019 0.6035 -1.0638 0.9289 -1.7382 0.9289 c -0.3977 0 -0.7996 -0.1126 -1.1556 -0.3504 C 38.9877 46.4194 33.1556 44.8897 28.2885 44.8911 c -5.1647 0.0028 -9.0361 1.271 -9.075 1.2835 c -1.0902 0.3699 -2.2736 -0.2253 -2.638 -1.3183 s 0.2267 -2.275 1.3197 -2.638 c 0.1836 -0.0612 4.5598 -1.4949 10.3933 -1.4977 C 33.1556 40.718 39.925 42.0307 44.742 45.2416 C 45.7015 45.8812 45.9602 47.1759 45.3205 48.134 z M 49.4812 39.5957 c -0.4519 0.7259 -1.2321 1.125 -2.0289 1.125 c -0.4311 0 -0.8677 -0.1154 -1.2599 -0.3616 c -6.2354 -3.8853 -12.6433 -4.7072 -18.164 -4.6585 c -6.2327 0.0556 -11.2166 1.2446 -11.3014 1.2696 c -1.2613 0.3588 -2.5879 -0.3782 -2.9481 -1.6451 c -0.3602 -1.2696 0.3782 -2.5893 1.6465 -2.9481 c 0.3852 -0.1099 5.3594 -1.3336 12.1691 -1.3906 c 6.209 -0.0515 13.9463 0.8483 21.1246 5.3204 C 49.8358 37.0023 50.1793 38.4763 49.4812 39.5957 z M 53.6321 29.6112 C 53.1134 30.4929 52.1845 30.9838 51.2306 30.9838 c -0.4784 0 -0.9623 -0.1238 -1.4059 -0.3824 c -7.2673 -4.2664 -16.1031 -5.1716 -22.2357 -5.18 c -0.0292 0 -0.0584 0 -0.0876 0 c -7.4161 0 -13.1272 1.3044 -13.1843 1.3183 c -1.4991 0.3435 -2.9912 -0.5827 -3.3388 -2.0789 c -0.3476 -1.4949 0.5799 -2.9884 2.0748 -3.3374 C 13.3103 21.2635 19.4123 19.859 27.5014 19.859 c 0.032 0 0.064 0 0.096 0 c 6.8209 0.0097 16.7025 1.0471 25.0447 5.9448 C 53.9659 26.5825 54.4095 28.2874 53.6321 29.6112 z" />
|
|
6
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="user" class="svg-inline--fa fa-user fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
|
4
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
5
|
-
xmlns:cc="http://creativecommons.org/ns#"
|
|
6
|
-
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
7
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
10
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
-
viewBox="0 0 48 48"
|
|
12
|
-
version="1.1"
|
|
13
|
-
id="svg15"
|
|
14
|
-
sodipodi:docname="cross red circle.svg"
|
|
15
|
-
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
|
16
|
-
<metadata
|
|
17
|
-
id="metadata19">
|
|
18
|
-
<rdf:RDF>
|
|
19
|
-
<cc:Work
|
|
20
|
-
rdf:about="">
|
|
21
|
-
<dc:format>image/svg+xml</dc:format>
|
|
22
|
-
<dc:type
|
|
23
|
-
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
24
|
-
<dc:title />
|
|
25
|
-
</cc:Work>
|
|
26
|
-
</rdf:RDF>
|
|
27
|
-
</metadata>
|
|
28
|
-
<sodipodi:namedview
|
|
29
|
-
pagecolor="#ffffff"
|
|
30
|
-
bordercolor="#666666"
|
|
31
|
-
borderopacity="1"
|
|
32
|
-
objecttolerance="10"
|
|
33
|
-
gridtolerance="10"
|
|
34
|
-
guidetolerance="10"
|
|
35
|
-
inkscape:pageopacity="0"
|
|
36
|
-
inkscape:pageshadow="2"
|
|
37
|
-
inkscape:window-width="1920"
|
|
38
|
-
inkscape:window-height="1027"
|
|
39
|
-
id="namedview17"
|
|
40
|
-
showgrid="false"
|
|
41
|
-
inkscape:zoom="4.9166667"
|
|
42
|
-
inkscape:cx="-11.694915"
|
|
43
|
-
inkscape:cy="40.271186"
|
|
44
|
-
inkscape:window-x="-8"
|
|
45
|
-
inkscape:window-y="-8"
|
|
46
|
-
inkscape:window-maximized="1"
|
|
47
|
-
inkscape:current-layer="g13" />
|
|
48
|
-
<defs
|
|
49
|
-
id="defs7">
|
|
50
|
-
<linearGradient
|
|
51
|
-
id="linearGradient828"
|
|
52
|
-
osb:paint="solid">
|
|
53
|
-
<stop
|
|
54
|
-
style="stop-color:#ff0000;stop-opacity:1;"
|
|
55
|
-
offset="0"
|
|
56
|
-
id="stop826" />
|
|
57
|
-
</linearGradient>
|
|
58
|
-
<linearGradient
|
|
59
|
-
id="0"
|
|
60
|
-
gradientUnits="userSpaceOnUse"
|
|
61
|
-
y1="47.37"
|
|
62
|
-
x2="0"
|
|
63
|
-
y2="-1.429">
|
|
64
|
-
<stop
|
|
65
|
-
stop-color="#c52828"
|
|
66
|
-
id="stop2" />
|
|
67
|
-
<stop
|
|
68
|
-
offset="1"
|
|
69
|
-
stop-color="#ff5454"
|
|
70
|
-
id="stop4" />
|
|
71
|
-
</linearGradient>
|
|
72
|
-
</defs>
|
|
73
|
-
<g
|
|
74
|
-
transform="matrix(.99999 0 0 .99999-58.37.882)"
|
|
75
|
-
enable-background="new"
|
|
76
|
-
id="g13"
|
|
77
|
-
style="fill-opacity:1">
|
|
78
|
-
<circle
|
|
79
|
-
cx="82.37"
|
|
80
|
-
cy="23.12"
|
|
81
|
-
r="24"
|
|
82
|
-
fill="url(#0)"
|
|
83
|
-
id="circle9"
|
|
84
|
-
style="fill-opacity:1;fill:#dd3333" />
|
|
85
|
-
<path
|
|
86
|
-
d="m87.77 23.725l5.939-5.939c.377-.372.566-.835.566-1.373 0-.54-.189-.997-.566-1.374l-2.747-2.747c-.377-.372-.835-.564-1.373-.564-.539 0-.997.186-1.374.564l-5.939 5.939-5.939-5.939c-.377-.372-.835-.564-1.374-.564-.539 0-.997.186-1.374.564l-2.748 2.747c-.377.378-.566.835-.566 1.374 0 .54.188.997.566 1.373l5.939 5.939-5.939 5.94c-.377.372-.566.835-.566 1.373 0 .54.188.997.566 1.373l2.748 2.747c.377.378.835.564 1.374.564.539 0 .997-.186 1.374-.564l5.939-5.939 5.94 5.939c.377.378.835.564 1.374.564.539 0 .997-.186 1.373-.564l2.747-2.747c.377-.372.566-.835.566-1.373 0-.54-.188-.997-.566-1.373l-5.939-5.94"
|
|
87
|
-
fill="#fff"
|
|
88
|
-
fill-opacity=".842"
|
|
89
|
-
id="path11"
|
|
90
|
-
style="fill-opacity:1;fill:#ffffff" />
|
|
91
|
-
</g>
|
|
92
|
-
</svg>
|
|
@@ -1,161 +0,0 @@
|
|
|
1
|
-
import React from "react"
|
|
2
|
-
import './style.css'
|
|
3
|
-
import Icon from "../../../src/assets/images/Polygon.png"
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
export const AccountSettings = () => {
|
|
7
|
-
return (
|
|
8
|
-
<div className="account-settings">
|
|
9
|
-
<h2>Account Settings</h2>
|
|
10
|
-
<div className="tab">
|
|
11
|
-
<div className="tab-menu">
|
|
12
|
-
<ul>
|
|
13
|
-
<li className="active">ACCOUNT INFO/PASSWORD</li>
|
|
14
|
-
<li>PRIVACY SETTINGS</li>
|
|
15
|
-
<li>ACTIVE SESSIONS</li>
|
|
16
|
-
</ul>
|
|
17
|
-
</div>
|
|
18
|
-
<div className="tab-content">
|
|
19
|
-
<div className="account-info">
|
|
20
|
-
|
|
21
|
-
</div>
|
|
22
|
-
<div className="privacy">
|
|
23
|
-
<p>
|
|
24
|
-
Please note: Opting Out here doesn’t mean you’ll be removed
|
|
25
|
-
from that Brand’s mailing list outside of Restless Nites
|
|
26
|
-
– just from communications inside our site. You’ll have
|
|
27
|
-
to contact them directly to break ties further.
|
|
28
|
-
</p>
|
|
29
|
-
<div className="pr-settings">
|
|
30
|
-
<div className="pr-settings-item">
|
|
31
|
-
<div className="item-name">
|
|
32
|
-
<img src={Icon} alt="Icon"/>
|
|
33
|
-
<span>Das Bunker</span>
|
|
34
|
-
</div>
|
|
35
|
-
<div className="item-box">
|
|
36
|
-
<span>Opt In?</span>
|
|
37
|
-
<label className="checkbox-block">
|
|
38
|
-
<input type="checkbox" />
|
|
39
|
-
<span className="checkmark" />
|
|
40
|
-
</label>
|
|
41
|
-
</div>
|
|
42
|
-
</div>
|
|
43
|
-
<div className="pr-settings-item">
|
|
44
|
-
<div className="item-name">
|
|
45
|
-
<img src={Icon} alt="Icon"/>
|
|
46
|
-
<span>Das Bunker</span>
|
|
47
|
-
</div>
|
|
48
|
-
<div className="item-box">
|
|
49
|
-
<span>Opt In?</span>
|
|
50
|
-
<label className="checkbox-block">
|
|
51
|
-
<input type="checkbox" />
|
|
52
|
-
<span className="checkmark" />
|
|
53
|
-
</label>
|
|
54
|
-
</div>
|
|
55
|
-
</div>
|
|
56
|
-
<div className="pr-settings-item">
|
|
57
|
-
<div className="item-name">
|
|
58
|
-
<img src={Icon} alt="Icon"/>
|
|
59
|
-
<span>Das Bunker</span>
|
|
60
|
-
</div>
|
|
61
|
-
<div className="item-box">
|
|
62
|
-
<span>Opt In?</span>
|
|
63
|
-
<label className="checkbox-block">
|
|
64
|
-
<input type="checkbox" />
|
|
65
|
-
<span className="checkmark" />
|
|
66
|
-
</label>
|
|
67
|
-
</div>
|
|
68
|
-
</div>
|
|
69
|
-
<div className="pr-settings-item">
|
|
70
|
-
<div className="item-name">
|
|
71
|
-
<img src={Icon} alt="Icon"/>
|
|
72
|
-
<span>Das Bunker</span>
|
|
73
|
-
</div>
|
|
74
|
-
<div className="item-box">
|
|
75
|
-
<span>Opt In?</span>
|
|
76
|
-
<label className="checkbox-block">
|
|
77
|
-
<input type="checkbox" />
|
|
78
|
-
<span className="checkmark" />
|
|
79
|
-
</label>
|
|
80
|
-
</div>
|
|
81
|
-
</div>
|
|
82
|
-
<div className="pr-settings-item">
|
|
83
|
-
<div className="item-name">
|
|
84
|
-
<img src={Icon} alt="Icon"/>
|
|
85
|
-
<span>Das Bunker</span>
|
|
86
|
-
</div>
|
|
87
|
-
<div className="item-box">
|
|
88
|
-
<span>Opt In?</span>
|
|
89
|
-
<label className="checkbox-block">
|
|
90
|
-
<input type="checkbox" />
|
|
91
|
-
<span className="checkmark" />
|
|
92
|
-
</label>
|
|
93
|
-
</div>
|
|
94
|
-
</div>
|
|
95
|
-
<div className="pr-settings-item">
|
|
96
|
-
<div className="item-name">
|
|
97
|
-
<img src={Icon} alt="Icon"/>
|
|
98
|
-
<span>Das Bunker</span>
|
|
99
|
-
</div>
|
|
100
|
-
<div className="item-box">
|
|
101
|
-
<span>Opt In?</span>
|
|
102
|
-
<label className="checkbox-block">
|
|
103
|
-
<input type="checkbox" />
|
|
104
|
-
<span className="checkmark" />
|
|
105
|
-
</label>
|
|
106
|
-
</div>
|
|
107
|
-
</div>
|
|
108
|
-
</div>
|
|
109
|
-
</div>
|
|
110
|
-
<div className="sessions">
|
|
111
|
-
<div className="sessions-item">
|
|
112
|
-
<div className="sessions-info">
|
|
113
|
-
<span>Apple – Los Angeles, United States</span>
|
|
114
|
-
<span>Chrome – Current session</span>
|
|
115
|
-
</div>
|
|
116
|
-
<button>
|
|
117
|
-
Log Out
|
|
118
|
-
</button>
|
|
119
|
-
</div>
|
|
120
|
-
<div className="sessions-item">
|
|
121
|
-
<div className="sessions-info">
|
|
122
|
-
<span>Apple – Los Angeles, United States</span>
|
|
123
|
-
<span>Chrome – Current session</span>
|
|
124
|
-
</div>
|
|
125
|
-
<button>
|
|
126
|
-
Log Out
|
|
127
|
-
</button>
|
|
128
|
-
</div>
|
|
129
|
-
<div className="sessions-item">
|
|
130
|
-
<div className="sessions-info">
|
|
131
|
-
<span>Apple – Los Angeles, United States</span>
|
|
132
|
-
<span>Chrome – Current session</span>
|
|
133
|
-
</div>
|
|
134
|
-
<button>
|
|
135
|
-
Log Out
|
|
136
|
-
</button>
|
|
137
|
-
</div>
|
|
138
|
-
<div className="sessions-item">
|
|
139
|
-
<div className="sessions-info">
|
|
140
|
-
<span>Apple – Los Angeles, United States</span>
|
|
141
|
-
<span>Chrome – Current session</span>
|
|
142
|
-
</div>
|
|
143
|
-
<button>
|
|
144
|
-
Log Out
|
|
145
|
-
</button>
|
|
146
|
-
</div>
|
|
147
|
-
<div className="sessions-item">
|
|
148
|
-
<div className="sessions-info">
|
|
149
|
-
<span>Apple – Los Angeles, United States</span>
|
|
150
|
-
<span>Chrome – Current session</span>
|
|
151
|
-
</div>
|
|
152
|
-
<button>
|
|
153
|
-
Log Out
|
|
154
|
-
</button>
|
|
155
|
-
</div>
|
|
156
|
-
</div>
|
|
157
|
-
</div>
|
|
158
|
-
</div>
|
|
159
|
-
</div>
|
|
160
|
-
)
|
|
161
|
-
}
|