@ludo.ninja/components 1.7.5 → 1.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/graphql/index.js +7 -3
- package/dist/components/CreationCard/{CardHead.jsx → CardHead.js} +51 -51
- package/dist/components/CreationCard/index.js +106 -0
- package/dist/components/addWalletsRedirectPage/index.js +38 -0
- package/dist/components/{assetJSONLD.jsx → assetJSONLD.js} +5 -1
- package/dist/components/banner/index.js +71 -0
- package/dist/components/base/Meta/index.js +60 -0
- package/dist/components/base/NoSSR/index.js +10 -0
- package/dist/components/collectionPage/collectionLike/index.js +41 -0
- package/dist/components/deleteDialog/index.js +111 -0
- package/dist/components/editProfile/Cropper/{index.jsx → index.js} +44 -19
- package/dist/components/editProfile/UserPicProfile/index.js +282 -0
- package/dist/components/favoriteList/add/addAssetToFavoriteList/{index.jsx → index.js} +41 -15
- package/dist/components/favoriteList/add/addCollectionToFavoriteList/{index.jsx → index.js} +40 -14
- package/dist/components/favoriteList/add/addCreationToFavoriteList/{index.jsx → index.js} +41 -15
- package/dist/components/filters/applyResetBtns/index.js +28 -0
- package/dist/components/filters/galleriesFiltersForm/index.js +90 -0
- package/dist/components/filters/index.js +112 -0
- package/dist/components/filters/mobileFilters/index.js +21 -0
- package/dist/components/filters/setsFiltersForm/index.js +82 -0
- package/dist/components/forms/form/index.js +136 -0
- package/dist/components/forms/formsNavigation/index.js +74 -0
- package/dist/components/forms/formsTemplate/{index.jsx → index.js} +88 -59
- package/dist/components/forms/types/index.js +5 -2
- package/dist/components/gallery/add/addAssetToGallery/{index.jsx → index.js} +41 -15
- package/dist/components/gallery/add/addCreationToGallery/{index.jsx → index.js} +51 -24
- package/dist/components/gradientLabel/index.js +24 -0
- package/dist/components/headers/components/headerExperienceLabel/index.js +32 -0
- package/dist/components/headers/components/headerUserPic/index.js +27 -0
- package/dist/components/headers/header/index.js +32 -0
- package/dist/components/headers/headerSearch/index.js +40 -0
- package/dist/components/headers/headerSimple/index.js +33 -0
- package/dist/components/index.js +8 -1
- package/dist/components/inviteCodesForms/getEarlyAccessForm/{index.jsx → index.js} +50 -55
- package/dist/components/inviteCodesForms/joinWaitListForm/{index.jsx → index.js} +32 -38
- package/dist/components/inviteCodesForms/styles/index.js +13 -7
- package/dist/components/inviteCodesPage/components/index.js +14 -0
- package/dist/components/inviteCodesPage/components/inviteCodes/index.js +24 -0
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCode/index.js +30 -0
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCode/loader/index.js +26 -0
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCodeCaption/index.js +28 -0
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCodeCaption/loader/index.js +21 -0
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCodeCopy/index.js +27 -0
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCodeDate/index.js +23 -0
- package/dist/components/inviteCodesPage/wrappers/index.js +12 -0
- package/dist/components/inviteCodesPage/wrappers/resumeCodes/index.js +54 -0
- package/dist/components/inviteCodesPage/wrappers/resumeCodes/loader/index.js +17 -0
- package/dist/components/inviteCodesPage/wrappers/unusedCodes/index.js +31 -0
- package/dist/components/inviteCodesPage/wrappers/usedCodes/index.js +37 -0
- package/dist/components/linkTabs/index.js +24 -0
- package/dist/components/linkTabs/linkTab/index.js +30 -0
- package/dist/components/myWallets/index.js +33 -0
- package/dist/components/myWallets/myWalletItem/index.js +137 -0
- package/dist/components/navigation/index.js +75 -0
- package/dist/components/profile/MultiversXAudit/MultiversXAudit.js +136 -0
- package/dist/components/profile/ProfileTabs.js +46 -0
- package/dist/components/profile/aboutText/index.js +110 -0
- package/dist/components/profile/addToGalleryBtns/index.js +45 -0
- package/dist/components/profile/followersSocial/followers/index.js +28 -0
- package/dist/components/profile/followersSocial/index.js +28 -0
- package/dist/components/profile/followersSocial/social/index.js +40 -0
- package/dist/components/profile/index.js +25 -11
- package/dist/components/profile/info/index.js +43 -0
- package/dist/components/profile/interests/data.js +5 -3
- package/dist/components/profile/interests/index.js +56 -0
- package/dist/components/profile/interests/type.js +2 -1
- package/dist/components/profile/jsonLd/{index.jsx → index.js} +5 -1
- package/dist/components/profile/pageHead/index.js +51 -0
- package/dist/components/profile/profileSkeleton/index.js +35 -0
- package/dist/components/profile/profileUserCards/index.js +19 -0
- package/dist/components/profile/profileUserCards/profileUserCard/index.js +157 -0
- package/dist/components/profile/rank/index.js +33 -0
- package/dist/components/profile/stats/index.js +28 -0
- package/dist/components/profile/wallets/index.js +73 -0
- package/dist/components/profile/wrapper/index.js +17 -0
- package/dist/components/registrationPage/index.js +10 -0
- package/dist/components/registrationPage/registrationSelectBox/index.js +24 -0
- package/dist/components/registrationPage/registrationSelection/index.js +43 -0
- package/dist/components/rewards/FAQ/index.js +132 -0
- package/dist/components/rewards/clarifications/index.js +54 -0
- package/dist/components/rewards/logoBottom/index.js +29 -0
- package/dist/components/rewards/prograssBar/index.js +32 -0
- package/dist/components/rewards/rewardsButton/index.js +17 -0
- package/dist/components/rewards/seasonBanner/index.js +29 -0
- package/dist/components/rewards/taskExpTab/index.js +64 -0
- package/dist/components/rewards/tasksGrid/{index.jsx → index.js} +32 -30
- package/dist/components/rewards/userExp/index.js +72 -0
- package/dist/components/search/SearchInputContainer.js +244 -0
- package/dist/components/search/index.js +86 -0
- package/dist/components/search/searchCategories/index.js +79 -0
- package/dist/components/search/searchCategories/type.js +2 -1
- package/dist/components/search/searchCloseMoreButtons/index.js +54 -0
- package/dist/components/search/searchResultCaption/index.js +31 -0
- package/dist/components/search/searchSelectsGalleries/index.js +70 -0
- package/dist/components/search/searchSelectsSets/index.js +69 -0
- package/dist/components/search/searchSimpleInput/index.js +85 -0
- package/dist/components/search/searchSuggestions/index.js +117 -0
- package/dist/components/search/searchSuggestions/searchSuggestionsCaption/index.js +27 -0
- package/dist/components/search/searchSuggestions/searchSuggestionsFooter/index.js +30 -0
- package/dist/components/search/searchSuggestions/searchSuggestionsItem/index.js +40 -0
- package/dist/components/search/searchSuggestions/searchSuggestionsItem/searchSuggestionsItemSkeleton/index.js +56 -0
- package/dist/components/search/searchSuggestions/searchSuggestionsNotFound/index.js +29 -0
- package/dist/components/shareDialog/index.js +72 -0
- package/dist/components/showcaseAssets/showcaseSort/data.js +4 -1
- package/dist/components/showcaseAssets/showcaseSort/index.js +28 -0
- package/dist/components/sidebar/data.js +89 -0
- package/dist/components/sidebar/index.js +133 -0
- package/dist/components/sidebar/initializer.js +38 -0
- package/dist/components/sidebar/sidebarFilters/index.js +30 -0
- package/dist/components/sidebar/sidebarInviteCodeLabel/index.js +67 -0
- package/dist/components/socialButtons/data.js +52 -0
- package/dist/components/socialButtons/icons/discord.js +7 -0
- package/dist/components/socialButtons/icons/facebook.js +8 -0
- package/dist/components/socialButtons/icons/instagram.js +9 -0
- package/dist/components/socialButtons/icons/medium.js +7 -0
- package/dist/components/socialButtons/icons/telegram.js +7 -0
- package/dist/components/socialButtons/icons/twitter.js +7 -0
- package/dist/components/socialButtons/index.js +32 -0
- package/dist/components/socialButtons/type.js +2 -1
- package/dist/components/tabs/icons/bell.js +9 -0
- package/dist/components/tabs/icons/profile.js +9 -0
- package/dist/components/tabs/icons/secure.js +8 -0
- package/dist/components/tabs/index.js +55 -0
- package/dist/components/toTopBtn/index.js +89 -0
- package/dist/dto/AssetEntity/index.js +24 -19
- package/dist/dto/AssetEntity/interface.js +2 -1
- package/dist/dto/AssetEntity/views/AssetAudio/{index.jsx → index.js} +13 -8
- package/dist/dto/AssetEntity/views/AssetImage/{index.jsx → index.js} +14 -9
- package/dist/dto/AssetEntity/views/AssetObject/{index.jsx → index.js} +15 -10
- package/dist/dto/AssetEntity/views/AssetOther/{index.jsx → index.js} +15 -10
- package/dist/dto/AssetEntity/views/AssetScreenshot/{index.jsx → index.js} +14 -9
- package/dist/dto/AssetEntity/views/AssetVideo/{index.jsx → index.js} +13 -8
- package/dist/dto/AssetEntity/views/index.js +16 -6
- package/dist/dto/Collection/CollectionCreationEntity/index.js +27 -22
- package/dist/dto/Collection/CollectionCreationEntity/interface.js +2 -1
- package/dist/dto/Collection/CollectionEntity/index.js +7 -5
- package/dist/dto/Collection/CollectionEntity/interface.js +2 -1
- package/dist/dto/CreationEntity/index.js +24 -19
- package/dist/dto/CreationEntity/interface.js +2 -1
- package/dist/dto/GalleryEntityV2/index.js +10 -5
- package/dist/dto/GalleryEntityV2/interface.js +2 -1
- package/dist/dto/common/ItemType/data.js +28 -26
- package/dist/dto/common/ItemType/{index.jsx → index.js} +7 -5
- package/dist/dto/common/ItemViews/CreationAudio/{index.jsx → index.js} +13 -8
- package/dist/dto/common/ItemViews/CreationImage/{index.jsx → index.js} +14 -9
- package/dist/dto/common/ItemViews/CreationObject/{index.jsx → index.js} +11 -6
- package/dist/dto/common/ItemViews/CreationOther/{index.jsx → index.js} +13 -8
- package/dist/dto/common/ItemViews/CreationVideo/{index.jsx → index.js} +13 -8
- package/dist/dto/common/ItemViews/index.js +21 -5
- package/dist/dto/common/Media/Audio/{index.jsx → index.js} +13 -8
- package/dist/dto/common/Media/Image/{index.jsx → index.js} +14 -9
- package/dist/dto/common/Media/Object/{index.jsx → index.js} +13 -8
- package/dist/dto/common/Media/Other/{index.jsx → index.js} +18 -13
- package/dist/dto/common/Media/Screenshot/{index.jsx → index.js} +14 -9
- package/dist/dto/common/Media/Urls/index.js +52 -34
- package/dist/dto/common/Media/Video/{index.jsx → index.js} +13 -8
- package/dist/dto/common/Media/{index.jsx → index.js} +5 -3
- package/dist/dto/common/Media/interface.js +2 -1
- package/dist/dto/index.js +33 -8
- package/dist/entities/user/type.js +2 -1
- package/dist/fonts/FontsInitializeLayout.js +67 -0
- package/dist/fonts/index.js +25 -3
- package/dist/fonts/vars.js +6 -1
- package/dist/hooks/apollo/index.js +11 -0
- package/dist/hooks/audio/useMultiAudio/{index.jsx → index.js} +12 -10
- package/dist/hooks/extension/useExtension/index.js +10 -8
- package/dist/hooks/favorites/index.js +18 -2
- package/dist/hooks/favorites/useGetFavoriteGallaryCreations/index.js +37 -31
- package/dist/hooks/favorites/useGetUserFevoritesCreations/index.js +37 -30
- package/dist/hooks/galleries/index.js +17 -1
- package/dist/hooks/galleries/useGetUserGalleriesCreations/index.js +38 -32
- package/dist/hooks/index.js +21 -5
- package/dist/hooks/likes/dynamic/{useFindCollectionsAndLikes.jsx → useFindCollectionsAndLikes.js} +33 -26
- package/dist/hooks/likes/dynamic/{useFindCreationsAndLikes.jsx → useFindCreationsAndLikes.js} +32 -26
- package/dist/hooks/likes/dynamic/{useGetCollectionInfoAndLikes.jsx → useGetCollectionInfoAndLikes.js} +29 -23
- package/dist/hooks/likes/dynamic/{useGetCreationsAndLikes.jsx → useGetCreationsAndLikes.js} +34 -27
- package/dist/hooks/likes/dynamic/{useGetCreationsAndLikesByType.jsx → useGetCreationsAndLikesByType.js} +36 -30
- package/dist/hooks/likes/dynamic/{useGetMixedLikesFavoriteList.jsx → useGetMixedLikesFavoriteList.js} +13 -11
- package/dist/hooks/likes/dynamic/{useGetTableLikes.jsx → useGetTableLikes.js} +30 -24
- package/dist/hooks/likes/index.js +32 -27
- package/dist/hooks/likes/useGetLikesAsset.js +23 -19
- package/dist/hooks/searchFiltersConnector/{index.jsx → index.js} +72 -44
- package/dist/hooks/useToGalleryAsset/{index.jsx → index.js} +22 -14
- package/dist/index.js +25 -9
- package/dist/layouts/{GlobalLayout.jsx → GlobalLayout.js} +10 -18
- package/dist/layouts/base/LWithRegularHeader/index.js +25 -0
- package/dist/layouts/base/LWithRegularHeader/type.js +2 -1
- package/dist/layouts/base/LWithSearchHeader/index.js +18 -0
- package/dist/layouts/base/LWithSearchHeader/type.js +2 -1
- package/dist/layouts/base/LWithSimpleHeader/index.js +21 -0
- package/dist/layouts/base/LWithSimpleHeader/type.js +2 -1
- package/dist/layouts/base/LWithoutHeader/index.js +23 -0
- package/dist/layouts/base/index.js +14 -4
- package/dist/layouts/custom/accountLayout/index.js +22 -0
- package/dist/layouts/custom/formsLayout/index.js +18 -0
- package/dist/layouts/custom/index.js +16 -5
- package/dist/layouts/custom/mainLayout/index.js +22 -0
- package/dist/layouts/custom/searchLayout/index.js +25 -0
- package/dist/layouts/custom/simpleLayout/index.js +22 -0
- package/dist/layouts/custom/styles.js +11 -5
- package/dist/layouts/index.js +21 -5
- package/dist/layouts/pageTransitionLayout.js +24 -0
- package/dist/layouts/pageWithLayout.js +2 -1
- package/dist/modules/gallery/api/useGetAssetsAndCollectionForFavorite.js +42 -35
- package/dist/modules/gallery/api/useGetFavoriteGallery.js +15 -11
- package/dist/modules/gallery/store.js +16 -10
- package/dist/modules/gallery/ui/AllResults.js +19 -0
- package/dist/modules/gallery/ui/Description.js +70 -0
- package/dist/modules/gallery/ui/{EditGallery.jsx → EditGallery.js} +24 -18
- package/dist/modules/gallery/ui/GalleryDeleteIcon.js +51 -0
- package/dist/modules/gallery/ui/PlaceholderItemsGallery.js +24 -0
- package/dist/modules/gallery/ui/STopSections.js +10 -4
- package/dist/modules/gallery/ui/chooseGalleryItems/chooseGalleryItem/index.js +37 -0
- package/dist/modules/gallery/ui/chooseGalleryItems/index.js +146 -0
- package/dist/modules/gallery/ui/createGalleryForm/{index.jsx → index.js} +40 -42
- package/dist/modules/gallery/ui/editGalleryForm/index.js +187 -0
- package/dist/modules/gallery/ui/itemsPreview/index.js +203 -0
- package/dist/modules/index.js +20 -4
- package/dist/modules/notifications/CreatorNotifications.js +42 -0
- package/dist/modules/notifications/index.js +6 -0
- package/dist/modules/sessionScroll/globalTabs.js +4 -1
- package/dist/modules/sessionScroll/index.js +39 -18
- package/dist/modules/sessionScroll/type.js +2 -1
- package/dist/modules/sessionScroll/useVirtuosoInitialScroll.js +16 -12
- package/dist/modules/user/auth/index.js +17 -1
- package/dist/modules/user/auth/useAuthVerification.js +37 -10
- package/dist/modules/user/auth/useSignIn.js +9 -5
- package/dist/modules/user/auth/useSignOut.js +19 -12
- package/dist/modules/user/index.js +19 -3
- package/dist/modules/user/profileData/index.js +17 -1
- package/dist/modules/user/profileData/{profileDataInitialization.jsx → profileDataInitialization.js} +17 -13
- package/dist/modules/user/{store.jsx → store.js} +12 -9
- package/dist/modules/virtuoso/VirtuosoPageBuilder.js +152 -0
- package/dist/modules/virtuoso/{VirtuosoToTopBtn.jsx → VirtuosoToTopBtn.js} +12 -7
- package/dist/modules/virtuoso/index.js +21 -5
- package/dist/modules/virtuoso/types.js +2 -1
- package/dist/modules/virtuoso/useSubscribeVirtuosoScrollToHeader.js +8 -4
- package/dist/modules/virtuoso/useVirtuosoData.js +10 -6
- package/dist/pages/index.js +16 -0
- package/dist/store/index.js +23 -6
- package/dist/store/media/index.js +7 -4
- package/dist/store/media/types.js +2 -1
- package/dist/store/ui/index.js +24 -21
- package/dist/store/ui/types.js +2 -1
- package/dist/store/ui/utils.js +8 -4
- package/dist/styles/ScreenWidth.js +6 -3
- package/dist/styles/animations/index.js +11 -0
- package/dist/styles/colors/index.js +38 -1
- package/dist/styles/globalStyles.js +23 -0
- package/dist/styles/index.js +26 -5
- package/dist/styles/mixins/boxShadow.js +10 -0
- package/dist/styles/mixins/boxTransform.js +10 -0
- package/dist/styles/mixins/index.js +25 -3
- package/dist/styles/mixins/z-indexes.js +13 -0
- package/dist/styles/typography/index.js +12 -0
- package/dist/system/ActiveLink/index.js +71 -0
- package/dist/system/Alert/index.js +20 -0
- package/dist/system/Alert/type.js +8 -1
- package/dist/system/BasicOverlay/index.js +20 -0
- package/dist/system/Buttons/IconButton/index.js +7 -0
- package/dist/system/Buttons/IconWithButton/index.js +7 -0
- package/dist/system/Buttons/MainButton/index.js +7 -0
- package/dist/system/Buttons/SecondaryButton/index.js +7 -0
- package/dist/system/Buttons/index.js +14 -4
- package/dist/system/Cards/CardCheckbox/index.js +51 -0
- package/dist/system/Cards/CardContent/CardCategory/index.js +28 -0
- package/dist/system/Cards/CardContent/CardLikes/index.js +32 -0
- package/dist/system/Cards/CardContent/CardShowMore/index.js +42 -0
- package/dist/system/Cards/CardContent/index.js +52 -0
- package/dist/system/Cards/CardHeadIcons/{index.jsx → index.js} +49 -51
- package/dist/system/Cards/CardMedia/CardAudio/index.js +93 -0
- package/dist/system/Cards/CardMedia/CardImage/index.js +44 -0
- package/dist/system/Cards/CardMedia/CardVideo/index.js +83 -0
- package/dist/system/Cards/CardMedia/index.js +12 -3
- package/dist/system/Cards/CardRank/index.js +33 -0
- package/dist/system/Cards/CardsGrid/index.js +80 -0
- package/dist/system/Cards/HideLink/index.js +27 -0
- package/dist/system/Cards/MultiMediaCard/index.js +81 -0
- package/dist/system/Cards/RegularCard/index.js +56 -0
- package/dist/system/Cards/Styles/Content.js +10 -5
- package/dist/system/Cards/Styles/Head.js +10 -5
- package/dist/system/Cards/Styles/Headicons.js +11 -6
- package/dist/system/Cards/Styles/Image.js +10 -5
- package/dist/system/Cards/Styles/Likes.js +12 -7
- package/dist/system/Cards/Styles/MultiHead.js +10 -5
- package/dist/system/Cards/Styles/Video.js +8 -3
- package/dist/system/Cards/Styles/index.js +20 -7
- package/dist/system/Cards/index.js +46 -14
- package/dist/system/CardsHolderWithSkeleton/CardsHolder/CardsError/{index.jsx → index.js} +40 -15
- package/dist/system/CardsHolderWithSkeleton/CardsHolder/CardsNoResults/index.js +26 -0
- package/dist/system/CardsHolderWithSkeleton/CardsHolder/CardsSkeleton/index.js +38 -0
- package/dist/system/CardsHolderWithSkeleton/CardsHolder/index.js +38 -0
- package/dist/system/CardsHolderWithSkeleton/CardsHolderLoader/index.js +28 -0
- package/dist/system/CardsHolderWithSkeleton/index.js +19 -0
- package/dist/system/DropDown/DropDown.test.js +42 -0
- package/dist/system/DropDown/index.js +63 -0
- package/dist/system/Filters/helpers.js +5 -1
- package/dist/system/Filters/index.js +18 -2
- package/dist/system/Filters/type.js +5 -2
- package/dist/system/Forms/Checkbox/{Checkbox.test.jsx → Checkbox.test.js} +29 -13
- package/dist/system/Forms/Checkbox/index.js +71 -0
- package/dist/system/Forms/DatePicker/index.js +43 -0
- package/dist/system/Forms/ErrorLabel/ErrorLabel.test.js +27 -0
- package/dist/system/Forms/ErrorLabel/index.js +20 -0
- package/dist/system/Forms/Input/{Input.test.jsx → Input.test.js} +18 -13
- package/dist/system/Forms/Input/index.js +45 -0
- package/dist/system/Forms/Input/type.js +2 -1
- package/dist/system/Forms/Messages/index.js +3 -1
- package/dist/system/Forms/RadioInput/index.js +42 -0
- package/dist/system/Forms/Selects/DesktopSelect/index.js +153 -0
- package/dist/system/Forms/Selects/DesktopSelect/type.js +2 -1
- package/dist/system/Forms/Selects/MobileSelect/index.js +55 -0
- package/dist/system/Forms/TextArea/index.js +44 -0
- package/dist/system/Forms/index.js +16 -6
- package/dist/system/Img/ExternalImage/index.js +53 -0
- package/dist/system/Img/ImageInterceptor/ImageInterceptor.test.js +53 -0
- package/dist/system/Img/ImageInterceptor/index.js +56 -0
- package/dist/system/Img/Profilepic/index.js +39 -0
- package/dist/system/Img/Userpic/{UserPic.test.jsx → UserPic.test.js} +24 -21
- package/dist/system/Img/Userpic/index.js +99 -0
- package/dist/system/Img/index.js +20 -4
- package/dist/system/Labels/ExperienceLabel/ExperienceLabel.test.js +64 -0
- package/dist/system/Labels/ExperienceLabel/index.js +44 -0
- package/dist/system/Labels/InviteLabel/InviteLabel.test.js +56 -0
- package/dist/system/Labels/InviteLabel/index.js +38 -0
- package/dist/system/Labels/SkeletonLabel/index.js +7 -0
- package/dist/system/Modals/Modal/Modal.test.js +36 -0
- package/dist/system/Modals/Modal/index.js +33 -0
- package/dist/system/Modals/ModalSidebar/CreatorModalSidebarPortal.js +48 -0
- package/dist/system/Modals/ModalSidebar/ModalSidebar.test.js +35 -0
- package/dist/system/Modals/ModalSidebar/ModalSidebarPortal.js +19 -0
- package/dist/system/Modals/ModalSidebar/index.js +33 -0
- package/dist/system/Modals/index.js +10 -2
- package/dist/system/Overlay/{Overlay.test.jsx → Overlay.test.js} +17 -13
- package/dist/system/Overlay/index.js +28 -0
- package/dist/system/PageLoader/index.js +7 -0
- package/dist/system/Palete/index.js +7 -0
- package/dist/system/ShareIconResize.js +27 -0
- package/dist/system/Tabs/TabNavLink/TabNavLink.test.js +40 -0
- package/dist/system/Tabs/TabNavLink/index.js +27 -0
- package/dist/system/Tabs/TabsNav/TabsNav.test.js +43 -0
- package/dist/system/Tabs/TabsNav/index.js +28 -0
- package/dist/system/Tabs/TabsNav/type.js +2 -1
- package/dist/system/Tabs/TabsPanel/TabsPanel.test.js +37 -0
- package/dist/system/Tabs/TabsPanel/index.js +21 -0
- package/dist/system/Tabs/index.js +27 -4
- package/dist/system/index.js +49 -21
- package/dist/system/theme.js +7 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/3d.js +5 -1
- package/dist/utils/adaptive/check4k.js +9 -5
- package/dist/utils/adaptive/index.js +18 -2
- package/dist/utils/adaptive/scale.js +9 -5
- package/dist/utils/auth/index.js +10 -3
- package/dist/utils/copyBtn/index.js +107 -0
- package/dist/utils/env/index.js +26 -15
- package/dist/utils/env/isProd/index.js +7 -3
- package/dist/utils/env/type.js +5 -2
- package/dist/utils/extractItemIds/index.js +12 -0
- package/dist/utils/getDimensionsImage.js +5 -1
- package/dist/utils/getPageSizeAssets.js +9 -5
- package/dist/utils/healzHandler/index.js +5 -1
- package/dist/utils/imageProportionsSize/{index.jsx → index.js} +5 -1
- package/dist/utils/index.js +22 -6
- package/dist/utils/screen/index.js +31 -24
- package/dist/utils/ssrFunctions/index.js +13 -7
- package/dist/utils/ui/index.js +8 -0
- package/package.json +1 -1
- package/dist/components/CreationCard/index.jsx +0 -70
- package/dist/components/addWalletsRedirectPage/index.jsx +0 -40
- package/dist/components/banner/index.jsx +0 -49
- package/dist/components/base/Meta/index.jsx +0 -59
- package/dist/components/base/NoSSR/index.jsx +0 -5
- package/dist/components/collectionPage/collectionLike/index.jsx +0 -40
- package/dist/components/deleteDialog/index.jsx +0 -111
- package/dist/components/editProfile/UserPicProfile/index.jsx +0 -254
- package/dist/components/filters/applyResetBtns/index.jsx +0 -26
- package/dist/components/filters/galleriesFiltersForm/index.jsx +0 -71
- package/dist/components/filters/index.jsx +0 -92
- package/dist/components/filters/mobileFilters/index.jsx +0 -16
- package/dist/components/filters/setsFiltersForm/index.jsx +0 -61
- package/dist/components/forms/form/index.jsx +0 -118
- package/dist/components/forms/formsNavigation/index.jsx +0 -54
- package/dist/components/gradientLabel/index.jsx +0 -19
- package/dist/components/headers/components/headerExperienceLabel/index.jsx +0 -28
- package/dist/components/headers/components/headerUserPic/index.jsx +0 -23
- package/dist/components/headers/header/index.jsx +0 -27
- package/dist/components/headers/headerSearch/index.jsx +0 -35
- package/dist/components/headers/headerSimple/index.jsx +0 -30
- package/dist/components/inviteCodesPage/components/index.jsx +0 -5
- package/dist/components/inviteCodesPage/components/inviteCodes/index.jsx +0 -19
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCode/index.jsx +0 -26
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCode/loader/index.jsx +0 -22
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCodeCaption/index.jsx +0 -23
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCodeCaption/loader/index.jsx +0 -16
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCodeCopy/index.jsx +0 -27
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCodeDate/index.jsx +0 -20
- package/dist/components/inviteCodesPage/wrappers/index.jsx +0 -4
- package/dist/components/inviteCodesPage/wrappers/resumeCodes/index.jsx +0 -59
- package/dist/components/inviteCodesPage/wrappers/resumeCodes/loader/index.jsx +0 -13
- package/dist/components/inviteCodesPage/wrappers/unusedCodes/index.jsx +0 -28
- package/dist/components/inviteCodesPage/wrappers/usedCodes/index.jsx +0 -35
- package/dist/components/linkTabs/index.jsx +0 -21
- package/dist/components/linkTabs/linkTab/index.jsx +0 -27
- package/dist/components/myWallets/index.jsx +0 -29
- package/dist/components/myWallets/myWalletItem/index.jsx +0 -116
- package/dist/components/navigation/index.jsx +0 -65
- package/dist/components/profile/MultiversXAudit/MultiversXAudit.jsx +0 -134
- package/dist/components/profile/ProfileTabs.jsx +0 -41
- package/dist/components/profile/aboutText/index.jsx +0 -89
- package/dist/components/profile/addToGalleryBtns/index.jsx +0 -43
- package/dist/components/profile/followersSocial/followers/index.jsx +0 -22
- package/dist/components/profile/followersSocial/index.jsx +0 -22
- package/dist/components/profile/followersSocial/social/index.jsx +0 -35
- package/dist/components/profile/info/index.jsx +0 -39
- package/dist/components/profile/interests/index.jsx +0 -64
- package/dist/components/profile/pageHead/index.jsx +0 -45
- package/dist/components/profile/profileSkeleton/index.jsx +0 -33
- package/dist/components/profile/profileUserCards/index.jsx +0 -12
- package/dist/components/profile/profileUserCards/profileUserCard/index.jsx +0 -132
- package/dist/components/profile/rank/index.jsx +0 -34
- package/dist/components/profile/stats/index.jsx +0 -29
- package/dist/components/profile/wallets/index.jsx +0 -74
- package/dist/components/profile/wrapper/index.jsx +0 -20
- package/dist/components/registrationPage/index.jsx +0 -3
- package/dist/components/registrationPage/registrationSelectBox/index.jsx +0 -20
- package/dist/components/registrationPage/registrationSelection/index.jsx +0 -52
- package/dist/components/rewards/FAQ/index.jsx +0 -112
- package/dist/components/rewards/clarifications/index.jsx +0 -59
- package/dist/components/rewards/logoBottom/index.jsx +0 -25
- package/dist/components/rewards/prograssBar/index.jsx +0 -29
- package/dist/components/rewards/rewardsButton/index.jsx +0 -12
- package/dist/components/rewards/seasonBanner/index.jsx +0 -25
- package/dist/components/rewards/taskExpTab/index.jsx +0 -71
- package/dist/components/rewards/userExp/index.jsx +0 -73
- package/dist/components/search/SearchInputContainer.jsx +0 -216
- package/dist/components/search/index.jsx +0 -60
- package/dist/components/search/searchCategories/index.jsx +0 -55
- package/dist/components/search/searchCloseMoreButtons/index.jsx +0 -52
- package/dist/components/search/searchResultCaption/index.jsx +0 -29
- package/dist/components/search/searchSelectsGalleries/index.jsx +0 -58
- package/dist/components/search/searchSelectsSets/index.jsx +0 -54
- package/dist/components/search/searchSimpleInput/index.jsx +0 -59
- package/dist/components/search/searchSuggestions/index.jsx +0 -119
- package/dist/components/search/searchSuggestions/searchSuggestionsCaption/index.jsx +0 -23
- package/dist/components/search/searchSuggestions/searchSuggestionsFooter/index.jsx +0 -26
- package/dist/components/search/searchSuggestions/searchSuggestionsItem/index.jsx +0 -42
- package/dist/components/search/searchSuggestions/searchSuggestionsItem/searchSuggestionsItemSkeleton/index.jsx +0 -33
- package/dist/components/search/searchSuggestions/searchSuggestionsNotFound/index.jsx +0 -22
- package/dist/components/shareDialog/index.jsx +0 -86
- package/dist/components/showcaseAssets/showcaseSort/index.jsx +0 -25
- package/dist/components/sidebar/data.jsx +0 -81
- package/dist/components/sidebar/index.jsx +0 -112
- package/dist/components/sidebar/initializer.jsx +0 -8
- package/dist/components/sidebar/sidebarFilters/index.jsx +0 -28
- package/dist/components/sidebar/sidebarInviteCodeLabel/index.jsx +0 -40
- package/dist/components/socialButtons/data.jsx +0 -47
- package/dist/components/socialButtons/icons/discord.jsx +0 -6
- package/dist/components/socialButtons/icons/facebook.jsx +0 -7
- package/dist/components/socialButtons/icons/instagram.jsx +0 -8
- package/dist/components/socialButtons/icons/medium.jsx +0 -6
- package/dist/components/socialButtons/icons/telegram.jsx +0 -6
- package/dist/components/socialButtons/icons/twitter.jsx +0 -6
- package/dist/components/socialButtons/index.jsx +0 -30
- package/dist/components/tabs/icons/bell.jsx +0 -8
- package/dist/components/tabs/icons/profile.jsx +0 -8
- package/dist/components/tabs/icons/secure.jsx +0 -7
- package/dist/components/tabs/index.jsx +0 -53
- package/dist/components/toTopBtn/index.jsx +0 -61
- package/dist/fonts/FontsInitializeLayout.jsx +0 -44
- package/dist/hooks/apollo/index.jsx +0 -7
- package/dist/layouts/base/LWithRegularHeader/index.jsx +0 -21
- package/dist/layouts/base/LWithSearchHeader/index.jsx +0 -14
- package/dist/layouts/base/LWithSimpleHeader/index.jsx +0 -17
- package/dist/layouts/base/LWithoutHeader/index.jsx +0 -19
- package/dist/layouts/custom/accountLayout/index.jsx +0 -22
- package/dist/layouts/custom/formsLayout/index.jsx +0 -15
- package/dist/layouts/custom/mainLayout/index.jsx +0 -20
- package/dist/layouts/custom/searchLayout/index.jsx +0 -23
- package/dist/layouts/custom/simpleLayout/index.jsx +0 -20
- package/dist/layouts/pageTransitionLayout.jsx +0 -25
- package/dist/modules/gallery/ui/AllResults.jsx +0 -11
- package/dist/modules/gallery/ui/Description.jsx +0 -50
- package/dist/modules/gallery/ui/GalleryDeleteIcon.jsx +0 -21
- package/dist/modules/gallery/ui/PlaceholderItemsGallery.jsx +0 -19
- package/dist/modules/gallery/ui/chooseGalleryItems/chooseGalleryItem/index.jsx +0 -38
- package/dist/modules/gallery/ui/chooseGalleryItems/index.jsx +0 -117
- package/dist/modules/gallery/ui/editGalleryForm/index.jsx +0 -168
- package/dist/modules/gallery/ui/itemsPreview/index.jsx +0 -180
- package/dist/modules/notifications/CreatorNotifications.jsx +0 -14
- package/dist/modules/notifications/index.jsx +0 -3
- package/dist/modules/virtuoso/VirtuosoPageBuilder.jsx +0 -127
- package/dist/pages/index.jsx +0 -12
- package/dist/styles/animations/index.jsx +0 -8
- package/dist/styles/globalStyles.jsx +0 -21
- package/dist/styles/mixins/boxShadow.jsx +0 -8
- package/dist/styles/mixins/boxTransform.jsx +0 -8
- package/dist/styles/mixins/z-indexes.jsx +0 -10
- package/dist/styles/typography/index.jsx +0 -1
- package/dist/system/ActiveLink/index.jsx +0 -34
- package/dist/system/Alert/index.jsx +0 -15
- package/dist/system/BasicOverlay/index.jsx +0 -15
- package/dist/system/Buttons/IconButton/index.jsx +0 -2
- package/dist/system/Buttons/IconWithButton/index.jsx +0 -2
- package/dist/system/Buttons/MainButton/index.jsx +0 -2
- package/dist/system/Buttons/SecondaryButton/index.jsx +0 -2
- package/dist/system/Cards/CardCheckbox/index.jsx +0 -25
- package/dist/system/Cards/CardContent/CardCategory/index.jsx +0 -25
- package/dist/system/Cards/CardContent/CardLikes/index.jsx +0 -31
- package/dist/system/Cards/CardContent/CardShowMore/index.jsx +0 -39
- package/dist/system/Cards/CardContent/index.jsx +0 -61
- package/dist/system/Cards/CardMedia/CardAudio/index.jsx +0 -66
- package/dist/system/Cards/CardMedia/CardImage/index.jsx +0 -17
- package/dist/system/Cards/CardMedia/CardVideo/index.jsx +0 -57
- package/dist/system/Cards/CardRank/index.jsx +0 -34
- package/dist/system/Cards/CardsGrid/index.jsx +0 -59
- package/dist/system/Cards/HideLink/index.jsx +0 -17
- package/dist/system/Cards/MultiMediaCard/index.jsx +0 -82
- package/dist/system/Cards/RegularCard/index.jsx +0 -57
- package/dist/system/CardsHolderWithSkeleton/CardsHolder/CardsNoResults/index.jsx +0 -22
- package/dist/system/CardsHolderWithSkeleton/CardsHolder/CardsSkeleton/index.jsx +0 -37
- package/dist/system/CardsHolderWithSkeleton/CardsHolder/index.jsx +0 -37
- package/dist/system/CardsHolderWithSkeleton/CardsHolderLoader/index.jsx +0 -24
- package/dist/system/CardsHolderWithSkeleton/index.jsx +0 -17
- package/dist/system/DropDown/DropDown.test.jsx +0 -41
- package/dist/system/DropDown/index.jsx +0 -38
- package/dist/system/Forms/Checkbox/index.jsx +0 -35
- package/dist/system/Forms/DatePicker/index.jsx +0 -39
- package/dist/system/Forms/ErrorLabel/ErrorLabel.test.jsx +0 -22
- package/dist/system/Forms/ErrorLabel/index.jsx +0 -15
- package/dist/system/Forms/Input/index.jsx +0 -29
- package/dist/system/Forms/RadioInput/index.jsx +0 -27
- package/dist/system/Forms/Selects/DesktopSelect/index.jsx +0 -115
- package/dist/system/Forms/Selects/MobileSelect/index.jsx +0 -29
- package/dist/system/Forms/TextArea/index.jsx +0 -29
- package/dist/system/Img/ExternalImage/index.jsx +0 -13
- package/dist/system/Img/ImageInterceptor/ImageInterceptor.test.jsx +0 -52
- package/dist/system/Img/ImageInterceptor/index.jsx +0 -27
- package/dist/system/Img/Profilepic/index.jsx +0 -33
- package/dist/system/Img/Userpic/index.jsx +0 -74
- package/dist/system/Labels/ExperienceLabel/ExperienceLabel.test.jsx +0 -49
- package/dist/system/Labels/ExperienceLabel/index.jsx +0 -38
- package/dist/system/Labels/InviteLabel/InviteLabel.test.jsx +0 -41
- package/dist/system/Labels/InviteLabel/index.jsx +0 -34
- package/dist/system/Labels/SkeletonLabel/index.jsx +0 -2
- package/dist/system/Modals/Modal/Modal.test.jsx +0 -31
- package/dist/system/Modals/Modal/index.jsx +0 -29
- package/dist/system/Modals/ModalSidebar/CreatorModalSidebarPortal.jsx +0 -18
- package/dist/system/Modals/ModalSidebar/ModalSidebar.test.jsx +0 -30
- package/dist/system/Modals/ModalSidebar/ModalSidebarPortal.jsx +0 -14
- package/dist/system/Modals/ModalSidebar/index.jsx +0 -28
- package/dist/system/Overlay/index.jsx +0 -24
- package/dist/system/PageLoader/index.jsx +0 -2
- package/dist/system/Palete/index.jsx +0 -2
- package/dist/system/ShareIconResize.jsx +0 -21
- package/dist/system/Tabs/TabNavLink/TabNavLink.test.jsx +0 -35
- package/dist/system/Tabs/TabNavLink/index.jsx +0 -23
- package/dist/system/Tabs/TabsNav/TabsNav.test.jsx +0 -38
- package/dist/system/Tabs/TabsNav/index.jsx +0 -22
- package/dist/system/Tabs/TabsPanel/TabsPanel.test.jsx +0 -36
- package/dist/system/Tabs/TabsPanel/index.jsx +0 -16
- package/dist/utils/copyBtn/index.jsx +0 -80
- package/dist/utils/extractItemIds/index.jsx +0 -8
- package/dist/utils/ui/index.jsx +0 -4
- /package/dist/components/headers/components/MobileToggle/{index.jsx → index.js} +0 -0
- /package/dist/system/Flex/{index.jsx → index.js} +0 -0
- /package/dist/system/Text/{index.jsx → index.js} +0 -0
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
+
return cooked;
|
|
5
|
+
};
|
|
6
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7
|
+
if (k2 === undefined) k2 = k;
|
|
8
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
9
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
10
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
11
|
+
}
|
|
12
|
+
Object.defineProperty(o, k2, desc);
|
|
13
|
+
}) : (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
o[k2] = m[k];
|
|
16
|
+
}));
|
|
17
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
18
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
19
|
+
}) : function(o, v) {
|
|
20
|
+
o["default"] = v;
|
|
21
|
+
});
|
|
22
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
23
|
+
if (mod && mod.__esModule) return mod;
|
|
24
|
+
var result = {};
|
|
25
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
26
|
+
__setModuleDefault(result, mod);
|
|
27
|
+
return result;
|
|
28
|
+
};
|
|
29
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
30
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
31
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
32
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
33
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
34
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
35
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
36
|
+
});
|
|
37
|
+
};
|
|
38
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
39
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
40
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
41
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
42
|
+
function step(op) {
|
|
43
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
44
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
45
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
46
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
47
|
+
switch (op[0]) {
|
|
48
|
+
case 0: case 1: t = op; break;
|
|
49
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
50
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
51
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
52
|
+
default:
|
|
53
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
54
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
55
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
56
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
57
|
+
if (t[2]) _.ops.pop();
|
|
58
|
+
_.trys.pop(); continue;
|
|
59
|
+
}
|
|
60
|
+
op = body.call(thisArg, _);
|
|
61
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
62
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
63
|
+
}
|
|
64
|
+
};
|
|
65
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
66
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
67
|
+
};
|
|
68
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
69
|
+
var react_1 = __importStar(require("react"));
|
|
70
|
+
var styled_components_1 = __importDefault(require("styled-components"));
|
|
71
|
+
var colors_1 = require("@ludo.ninja/ui/build/styles/colors");
|
|
72
|
+
var type_1 = require("@ludo.ninja/ui/build/system/Alert/type");
|
|
73
|
+
var utils_1 = require("@ludo.ninja/utils");
|
|
74
|
+
var utils_2 = require("@ludo.ninja/utils");
|
|
75
|
+
var ui_1 = require("@/store/ui");
|
|
76
|
+
var useRemoveWallet_1 = __importDefault(require("@/api/server-identities/mutations/useRemoveWallet"));
|
|
77
|
+
var env_1 = require("@/utils/env");
|
|
78
|
+
var arrow_down_svg_1 = __importDefault(require("@/public/selects/arrow_down.svg"));
|
|
79
|
+
var StyledMyWalletItem = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: relative;\n border-top-left-radius: 8px;\n border-top-right-radius: 8px;\n border-bottom-left-radius: ", ";\n border-bottom-right-radius: ", ";\n border: 1px solid ", ";\n padding: 10px 12px;\n min-height: 36px;\n display: flex;\n align-items: center;\n cursor: pointer;\n user-select: none;\n background-color: #f6f7fd;\n margin-bottom: 12px;\n\n &:last-child {\n margin-bottom: 0;\n }\n"], ["\n position: relative;\n border-top-left-radius: 8px;\n border-top-right-radius: 8px;\n border-bottom-left-radius: ", ";\n border-bottom-right-radius: ", ";\n border: 1px solid ", ";\n padding: 10px 12px;\n min-height: 36px;\n display: flex;\n align-items: center;\n cursor: pointer;\n user-select: none;\n background-color: #f6f7fd;\n margin-bottom: 12px;\n\n &:last-child {\n margin-bottom: 0;\n }\n"])), function (props) { return (props.isOpen ? 'none' : '8px'); }, function (props) { return (props.isOpen ? 'none' : '8px'); }, function (props) { return (props.isMainWallet ? colors_1.AccentColor : '#cfd5ea'); });
|
|
80
|
+
var StyledImg = styled_components_1.default.img(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n border-radius: 50%;\n"], ["\n border-radius: 50%;\n"])));
|
|
81
|
+
var StyledContent = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n margin: 0 0 0 12px;\n height: 100%;\n\n span {\n font-size: 12px;\n color: ", ";\n }\n p {\n margin: 0;\n font-size: 13px;\n color: ", ";\n }\n"], ["\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n margin: 0 0 0 12px;\n height: 100%;\n\n span {\n font-size: 12px;\n color: ", ";\n }\n p {\n margin: 0;\n font-size: 13px;\n color: ", ";\n }\n"])), colors_1.BlackColor, colors_1.TextGrayColor);
|
|
82
|
+
var StyledDropDown = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n position: absolute;\n top: 56px;\n left: -1px;\n height: auto;\n width: 100%;\n border-bottom-left-radius: 8px;\n border-bottom-right-radius: 8px;\n border-bottom: 1px solid ", ";\n border-left: 1px solid ", ";\n border-right: 1px solid ", ";\n z-index: 1;\n background-color: #f6f7fd;\n pointer-events: ", ";\n display: ", ";\n\n p {\n margin: 0;\n font-size: 13px;\n color: ", ";\n }\n"], ["\n position: absolute;\n top: 56px;\n left: -1px;\n height: auto;\n width: 100%;\n border-bottom-left-radius: 8px;\n border-bottom-right-radius: 8px;\n border-bottom: 1px solid ", ";\n border-left: 1px solid ", ";\n border-right: 1px solid ", ";\n z-index: 1;\n background-color: #f6f7fd;\n pointer-events: ", ";\n display: ", ";\n\n p {\n margin: 0;\n font-size: 13px;\n color: ", ";\n }\n"])), colors_1.BorderColorLight, colors_1.BorderColorLight, colors_1.BorderColorLight, function (props) { return (props.isOpen ? 'unset' : 'none'); }, function (props) { return (props.isOpen ? 'block' : 'none'); }, colors_1.TextGrayColor);
|
|
83
|
+
var StyledDropDownItem = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n margin: 0 12px 10px 12px;\n p {\n margin: 0;\n font-size: 13px;\n color: ", ";\n padding: 4px 8px;\n }\n\n &:hover {\n background-color: ", ";\n p {\n color: ", ";\n }\n }\n\n &:last-child {\n margin: 0 12px 8px 12px;\n }\n"], ["\n margin: 0 12px 10px 12px;\n p {\n margin: 0;\n font-size: 13px;\n color: ", ";\n padding: 4px 8px;\n }\n\n &:hover {\n background-color: ", ";\n p {\n color: ", ";\n }\n }\n\n &:last-child {\n margin: 0 12px 8px 12px;\n }\n"])), colors_1.TextGrayColor, colors_1.InactiveButtonColor, colors_1.BlackColor);
|
|
84
|
+
var StyledArrowIcon = (0, styled_components_1.default)(arrow_down_svg_1.default)(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n transform: ", ";\n transition: transform ease-in 0.3s;\n position: absolute;\n right: 12px;\n"], ["\n transform: ", ";\n transition: transform ease-in 0.3s;\n position: absolute;\n right: 12px;\n"])), function (props) { return (props.isOpen ? 'rotate(180deg)' : 'rotate(0deg)'); });
|
|
85
|
+
var MyWalletItem = function (_a) {
|
|
86
|
+
var blockchain = _a.blockchain, address = _a.address, userId = _a.userId, chainId = _a.chainId, isMainWallet = _a.isMainWallet;
|
|
87
|
+
var removeWallet = (0, useRemoveWallet_1.default)({
|
|
88
|
+
userId: userId,
|
|
89
|
+
}).removeWallet;
|
|
90
|
+
var openAlert = (0, ui_1.useUiStore)(function (state) { return state.openAlert; });
|
|
91
|
+
var _b = (0, react_1.useState)(false), isOpen = _b[0], setIsOpen = _b[1];
|
|
92
|
+
var handleClick = {
|
|
93
|
+
close: function () {
|
|
94
|
+
setIsOpen(false);
|
|
95
|
+
},
|
|
96
|
+
toggle: function () {
|
|
97
|
+
setIsOpen(function (prev) { return !prev; });
|
|
98
|
+
},
|
|
99
|
+
};
|
|
100
|
+
var handleCopy = function (address) { return __awaiter(void 0, void 0, void 0, function () {
|
|
101
|
+
return __generator(this, function (_a) {
|
|
102
|
+
switch (_a.label) {
|
|
103
|
+
case 0: return [4 /*yield*/, (0, utils_2.copyToClipboard)(address)];
|
|
104
|
+
case 1:
|
|
105
|
+
_a.sent();
|
|
106
|
+
openAlert({
|
|
107
|
+
type: type_1.alertVariants.copied,
|
|
108
|
+
});
|
|
109
|
+
return [2 /*return*/];
|
|
110
|
+
}
|
|
111
|
+
});
|
|
112
|
+
}); };
|
|
113
|
+
return (react_1.default.createElement(utils_1.ClickAwayListener, { onClickAway: handleClick.close },
|
|
114
|
+
react_1.default.createElement(StyledMyWalletItem, { isOpen: isOpen, isMainWallet: isMainWallet, onClick: handleClick.toggle },
|
|
115
|
+
react_1.default.createElement(StyledArrowIcon, { isOpen: isOpen, width: 24, height: 24 }),
|
|
116
|
+
react_1.default.createElement(StyledImg, { width: 36, height: 36, src: blockchain.getBlockChainIconRegular({
|
|
117
|
+
domain: (0, env_1.getStaticENVDomain)(),
|
|
118
|
+
}), alt: blockchain.getBlockChainPublicLabel() }),
|
|
119
|
+
react_1.default.createElement(StyledContent, null,
|
|
120
|
+
react_1.default.createElement("span", null, (0, utils_2.shortenedText)(address)),
|
|
121
|
+
react_1.default.createElement("p", null, blockchain.getBlockChainPublicLabel())),
|
|
122
|
+
react_1.default.createElement(StyledDropDown, { isOpen: isOpen },
|
|
123
|
+
react_1.default.createElement(StyledDropDownItem, { onClick: function () { return handleCopy(address || ''); } },
|
|
124
|
+
react_1.default.createElement("p", null, "Copy")),
|
|
125
|
+
!isMainWallet && (react_1.default.createElement(StyledDropDownItem, null,
|
|
126
|
+
react_1.default.createElement("p", null, "Set as main address"))),
|
|
127
|
+
!isMainWallet && (react_1.default.createElement(StyledDropDownItem, { onClick: function () {
|
|
128
|
+
return removeWallet({
|
|
129
|
+
blockchain: blockchain.getBlockChainPrivateLabel(),
|
|
130
|
+
address: address || '',
|
|
131
|
+
chainId: chainId,
|
|
132
|
+
});
|
|
133
|
+
} },
|
|
134
|
+
react_1.default.createElement("p", null, "Delete")))))));
|
|
135
|
+
};
|
|
136
|
+
exports.default = MyWalletItem;
|
|
137
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
+
return cooked;
|
|
5
|
+
};
|
|
6
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7
|
+
if (k2 === undefined) k2 = k;
|
|
8
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
9
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
10
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
11
|
+
}
|
|
12
|
+
Object.defineProperty(o, k2, desc);
|
|
13
|
+
}) : (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
o[k2] = m[k];
|
|
16
|
+
}));
|
|
17
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
18
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
19
|
+
}) : function(o, v) {
|
|
20
|
+
o["default"] = v;
|
|
21
|
+
});
|
|
22
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
23
|
+
if (mod && mod.__esModule) return mod;
|
|
24
|
+
var result = {};
|
|
25
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
26
|
+
__setModuleDefault(result, mod);
|
|
27
|
+
return result;
|
|
28
|
+
};
|
|
29
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
30
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
31
|
+
};
|
|
32
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33
|
+
exports.NavigationTabs = void 0;
|
|
34
|
+
var react_1 = __importStar(require("react"));
|
|
35
|
+
var router_1 = require("next/router");
|
|
36
|
+
var styled_components_1 = __importDefault(require("styled-components"));
|
|
37
|
+
var ScreenWidth_1 = require("@/styles/ScreenWidth");
|
|
38
|
+
// import NotificationIcon from '@/public/settings_page/notifications.svg';
|
|
39
|
+
// import NotificationActiveIcon from '@/public/settings_page/notifications_active.svg';
|
|
40
|
+
var colors_1 = require("@/styles/colors");
|
|
41
|
+
var _system_1 = require("@system");
|
|
42
|
+
var back_svg_1 = __importDefault(require("@/public/settings_page/back.svg"));
|
|
43
|
+
var burger_menu_svg_1 = __importDefault(require("@/public/settings_page/burger_menu.svg"));
|
|
44
|
+
// import PrivacyIcon from '@/public/settings_page/privacy.svg';
|
|
45
|
+
// import PrivacyActiveIcon from '@/public/settings_page/privacy_active.svg';
|
|
46
|
+
var settings_svg_1 = __importDefault(require("@/public/settings_page/settings.svg"));
|
|
47
|
+
var settings_active_svg_1 = __importDefault(require("@/public/settings_page/settings_active.svg"));
|
|
48
|
+
var NavigationTabs;
|
|
49
|
+
(function (NavigationTabs) {
|
|
50
|
+
NavigationTabs["settings"] = "settings";
|
|
51
|
+
NavigationTabs["notifications"] = "notifications";
|
|
52
|
+
NavigationTabs["privacy"] = "privacy";
|
|
53
|
+
})(NavigationTabs || (exports.NavigationTabs = NavigationTabs = {}));
|
|
54
|
+
var StyledFlex = (0, styled_components_1.default)(_system_1.Flex)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: none;\n\n ", " {\n cursor: pointer;\n position: relative;\n // position: ", ";\n z-index: 1;\n display: flex;\n }\n"], ["\n display: none;\n\n ", " {\n cursor: pointer;\n position: relative;\n // position: ", ";\n z-index: 1;\n display: flex;\n }\n"])), ScreenWidth_1.mediaQuery.tablet, function (props) { return (props.isOpen ? 'fixed' : 'relative'); });
|
|
55
|
+
var Wrapper = (0, styled_components_1.default)(_system_1.Flex)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n flex-direction: column;\n width: 250px;\n\n ", " {\n left: 0;\n top: 0;\n bottom: 0;\n right: 0;\n width: 100%;\n height: 100%;\n padding-top: 110px;\n padding-left: 25px;\n position: fixed;\n overflow: hidden;\n transition: transform ease-in-out 300ms;\n background: ", ";\n box-shadow: 20px 16px 32px -16px rgba(33, 21, 95, 0.2);\n z-index: 1;\n\n &.hide {\n transform: translate(calc(-100% - 20px), 0);\n }\n\n &.show {\n transform: translate(0%, 0%);\n }\n }\n"], ["\n flex-direction: column;\n width: 250px;\n\n ", " {\n left: 0;\n top: 0;\n bottom: 0;\n right: 0;\n width: 100%;\n height: 100%;\n padding-top: 110px;\n padding-left: 25px;\n position: fixed;\n overflow: hidden;\n transition: transform ease-in-out 300ms;\n background: ", ";\n box-shadow: 20px 16px 32px -16px rgba(33, 21, 95, 0.2);\n z-index: 1;\n\n &.hide {\n transform: translate(calc(-100% - 20px), 0);\n }\n\n &.show {\n transform: translate(0%, 0%);\n }\n }\n"])), ScreenWidth_1.mediaQuery.tablet, colors_1.BackgroundColorLight);
|
|
56
|
+
var StyledH1 = (0, styled_components_1.default)(_system_1.H1)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n ", " {\n padding-top: 25px;\n text-align: center;\n }\n ", " {\n margin-top: -45px;\n }\n\n svg {\n display: none;\n ", " {\n display: flex;\n cursor: pointer;\n position: absolute;\n left: 15px;\n margin-top: -25px;\n }\n // ", " {\n // margin-top: -25px;\n // }\n }\n"], ["\n ", " {\n padding-top: 25px;\n text-align: center;\n }\n ", " {\n margin-top: -45px;\n }\n\n svg {\n display: none;\n ", " {\n display: flex;\n cursor: pointer;\n position: absolute;\n left: 15px;\n margin-top: -25px;\n }\n // ", " {\n // margin-top: -25px;\n // }\n }\n"])), ScreenWidth_1.mediaQuery.tablet, ScreenWidth_1.mediaQuery.bigPhone, ScreenWidth_1.mediaQuery.tablet, ScreenWidth_1.mediaQuery.bigPhone);
|
|
57
|
+
var List = styled_components_1.default.ul(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n margin: 0;\n padding: 20px 0 0 0;\n list-style-type: none;\n\n ", " {\n padding-left: 50px;\n }\n\n li {\n padding-left: 5px;\n display: flex;\n align-items: center;\n width: 100%;\n height: 50px;\n font-size: 15px;\n cursor: pointer;\n color: ", ";\n\n svg {\n margin-right: 5px;\n\n ", " {\n margin-right: 15px;\n }\n }\n\n .activeIcon {\n display: none;\n }\n .icon {\n display: flex;\n }\n\n &.activeTab {\n background: ", ";\n color: ", ";\n\n ", " {\n background: transparent;\n }\n\n .icon {\n display: none;\n }\n .activeIcon {\n display: flex;\n }\n }\n }\n"], ["\n margin: 0;\n padding: 20px 0 0 0;\n list-style-type: none;\n\n ", " {\n padding-left: 50px;\n }\n\n li {\n padding-left: 5px;\n display: flex;\n align-items: center;\n width: 100%;\n height: 50px;\n font-size: 15px;\n cursor: pointer;\n color: ", ";\n\n svg {\n margin-right: 5px;\n\n ", " {\n margin-right: 15px;\n }\n }\n\n .activeIcon {\n display: none;\n }\n .icon {\n display: flex;\n }\n\n &.activeTab {\n background: ", ";\n color: ", ";\n\n ", " {\n background: transparent;\n }\n\n .icon {\n display: none;\n }\n .activeIcon {\n display: flex;\n }\n }\n }\n"])), ScreenWidth_1.mediaQuery.tablet, colors_1.TextGrayColor, ScreenWidth_1.mediaQuery.tablet, colors_1.InactiveButtonColor, colors_1.BlackColor, ScreenWidth_1.mediaQuery.tablet);
|
|
58
|
+
var Navigation = function () {
|
|
59
|
+
var _a = (0, react_1.useState)(false), isOpen = _a[0], setIsOpen = _a[1];
|
|
60
|
+
var router = (0, router_1.useRouter)();
|
|
61
|
+
var activeTab = router.pathname.split('/').at(-2);
|
|
62
|
+
return (react_1.default.createElement(react_1.default.Fragment, null,
|
|
63
|
+
react_1.default.createElement(StyledFlex, { isOpen: isOpen }, isOpen ? (react_1.default.createElement(back_svg_1.default, { onClick: function () { return setIsOpen(false); } })) : (react_1.default.createElement(burger_menu_svg_1.default, { onClick: function () { return setIsOpen(true); } }))),
|
|
64
|
+
react_1.default.createElement(Wrapper, { className: "mobile_menu ".concat(isOpen ? 'show' : 'hide') },
|
|
65
|
+
react_1.default.createElement(StyledH1, null,
|
|
66
|
+
isOpen && react_1.default.createElement(back_svg_1.default, { onClick: function () { return setIsOpen(false); } }),
|
|
67
|
+
"Settings"),
|
|
68
|
+
react_1.default.createElement(List, null,
|
|
69
|
+
react_1.default.createElement("li", { className: "".concat(activeTab === NavigationTabs.settings ? 'activeTab' : '', " ") },
|
|
70
|
+
react_1.default.createElement(settings_svg_1.default, { className: 'icon' }),
|
|
71
|
+
react_1.default.createElement(settings_active_svg_1.default, { className: 'activeIcon' }),
|
|
72
|
+
react_1.default.createElement("span", null, "Settings"))))));
|
|
73
|
+
};
|
|
74
|
+
exports.default = Navigation;
|
|
75
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4;
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
+
return cooked;
|
|
5
|
+
};
|
|
6
|
+
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
7
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
8
|
+
if (ar || !(i in from)) {
|
|
9
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
10
|
+
ar[i] = from[i];
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
14
|
+
};
|
|
15
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
17
|
+
};
|
|
18
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
+
exports.MultiversXAudit = void 0;
|
|
20
|
+
var react_1 = require("react");
|
|
21
|
+
var auto_1 = __importDefault(require("chart.js/auto"));
|
|
22
|
+
var nookies_1 = require("nookies");
|
|
23
|
+
var styled_components_1 = __importDefault(require("styled-components"));
|
|
24
|
+
var api_1 = require("@ludo.ninja/api");
|
|
25
|
+
var schema_1 = require("@ludo.ninja/api/build/graphql_tools/__generated__/identityHost/schema");
|
|
26
|
+
var colors_1 = require("@ludo.ninja/ui/build/styles/colors");
|
|
27
|
+
var type_1 = require("@ludo.ninja/ui/build/system/Alert/type");
|
|
28
|
+
var _4k_1 = require("@ludo.ninja/ui/build/utils/4k");
|
|
29
|
+
var ui_1 = require("@/store/ui");
|
|
30
|
+
var ScreenWidth_1 = require("@/styles/ScreenWidth");
|
|
31
|
+
var vars_1 = require("@/fonts/vars");
|
|
32
|
+
var SWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n width: 100%;\n padding: 12px 16px;\n flex-direction: column;\n align-items: center;\n gap: 8px;\n border-radius: 6px;\n background: ", ";\n margin-bottom: 16px;\n\n .canvas {\n width: 164px;\n height: 164px;\n\n ", " {\n width: 124px;\n height: 124px;\n }\n }\n\n .labels {\n padding-top: 8px;\n display: flex;\n flex-wrap: wrap;\n gap: 8px;\n\n & > * {\n display: flex;\n align-items: center;\n gap: 6px;\n\n color: ", ";\n font-family: ", ";\n font-size: 13px;\n font-weight: 400;\n line-height: 18px;\n }\n\n .circle {\n width: 10px;\n height: 10px;\n border-radius: 50%;\n }\n }\n\n ", " {\n padding: ", " ", ";\n gap: ", ";\n border-radius: ", ";\n margin-bottom: ", ";\n\n .canvas {\n width: ", ";\n height: ", ";\n }\n\n .labels {\n padding-top: ", ";\n gap: ", ";\n\n & > * {\n gap: ", ";\n\n font-size: ", ";\n line-height: ", ";\n }\n\n .circle {\n width: ", ";\n height: ", ";\n }\n }\n }\n"], ["\n display: flex;\n width: 100%;\n padding: 12px 16px;\n flex-direction: column;\n align-items: center;\n gap: 8px;\n border-radius: 6px;\n background: ", ";\n margin-bottom: 16px;\n\n .canvas {\n width: 164px;\n height: 164px;\n\n ", " {\n width: 124px;\n height: 124px;\n }\n }\n\n .labels {\n padding-top: 8px;\n display: flex;\n flex-wrap: wrap;\n gap: 8px;\n\n & > * {\n display: flex;\n align-items: center;\n gap: 6px;\n\n color: ", ";\n font-family: ", ";\n font-size: 13px;\n font-weight: 400;\n line-height: 18px;\n }\n\n .circle {\n width: 10px;\n height: 10px;\n border-radius: 50%;\n }\n }\n\n ", " {\n padding: ", " ", ";\n gap: ", ";\n border-radius: ", ";\n margin-bottom: ", ";\n\n .canvas {\n width: ", ";\n height: ", ";\n }\n\n .labels {\n padding-top: ", ";\n gap: ", ";\n\n & > * {\n gap: ", ";\n\n font-size: ", ";\n line-height: ", ";\n }\n\n .circle {\n width: ", ";\n height: ", ";\n }\n }\n }\n"])), colors_1.WhiteColor, ScreenWidth_1.mediaQuery.maxWidthTablet, colors_1.BlackColor, vars_1.dmsansFontVarCss.css, ScreenWidth_1.mediaQuery.minWidthFourK, (0, _4k_1.adaptiveValueCalc)(12), (0, _4k_1.adaptiveValueCalc)(16), (0, _4k_1.adaptiveValueCalc)(8), (0, _4k_1.adaptiveValueCalc)(6), (0, _4k_1.adaptiveValueCalc)(16), (0, _4k_1.adaptiveValueCalc)(164), (0, _4k_1.adaptiveValueCalc)(164), (0, _4k_1.adaptiveValueCalc)(8), (0, _4k_1.adaptiveValueCalc)(8), (0, _4k_1.adaptiveValueCalc)(6), (0, _4k_1.adaptiveValueCalc)(13), (0, _4k_1.adaptiveValueCalc)(18), (0, _4k_1.adaptiveValueCalc)(10), (0, _4k_1.adaptiveValueCalc)(10));
|
|
33
|
+
var colors = [
|
|
34
|
+
'#977CFF',
|
|
35
|
+
'#98E2EB',
|
|
36
|
+
'#D181FF',
|
|
37
|
+
'#8FDE95',
|
|
38
|
+
'#7BC0FF',
|
|
39
|
+
'#FB94A3',
|
|
40
|
+
'#FFAE80',
|
|
41
|
+
'#FFE380',
|
|
42
|
+
'#CFD5EA',
|
|
43
|
+
];
|
|
44
|
+
var backgroundColors = __spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray([], colors, true), colors, true), colors, true), colors, true), colors, true), colors, true), colors, true), colors, true), colors, true), colors, true);
|
|
45
|
+
var AuditUI = function (_a) {
|
|
46
|
+
var interests = _a.interests;
|
|
47
|
+
var labels = interests.map(function (el) {
|
|
48
|
+
var name = el.name;
|
|
49
|
+
if (name) {
|
|
50
|
+
return name[0].toUpperCase() + name.slice(1);
|
|
51
|
+
}
|
|
52
|
+
return name;
|
|
53
|
+
});
|
|
54
|
+
var canvasRef = (0, react_1.useRef)(null);
|
|
55
|
+
(0, react_1.useEffect)(function () {
|
|
56
|
+
var canvas = canvasRef.current;
|
|
57
|
+
var chart = canvas &&
|
|
58
|
+
new auto_1.default(canvas, {
|
|
59
|
+
type: 'doughnut',
|
|
60
|
+
data: {
|
|
61
|
+
labels: labels,
|
|
62
|
+
datasets: [
|
|
63
|
+
{
|
|
64
|
+
data: interests.map(function (el) { return el.percentage; }),
|
|
65
|
+
backgroundColor: backgroundColors,
|
|
66
|
+
hoverOffset: 4,
|
|
67
|
+
},
|
|
68
|
+
],
|
|
69
|
+
},
|
|
70
|
+
options: {
|
|
71
|
+
responsive: true,
|
|
72
|
+
plugins: {
|
|
73
|
+
legend: {
|
|
74
|
+
display: false,
|
|
75
|
+
},
|
|
76
|
+
tooltip: {
|
|
77
|
+
callbacks: {
|
|
78
|
+
label: function (context) {
|
|
79
|
+
return ' ' + context.raw + '%';
|
|
80
|
+
},
|
|
81
|
+
},
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
},
|
|
85
|
+
});
|
|
86
|
+
return function () {
|
|
87
|
+
if (chart && 'destroy' in chart) {
|
|
88
|
+
chart.destroy();
|
|
89
|
+
}
|
|
90
|
+
};
|
|
91
|
+
}, []);
|
|
92
|
+
return (React.createElement(SWrapper, null,
|
|
93
|
+
React.createElement("div", { className: "canvas" },
|
|
94
|
+
React.createElement("canvas", { ref: canvasRef })),
|
|
95
|
+
React.createElement("div", { className: "labels" }, labels.map(function (label, index) { return (React.createElement("div", { key: index },
|
|
96
|
+
React.createElement("div", { className: "circle", style: {
|
|
97
|
+
backgroundColor: backgroundColors[index],
|
|
98
|
+
} }),
|
|
99
|
+
React.createElement("span", null, label))); }))));
|
|
100
|
+
};
|
|
101
|
+
var Audit = function (_a) {
|
|
102
|
+
var _b;
|
|
103
|
+
var wallet = _a.wallet;
|
|
104
|
+
var openAlert = (0, ui_1.useUiStore)(function (state) { return state.openAlert; });
|
|
105
|
+
var data = (0, schema_1.useFetchMultiversXAuditQuery)({
|
|
106
|
+
variables: { wallet: wallet },
|
|
107
|
+
context: {
|
|
108
|
+
uri: api_1.hosts.identityHost,
|
|
109
|
+
},
|
|
110
|
+
notifyOnNetworkStatusChange: true,
|
|
111
|
+
fetchPolicy: 'no-cache',
|
|
112
|
+
onError: function () {
|
|
113
|
+
openAlert({
|
|
114
|
+
type: type_1.alertVariants.error,
|
|
115
|
+
caption: 'Oops, something went wrong.',
|
|
116
|
+
});
|
|
117
|
+
},
|
|
118
|
+
}).data;
|
|
119
|
+
if (!data || !((_b = data.fetchMultiversxAudit) === null || _b === void 0 ? void 0 : _b.interests)) {
|
|
120
|
+
return null;
|
|
121
|
+
}
|
|
122
|
+
var interests = data.fetchMultiversxAudit.interests;
|
|
123
|
+
return interests && React.createElement(AuditUI, { interests: interests });
|
|
124
|
+
};
|
|
125
|
+
var MultiversXAudit = function () {
|
|
126
|
+
var authMultiversXWallet = (0, nookies_1.parseCookies)().authMultiversXWallet;
|
|
127
|
+
if (!authMultiversXWallet) {
|
|
128
|
+
return null;
|
|
129
|
+
}
|
|
130
|
+
return React.createElement(Audit, { wallet: authMultiversXWallet });
|
|
131
|
+
// const testWallet =
|
|
132
|
+
// 'erd138hdrk39plv3afyv0x3fcsknfu9hkdj9xu7u0mpdqmjpvt5avc7s72unc8';
|
|
133
|
+
// return <Audit wallet={testWallet} />;
|
|
134
|
+
};
|
|
135
|
+
exports.MultiversXAudit = MultiversXAudit;
|
|
136
|
+
var templateObject_1;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
3
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
4
|
+
if (ar || !(i in from)) {
|
|
5
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
6
|
+
ar[i] = from[i];
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
10
|
+
};
|
|
11
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.ProfileTabs = void 0;
|
|
16
|
+
var react_1 = __importDefault(require("react"));
|
|
17
|
+
var router_1 = require("next/router");
|
|
18
|
+
var linkTabs_1 = __importDefault(require("@/components/linkTabs"));
|
|
19
|
+
var linkTab_1 = __importDefault(require("@/components/linkTabs/linkTab"));
|
|
20
|
+
var env_1 = require("@/utils/env");
|
|
21
|
+
var ProfileTabs = function (_a) {
|
|
22
|
+
var _b = _a.totalResults, totalResults = _b === void 0 ? null : _b, profileId = _a.profileId, style = _a.style, isMobile = _a.isMobile, isProdENV = _a.isProdENV;
|
|
23
|
+
var router = (0, router_1.useRouter)();
|
|
24
|
+
return (react_1.default.createElement(linkTabs_1.default, { isUnderlined: true, style: style }, __spreadArray([
|
|
25
|
+
{
|
|
26
|
+
link: "/profile/".concat(profileId, "/nfts"),
|
|
27
|
+
text: 'NFTs',
|
|
28
|
+
}
|
|
29
|
+
], ((0, env_1.isProd)({ ENV: isProdENV })
|
|
30
|
+
? []
|
|
31
|
+
: [
|
|
32
|
+
{
|
|
33
|
+
link: "/profile/".concat(profileId, "/galleries"),
|
|
34
|
+
text: 'Galleries',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
link: "/profile/".concat(profileId, "/favorite-lists"),
|
|
38
|
+
text: isMobile ? 'Fav.Lists' : 'Favorite Lists',
|
|
39
|
+
},
|
|
40
|
+
]), true).map(function (_a) {
|
|
41
|
+
var link = _a.link, text = _a.text;
|
|
42
|
+
var isActive = router.asPath.includes(link);
|
|
43
|
+
return (react_1.default.createElement(linkTab_1.default, { key: link, link: link, isActive: isActive, countItems: isActive ? totalResults : null, text: text }));
|
|
44
|
+
})));
|
|
45
|
+
};
|
|
46
|
+
exports.ProfileTabs = ProfileTabs;
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
+
return cooked;
|
|
5
|
+
};
|
|
6
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7
|
+
if (k2 === undefined) k2 = k;
|
|
8
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
9
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
10
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
11
|
+
}
|
|
12
|
+
Object.defineProperty(o, k2, desc);
|
|
13
|
+
}) : (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
o[k2] = m[k];
|
|
16
|
+
}));
|
|
17
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
18
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
19
|
+
}) : function(o, v) {
|
|
20
|
+
o["default"] = v;
|
|
21
|
+
});
|
|
22
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
23
|
+
if (mod && mod.__esModule) return mod;
|
|
24
|
+
var result = {};
|
|
25
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
26
|
+
__setModuleDefault(result, mod);
|
|
27
|
+
return result;
|
|
28
|
+
};
|
|
29
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
30
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
31
|
+
};
|
|
32
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33
|
+
exports.ProfileAboutText = void 0;
|
|
34
|
+
var react_1 = __importStar(require("react"));
|
|
35
|
+
var router_1 = require("next/router");
|
|
36
|
+
var react_hyphen_1 = __importDefault(require("react-hyphen"));
|
|
37
|
+
var styled_components_1 = __importDefault(require("styled-components"));
|
|
38
|
+
var _4k_1 = require("@ludo.ninja/ui/build/utils/4k");
|
|
39
|
+
var utils_1 = require("@ludo.ninja/utils");
|
|
40
|
+
var store_1 = require("@/modules/user/store");
|
|
41
|
+
var ui_1 = require("@/store/ui");
|
|
42
|
+
var useFollowProfile_1 = __importDefault(require("@/api/server-identities/mutations/useFollowProfile"));
|
|
43
|
+
var useUnfollowProfile_1 = __importDefault(require("@/api/server-identities/mutations/useUnfollowProfile"));
|
|
44
|
+
var ScreenWidth_1 = require("@/styles/ScreenWidth");
|
|
45
|
+
var colors_1 = require("@/styles/colors");
|
|
46
|
+
var typography_1 = require("@/styles/typography");
|
|
47
|
+
var followersSocial_1 = require("@/components/profile/followersSocial");
|
|
48
|
+
var shareDialog_1 = __importDefault(require("@/components/shareDialog"));
|
|
49
|
+
var IconButton_1 = __importDefault(require("@/system/Buttons/IconButton"));
|
|
50
|
+
var MainButton_1 = __importDefault(require("@/system/Buttons/MainButton"));
|
|
51
|
+
var scale_1 = require("@/utils/adaptive/scale");
|
|
52
|
+
var copyBtn_1 = require("@/utils/copyBtn");
|
|
53
|
+
var screen_1 = require("@/utils/screen");
|
|
54
|
+
var vars_1 = require("@/fonts/vars");
|
|
55
|
+
var share_svg_1 = __importDefault(require("@/public/iconButton/share.svg"));
|
|
56
|
+
var StyledProfileAboutText = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n max-width: 640px;\n display: flex;\n flex-direction: column;\n justify-content: center;\n word-wrap: break-word;\n margin-left: 32px;\n\n .name {\n ", ";\n color: ", ";\n margin-bottom: 0;\n line-height: 1.75em;\n }\n\n .descr {\n font-family: ", ";\n ", ";\n color: ", ";\n word-wrap: break-word;\n }\n\n .wallet {\n ", ";\n color: ", ";\n }\n\n .isActive {\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 2;\n overflow: hidden;\n max-height: 3em;\n white-space: normal;\n }\n\n .readMore {\n ", ";\n color: ", ";\n margin-top: 4px;\n display: block;\n user-select: none;\n cursor: pointer;\n }\n\n .shareEdit {\n margin-top: 20px;\n display: flex;\n align-items: center;\n\n .editBtnOrShare {\n margin-right: 24px;\n }\n }\n\n ", " {\n margin-right: 0;\n margin-left: 0;\n margin-bottom: 0;\n max-width: 516px;\n\n .name {\n ", ";\n line-height: 1.335em;\n margin-bottom: 8px;\n }\n\n .descr {\n font-size: 1.4em;\n margin-top: 4px;\n }\n\n .shareEdit {\n margin-top: 24px;\n }\n }\n\n @media (min-width: 600px) and (max-width: 767px) {\n max-width: 368px;\n }\n\n ", " {\n max-width: ", ";\n margin-left: ", ";\n\n .name {\n font-size: ", ";\n line-height: ", ";\n }\n\n .descr {\n font-size: ", ";\n line-height: ", ";\n }\n\n .wallet {\n font-size: ", ";\n line-height: ", ";\n }\n\n .isActive {\n max-height: ", ";\n }\n\n .readMore {\n font-size: ", ";\n line-height: ", ";\n margin-top: ", ";\n }\n\n .shareEdit {\n margin-top: ", ";\n\n .editBtnOrShare {\n margin-right: ", ";\n }\n }\n }\n"], ["\n max-width: 640px;\n display: flex;\n flex-direction: column;\n justify-content: center;\n word-wrap: break-word;\n margin-left: 32px;\n\n .name {\n ", ";\n color: ", ";\n margin-bottom: 0;\n line-height: 1.75em;\n }\n\n .descr {\n font-family: ", ";\n ", ";\n color: ", ";\n word-wrap: break-word;\n }\n\n .wallet {\n ", ";\n color: ", ";\n }\n\n .isActive {\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 2;\n overflow: hidden;\n max-height: 3em;\n white-space: normal;\n }\n\n .readMore {\n ", ";\n color: ", ";\n margin-top: 4px;\n display: block;\n user-select: none;\n cursor: pointer;\n }\n\n .shareEdit {\n margin-top: 20px;\n display: flex;\n align-items: center;\n\n .editBtnOrShare {\n margin-right: 24px;\n }\n }\n\n ", " {\n margin-right: 0;\n margin-left: 0;\n margin-bottom: 0;\n max-width: 516px;\n\n .name {\n ", ";\n line-height: 1.335em;\n margin-bottom: 8px;\n }\n\n .descr {\n font-size: 1.4em;\n margin-top: 4px;\n }\n\n .shareEdit {\n margin-top: 24px;\n }\n }\n\n @media (min-width: 600px) and (max-width: 767px) {\n max-width: 368px;\n }\n\n ", " {\n max-width: ", ";\n margin-left: ", ";\n\n .name {\n font-size: ", ";\n line-height: ", ";\n }\n\n .descr {\n font-size: ", ";\n line-height: ", ";\n }\n\n .wallet {\n font-size: ", ";\n line-height: ", ";\n }\n\n .isActive {\n max-height: ", ";\n }\n\n .readMore {\n font-size: ", ";\n line-height: ", ";\n margin-top: ", ";\n }\n\n .shareEdit {\n margin-top: ", ";\n\n .editBtnOrShare {\n margin-right: ", ";\n }\n }\n }\n"])), typography_1.FH1, colors_1.BlackColor, vars_1.dmsansFontVarCss.css, typography_1.MainText, colors_1.TextGrayColor, typography_1.FH5, colors_1.AccentColor, typography_1.FH6, colors_1.AccentColor, ScreenWidth_1.mediaQuery.mobile, typography_1.FH3, ScreenWidth_1.mediaQuery.minWidthFourK, (0, _4k_1.adaptiveValueCalc)(640), (0, _4k_1.adaptiveValueCalc)(32), (0, _4k_1.adaptiveValueCalc)(24), (0, _4k_1.adaptiveValueCalc)(36), (0, _4k_1.adaptiveValueCalc)(15), (0, _4k_1.adaptiveValueCalc)(22), (0, _4k_1.adaptiveValueCalc)(15), (0, _4k_1.adaptiveValueCalc)(22), (0, _4k_1.adaptiveValueCalc)(44), (0, _4k_1.adaptiveValueCalc)(12), (0, _4k_1.adaptiveValueCalc)(16), (0, _4k_1.adaptiveValueCalc)(4), (0, _4k_1.adaptiveValueCalc)(20), (0, _4k_1.adaptiveValueCalc)(24));
|
|
57
|
+
var maxStringLenght = 177;
|
|
58
|
+
var ProfileAboutText = function (_a) {
|
|
59
|
+
var _b;
|
|
60
|
+
var username = _a.username, about = _a.about, following = _a.following, wallets = _a.wallets, followers = _a.followers, followings = _a.followings, social = _a.social;
|
|
61
|
+
var isSignedIn = (0, store_1.useUserStore)(function (state) { return state.isSignedIn; });
|
|
62
|
+
var getUser = (0, store_1.useUserStore)(function (state) { return state.user; });
|
|
63
|
+
var _c = (0, ui_1.useUiStore)(function (state) { return ({
|
|
64
|
+
openModal: state.openModal,
|
|
65
|
+
closeModal: state.closeModal,
|
|
66
|
+
}); }), openModal = _c.openModal, closeModal = _c.closeModal;
|
|
67
|
+
var _d = (0, react_1.useState)(false), isNeedReadMore = _d[0], setNeedReadMore = _d[1];
|
|
68
|
+
var _e = (0, react_1.useState)(following), isFollowing = _e[0], setIsFollowing = _e[1];
|
|
69
|
+
var url = typeof window !== 'undefined' ? window.location.href : null;
|
|
70
|
+
var router = (0, router_1.useRouter)();
|
|
71
|
+
var profileId = router.query.profileId;
|
|
72
|
+
var userWallet = profileId === (getUser === null || getUser === void 0 ? void 0 : getUser.userId)
|
|
73
|
+
? getUser === null || getUser === void 0 ? void 0 : getUser.wallets[0]
|
|
74
|
+
: wallets && ((_b = wallets[0]) === null || _b === void 0 ? void 0 : _b.address);
|
|
75
|
+
var isUserNameShouldShow = username && username.length >= 1 && username.length <= 30;
|
|
76
|
+
var followProfile = (0, useFollowProfile_1.default)(profileId).followProfile;
|
|
77
|
+
var unfollowProfile = (0, useUnfollowProfile_1.default)(profileId).unfollowProfile;
|
|
78
|
+
var onContentChanged = (0, react_1.useCallback)(function () {
|
|
79
|
+
isFollowing ? unfollowProfile() : followProfile();
|
|
80
|
+
setIsFollowing(!isFollowing);
|
|
81
|
+
}, [isFollowing]);
|
|
82
|
+
var handleReadMore = function () { return setNeedReadMore(function (p) { return !p; }); };
|
|
83
|
+
(0, react_1.useEffect)(function () {
|
|
84
|
+
if (about && about.length > maxStringLenght) {
|
|
85
|
+
setNeedReadMore(true);
|
|
86
|
+
}
|
|
87
|
+
}, [about]);
|
|
88
|
+
var handleRedirectToProfileSettings = function () {
|
|
89
|
+
router.push("/account/profile/settings/".concat(profileId));
|
|
90
|
+
};
|
|
91
|
+
var windowDimensions = (0, screen_1.useWindowDimensionsWithServerInitial)().windowDimensions;
|
|
92
|
+
return (react_1.default.createElement(StyledProfileAboutText, null,
|
|
93
|
+
isUserNameShouldShow && react_1.default.createElement("h3", { className: 'name' }, username),
|
|
94
|
+
userWallet && (react_1.default.createElement(copyBtn_1.CopyButton, { value: userWallet },
|
|
95
|
+
react_1.default.createElement("p", { className: "wallet" }, (0, utils_1.shortenedText)(userWallet)))),
|
|
96
|
+
react_1.default.createElement(followersSocial_1.ProfileFollowersSocial, { followings: followings, followers: followers, social: social }),
|
|
97
|
+
about && (react_1.default.createElement(react_hyphen_1.default, null,
|
|
98
|
+
react_1.default.createElement("p", { className: "descr ".concat(isNeedReadMore && 'isActive') }, about))),
|
|
99
|
+
isNeedReadMore && (react_1.default.createElement("span", { className: 'readMore', onClick: handleReadMore }, "Read more")),
|
|
100
|
+
react_1.default.createElement("div", { className: "shareEdit" },
|
|
101
|
+
isSignedIn && (react_1.default.createElement("div", { className: "editBtnOrShare" },
|
|
102
|
+
profileId !== (getUser === null || getUser === void 0 ? void 0 : getUser.userId) && (react_1.default.createElement(MainButton_1.default, { text: isFollowing ? 'Unfollow' : 'FOLLOW', variant: isFollowing ? 'secondary' : 'primaryM', onClick: onContentChanged })),
|
|
103
|
+
profileId === (getUser === null || getUser === void 0 ? void 0 : getUser.userId) && (react_1.default.createElement(MainButton_1.default, { text: 'Edit profile', variant: "outline", onClick: handleRedirectToProfileSettings })))),
|
|
104
|
+
react_1.default.createElement("div", { className: "shareBtn" },
|
|
105
|
+
react_1.default.createElement(IconButton_1.default, { onClick: function () {
|
|
106
|
+
return openModal(react_1.default.createElement(shareDialog_1.default, { link: url, onHide: closeModal }));
|
|
107
|
+
}, icon: react_1.default.createElement(share_svg_1.default, { style: (0, scale_1.getAdaptiveScale)({ windowDimensions: windowDimensions, currentSize: 1 }) }) })))));
|
|
108
|
+
};
|
|
109
|
+
exports.ProfileAboutText = ProfileAboutText;
|
|
110
|
+
var templateObject_1;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
+
return cooked;
|
|
5
|
+
};
|
|
6
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
8
|
+
};
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
var react_1 = __importDefault(require("react"));
|
|
11
|
+
var styled_components_1 = __importDefault(require("styled-components"));
|
|
12
|
+
var _4k_1 = require("@ludo.ninja/ui/build/utils/4k");
|
|
13
|
+
var useToGalleryAsset_1 = require("@/hooks/useToGalleryAsset");
|
|
14
|
+
var ScreenWidth_1 = require("@/styles/ScreenWidth");
|
|
15
|
+
var colors_1 = require("@/styles/colors");
|
|
16
|
+
var IconWithButton_1 = __importDefault(require("@/system/Buttons/IconWithButton"));
|
|
17
|
+
var MainButton_1 = __importDefault(require("@/system/Buttons/MainButton"));
|
|
18
|
+
var scale_1 = require("@/utils/adaptive/scale");
|
|
19
|
+
var screen_1 = require("@/utils/screen");
|
|
20
|
+
var plus_svg_1 = __importDefault(require("@/public/wallets/plus.svg"));
|
|
21
|
+
// Styles
|
|
22
|
+
var StyledProfileAddToGalleryBtns = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: fixed;\n left: 50%;\n transform: translateX(-50%);\n z-index: 100;\n bottom: 32px;\n background: ", ";\n width: 300px;\n height: 55px;\n box-shadow: 0 4px 20px rgba(33, 21, 95, 0.1);\n border-radius: 30px;\n padding: 8px;\n\n .addToGalleryBtns {\n display: flex;\n height: 100%;\n width: 100%;\n\n button:first-child {\n margin-right: 12px;\n width: 160px;\n height: 40px;\n padding: 0;\n }\n\n button:last-child {\n width: 112px;\n height: 40px;\n }\n }\n\n .organizeBtn {\n display: flex;\n height: 100%;\n width: 100%;\n\n button {\n width: 100%;\n }\n }\n\n .icon {\n path {\n stroke: ", ";\n }\n\n margin-right: 5px;\n }\n\n ", " {\n bottom: ", ";\n width: ", ";\n height: ", ";\n box-shadow: 0 ", " ", "\n rgba(33, 21, 95, 0.1);\n border-radius: ", ";\n padding: ", ";\n\n .addToGalleryBtns {\n button:first-child {\n margin-right: ", ";\n width: ", ";\n height: ", ";\n }\n\n button:last-child {\n width: ", ";\n height: ", ";\n }\n }\n\n .icon {\n margin-right: ", ";\n }\n }\n"], ["\n position: fixed;\n left: 50%;\n transform: translateX(-50%);\n z-index: 100;\n bottom: 32px;\n background: ", ";\n width: 300px;\n height: 55px;\n box-shadow: 0 4px 20px rgba(33, 21, 95, 0.1);\n border-radius: 30px;\n padding: 8px;\n\n .addToGalleryBtns {\n display: flex;\n height: 100%;\n width: 100%;\n\n button:first-child {\n margin-right: 12px;\n width: 160px;\n height: 40px;\n padding: 0;\n }\n\n button:last-child {\n width: 112px;\n height: 40px;\n }\n }\n\n .organizeBtn {\n display: flex;\n height: 100%;\n width: 100%;\n\n button {\n width: 100%;\n }\n }\n\n .icon {\n path {\n stroke: ", ";\n }\n\n margin-right: 5px;\n }\n\n ", " {\n bottom: ", ";\n width: ", ";\n height: ", ";\n box-shadow: 0 ", " ", "\n rgba(33, 21, 95, 0.1);\n border-radius: ", ";\n padding: ", ";\n\n .addToGalleryBtns {\n button:first-child {\n margin-right: ", ";\n width: ", ";\n height: ", ";\n }\n\n button:last-child {\n width: ", ";\n height: ", ";\n }\n }\n\n .icon {\n margin-right: ", ";\n }\n }\n"])), colors_1.WhiteColor, colors_1.WhiteColor, ScreenWidth_1.mediaQuery.minWidthFourK, (0, _4k_1.adaptiveValueCalc)(32), (0, _4k_1.adaptiveValueCalc)(300), (0, _4k_1.adaptiveValueCalc)(55), (0, _4k_1.adaptiveValueCalc)(4), (0, _4k_1.adaptiveValueCalc)(20), (0, _4k_1.adaptiveValueCalc)(30), (0, _4k_1.adaptiveValueCalc)(8), (0, _4k_1.adaptiveValueCalc)(12), (0, _4k_1.adaptiveValueCalc)(160), (0, _4k_1.adaptiveValueCalc)(40), (0, _4k_1.adaptiveValueCalc)(112), (0, _4k_1.adaptiveValueCalc)(40), (0, _4k_1.adaptiveValueCalc)(5));
|
|
23
|
+
// Component
|
|
24
|
+
var PlusIconResize = function () {
|
|
25
|
+
var windowDimensions = (0, screen_1.useWindowDimensionsWithServerInitial)().windowDimensions;
|
|
26
|
+
return (react_1.default.createElement(plus_svg_1.default, { className: 'icon', style: (0, scale_1.getAdaptiveScale)({ windowDimensions: windowDimensions, currentSize: 1 }) }));
|
|
27
|
+
};
|
|
28
|
+
var ProfileAddToGalleryBtns = function (_a) {
|
|
29
|
+
var addMethod = _a.addMethod;
|
|
30
|
+
var _b = (0, useToGalleryAsset_1.useToGalleryStore)(function (state) { return ({
|
|
31
|
+
resetCreationsInGallery: state.resetCreationsInGallery,
|
|
32
|
+
creationsToGallery: state.creationsToGallery,
|
|
33
|
+
isActiveGalleryMode: state.isActiveGalleryMode,
|
|
34
|
+
}); }), resetCreationsInGallery = _b.resetCreationsInGallery, creationsToGallery = _b.creationsToGallery, isActiveGalleryMode = _b.isActiveGalleryMode;
|
|
35
|
+
if (!isActiveGalleryMode)
|
|
36
|
+
return null;
|
|
37
|
+
return (react_1.default.createElement(StyledProfileAddToGalleryBtns, null,
|
|
38
|
+
react_1.default.createElement("div", { className: "addToGalleryBtns" },
|
|
39
|
+
react_1.default.createElement(IconWithButton_1.default, { variant: 'regular', text: 'Add to Gallery', onClick: addMethod, disabled: !creationsToGallery.length, isDisableSkeleton: true },
|
|
40
|
+
react_1.default.createElement(PlusIconResize, null)),
|
|
41
|
+
react_1.default.createElement(MainButton_1.default, { onClick: resetCreationsInGallery, variant: "float", text: 'Cancel' }))));
|
|
42
|
+
};
|
|
43
|
+
// Export
|
|
44
|
+
exports.default = ProfileAddToGalleryBtns;
|
|
45
|
+
var templateObject_1;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
+
return cooked;
|
|
5
|
+
};
|
|
6
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
8
|
+
};
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.ProfileFollowers = void 0;
|
|
11
|
+
var react_1 = __importDefault(require("react"));
|
|
12
|
+
var styled_components_1 = __importDefault(require("styled-components"));
|
|
13
|
+
var colors_1 = require("@/styles/colors");
|
|
14
|
+
var _system_1 = require("@system");
|
|
15
|
+
var vars_1 = require("@/fonts/vars");
|
|
16
|
+
// Styles
|
|
17
|
+
var StyledProfileFollowers = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n align-items: center;\n\n &:after {\n content: '\u2022';\n color: ", ";\n font-size: 12px;\n font-weight: 500;\n margin: 0 8px;\n line-height: 16px;\n }\n"], ["\n display: flex;\n align-items: center;\n\n &:after {\n content: '\u2022';\n color: ", ";\n font-size: 12px;\n font-weight: 500;\n margin: 0 8px;\n line-height: 16px;\n }\n"])), colors_1.TextGrayColor);
|
|
18
|
+
var StyledProfileFollowersCounter = (0, styled_components_1.default)(_system_1.H5)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n font-family: ", ";\n color: ", ";\n text-transform: uppercase;\n font-weight: 700;\n"], ["\n font-family: ", ";\n color: ", ";\n text-transform: uppercase;\n font-weight: 700;\n"])), vars_1.dmsansFontVarCss.css, colors_1.BlackColor);
|
|
19
|
+
var StyledProfileFollowersCaption = (0, styled_components_1.default)(_system_1.H5)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n font-family: ", ";\n color: ", ";\n margin-left: 8px;\n text-transform: uppercase;\n"], ["\n font-family: ", ";\n color: ", ";\n margin-left: 8px;\n text-transform: uppercase;\n"])), vars_1.dmsansFontVarCss.css, colors_1.TextGrayColor);
|
|
20
|
+
// Components
|
|
21
|
+
var ProfileFollowers = function (_a) {
|
|
22
|
+
var counter = _a.counter, text = _a.text;
|
|
23
|
+
return (react_1.default.createElement(StyledProfileFollowers, null,
|
|
24
|
+
react_1.default.createElement(StyledProfileFollowersCounter, null, counter),
|
|
25
|
+
react_1.default.createElement(StyledProfileFollowersCaption, null, text)));
|
|
26
|
+
};
|
|
27
|
+
exports.ProfileFollowers = ProfileFollowers;
|
|
28
|
+
var templateObject_1, templateObject_2, templateObject_3;
|