@stokr/components-library 3.0.16 → 3.0.17
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/README.md +261 -262
- package/dist/analytics/index.js +180 -0
- package/dist/api/auth.js +15 -0
- package/dist/api/fetchData.js +27 -0
- package/dist/api/fetchDataPublic.js +19 -0
- package/dist/auth/index.js +32 -0
- package/dist/components/2FA/Connect2FA.js +55 -0
- package/dist/components/2FA/EnterCode.js +63 -0
- package/dist/components/2FA/InstallAuthApp.js +64 -0
- package/dist/components/2FA/ResetCode.js +33 -0
- package/dist/components/2FA/Sucess2FA.js +51 -0
- package/dist/components/2FA/disable-2fa-flow.js +91 -0
- package/dist/components/2FA/enable-2fa-flow.js +137 -0
- package/dist/components/2FA/login-with-otp-flow.js +206 -0
- package/dist/components/2FA/main-flow.js +217 -0
- package/dist/components/AccountBalance/AccountBalance.js +35 -0
- package/dist/components/AccountBalance/AccountBalance.styles.js +48 -0
- package/dist/components/AdminDashboard/Table/ReactTable.js +266 -0
- package/dist/components/AdminDashboard/Table/ReactTableWrapper.js +65 -0
- package/dist/components/AdminDashboard/Table/Table.js +123 -0
- package/dist/components/AdminDashboard/Table/Table.styles.js +263 -0
- package/dist/components/AgreementItem/AgreementItem.js +39 -0
- package/dist/components/AgreementItem/AgreementItem.styles.js +32 -0
- package/dist/components/BackButton/BackButton.js +34 -0
- package/dist/components/BackButton/BackButton.styles.js +123 -0
- package/dist/components/Background/Background.js +45 -0
- package/dist/components/Background/Background.styles.js +119 -0
- package/dist/components/BasicTable/BasicTable.js +25 -0
- package/dist/components/BasicTable/BasicTable.styles.js +76 -0
- package/dist/components/BlogPost/BlogPost.js +98 -0
- package/dist/components/BlogPost/BlogPost.styles.js +230 -0
- package/dist/components/Button/Button.styles.js +207 -0
- package/dist/components/ButtonContainer/ButtonContainer.styles.js +51 -0
- package/dist/components/CapitalRaisedSummary/CaptialRaisedSummary.js +18 -0
- package/dist/components/CapitalRaisedSummary/CaptialRaisedSummary.styles.js +41 -0
- package/dist/components/Card/Card.styles.js +97 -0
- package/dist/components/ChartLegend/ChartLegend.js +62 -0
- package/dist/components/ChartLegend/ChartLegend.styles.js +133 -0
- package/dist/components/Checkbox/Checkbox.js +80 -0
- package/dist/components/Checkbox/Checkbox.styles.js +133 -0
- package/dist/components/Checklist/ChecklistCard.js +71 -0
- package/dist/components/Checklist/ChecklistCard.styles.js +82 -0
- package/dist/components/Chips/Chip.js +23 -0
- package/dist/components/Chips/Chip.styles.js +72 -0
- package/dist/components/Chips/ChipWrapper.js +50 -0
- package/dist/components/ComponentScroll/ComponentScroll.js +70 -0
- package/dist/components/ComponentScroll/ComponentScroll.styles.js +127 -0
- package/dist/components/ComponentWrapper/ComponentWrapper.styles.js +165 -0
- package/dist/components/ConfirmModal/ConfirmModal.js +187 -0
- package/dist/components/ConfirmModal/ConfirmModal.styles.js +44 -0
- package/dist/components/CryptoAddress/ComponentWrap.js +16 -0
- package/dist/components/CryptoAddress/CryptoAddress.js +151 -0
- package/dist/components/CryptoAddress/CryptoAddress.styles.js +443 -0
- package/dist/components/CryptoAddress/RadioWrap.js +47 -0
- package/dist/components/CryptoAddressDetails/CryptoAddressDetails.js +34 -0
- package/dist/components/CryptoAddressDetails/CryptoAddressDetails.styles.js +125 -0
- package/dist/components/CryptoAddressWrapper/CryptoAddressWrapper.js +25 -0
- package/dist/components/CryptoAddressWrapper/CryptoAddressWrapper.styles.js +111 -0
- package/dist/components/DoubleButton/DoubleButton.styles.js +27 -0
- package/dist/components/ErrorMessage/ErrorMessage.styles.js +9 -0
- package/dist/components/FAQ/FAQ.js +73 -0
- package/dist/components/FAQ/FAQ.styles.js +128 -0
- package/dist/components/Footer/Footer.js +55 -0
- package/dist/components/Footer/Footer.styles.js +256 -0
- package/dist/components/Footer/FooterLayout.js +145 -0
- package/dist/components/Footer/FooterMenu.js +100 -0
- package/dist/components/Footer/FooterMenu.styles.js +321 -0
- package/dist/components/ForgotPasswordModal/ForgotPasswordModal.js +100 -0
- package/dist/components/Form/Form.js +21 -0
- package/dist/components/Form/Form.styles.js +72 -0
- package/dist/components/Grid/Grid.styles.js +212 -0
- package/dist/components/Header/Header.js +425 -0
- package/dist/components/Header/Header.styles.js +567 -0
- package/dist/components/HeroBlock/HeroVideoBlock.js +105 -0
- package/dist/components/Icon/Icon.style.js +92 -0
- package/dist/components/Icon/Icon2.js +12 -0
- package/dist/components/InfoIcon/InfoIcon.js +62 -0
- package/dist/components/InfoIcon/InfoIcon.styles.js +64 -0
- package/dist/components/Input/DatePickerInput.js +139 -0
- package/dist/components/Input/DatePickerInput.styles.js +165 -0
- package/dist/components/Input/Input.js +108 -0
- package/dist/components/Input/Input.styles.js +154 -0
- package/dist/components/Input/InputPassword.js +122 -0
- package/dist/components/Input/InputPassword.styles.js +166 -0
- package/dist/components/Input/InputUsername.js +92 -0
- package/dist/components/Input/InputWithButton.js +53 -0
- package/dist/components/Input/InputWithButton.styles.js +57 -0
- package/dist/components/Input/MultiSelect.js +306 -0
- package/dist/components/Input/OtpInput.js +70 -0
- package/dist/components/Input/RangeInput.js +80 -0
- package/dist/components/Input/RangeInput.styles.js +129 -0
- package/dist/components/Input/SearchInput.js +68 -0
- package/dist/components/Input/SearchInput.styles.js +92 -0
- package/dist/components/Input/Select.js +151 -0
- package/dist/components/Input/Select.styles.js +148 -0
- package/dist/components/Input/TableFilterDropdown.js +247 -0
- package/dist/components/Input/Textarea.js +51 -0
- package/dist/components/Input/Textarea.styles.js +62 -0
- package/dist/components/InvestCalculator/InvestCalculator.js +283 -0
- package/dist/components/InvestCalculator/InvestCalculator.styles.js +94 -0
- package/dist/components/InvestmentStat/InvestmentStat.js +24 -0
- package/dist/components/InvestmentStat/InvestmentStat.styles.js +62 -0
- package/dist/components/LatestUpdate/LatestUpdate.js +24 -0
- package/dist/components/LatestUpdate/LatestUpdate.styles.js +90 -0
- package/dist/components/Layout/Layout.js +69 -0
- package/dist/components/LearnMoreCarousel/LearnMoreCarousel.js +32 -0
- package/dist/components/LearnMoreCarousel/LearnMoreCarousel.styles.js +208 -0
- package/dist/components/LearnMorePage/LearnMore.js +190 -0
- package/dist/components/LearnMorePage/LearnMore.propTypes.js +20 -0
- package/dist/components/LearnMorePage/LearnMore.shared.styles.js +56 -0
- package/dist/components/LearnMorePage/LearnMore.styles.js +276 -0
- package/dist/components/LearnMorePage/LearnMoreExampleObject.js +120 -0
- package/dist/components/LearnMorePage/LearnMoreItem.js +57 -0
- package/dist/components/LearnMorePage/LearnMoreItem.styles.js +234 -0
- package/dist/components/LearnMoreSection/LearnMore.js +138 -0
- package/dist/components/LearnMoreSection/LearnMore.styles.js +147 -0
- package/dist/components/LearnMoreSection/LearnMoreItem.js +33 -0
- package/dist/components/LearnMoreSection/LearnMoreItem.styles.js +60 -0
- package/dist/components/LoginModal/LoginModal.js +142 -0
- package/dist/components/MainMenu/DynamicMainMenu.js +38 -0
- package/dist/components/MainMenu/MainMenu.js +210 -0
- package/dist/components/MainMenu/MainMenu.styles.js +362 -0
- package/dist/components/MenuNav/MenuNav.styles.js +66 -0
- package/dist/components/Modal/Modal.js +119 -0
- package/dist/components/Modal/Modal.styles.js +450 -0
- package/dist/components/Modal/NewVentureModal/NewVentureModal.js +262 -0
- package/dist/components/Modal/PaymentModal.js +149 -0
- package/dist/components/Modal/SideModal.js +89 -0
- package/dist/components/Modal/SideModal.styles.js +55 -0
- package/dist/components/Modal/SuccessModal/SuccessModal.js +170 -0
- package/dist/components/Modal/SuccessModal/SuccessModal.styles.js +53 -0
- package/dist/components/MultiProgressBar/MultiProgressBar.js +30 -0
- package/dist/components/MultiProgressBar/MultiProgressBar.styles.js +105 -0
- package/dist/components/Newsletter/Newsletter.js +122 -0
- package/dist/components/Newsletter/Newsletter.styles.js +186 -0
- package/dist/components/NotificationCounter/NotificationCounter.styles.js +38 -0
- package/dist/components/Number/Number.js +50 -0
- package/dist/components/Number/Number.styles.js +23 -0
- package/dist/components/PageTransition/PageTransition.js +51 -0
- package/dist/components/Pagination/Pagination.js +58 -0
- package/dist/components/Pagination/Pagination.styles.js +59 -0
- package/dist/components/Pagination/PaginationControls.js +113 -0
- package/dist/components/Pagination/usePagination.js +40 -0
- package/dist/components/Payment/PaymentDetailsCard.js +224 -0
- package/dist/components/Payment/PaymentDisplay.js +199 -0
- package/dist/components/Payment/TimerComponent.js +92 -0
- package/dist/components/Process/Process.styles.js +84 -0
- package/dist/components/ProfileBadge/ProfileBadge.js +35 -0
- package/dist/components/ProfileBadge/ProfileBadge.styles.js +53 -0
- package/dist/components/ProfileBox/ProfileBox.js +27 -0
- package/dist/components/ProfileBox/ProfileBox.styles.js +67 -0
- package/dist/components/ProfileStat/ProfileStat.js +29 -0
- package/dist/components/ProfileStat/ProfileStat.styles.js +90 -0
- package/dist/components/QRCode/QRCode.js +51 -0
- package/dist/components/Radio/Radio.js +51 -0
- package/dist/components/Radio/Radio.styles.js +100 -0
- package/dist/components/RefreshButton/RefreshButton.js +21 -0
- package/dist/components/RefreshButton/RefreshButton.styles.js +64 -0
- package/dist/components/RegisterConfirmModal/RegisterConfirmModal.js +65 -0
- package/dist/components/RegisterConfirmModal/RegisterConfirmModal.styles.js +20 -0
- package/dist/components/RegisterModal/RegisterModal.js +248 -0
- package/dist/components/RequestDataBox/RequestDataBox.js +21 -0
- package/dist/components/RequestDataBox/RequestDataBox.styles.js +43 -0
- package/dist/components/ResetConfirmModal/ResetConfirmModal.js +44 -0
- package/dist/components/ResetConfirmModal/ResetConfirmModal.styles.js +41 -0
- package/dist/components/ResetPasswordModal/ResetPasswordModal.js +134 -0
- package/dist/components/SEO/SEO.js +66 -0
- package/dist/components/SectionTitle/SectionTitle.styles.js +26 -0
- package/dist/components/SideLine/SideLine.js +7 -0
- package/dist/components/SideLine/SideLine.styles.js +33 -0
- package/dist/components/Slider/Slider.js +31 -0
- package/dist/components/Slider/Slider.styles.js +120 -0
- package/dist/components/Snackbar/Snackbar.js +111 -0
- package/dist/components/Snackbar/Snackbar.styles.js +230 -0
- package/dist/components/Snackbar/SnackbarProvider.js +66 -0
- package/dist/components/Snackbar/useSnackbar.js +12 -0
- package/dist/components/SpanButton/SpanButton.styles.js +19 -0
- package/dist/components/StatusBadge/StatusBadge.styles.js +18 -0
- package/dist/components/StatusTag/StatusTag.js +105 -0
- package/dist/components/StatusTag/StatusTag.styles.js +88 -0
- package/dist/components/StepController/StepController.js +86 -0
- package/dist/components/StepController/StepController.styles.js +33 -0
- package/dist/components/StepController/StepControllerContext.js +65 -0
- package/dist/components/StepController/StepControllerProgress.js +37 -0
- package/dist/components/StepsProgress/StepIndicator.js +40 -0
- package/dist/components/StepsProgress/StepIndicator.styles.js +69 -0
- package/dist/components/StepsProgress/StepsProgress.js +67 -0
- package/dist/components/StepsProgress/StepsProgress.styles.js +105 -0
- package/dist/components/StokrLoader/StokrLoader.js +111 -0
- package/dist/components/StokrLoader/media.js +23 -0
- package/dist/components/SvgIcons/AdminBadgeSvg.js +27 -0
- package/dist/components/SvgIcons/CameraSvg.js +31 -0
- package/dist/components/SvgIcons/CapsLockSvg.js +36 -0
- package/dist/components/SvgIcons/DocumentBackSvg.js +20 -0
- package/dist/components/SvgIcons/DocumentSmallSvg.js +41 -0
- package/dist/components/SvgIcons/DocumentSvg.js +39 -0
- package/dist/components/SvgIcons/EthSvg.js +28 -0
- package/dist/components/SvgIcons/EurSvg.js +27 -0
- package/dist/components/SvgIcons/FaceScanIconSvg.js +17 -0
- package/dist/components/SvgIcons/FourSvg.js +7 -0
- package/dist/components/SvgIcons/Glassess.js +26 -0
- package/dist/components/SvgIcons/LogoSvg.js +17 -0
- package/dist/components/SvgIcons/OneSvg.js +10 -0
- package/dist/components/SvgIcons/PassportSvg.js +37 -0
- package/dist/components/SvgIcons/RefreshSvg.js +28 -0
- package/dist/components/SvgIcons/SocialFacebook.js +22 -0
- package/dist/components/SvgIcons/SocialInstagram.js +13 -0
- package/dist/components/SvgIcons/SocialLinkedIn.js +31 -0
- package/dist/components/SvgIcons/SocialMedium.js +21 -0
- package/dist/components/SvgIcons/SocialReddit.js +21 -0
- package/dist/components/SvgIcons/SocialTelegram.js +60 -0
- package/dist/components/SvgIcons/SocialTwitter.js +62 -0
- package/dist/components/SvgIcons/SocialYoutube.js +22 -0
- package/dist/components/SvgIcons/ThreeSvg.js +7 -0
- package/dist/components/SvgIcons/TwoSidedDocumentSvg.js +48 -0
- package/dist/components/SvgIcons/TwoSvg.js +10 -0
- package/dist/components/SvgIcons/UpdateDefaultSvg.js +12 -0
- package/dist/components/SvgIcons/UpdateHardSvg.js +10 -0
- package/dist/components/SvgIcons/UpdateSoftSvg.js +11 -0
- package/dist/components/SvgIcons/UploadSvg.js +12 -0
- package/dist/components/SvgIcons/VerifiedBadge.js +16 -0
- package/dist/components/Switch/Switch.js +63 -0
- package/dist/components/Switch/Switch.styles.js +126 -0
- package/dist/components/Tabs/Tabs.js +54 -0
- package/dist/components/Tabs/Tabs.styles.js +15 -0
- package/dist/components/TabsNav/TabNav.js +16 -0
- package/dist/components/TabsNav/TabsNav.js +30 -0
- package/dist/components/TabsNav/TabsNav.styles.js +103 -0
- package/dist/components/TeamOverview/TeamOverview.js +80 -0
- package/dist/components/TeamOverview/TeamOverview.styles.js +167 -0
- package/dist/components/TermsModal/TermsModal.js +145 -0
- package/dist/components/TermsModal/_styles.js +313 -0
- package/dist/components/Text/Text.styles.js +220 -0
- package/dist/components/TextLink/TextLink.styles.js +67 -0
- package/dist/components/Timeline/Timeline.js +44 -0
- package/dist/components/Timeline/Timeline.styles.js +147 -0
- package/dist/components/Timeline/TimelineStep.js +58 -0
- package/dist/components/ToDoList/ToDoList.js +172 -0
- package/dist/components/ToDoList/ToDoList.styles.js +122 -0
- package/dist/components/ToDoList/ToDoListTask.js +95 -0
- package/dist/components/ToDoList/ToDoListTask.styles.js +119 -0
- package/dist/components/TransactionDetails/TransactionDetails.js +27 -0
- package/dist/components/TransactionDetails/TransactionDetails.styles.js +38 -0
- package/dist/components/TransactionInfo/TransactionInfo.js +41 -0
- package/dist/components/TransactionInfo/TransactionInfo.styles.js +75 -0
- package/dist/components/VerifyEmailModal/VerifyEmailModal.js +122 -0
- package/dist/components/breakdown/Breakdown.js +126 -0
- package/dist/components/headerHo/HeaderHo.js +709 -0
- package/dist/components/icons/Arrow.js +38 -0
- package/dist/components/icons/ArrowSimple.js +34 -0
- package/dist/components/icons/Check.js +16 -0
- package/dist/components/icons/Facebook.js +10 -0
- package/dist/components/icons/Info.js +27 -0
- package/dist/components/icons/Instagram.js +10 -0
- package/dist/components/icons/LinkIcon.js +49 -0
- package/dist/components/icons/LinkedIn.js +13 -0
- package/dist/components/icons/Medium.js +13 -0
- package/dist/components/icons/Reddit.js +16 -0
- package/dist/components/icons/Share.js +31 -0
- package/dist/components/icons/Telegram.js +13 -0
- package/dist/components/icons/Twitter.js +10 -0
- package/dist/components/icons/X.js +10 -0
- package/dist/components/icons/Youtube.js +10 -0
- package/dist/components/icons/index.js +32 -0
- package/dist/components/landing-page/List.js +51 -0
- package/dist/components/landing-page/PageContent.js +65 -0
- package/dist/components/landing-page/PageText.js +171 -0
- package/dist/components/landing-page/PageTitle.js +259 -0
- package/dist/components/logo/Logo.js +57 -0
- package/dist/components/taxId/complete.js +24 -0
- package/dist/components/taxId/flow.js +53 -0
- package/dist/components/taxId/register-taxid.js +166 -0
- package/dist/config.js +44 -0
- package/dist/constants/globalVariables.js +87 -0
- package/dist/constants/style.js +48 -0
- package/dist/context/Auth.js +396 -0
- package/dist/context/AuthContext.js +781 -0
- package/dist/context/Checkbox/CheckboxContext.js +151 -0
- package/dist/firebase-config.js +73 -0
- package/dist/hooks/useNewVentureForm.js +262 -0
- package/dist/hooks/useTimer.js +89 -0
- package/dist/index.js +628 -25463
- package/dist/model/axios.js +10 -0
- package/dist/model/axiosPublic.js +9 -0
- package/dist/services/TimerService.js +80 -0
- package/dist/static/animations/checked.lottie.js +4 -0
- package/dist/static/animations/progress.lottie.js +4 -0
- package/dist/static/fonts/Ionicons/Ionicons.ttf.js +4 -0
- package/dist/static/fonts/Ionicons/Ionicons.woff.js +4 -0
- package/dist/static/fonts/Ionicons/Ionicons.woff2.js +4 -0
- package/dist/static/fonts/Ionicons/ionicons.min.css.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Bold.ttf.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Bold.woff.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Bold.woff2.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-ExtraBold.ttf.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-ExtraBold.woff.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-ExtraBold.woff2.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Light.ttf.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Light.woff.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Light.woff2.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Regular.ttf.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Regular.woff.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-Regular.woff2.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-SemiBold.ttf.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-SemiBold.woff.js +4 -0
- package/dist/static/fonts/OpenSans/OpenSans-SemiBold.woff2.js +4 -0
- package/dist/static/fonts/icomoon/icomoon.eot.js +4 -0
- package/dist/static/fonts/icomoon/icomoon.svg.js +4 -0
- package/dist/static/fonts/icomoon/icomoon.ttf.js +4 -0
- package/dist/static/fonts/icomoon/icomoon.woff.js +4 -0
- package/dist/static/images/add-folder-icon.svg.js +5 -0
- package/dist/static/images/address-refreshing.gif.js +4 -0
- package/dist/static/images/arrow-down-black.svg.js +4 -0
- package/dist/static/images/avatar-placeholder.png.js +4 -0
- package/dist/static/images/background3.png.js +4 -0
- package/dist/static/images/bitcoin-logo.svg.js +4 -0
- package/dist/static/images/bmn2-logo.svg.js +4 -0
- package/dist/static/images/check-icon.svg.js +5 -0
- package/dist/static/images/checkmark-circle-icon.svg.js +5 -0
- package/dist/static/images/close-circle-icon.svg.js +5 -0
- package/dist/static/images/copy_icon.svg.js +5 -0
- package/dist/static/images/cross-icon.svg.js +5 -0
- package/dist/static/images/early-adopter.png.js +4 -0
- package/dist/static/images/eth_logo.svg.js +4 -0
- package/dist/static/images/filter-icon.svg.js +5 -0
- package/dist/static/images/google_auth.png.js +4 -0
- package/dist/static/images/graduation.png.js +4 -0
- package/dist/static/images/mangopay.svg.js +4 -0
- package/dist/static/images/numbers/number_eight.svg.js +5 -0
- package/dist/static/images/numbers/number_five.svg.js +5 -0
- package/dist/static/images/numbers/number_four.svg.js +5 -0
- package/dist/static/images/numbers/number_nine.svg.js +5 -0
- package/dist/static/images/numbers/number_one.svg.js +5 -0
- package/dist/static/images/numbers/number_seven.svg.js +5 -0
- package/dist/static/images/numbers/number_six.svg.js +5 -0
- package/dist/static/images/numbers/number_three.svg.js +5 -0
- package/dist/static/images/numbers/number_two.svg.js +5 -0
- package/dist/static/images/numbers/number_zero.svg.js +5 -0
- package/dist/static/images/process-waiting.gif.js +4 -0
- package/dist/static/images/search-icon.svg.js +5 -0
- package/dist/static/images/social/Facebook_Logo.png.js +4 -0
- package/dist/static/images/social/LI-In-Bug.png.js +4 -0
- package/dist/static/images/social/Telegram-Logo.png.js +4 -0
- package/dist/static/images/social/X-logo-black.png.js +4 -0
- package/dist/static/images/social/youtube_social_circle_red.png.js +4 -0
- package/dist/static/images/transfer-icon.svg.js +5 -0
- package/dist/static/images/usdc-logo.svg.js +4 -0
- package/dist/static/images/usdq-logo.png.js +4 -0
- package/dist/static/images/warning-filled.svg.js +5 -0
- package/dist/styles/colors.js +56 -0
- package/dist/styles/fonts.js +100 -0
- package/dist/styles/global.js +74 -0
- package/dist/styles/grid.js +11 -0
- package/dist/styles/ioniconsStyles.js +31 -0
- package/dist/styles/reactTippy.js +40 -0
- package/dist/styles/rwd.js +56 -0
- package/dist/styles/semanticUi.js +84 -0
- package/dist/styles/spacing.js +8 -0
- package/dist/styles/theme.js +34 -0
- package/dist/utils/check-sale-time-left.js +85 -0
- package/dist/utils/check-todo-status.js +11 -0
- package/dist/utils/checklistGenerator.js +195 -0
- package/dist/utils/copyToClipboard.js +92 -0
- package/dist/utils/customHooks.js +126 -0
- package/dist/utils/delete-redirect-cookie-and-navigate.js +12 -0
- package/dist/utils/fix-decimals.js +5 -0
- package/dist/utils/formatCurrencyValue.js +95 -0
- package/dist/utils/get-cookie-domain.js +10 -0
- package/dist/utils/get-short-address.js +4 -0
- package/dist/utils/isUSInvestor.js +6 -0
- package/dist/utils/km_ify.js +33 -0
- package/dist/utils/moment.js +26 -0
- package/dist/utils/redirect-url.js +5 -0
- package/dist/utils/saveAs.js +17 -0
- package/dist/utils/scrollUtils.js +63 -0
- package/dist/utils/set-redirect-cookie.js +16 -0
- package/dist/utils/transition.js +101 -0
- package/dist/utils/withRouter.js +24 -0
- package/package.json +146 -146
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useState } from "react";
|
|
3
|
+
import styled from "styled-components";
|
|
4
|
+
import { ComponentWrapper } from "../ComponentWrapper/ComponentWrapper.styles.js";
|
|
5
|
+
import { Text } from "../Text/Text.styles.js";
|
|
6
|
+
import { colors } from "../../styles/colors.js";
|
|
7
|
+
import { CopyToClipboard } from "react-copy-to-clipboard";
|
|
8
|
+
import { Tooltip } from "react-tippy";
|
|
9
|
+
import { CopyToClipboardButton } from "../CryptoAddress/CryptoAddress.styles.js";
|
|
10
|
+
import stdin_default from "../QRCode/QRCode.js";
|
|
11
|
+
import { SectionTitle } from "../SectionTitle/SectionTitle.styles.js";
|
|
12
|
+
import { FlexContainer } from "../Grid/Grid.styles.js";
|
|
13
|
+
import rwd from "../../styles/rwd.js";
|
|
14
|
+
import { getCurrencyIcon } from "../../utils/formatCurrencyValue.js";
|
|
15
|
+
const CodeWrapper = styled.div.withConfig({
|
|
16
|
+
shouldForwardProp: (props) => !["maxWidth"].includes(props)
|
|
17
|
+
})`
|
|
18
|
+
background: ${colors.grey3};
|
|
19
|
+
border: 1px solid ${colors.grey3};
|
|
20
|
+
box-shadow: 2px 4px 14px 0px rgb(196, 196, 196, 0.25);
|
|
21
|
+
border-radius: 5px;
|
|
22
|
+
padding: 32px 64px;
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: column;
|
|
25
|
+
align-items: center;
|
|
26
|
+
gap: 32px;
|
|
27
|
+
margin: auto;
|
|
28
|
+
max-width: ${(props) => props.maxWidth || "550px"};
|
|
29
|
+
`;
|
|
30
|
+
const AmountSection = styled.div`
|
|
31
|
+
display: flex;
|
|
32
|
+
flex-wrap: wrap;
|
|
33
|
+
align-items: center;
|
|
34
|
+
justify-content: center;
|
|
35
|
+
gap: 16px;
|
|
36
|
+
margin: 14px 0 8px 0;
|
|
37
|
+
|
|
38
|
+
> :nth-child(3) {
|
|
39
|
+
margin-left: -8px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
span {
|
|
43
|
+
font-weight: 400;
|
|
44
|
+
text-transform: uppercase;
|
|
45
|
+
line-height: 28px;
|
|
46
|
+
font-size: 18px;
|
|
47
|
+
letter-spacing: 0.8px;
|
|
48
|
+
|
|
49
|
+
${rwd.XLarge`
|
|
50
|
+
font-size: 22px;
|
|
51
|
+
`}
|
|
52
|
+
}
|
|
53
|
+
`;
|
|
54
|
+
const AmountText = styled(Text)`
|
|
55
|
+
font-size: 24px;
|
|
56
|
+
font-weight: 800;
|
|
57
|
+
text-transform: uppercase;
|
|
58
|
+
line-height: 40px;
|
|
59
|
+
letter-spacing: 1.5px;
|
|
60
|
+
word-wrap: break-word;
|
|
61
|
+
|
|
62
|
+
${rwd.XLarge`
|
|
63
|
+
font-size: 34px;
|
|
64
|
+
`}
|
|
65
|
+
`;
|
|
66
|
+
const AmountIcon = styled.img`
|
|
67
|
+
width: 24px;
|
|
68
|
+
height: 24px;
|
|
69
|
+
|
|
70
|
+
${rwd.XLarge`
|
|
71
|
+
width:32px;
|
|
72
|
+
height:32px;
|
|
73
|
+
`}
|
|
74
|
+
`;
|
|
75
|
+
const AddressText = styled.p`
|
|
76
|
+
letter-spacing: 0.6%;
|
|
77
|
+
word-break: break-all;
|
|
78
|
+
font-size: 16px;
|
|
79
|
+
font-weight: 700;
|
|
80
|
+
line-height: 24px;
|
|
81
|
+
letter-spacing: 0.1;
|
|
82
|
+
margin: 0;
|
|
83
|
+
margin-top: 14px;
|
|
84
|
+
`;
|
|
85
|
+
const AddressDescription = styled.p`
|
|
86
|
+
font-size: 14px;
|
|
87
|
+
font-weight: 300;
|
|
88
|
+
line-height: 20px;
|
|
89
|
+
letter-spacing: 0.5px;
|
|
90
|
+
margin: 0;
|
|
91
|
+
`;
|
|
92
|
+
const CopyToClipBoardTooltip = ({ value, buttonStyle, onCopy }) => {
|
|
93
|
+
const [copied, setCopied] = useState(false);
|
|
94
|
+
const handleCopy = () => {
|
|
95
|
+
setCopied(true);
|
|
96
|
+
if (onCopy) onCopy(value);
|
|
97
|
+
};
|
|
98
|
+
return /* @__PURE__ */ jsx(
|
|
99
|
+
Tooltip,
|
|
100
|
+
{
|
|
101
|
+
position: "top",
|
|
102
|
+
title: copied ? "Copied to clipboard!" : "Click to copy to clipboard",
|
|
103
|
+
theme: "light",
|
|
104
|
+
arrow: true,
|
|
105
|
+
hideOnClick: false,
|
|
106
|
+
onHidden: () => setCopied(false),
|
|
107
|
+
duration: 200,
|
|
108
|
+
children: /* @__PURE__ */ jsx(CopyToClipboard, { text: value, onCopy: handleCopy, children: /* @__PURE__ */ jsx(CopyToClipboardButton, { style: buttonStyle }) })
|
|
109
|
+
}
|
|
110
|
+
);
|
|
111
|
+
};
|
|
112
|
+
const PaymentDisplay = ({
|
|
113
|
+
amount,
|
|
114
|
+
currency = "BTC",
|
|
115
|
+
address,
|
|
116
|
+
showQRCode = true,
|
|
117
|
+
showCopyIcons = true,
|
|
118
|
+
showAddress = true,
|
|
119
|
+
qrCodeValue,
|
|
120
|
+
amountTitle = "Transfer amount",
|
|
121
|
+
addressTitle = "address",
|
|
122
|
+
addressDescription = "",
|
|
123
|
+
qrCodeSize = 200,
|
|
124
|
+
qrCodeStyle,
|
|
125
|
+
// Style props
|
|
126
|
+
containerStyle,
|
|
127
|
+
codeWrapperStyle,
|
|
128
|
+
amountSectionStyle,
|
|
129
|
+
amountTextStyle,
|
|
130
|
+
amountIconStyle,
|
|
131
|
+
addressTextStyle,
|
|
132
|
+
addressDescriptionStyle,
|
|
133
|
+
addressSectionStyle,
|
|
134
|
+
// Other customization props
|
|
135
|
+
maxWidth,
|
|
136
|
+
className,
|
|
137
|
+
codeWrapperClassName,
|
|
138
|
+
customCurrencyIcon,
|
|
139
|
+
onAmountCopy,
|
|
140
|
+
onAddressCopy,
|
|
141
|
+
copyButtonStyle
|
|
142
|
+
}) => {
|
|
143
|
+
const defaultQRCodeStyle = {
|
|
144
|
+
backgroundColor: "#000000",
|
|
145
|
+
padding: 18,
|
|
146
|
+
borderRadius: 8,
|
|
147
|
+
margin: "16px 0"
|
|
148
|
+
};
|
|
149
|
+
return /* @__PURE__ */ jsx(ComponentWrapper, { noPadding: true, center: true, style: containerStyle, className, children: /* @__PURE__ */ jsxs(CodeWrapper, { style: codeWrapperStyle, maxWidth, className: codeWrapperClassName, children: [
|
|
150
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
151
|
+
/* @__PURE__ */ jsx(SectionTitle, { children: amountTitle }),
|
|
152
|
+
/* @__PURE__ */ jsxs(AmountSection, { style: amountSectionStyle, children: [
|
|
153
|
+
/* @__PURE__ */ jsx(AmountIcon, { src: getCurrencyIcon(currency, customCurrencyIcon), style: amountIconStyle, alt: currency }),
|
|
154
|
+
/* @__PURE__ */ jsx(AmountText, { style: amountTextStyle, children: amount }),
|
|
155
|
+
/* @__PURE__ */ jsxs(AmountText, { style: amountTextStyle, children: [
|
|
156
|
+
" ",
|
|
157
|
+
currency
|
|
158
|
+
] }),
|
|
159
|
+
showCopyIcons && /* @__PURE__ */ jsx(
|
|
160
|
+
CopyToClipBoardTooltip,
|
|
161
|
+
{
|
|
162
|
+
value: amount.toString(),
|
|
163
|
+
buttonStyle: copyButtonStyle || { height: 18, width: 18 },
|
|
164
|
+
onCopy: onAmountCopy
|
|
165
|
+
}
|
|
166
|
+
)
|
|
167
|
+
] })
|
|
168
|
+
] }),
|
|
169
|
+
showQRCode && qrCodeValue && /* @__PURE__ */ jsx(
|
|
170
|
+
stdin_default,
|
|
171
|
+
{
|
|
172
|
+
size: qrCodeSize,
|
|
173
|
+
bgColor: "#000000",
|
|
174
|
+
fgColor: "#ffffff",
|
|
175
|
+
style: qrCodeStyle || defaultQRCodeStyle,
|
|
176
|
+
value: qrCodeValue
|
|
177
|
+
}
|
|
178
|
+
),
|
|
179
|
+
showAddress && address && /* @__PURE__ */ jsxs("div", { style: addressSectionStyle, children: [
|
|
180
|
+
/* @__PURE__ */ jsx(SectionTitle, { children: addressTitle }),
|
|
181
|
+
/* @__PURE__ */ jsxs(FlexContainer, { style: { gap: 16, margin: "12px 0" }, children: [
|
|
182
|
+
/* @__PURE__ */ jsx(AddressText, { style: addressTextStyle, children: address }),
|
|
183
|
+
showCopyIcons && /* @__PURE__ */ jsx(
|
|
184
|
+
CopyToClipBoardTooltip,
|
|
185
|
+
{
|
|
186
|
+
value: address,
|
|
187
|
+
buttonStyle: copyButtonStyle || { height: 16, width: 16, marginTop: 4 },
|
|
188
|
+
onCopy: onAddressCopy
|
|
189
|
+
}
|
|
190
|
+
)
|
|
191
|
+
] }),
|
|
192
|
+
addressDescription && /* @__PURE__ */ jsx(AddressDescription, { style: addressDescriptionStyle, children: addressDescription })
|
|
193
|
+
] })
|
|
194
|
+
] }) });
|
|
195
|
+
};
|
|
196
|
+
export {
|
|
197
|
+
CodeWrapper,
|
|
198
|
+
PaymentDisplay
|
|
199
|
+
};
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React__default, { memo } from "react";
|
|
3
|
+
import { useTimer } from "../../hooks/useTimer.js";
|
|
4
|
+
import { format } from "date-fns-tz";
|
|
5
|
+
import styled from "styled-components";
|
|
6
|
+
import { colors } from "../../styles/colors.js";
|
|
7
|
+
import { Text } from "../Text/Text.styles.js";
|
|
8
|
+
import { Icon, iconsMap } from "../Icon/Icon.style.js";
|
|
9
|
+
import { FlexContainer } from "../Grid/Grid.styles.js";
|
|
10
|
+
import rwd from "../../styles/rwd.js";
|
|
11
|
+
const TimerBlock = styled.div.withConfig({
|
|
12
|
+
shouldForwardProp: (props) => !["maxWidth", "red"].includes(props)
|
|
13
|
+
})`
|
|
14
|
+
background-color: ${colors.grey3};
|
|
15
|
+
padding: 24px 27px;
|
|
16
|
+
text-align: start;
|
|
17
|
+
max-width: ${(props) => props.maxWidth || "550px"};
|
|
18
|
+
margin: auto;
|
|
19
|
+
|
|
20
|
+
strong {
|
|
21
|
+
font-weight: 600;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
p {
|
|
25
|
+
font-size: 14px !important;
|
|
26
|
+
margin: 0 !important;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
${rwd.Medium`
|
|
30
|
+
p {
|
|
31
|
+
font-size: 16px !important;
|
|
32
|
+
}
|
|
33
|
+
`}
|
|
34
|
+
|
|
35
|
+
${Text}:first-child {
|
|
36
|
+
margin-bottom: 16px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
${(props) => props.red && `
|
|
40
|
+
#timer-text {
|
|
41
|
+
color: ${colors.darkRed};
|
|
42
|
+
}
|
|
43
|
+
`}
|
|
44
|
+
`;
|
|
45
|
+
const TimerComponent = memo(
|
|
46
|
+
({
|
|
47
|
+
timerId,
|
|
48
|
+
onTimerExpired,
|
|
49
|
+
warningThreshold = 60 * 5,
|
|
50
|
+
// 5 minutes
|
|
51
|
+
// Customizable text props
|
|
52
|
+
title = "This offer is time-limited",
|
|
53
|
+
description = "Please note that this offer is valid only for a limited period and will expire in",
|
|
54
|
+
// Style props
|
|
55
|
+
containerStyle,
|
|
56
|
+
timerBlockStyle,
|
|
57
|
+
className,
|
|
58
|
+
maxWidth,
|
|
59
|
+
// Icon props
|
|
60
|
+
icon = iconsMap.inProgress,
|
|
61
|
+
iconSize = 16,
|
|
62
|
+
showIcon = true
|
|
63
|
+
}) => {
|
|
64
|
+
const { secondsRemaining, hasTimerFinished, stopTimer } = useTimer(timerId);
|
|
65
|
+
React__default.useEffect(() => {
|
|
66
|
+
if (hasTimerFinished) {
|
|
67
|
+
stopTimer();
|
|
68
|
+
if (onTimerExpired) {
|
|
69
|
+
onTimerExpired();
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}, [hasTimerFinished, onTimerExpired, stopTimer]);
|
|
73
|
+
const isWarning = secondsRemaining < warningThreshold;
|
|
74
|
+
const formattedTime = format(new Date(secondsRemaining * 1e3), "HH:mm:ss", { timeZone: "UTC" });
|
|
75
|
+
return /* @__PURE__ */ jsx(TimerBlock, { red: isWarning, maxWidth, style: timerBlockStyle, className, children: /* @__PURE__ */ jsxs("div", { style: containerStyle, children: [
|
|
76
|
+
/* @__PURE__ */ jsx(Text, { children: /* @__PURE__ */ jsxs(FlexContainer, { itemsCenter: true, style: { gap: 8 }, children: [
|
|
77
|
+
showIcon && /* @__PURE__ */ jsx(Icon, { icon, size: iconSize }),
|
|
78
|
+
/* @__PURE__ */ jsx("p", { children: /* @__PURE__ */ jsx("strong", { children: title }) })
|
|
79
|
+
] }) }),
|
|
80
|
+
/* @__PURE__ */ jsx(Text, { children: /* @__PURE__ */ jsxs("p", { children: [
|
|
81
|
+
description,
|
|
82
|
+
" ",
|
|
83
|
+
/* @__PURE__ */ jsx("strong", { id: "timer-text", children: formattedTime })
|
|
84
|
+
] }) })
|
|
85
|
+
] }) });
|
|
86
|
+
}
|
|
87
|
+
);
|
|
88
|
+
TimerComponent.displayName = "TimerComponent";
|
|
89
|
+
export {
|
|
90
|
+
TimerBlock,
|
|
91
|
+
TimerComponent
|
|
92
|
+
};
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import styled from "styled-components";
|
|
2
|
+
import rwd from "../../styles/rwd.js";
|
|
3
|
+
import theme from "../../styles/theme.js";
|
|
4
|
+
import loader from "../../static/images/process-waiting.gif.js";
|
|
5
|
+
const Process = styled.div.withConfig({
|
|
6
|
+
shouldForwardProp: (props) => !["waiting", "success", "failed"].includes(props)
|
|
7
|
+
})`
|
|
8
|
+
display: block;
|
|
9
|
+
position: relative;
|
|
10
|
+
font-size: 11px;
|
|
11
|
+
line-height: 16px;
|
|
12
|
+
text-transform: uppercase;
|
|
13
|
+
padding-right: 26px;
|
|
14
|
+
color: ${() => theme.cPrimary};
|
|
15
|
+
opacity: 0.3;
|
|
16
|
+
|
|
17
|
+
${rwd.Medium`
|
|
18
|
+
font-size: 14px;
|
|
19
|
+
line-height: 20px;
|
|
20
|
+
`}
|
|
21
|
+
|
|
22
|
+
&:before {
|
|
23
|
+
content: '';
|
|
24
|
+
font-family: 'Ionicons';
|
|
25
|
+
speak: none;
|
|
26
|
+
font-style: normal;
|
|
27
|
+
font-weight: normal;
|
|
28
|
+
font-variant: normal;
|
|
29
|
+
text-transform: none;
|
|
30
|
+
text-rendering: auto;
|
|
31
|
+
-webkit-font-smoothing: antialiased;
|
|
32
|
+
-moz-osx-font-smoothing: grayscale;
|
|
33
|
+
font-size: 19px;
|
|
34
|
+
line-height: 16px;
|
|
35
|
+
display: block;
|
|
36
|
+
width: 16px;
|
|
37
|
+
height: 16px;
|
|
38
|
+
position: absolute;
|
|
39
|
+
top: 50%;
|
|
40
|
+
right: 0;
|
|
41
|
+
margin-top: -8px;
|
|
42
|
+
|
|
43
|
+
${rwd.Medium`
|
|
44
|
+
font-size: 24px;
|
|
45
|
+
line-height: 20px;
|
|
46
|
+
width: 20px;
|
|
47
|
+
height: 20px;
|
|
48
|
+
margin-top: -10px;
|
|
49
|
+
`}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
${(props) => props.waiting && `
|
|
53
|
+
opacity: 1;
|
|
54
|
+
|
|
55
|
+
&:before {
|
|
56
|
+
content: '';
|
|
57
|
+
background-repeat: no-repeat;
|
|
58
|
+
background-position: 50% 50%;
|
|
59
|
+
background-size: cover;
|
|
60
|
+
background-image: url(${loader});
|
|
61
|
+
}
|
|
62
|
+
`}
|
|
63
|
+
|
|
64
|
+
${(props) => props.success && `
|
|
65
|
+
opacity: 1;
|
|
66
|
+
|
|
67
|
+
&:before {
|
|
68
|
+
content: '\\f14a';
|
|
69
|
+
color: ${theme.cProgressDone};
|
|
70
|
+
}
|
|
71
|
+
`}
|
|
72
|
+
|
|
73
|
+
${(props) => props.failed && `
|
|
74
|
+
opacity: 1;
|
|
75
|
+
color: ${theme.cWarning};
|
|
76
|
+
|
|
77
|
+
&:before {
|
|
78
|
+
content: '\\f14e';
|
|
79
|
+
}
|
|
80
|
+
`}
|
|
81
|
+
`;
|
|
82
|
+
export {
|
|
83
|
+
Process
|
|
84
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import styled from "styled-components";
|
|
4
|
+
import PropTypes from "prop-types";
|
|
5
|
+
import earlyadopter from "../../static/images/early-adopter.png.js";
|
|
6
|
+
import graduation from "../../static/images/graduation.png.js";
|
|
7
|
+
import { Wrapper, Title } from "./ProfileBadge.styles.js";
|
|
8
|
+
const Badge = styled.img`
|
|
9
|
+
height: 100px;
|
|
10
|
+
|
|
11
|
+
@media screen and (max-width: 1023px) {
|
|
12
|
+
height: 80px;
|
|
13
|
+
}
|
|
14
|
+
`;
|
|
15
|
+
const GetBadge = (badge) => {
|
|
16
|
+
if (badge === "Graduation") {
|
|
17
|
+
return graduation;
|
|
18
|
+
} else {
|
|
19
|
+
return earlyadopter;
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
const ProfileBadge = ({ title, icon = void 0, withIcon = void 0, color = "white", centerVertically }) => /* @__PURE__ */ jsxs(Wrapper, { color, children: [
|
|
23
|
+
/* @__PURE__ */ jsx(Title, { centerVertically, children: title }),
|
|
24
|
+
icon,
|
|
25
|
+
withIcon && /* @__PURE__ */ jsx(Badge, { src: GetBadge(title), alt: title + " badge" })
|
|
26
|
+
] });
|
|
27
|
+
ProfileBadge.propTypes = {
|
|
28
|
+
title: PropTypes.string.isRequired,
|
|
29
|
+
icon: PropTypes.node,
|
|
30
|
+
withIcon: PropTypes.bool,
|
|
31
|
+
color: PropTypes.string
|
|
32
|
+
};
|
|
33
|
+
export {
|
|
34
|
+
ProfileBadge
|
|
35
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import styled, { css } from "styled-components";
|
|
2
|
+
import rwd from "../../styles/rwd.js";
|
|
3
|
+
import theme from "../../styles/theme.js";
|
|
4
|
+
const Wrapper = styled.div.withConfig({
|
|
5
|
+
shouldForwardProp: (props) => !["color"].includes(props)
|
|
6
|
+
})`
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
justify-content: center;
|
|
10
|
+
align-items: center;
|
|
11
|
+
text-align: center;
|
|
12
|
+
flex-grow: 1;
|
|
13
|
+
padding: 32px;
|
|
14
|
+
|
|
15
|
+
${rwd.Medium`
|
|
16
|
+
padding: 12px;
|
|
17
|
+
`}
|
|
18
|
+
|
|
19
|
+
${(props) => props.color === "white" && `
|
|
20
|
+
color: ${theme.cBlack};
|
|
21
|
+
background-color: ${theme.cWhite};
|
|
22
|
+
|
|
23
|
+
svg {
|
|
24
|
+
stroke: ${theme.cBlack};
|
|
25
|
+
}
|
|
26
|
+
`}
|
|
27
|
+
|
|
28
|
+
${(props) => props.color === "red" && `
|
|
29
|
+
color: ${theme.cWhite};
|
|
30
|
+
background-color: ${theme.cWarning};
|
|
31
|
+
|
|
32
|
+
svg {
|
|
33
|
+
stroke: ${theme.cWhite};
|
|
34
|
+
}
|
|
35
|
+
`}
|
|
36
|
+
`;
|
|
37
|
+
const Title = styled.div.withConfig({
|
|
38
|
+
shouldForwardProp: (props) => !["centerVertically"].includes(props)
|
|
39
|
+
})`
|
|
40
|
+
font-size: 11px;
|
|
41
|
+
line-height: 24px;
|
|
42
|
+
letter-spacing: 2.06px;
|
|
43
|
+
text-transform: uppercase;
|
|
44
|
+
margin-bottom: 20px;
|
|
45
|
+
|
|
46
|
+
${({ centerVertically }) => centerVertically && css`
|
|
47
|
+
margin-bottom: 0;
|
|
48
|
+
`}
|
|
49
|
+
`;
|
|
50
|
+
export {
|
|
51
|
+
Title,
|
|
52
|
+
Wrapper
|
|
53
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import PropTypes from "prop-types";
|
|
4
|
+
import stdin_default from "../Background/Background.js";
|
|
5
|
+
import { ComponentWrapper } from "../ComponentWrapper/ComponentWrapper.styles.js";
|
|
6
|
+
import { Container, ImageWrapper, EditButton, Name, EditIcon } from "./ProfileBox.styles.js";
|
|
7
|
+
const lineBreaker = {
|
|
8
|
+
wordBreak: "break-all"
|
|
9
|
+
};
|
|
10
|
+
const ProfileBox = ({ pictureSrc, name = "", handleEdit = () => {
|
|
11
|
+
}, withEditButton = true, nameStyle = {} }) => /* @__PURE__ */ jsxs(Container, { children: [
|
|
12
|
+
/* @__PURE__ */ jsx(ImageWrapper, { children: /* @__PURE__ */ jsx(stdin_default, { src: pictureSrc }) }),
|
|
13
|
+
/* @__PURE__ */ jsx(EditButton, { onClick: handleEdit, "data-cy": "edit-button-profile-box", children: /* @__PURE__ */ jsx(ComponentWrapper, { children: /* @__PURE__ */ jsxs(Name, { style: { ...lineBreaker, ...nameStyle }, children: [
|
|
14
|
+
name,
|
|
15
|
+
withEditButton && /* @__PURE__ */ jsx(EditIcon, {})
|
|
16
|
+
] }) }) })
|
|
17
|
+
] });
|
|
18
|
+
ProfileBox.propTypes = {
|
|
19
|
+
pictureSrc: PropTypes.string.isRequired,
|
|
20
|
+
name: PropTypes.string,
|
|
21
|
+
handleEdit: PropTypes.func,
|
|
22
|
+
withEditButton: PropTypes.bool,
|
|
23
|
+
nameStyle: PropTypes.object
|
|
24
|
+
};
|
|
25
|
+
export {
|
|
26
|
+
ProfileBox
|
|
27
|
+
};
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import styled from "styled-components";
|
|
2
|
+
import { Container as Container$1 } from "../Background/Background.styles.js";
|
|
3
|
+
const Container = styled.div`
|
|
4
|
+
width: 100%;
|
|
5
|
+
height: 100%;
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: column;
|
|
8
|
+
`;
|
|
9
|
+
const ImageWrapper = styled.div`
|
|
10
|
+
flex-grow: 1;
|
|
11
|
+
min-height: 300px;
|
|
12
|
+
|
|
13
|
+
${Container$1} {
|
|
14
|
+
width: 100%;
|
|
15
|
+
padding-top: 100%;
|
|
16
|
+
}
|
|
17
|
+
`;
|
|
18
|
+
const EditButton = styled.button`
|
|
19
|
+
display: block;
|
|
20
|
+
width: 100%;
|
|
21
|
+
color: ${(props) => props.theme.cBlack};
|
|
22
|
+
border-bottom: 1px solid ${(props) => props.theme.cLightGrey};
|
|
23
|
+
transition: color 0.2s;
|
|
24
|
+
|
|
25
|
+
&:focus,
|
|
26
|
+
&:hover {
|
|
27
|
+
color: ${(props) => props.theme.cPrimary};
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&:focus {
|
|
31
|
+
outline: none;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
& > div {
|
|
35
|
+
width: 100%;
|
|
36
|
+
}
|
|
37
|
+
`;
|
|
38
|
+
const Name = styled.div`
|
|
39
|
+
position: relative;
|
|
40
|
+
font-size: 16px;
|
|
41
|
+
line-height: 20px;
|
|
42
|
+
font-weight: 600;
|
|
43
|
+
letter-spacing: 0.6px;
|
|
44
|
+
text-align: center;
|
|
45
|
+
`;
|
|
46
|
+
const EditIcon = styled.i.attrs({
|
|
47
|
+
className: "ion-md-create"
|
|
48
|
+
})`
|
|
49
|
+
margin-left: 12px;
|
|
50
|
+
|
|
51
|
+
&:before {
|
|
52
|
+
transform: rotate(-15deg);
|
|
53
|
+
}
|
|
54
|
+
`;
|
|
55
|
+
styled.i.attrs({
|
|
56
|
+
className: "ion-ios-add-circle-outline"
|
|
57
|
+
})`
|
|
58
|
+
margin-left: 12px;
|
|
59
|
+
font-size: 30px;
|
|
60
|
+
`;
|
|
61
|
+
export {
|
|
62
|
+
Container,
|
|
63
|
+
EditButton,
|
|
64
|
+
EditIcon,
|
|
65
|
+
ImageWrapper,
|
|
66
|
+
Name
|
|
67
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import PropTypes from "prop-types";
|
|
4
|
+
import { Wrapper, Label, Value, Equal } from "./ProfileStat.styles.js";
|
|
5
|
+
const lineBreaker = {
|
|
6
|
+
wordBreak: "break-all"
|
|
7
|
+
};
|
|
8
|
+
const ProfileStat = ({ label, unit = "", value, eqUnit = "", eqValue, withBorder }) => /* @__PURE__ */ jsxs(Wrapper, { withBorder, children: [
|
|
9
|
+
/* @__PURE__ */ jsx(Label, { withBorder, children: label }),
|
|
10
|
+
/* @__PURE__ */ jsxs(Value, { style: lineBreaker, children: [
|
|
11
|
+
unit && /* @__PURE__ */ jsx("span", { children: unit }),
|
|
12
|
+
value
|
|
13
|
+
] }),
|
|
14
|
+
eqValue && eqUnit ? /* @__PURE__ */ jsxs(Equal, { children: [
|
|
15
|
+
"= ",
|
|
16
|
+
eqUnit && /* @__PURE__ */ jsx("span", { children: eqUnit }),
|
|
17
|
+
eqValue
|
|
18
|
+
] }) : ""
|
|
19
|
+
] });
|
|
20
|
+
ProfileStat.propTypes = {
|
|
21
|
+
label: PropTypes.string.isRequired,
|
|
22
|
+
unit: PropTypes.string,
|
|
23
|
+
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,
|
|
24
|
+
eqUnit: PropTypes.string,
|
|
25
|
+
eqValue: PropTypes.string.isRequired
|
|
26
|
+
};
|
|
27
|
+
export {
|
|
28
|
+
ProfileStat
|
|
29
|
+
};
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import styled from "styled-components";
|
|
2
|
+
import rwd from "../../styles/rwd.js";
|
|
3
|
+
import theme from "../../styles/theme.js";
|
|
4
|
+
const Wrapper = styled.div.withConfig({
|
|
5
|
+
shouldForwardProp: (props) => !["withBorder"].includes(props)
|
|
6
|
+
})`
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
justify-content: center;
|
|
10
|
+
text-align: center;
|
|
11
|
+
flex-grow: 1;
|
|
12
|
+
background-color: ${() => theme.cPrimary};
|
|
13
|
+
color: ${() => theme.cWhite};
|
|
14
|
+
padding: 32px;
|
|
15
|
+
|
|
16
|
+
${(props) => props.withBorder && `
|
|
17
|
+
box-shadow: inset 0 0.4px 0 0 #313131;
|
|
18
|
+
`}
|
|
19
|
+
|
|
20
|
+
${rwd.Medium`
|
|
21
|
+
padding: 12px 32px;
|
|
22
|
+
text-align: left;
|
|
23
|
+
`}
|
|
24
|
+
|
|
25
|
+
${rwd.Large`
|
|
26
|
+
padding: 12px 64px;
|
|
27
|
+
text-align: left;
|
|
28
|
+
`}
|
|
29
|
+
|
|
30
|
+
@media screen and (max-width: 768px) {
|
|
31
|
+
max-width: 100vw;
|
|
32
|
+
}
|
|
33
|
+
`;
|
|
34
|
+
const Label = styled.div.withConfig({
|
|
35
|
+
shouldForwardProp: (props) => !["withBorder"].includes(props)
|
|
36
|
+
})`
|
|
37
|
+
font-size: 11px;
|
|
38
|
+
line-height: 2.18;
|
|
39
|
+
letter-spacing: 2.1px;
|
|
40
|
+
text-transform: uppercase;
|
|
41
|
+
margin-bottom: 10px;
|
|
42
|
+
|
|
43
|
+
${(props) => props.withBorder && `
|
|
44
|
+
color: #88fa51;
|
|
45
|
+
`}
|
|
46
|
+
`;
|
|
47
|
+
const Value = styled.div`
|
|
48
|
+
font-weight: 300;
|
|
49
|
+
font-size: 32px;
|
|
50
|
+
line-height: 36px;
|
|
51
|
+
letter-spacing: 2.43px;
|
|
52
|
+
text-transform: uppercase;
|
|
53
|
+
|
|
54
|
+
& > span {
|
|
55
|
+
&:after {
|
|
56
|
+
content: ' ';
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
${rwd.Medium`
|
|
61
|
+
font-size: 44px;
|
|
62
|
+
line-height: 48px;
|
|
63
|
+
`}
|
|
64
|
+
|
|
65
|
+
${rwd.Large`
|
|
66
|
+
font-size: 55px;
|
|
67
|
+
line-height: 58px;
|
|
68
|
+
`}
|
|
69
|
+
`;
|
|
70
|
+
const Equal = styled.div`
|
|
71
|
+
font-size: 11px;
|
|
72
|
+
line-height: 2.18;
|
|
73
|
+
letter-spacing: 2.1px;
|
|
74
|
+
text-transform: uppercase;
|
|
75
|
+
margin-top: 10px;
|
|
76
|
+
color: ${() => theme.cLighterGreen};
|
|
77
|
+
overflow-wrap: break-word;
|
|
78
|
+
|
|
79
|
+
& > span {
|
|
80
|
+
&:after {
|
|
81
|
+
content: ' ';
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
`;
|
|
85
|
+
export {
|
|
86
|
+
Equal,
|
|
87
|
+
Label,
|
|
88
|
+
Value,
|
|
89
|
+
Wrapper
|
|
90
|
+
};
|