@4alldigital/foundation-ui--core 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +21 -0
- package/package.json +35 -0
- package/src/__mocks__/_examples/cnbc.ts +146 -0
- package/src/__mocks__/_examples/nrg.ts +222 -0
- package/src/__mocks__/empty-module.js +0 -0
- package/src/__mocks__/fileMock.js +3 -0
- package/src/__mocks__/fileTransformer.js +8 -0
- package/src/__mocks__/mockSearchData.js +511 -0
- package/src/__mocks__/nrglogo.svg +74 -0
- package/src/__mocks__/styleMock.js +3 -0
- package/src/__mocks__/tempPolyFills.js +5 -0
- package/src/components/Accordion/Accordion.stories.tsx +33 -0
- package/src/components/Accordion/Accordion.tsx +53 -0
- package/src/components/Accordion/Accordion.types.ts +8 -0
- package/src/components/Accordion/index.ts +1 -0
- package/src/components/AnimationCounter/AnimationCounter.stories.tsx +22 -0
- package/src/components/AnimationCounter/AnimationCounter.tsx +51 -0
- package/src/components/AnimationCounter/AnimationCounter.types.ts +10 -0
- package/src/components/AnimationCounter/index.ts +1 -0
- package/src/components/AnimationSet1/AnimationSet1.stories.tsx +36 -0
- package/src/components/AnimationSet1/AnimationSet1.tsx +107 -0
- package/src/components/AnimationSet1/AnimationSet1.types.ts +12 -0
- package/src/components/AnimationSet1/index.ts +1 -0
- package/src/components/Authenticator/Authenticator.stories.tsx +37 -0
- package/src/components/Authenticator/Authenticator.tsx +84 -0
- package/src/components/Authenticator/Authenticator.types.ts +7 -0
- package/src/components/Authenticator/index.ts +1 -0
- package/src/components/Avatar/Avatar.stories.tsx +26 -0
- package/src/components/Avatar/Avatar.tsx +88 -0
- package/src/components/Avatar/Avatar.types.ts +8 -0
- package/src/components/Avatar/index.ts +1 -0
- package/src/components/Banner/Banner.stories.tsx +59 -0
- package/src/components/Banner/Banner.tsx +60 -0
- package/src/components/Banner/Banner.types.ts +9 -0
- package/src/components/Banner/index.ts +1 -0
- package/src/components/Blockquote/Blockquote.stories.tsx +20 -0
- package/src/components/Blockquote/Blockquote.tsx +32 -0
- package/src/components/Blockquote/Blockquote.types.ts +8 -0
- package/src/components/Blockquote/index.ts +1 -0
- package/src/components/Button/Button.stories.tsx +50 -0
- package/src/components/Button/Button.tsx +117 -0
- package/src/components/Button/Button.types.ts +43 -0
- package/src/components/Button/index.ts +1 -0
- package/src/components/ButtonGroup/ButtonGroup.stories.tsx +59 -0
- package/src/components/ButtonGroup/ButtonGroup.tsx +35 -0
- package/src/components/ButtonGroup/ButtonGroup.types.ts +5 -0
- package/src/components/ButtonGroup/index.ts +1 -0
- package/src/components/Calendar/Calendar.stories.tsx +100 -0
- package/src/components/Calendar/Calendar.tsx +91 -0
- package/src/components/Calendar/Calendar.types.ts +10 -0
- package/src/components/Calendar/index.ts +2 -0
- package/src/components/Card/Card.stories.tsx +487 -0
- package/src/components/Card/Card.tsx +32 -0
- package/src/components/Card/Card.types.ts +79 -0
- package/src/components/Card/constants/index.ts +8 -0
- package/src/components/Card/index.ts +1 -0
- package/src/components/Card/types/CardBasic/CardBasic.tsx +262 -0
- package/src/components/Card/types/CardBasic/CardBasic.types.ts +7 -0
- package/src/components/Card/types/CardBasic/index.ts +1 -0
- package/src/components/Card/types/CardData/CardData.tsx +68 -0
- package/src/components/Card/types/CardData/CardData.types.ts +21 -0
- package/src/components/Card/types/CardData/index.ts +1 -0
- package/src/components/Card/types/CardHorz/CardHorz.tsx +80 -0
- package/src/components/Card/types/CardHorz/CardHorz.types.ts +8 -0
- package/src/components/Card/types/CardHorz/index.ts +1 -0
- package/src/components/Card/types/CardIcon/CardIcon.tsx +76 -0
- package/src/components/Card/types/CardIcon/CardIcon.types.ts +8 -0
- package/src/components/Card/types/CardIcon/index.ts +1 -0
- package/src/components/Card/types/CardMedia/CardMedia.tsx +277 -0
- package/src/components/Card/types/CardMedia/CardMedia.types.ts +5 -0
- package/src/components/Card/types/CardMedia/index.ts +1 -0
- package/src/components/Card/types/CardVideo/CardVideo.tsx +262 -0
- package/src/components/Card/types/CardVideo/CardVideo.types.ts +11 -0
- package/src/components/Card/types/CardVideo/index.ts +1 -0
- package/src/components/CardGrid/CardGrid.stories.tsx +122 -0
- package/src/components/CardGrid/CardGrid.tsx +25 -0
- package/src/components/CardGrid/CardGrid.types.ts +7 -0
- package/src/components/CardGrid/index.ts +1 -0
- package/src/components/Carousel/Carousel.stories.tsx +351 -0
- package/src/components/Carousel/Carousel.tsx +174 -0
- package/src/components/Carousel/Carousel.types.ts +32 -0
- package/src/components/Carousel/MIGRATION.md +156 -0
- package/src/components/Carousel/index.ts +1 -0
- package/src/components/Cart/Cart.stories.tsx +92 -0
- package/src/components/Cart/Cart.tsx +194 -0
- package/src/components/Cart/Cart.types.ts +4 -0
- package/src/components/Cart/index.ts +1 -0
- package/src/components/Checkbox/Checkbox.stories.tsx +18 -0
- package/src/components/Checkbox/Checkbox.tsx +38 -0
- package/src/components/Checkbox/Checkbox.types.ts +15 -0
- package/src/components/Checkbox/index.ts +1 -0
- package/src/components/Chip/Chip.stories.tsx +37 -0
- package/src/components/Chip/Chip.tsx +104 -0
- package/src/components/Chip/Chip.types.ts +13 -0
- package/src/components/Chip/index.ts +1 -0
- package/src/components/Collapsible/Collapsible.stories.tsx +139 -0
- package/src/components/Collapsible/Collapsible.tsx +75 -0
- package/src/components/Collapsible/Collapsible.types.ts +14 -0
- package/src/components/Collapsible/index.ts +3 -0
- package/src/components/Container/Container.stories.tsx +17 -0
- package/src/components/Container/Container.tsx +51 -0
- package/src/components/Container/Container.types.ts +17 -0
- package/src/components/Container/index.ts +1 -0
- package/src/components/ContentPageLayout/ContentPageLayout.stories.tsx +17 -0
- package/src/components/ContentPageLayout/ContentPageLayout.tsx +38 -0
- package/src/components/ContentPageLayout/ContentPageLayout.types.ts +17 -0
- package/src/components/ContentPageLayout/index.ts +1 -0
- package/src/components/ContentRowsLayout/ContentRowsLayout.stories.tsx +19 -0
- package/src/components/ContentRowsLayout/ContentRowsLayout.tsx +30 -0
- package/src/components/ContentRowsLayout/ContentRowsLayout.types.ts +15 -0
- package/src/components/ContentRowsLayout/index.ts +1 -0
- package/src/components/Copy/Copy.stories.tsx +28 -0
- package/src/components/Copy/Copy.tsx +43 -0
- package/src/components/Copy/Copy.types.tsx +53 -0
- package/src/components/Copy/index.tsx +1 -0
- package/src/components/DisplayHeading/DisplayHeading.stories.tsx +17 -0
- package/src/components/DisplayHeading/DisplayHeading.tsx +43 -0
- package/src/components/DisplayHeading/DisplayHeading.types.ts +8 -0
- package/src/components/DisplayHeading/index.ts +1 -0
- package/src/components/FileUpload/FileUpload.stories.tsx +18 -0
- package/src/components/FileUpload/FileUpload.tsx +41 -0
- package/src/components/FileUpload/FileUpload.types.ts +9 -0
- package/src/components/FileUpload/index.ts +1 -0
- package/src/components/Footer/Footer.stories.tsx +17 -0
- package/src/components/Footer/Footer.tsx +78 -0
- package/src/components/Footer/Footer.types.ts +4 -0
- package/src/components/Footer/index.ts +1 -0
- package/src/components/Form/Form.stories.tsx +81 -0
- package/src/components/Form/Form.tsx +98 -0
- package/src/components/Form/Form.types.ts +34 -0
- package/src/components/Form/index.ts +1 -0
- package/src/components/FormField/FormField.stories.tsx +205 -0
- package/src/components/FormField/FormField.tsx +258 -0
- package/src/components/FormField/FormField.types.ts +89 -0
- package/src/components/FormField/index.ts +1 -0
- package/src/components/FormSelect/FormSelect.stories.tsx +27 -0
- package/src/components/FormSelect/FormSelect.tsx +46 -0
- package/src/components/FormSelect/FormSelect.types.ts +45 -0
- package/src/components/FormSelect/index.ts +1 -0
- package/src/components/FullContentBackgroundImage/FullContentBackgroundImage.stories.tsx +18 -0
- package/src/components/FullContentBackgroundImage/FullContentBackgroundImage.tsx +26 -0
- package/src/components/FullContentBackgroundImage/FullContentBackgroundImage.types.ts +6 -0
- package/src/components/FullContentBackgroundImage/index.ts +1 -0
- package/src/components/FullScreenVideoModal/FullScreenVideoModal.stories.tsx +34 -0
- package/src/components/FullScreenVideoModal/FullScreenVideoModal.tsx +41 -0
- package/src/components/FullScreenVideoModal/FullScreenVideoModal.types.ts +9 -0
- package/src/components/FullScreenVideoModal/index.ts +1 -0
- package/src/components/Header/Header.stories.tsx +51 -0
- package/src/components/Header/Header.tsx +170 -0
- package/src/components/Header/Header.types.ts +11 -0
- package/src/components/Header/index.ts +1 -0
- package/src/components/Heading/Heading.stories.tsx +57 -0
- package/src/components/Heading/Heading.tsx +47 -0
- package/src/components/Heading/Heading.types.ts +35 -0
- package/src/components/Heading/index.ts +1 -0
- package/src/components/Hero/Hero.stories.tsx +17 -0
- package/src/components/Hero/Hero.tsx +28 -0
- package/src/components/Hero/Hero.types.ts +17 -0
- package/src/components/Hero/index.ts +1 -0
- package/src/components/Hr/Hr.stories.tsx +13 -0
- package/src/components/Hr/Hr.tsx +16 -0
- package/src/components/Hr/Hr.types.ts +3 -0
- package/src/components/Hr/index.ts +1 -0
- package/src/components/HtmlContent/HtmlContent.stories.tsx +29 -0
- package/src/components/HtmlContent/HtmlContent.tsx +36 -0
- package/src/components/HtmlContent/HtmlContent.types.ts +6 -0
- package/src/components/HtmlContent/index.ts +1 -0
- package/src/components/Icon/Icon.stories.tsx +26 -0
- package/src/components/Icon/Icon.tsx +24 -0
- package/src/components/Icon/Icon.types.ts +8 -0
- package/src/components/Icon/index.ts +2 -0
- package/src/components/Image/Image.stories.tsx +32 -0
- package/src/components/Image/Image.tsx +71 -0
- package/src/components/Image/Image.types.ts +20 -0
- package/src/components/Image/index.ts +1 -0
- package/src/components/Label/Label.stories.tsx +18 -0
- package/src/components/Label/Label.tsx +17 -0
- package/src/components/Label/Label.types.ts +9 -0
- package/src/components/Label/index.ts +1 -0
- package/src/components/Link/Link.stories.tsx +25 -0
- package/src/components/Link/Link.tsx +85 -0
- package/src/components/Link/Link.types.ts +14 -0
- package/src/components/Link/index.ts +1 -0
- package/src/components/List/List.stories.tsx +38 -0
- package/src/components/List/List.tsx +17 -0
- package/src/components/List/List.types.ts +27 -0
- package/src/components/List/index.ts +1 -0
- package/src/components/ListItem/ListItem.stories.tsx +61 -0
- package/src/components/ListItem/ListItem.tsx +53 -0
- package/src/components/ListItem/ListItem.types.ts +10 -0
- package/src/components/ListItem/index.ts +1 -0
- package/src/components/Loader/Loader.stories.tsx +17 -0
- package/src/components/Loader/Loader.tsx +34 -0
- package/src/components/Loader/Loader.types.ts +5 -0
- package/src/components/Loader/index.ts +1 -0
- package/src/components/Logo/Logo.stories.tsx +17 -0
- package/src/components/Logo/Logo.tsx +17 -0
- package/src/components/Logo/Logo.types.ts +6 -0
- package/src/components/Logo/index.ts +1 -0
- package/src/components/Menu/Menu.stories.tsx +37 -0
- package/src/components/Menu/Menu.tsx +45 -0
- package/src/components/Menu/Menu.types.ts +15 -0
- package/src/components/Menu/index.ts +1 -0
- package/src/components/Notice/Notice.stories.tsx +49 -0
- package/src/components/Notice/Notice.tsx +63 -0
- package/src/components/Notice/Notice.types.ts +11 -0
- package/src/components/Notice/index.ts +1 -0
- package/src/components/OTPInput/OTPInput.stories.tsx +18 -0
- package/src/components/OTPInput/OTPInput.tsx +80 -0
- package/src/components/OTPInput/OTPInput.types.ts +8 -0
- package/src/components/OTPInput/index.ts +1 -0
- package/src/components/PanelCards/PanelCards.stories.tsx +125 -0
- package/src/components/PanelCards/PanelCards.tsx +81 -0
- package/src/components/PanelCards/PanelCards.types.ts +11 -0
- package/src/components/PanelCards/index.ts +1 -0
- package/src/components/PanelCustom/PanelCustom.stories.tsx +18 -0
- package/src/components/PanelCustom/PanelCustom.tsx +39 -0
- package/src/components/PanelCustom/PanelCustom.types.ts +20 -0
- package/src/components/PanelCustom/index.ts +1 -0
- package/src/components/PanelFeature/PanelFeature.stories.tsx +46 -0
- package/src/components/PanelFeature/PanelFeature.tsx +83 -0
- package/src/components/PanelFeature/PanelFeature.types.ts +27 -0
- package/src/components/PanelFeature/index.ts +1 -0
- package/src/components/PanelHero/PanelHero.stories.tsx +126 -0
- package/src/components/PanelHero/PanelHero.tsx +184 -0
- package/src/components/PanelHero/PanelHero.types.ts +19 -0
- package/src/components/PanelHero/index.ts +1 -0
- package/src/components/PanelIntro/PanelIntro.stories.tsx +38 -0
- package/src/components/PanelIntro/PanelIntro.tsx +139 -0
- package/src/components/PanelIntro/PanelIntro.types.ts +19 -0
- package/src/components/PanelIntro/index.ts +1 -0
- package/src/components/PanelProduct/PanelProduct.stories.tsx +24 -0
- package/src/components/PanelProduct/PanelProduct.tsx +87 -0
- package/src/components/PanelProduct/PanelProduct.types.ts +14 -0
- package/src/components/PanelProduct/index.ts +1 -0
- package/src/components/PanelScroller/PanelScroller.stories.tsx +81 -0
- package/src/components/PanelScroller/PanelScroller.tsx +58 -0
- package/src/components/PanelScroller/PanelScroller.types.ts +8 -0
- package/src/components/PanelScroller/index.ts +1 -0
- package/src/components/PanelVideo/PanelVideo.stories.tsx +42 -0
- package/src/components/PanelVideo/PanelVideo.tsx +81 -0
- package/src/components/PanelVideo/PanelVideo.types.ts +11 -0
- package/src/components/PanelVideo/index.ts +1 -0
- package/src/components/Radio/Radio.stories.tsx +24 -0
- package/src/components/Radio/Radio.tsx +44 -0
- package/src/components/Radio/Radio.types.ts +13 -0
- package/src/components/Radio/index.ts +1 -0
- package/src/components/Schedule/Schedule.stories.tsx +96 -0
- package/src/components/Schedule/Schedule.tsx +118 -0
- package/src/components/Schedule/Schedule.types.ts +64 -0
- package/src/components/Schedule/index.ts +1 -0
- package/src/components/ScheduleItem/ScheduleItem.stories.tsx +21 -0
- package/src/components/ScheduleItem/ScheduleItem.tsx +77 -0
- package/src/components/ScheduleItem/ScheduleItem.types.ts +8 -0
- package/src/components/ScheduleItem/index.ts +1 -0
- package/src/components/Screen/Screen.stories.tsx +27 -0
- package/src/components/Screen/Screen.tsx +63 -0
- package/src/components/Screen/Screen.types.ts +16 -0
- package/src/components/Screen/index.ts +1 -0
- package/src/components/ShadcnButton/ShadcnButton.tsx +57 -0
- package/src/components/ShadcnButton/index.ts +2 -0
- package/src/components/ShadcnCarousel/ShadcnCarousel.tsx +261 -0
- package/src/components/ShadcnCarousel/index.ts +9 -0
- package/src/components/Share/Share.stories.tsx +17 -0
- package/src/components/Share/Share.tsx +60 -0
- package/src/components/Share/Share.types.ts +12 -0
- package/src/components/Share/index.ts +1 -0
- package/src/components/SubscriptionManager/SubscriptionManager.stories.tsx +177 -0
- package/src/components/SubscriptionManager/SubscriptionManager.tsx +369 -0
- package/src/components/SubscriptionManager/SubscriptionManager.types.ts +36 -0
- package/src/components/SubscriptionManager/index.ts +1 -0
- package/src/components/Switch/Switch.stories.tsx +20 -0
- package/src/components/Switch/Switch.tsx +30 -0
- package/src/components/Switch/Switch.types.ts +7 -0
- package/src/components/Switch/index.ts +1 -0
- package/src/components/Tabs/Tabs.stories.tsx +34 -0
- package/src/components/Tabs/Tabs.tsx +42 -0
- package/src/components/Tabs/Tabs.types.ts +8 -0
- package/src/components/Tabs/index.ts +1 -0
- package/src/components/TextInput/TextInput.stories.tsx +18 -0
- package/src/components/TextInput/TextInput.tsx +78 -0
- package/src/components/TextInput/TextInput.types.ts +81 -0
- package/src/components/TextInput/index.ts +1 -0
- package/src/components/Video/Video.stories.tsx +75 -0
- package/src/components/Video/Video.tsx +280 -0
- package/src/components/Video/Video.types.ts +147 -0
- package/src/components/Video/index.ts +1 -0
- package/src/components/VisitUs/VisitUs.stories.tsx +32 -0
- package/src/components/VisitUs/VisitUs.tsx +56 -0
- package/src/components/VisitUs/VisitUs.types.ts +13 -0
- package/src/components/VisitUs/index.ts +1 -0
- package/src/components/index.ts +143 -0
- package/src/constants/index.ts +6 -0
- package/src/context/Amplify/index.tsx +65 -0
- package/src/context/App/index.tsx +93 -0
- package/src/context/Cart/index.tsx +64 -0
- package/src/context/ExampleContext/index.tsx +34 -0
- package/src/context/Theme/index.tsx +37 -0
- package/src/context/index.ts +18 -0
- package/src/features/Search/Search.stories.tsx +395 -0
- package/src/features/Search/Search.tsx +204 -0
- package/src/features/Search/Search.types.ts +41 -0
- package/src/features/Search/config/config-helper.ts +219 -0
- package/src/features/Search/index.ts +1 -0
- package/src/features/Search/view-helpers/appendClassName.ts +14 -0
- package/src/features/Search/view-helpers/formatResult.ts +97 -0
- package/src/features/Search/view-helpers/getFilterValueDisplay.ts +10 -0
- package/src/features/Search/view-helpers/getUrlSanitizer.ts +23 -0
- package/src/features/Search/view-helpers/index.ts +4 -0
- package/src/features/Search/views/Layout/Layout.tsx +50 -0
- package/src/features/Search/views/Layout/Layout.types.ts +13 -0
- package/src/features/Search/views/Layout/index.ts +1 -0
- package/src/features/Search/views/MultiCheckboxFacet/MultiCheckboxFacet.tsx +85 -0
- package/src/features/Search/views/MultiCheckboxFacet/MultiCheckboxFacet.types.ts +5 -0
- package/src/features/Search/views/MultiCheckboxFacet/index.ts +1 -0
- package/src/features/Search/views/Paging/Paging.tsx +35 -0
- package/src/features/Search/views/Paging/Paging.types.ts +24 -0
- package/src/features/Search/views/Paging/index.ts +1 -0
- package/src/features/Search/views/PagingInfo/PagingInfo.tsx +34 -0
- package/src/features/Search/views/PagingInfo/PagingInfo.types.ts +26 -0
- package/src/features/Search/views/PagingInfo/index.ts +1 -0
- package/src/features/Search/views/Result/Result.tsx +84 -0
- package/src/features/Search/views/Result/Result.types.ts +47 -0
- package/src/features/Search/views/Result/index.ts +1 -0
- package/src/features/Search/views/Results/Results.tsx +16 -0
- package/src/features/Search/views/Results/Results.types.ts +24 -0
- package/src/features/Search/views/Results/index.ts +1 -0
- package/src/features/Search/views/ResultsPerPage/ResultsPerPage.tsx +32 -0
- package/src/features/Search/views/ResultsPerPage/ResultsPerPage.types.ts +26 -0
- package/src/features/Search/views/ResultsPerPage/index.ts +1 -0
- package/src/features/Search/views/SearchBox/SearchBox.tsx +51 -0
- package/src/features/Search/views/SearchBox/SearchBox.types.ts +10 -0
- package/src/features/Search/views/SearchBox/index.ts +1 -0
- package/src/features/Search/views/Sidebar/Sidebar.tsx +14 -0
- package/src/features/Search/views/Sidebar/Sidebar.types.ts +3 -0
- package/src/features/Search/views/Sidebar/index.ts +1 -0
- package/src/features/Search/views/SingleLinksFacet/SingleLinksFacet.tsx +62 -0
- package/src/features/Search/views/SingleLinksFacet/SingleLinksFacet.types.ts +5 -0
- package/src/features/Search/views/SingleLinksFacet/index.ts +1 -0
- package/src/features/Search/views/SingleSelectFacet/SingleSelectFacet.tsx +34 -0
- package/src/features/Search/views/SingleSelectFacet/SingleSelectFacet.types.ts +5 -0
- package/src/features/Search/views/SingleSelectFacet/index.ts +1 -0
- package/src/features/Search/views/Sorting/Sorting.tsx +24 -0
- package/src/features/Search/views/Sorting/Sorting.types.ts +25 -0
- package/src/features/Search/views/Sorting/index.ts +1 -0
- package/src/features/index.ts +11 -0
- package/src/forms/ForgotPasswordForm/ForgotPasswordForm.stories.tsx +19 -0
- package/src/forms/ForgotPasswordForm/ForgotPasswordForm.tsx +28 -0
- package/src/forms/ForgotPasswordForm/ForgotPasswordForm.types.ts +3 -0
- package/src/forms/ForgotPasswordForm/index.ts +1 -0
- package/src/forms/LoginForm/LoginForm.stories.tsx +67 -0
- package/src/forms/LoginForm/LoginForm.tsx +112 -0
- package/src/forms/LoginForm/LoginForm.types.ts +7 -0
- package/src/forms/LoginForm/index.ts +1 -0
- package/src/forms/ProfileForm/ProfileForm.stories.tsx +23 -0
- package/src/forms/ProfileForm/ProfileForm.tsx +40 -0
- package/src/forms/ProfileForm/ProfileForm.types.ts +6 -0
- package/src/forms/ProfileForm/index.ts +1 -0
- package/src/forms/PromoCodeForm/PromoCodeForm.stories.tsx +19 -0
- package/src/forms/PromoCodeForm/PromoCodeForm.tsx +22 -0
- package/src/forms/PromoCodeForm/PromoCodeForm.types.ts +4 -0
- package/src/forms/PromoCodeForm/index.ts +1 -0
- package/src/forms/RegisterForm/RegisterForm.stories.tsx +85 -0
- package/src/forms/RegisterForm/RegisterForm.tsx +108 -0
- package/src/forms/RegisterForm/RegisterForm.types.ts +6 -0
- package/src/forms/RegisterForm/index.ts +1 -0
- package/src/forms/ResetPasswordAuthForm/ResetPasswordAuthForm.stories.tsx +23 -0
- package/src/forms/ResetPasswordAuthForm/ResetPasswordAuthForm.tsx +39 -0
- package/src/forms/ResetPasswordAuthForm/ResetPasswordAuthForm.types.ts +3 -0
- package/src/forms/ResetPasswordAuthForm/index.ts +1 -0
- package/src/forms/ResetPasswordForm/ResetPasswordForm.stories.tsx +23 -0
- package/src/forms/ResetPasswordForm/ResetPasswordForm.tsx +30 -0
- package/src/forms/ResetPasswordForm/ResetPasswordForm.types.ts +3 -0
- package/src/forms/ResetPasswordForm/index.ts +1 -0
- package/src/forms/SubscriptionForm/SubscriptionForm.stories.tsx +31 -0
- package/src/forms/SubscriptionForm/SubscriptionForm.tsx +46 -0
- package/src/forms/SubscriptionForm/SubscriptionForm.types.ts +6 -0
- package/src/forms/SubscriptionForm/index.ts +1 -0
- package/src/forms/constants/index.ts +13 -0
- package/src/forms/index.ts +17 -0
- package/src/forms/validations/index.ts +39 -0
- package/src/hooks/index.ts +2 -0
- package/src/hooks/useLanguage.ts +18 -0
- package/src/hooks/useTheme.ts +6 -0
- package/src/index.ts +8 -0
- package/src/react-app-env.d.ts +1 -0
- package/src/setupTests.ts +5 -0
- package/src/templates/AccountScreen/AccountScreen.stories.tsx +67 -0
- package/src/templates/AccountScreen/AccountScreen.tsx +78 -0
- package/src/templates/AccountScreen/AccountScreen.types.ts +31 -0
- package/src/templates/AccountScreen/index.ts +1 -0
- package/src/templates/AuthScreen/AuthScreen.stories.tsx +33 -0
- package/src/templates/AuthScreen/AuthScreen.tsx +21 -0
- package/src/templates/AuthScreen/AuthScreen.types.ts +8 -0
- package/src/templates/AuthScreen/index.ts +1 -0
- package/src/templates/CardGridScreen/CardGridScreen.stories.tsx +95 -0
- package/src/templates/CardGridScreen/CardGridScreen.tsx +43 -0
- package/src/templates/CardGridScreen/CardGridScreen.types.ts +11 -0
- package/src/templates/CardGridScreen/index.ts +1 -0
- package/src/templates/CatalogueScreen/CatalogueScreen.stories.tsx +31 -0
- package/src/templates/CatalogueScreen/CatalogueScreen.tsx +21 -0
- package/src/templates/CatalogueScreen/CatalogueScreen.types.ts +8 -0
- package/src/templates/CatalogueScreen/index.ts +1 -0
- package/src/templates/ChallengeLibraryScreen/ChallengeLibraryScreen.stories.tsx +171 -0
- package/src/templates/ChallengeLibraryScreen/ChallengeLibraryScreen.tsx +36 -0
- package/src/templates/ChallengeLibraryScreen/ChallengeLibraryScreen.types.ts +9 -0
- package/src/templates/ChallengeLibraryScreen/index.ts +1 -0
- package/src/templates/ChallengeScreen/ChallengeScreen.stories.tsx +65 -0
- package/src/templates/ChallengeScreen/ChallengeScreen.tsx +88 -0
- package/src/templates/ChallengeScreen/ChallengeScreen.types.ts +22 -0
- package/src/templates/ChallengeScreen/index.ts +1 -0
- package/src/templates/ContentScreen/ContentScreen.stories.tsx +71 -0
- package/src/templates/ContentScreen/ContentScreen.tsx +55 -0
- package/src/templates/ContentScreen/ContentScreen.types.ts +9 -0
- package/src/templates/ContentScreen/index.ts +1 -0
- package/src/templates/DashboardScreen/DashboardScreen.stories.tsx +490 -0
- package/src/templates/DashboardScreen/DashboardScreen.tsx +156 -0
- package/src/templates/DashboardScreen/DashboardScreen.types.ts +28 -0
- package/src/templates/DashboardScreen/index.ts +1 -0
- package/src/templates/FAQScreen/FAQScreen.stories.tsx +278 -0
- package/src/templates/FAQScreen/FAQScreen.tsx +32 -0
- package/src/templates/FAQScreen/FAQScreen.types.ts +14 -0
- package/src/templates/FAQScreen/index.ts +1 -0
- package/src/templates/HomeScreen/HomeScreen.stories.tsx +315 -0
- package/src/templates/HomeScreen/HomeScreen.tsx +50 -0
- package/src/templates/HomeScreen/HomeScreen.types.ts +23 -0
- package/src/templates/HomeScreen/index.ts +1 -0
- package/src/templates/LogoutScreen/LogoutScreen.stories.tsx +20 -0
- package/src/templates/LogoutScreen/LogoutScreen.tsx +25 -0
- package/src/templates/LogoutScreen/LogoutScreen.types.ts +4 -0
- package/src/templates/LogoutScreen/index.ts +1 -0
- package/src/templates/MenuScreen/MenuScreen.stories.tsx +36 -0
- package/src/templates/MenuScreen/MenuScreen.tsx +32 -0
- package/src/templates/MenuScreen/MenuScreen.types.ts +11 -0
- package/src/templates/MenuScreen/index.ts +1 -0
- package/src/templates/NotFoundScreen/NotFoundScreen.stories.tsx +20 -0
- package/src/templates/NotFoundScreen/NotFoundScreen.tsx +31 -0
- package/src/templates/NotFoundScreen/NotFoundScreen.types.ts +5 -0
- package/src/templates/NotFoundScreen/index.ts +1 -0
- package/src/templates/PasswordResetAuthScreen/PasswordResetAuthScreen.stories.tsx +27 -0
- package/src/templates/PasswordResetAuthScreen/PasswordResetAuthScreen.tsx +20 -0
- package/src/templates/PasswordResetAuthScreen/PasswordResetAuthScreen.types.ts +6 -0
- package/src/templates/PasswordResetAuthScreen/index.ts +1 -0
- package/src/templates/PasswordResetScreen/PasswordResetScreen.stories.tsx +22 -0
- package/src/templates/PasswordResetScreen/PasswordResetScreen.tsx +19 -0
- package/src/templates/PasswordResetScreen/PasswordResetScreen.types.ts +6 -0
- package/src/templates/PasswordResetScreen/index.ts +1 -0
- package/src/templates/ProfileScreen/ProfileScreen.stories.tsx +41 -0
- package/src/templates/ProfileScreen/ProfileScreen.tsx +30 -0
- package/src/templates/ProfileScreen/ProfileScreen.types.ts +24 -0
- package/src/templates/ProfileScreen/index.ts +1 -0
- package/src/templates/ScheduleScreen/ScheduleScreen.stories.tsx +174 -0
- package/src/templates/ScheduleScreen/ScheduleScreen.tsx +29 -0
- package/src/templates/ScheduleScreen/ScheduleScreen.types.ts +9 -0
- package/src/templates/ScheduleScreen/index.ts +1 -0
- package/src/templates/SubscriptionScreen/SubscriptionScreen.stories.tsx +98 -0
- package/src/templates/SubscriptionScreen/SubscriptionScreen.tsx +49 -0
- package/src/templates/SubscriptionScreen/SubscriptionScreen.types.ts +28 -0
- package/src/templates/SubscriptionScreen/index.ts +1 -0
- package/src/templates/WorkoutScreen/WorkoutScreen.stories.tsx +173 -0
- package/src/templates/WorkoutScreen/WorkoutScreen.tsx +230 -0
- package/src/templates/WorkoutScreen/WorkoutScreen.types.ts +34 -0
- package/src/templates/WorkoutScreen/index.ts +1 -0
- package/src/templates/index.ts +40 -0
- package/src/translations/en.ts +777 -0
- package/src/translations/fr.ts +182 -0
- package/src/translations/index.ts +2 -0
- package/src/utils/htmlParser/index.tsx +22 -0
- package/src/utils/index.ts +38 -0
- package/src/utils/parseDuration/index.ts +94 -0
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
import React, { MouseEvent, useContext } from 'react';
|
|
2
|
+
import cx from 'classnames';
|
|
3
|
+
import Image from '../../../Image';
|
|
4
|
+
import { Props } from './CardBasic.types';
|
|
5
|
+
import Heading from '../../../Heading';
|
|
6
|
+
import { HEADING_TAGS } from '../../../Heading/Heading.types';
|
|
7
|
+
import Copy from '../../../Copy';
|
|
8
|
+
import { COPY_TAG } from '../../../Copy/Copy.types';
|
|
9
|
+
import Button from '../../../Button';
|
|
10
|
+
import { BTN_SIZES, BTN_VARIANTS } from '../../../Button/Button.types';
|
|
11
|
+
import { animateClasses, cardWrapperClasses, clickableCardWrapperClasses } from '../../constants';
|
|
12
|
+
import { twMerge } from 'tailwind-merge';
|
|
13
|
+
import HtmlContent from '../../../HtmlContent';
|
|
14
|
+
import { truncateString } from '../../../../utils';
|
|
15
|
+
import { AppContext } from '../../../../context';
|
|
16
|
+
|
|
17
|
+
const CardBasic = ({
|
|
18
|
+
id,
|
|
19
|
+
title,
|
|
20
|
+
description,
|
|
21
|
+
image,
|
|
22
|
+
className,
|
|
23
|
+
metaData,
|
|
24
|
+
actions,
|
|
25
|
+
padded,
|
|
26
|
+
scaleOnHover,
|
|
27
|
+
onClick,
|
|
28
|
+
htmlDetails,
|
|
29
|
+
titleOverlay,
|
|
30
|
+
}: Props) => {
|
|
31
|
+
const appContext = useContext(AppContext);
|
|
32
|
+
const cardClasses = onClick ? clickableCardWrapperClasses : cardWrapperClasses;
|
|
33
|
+
return (
|
|
34
|
+
<div
|
|
35
|
+
id={id}
|
|
36
|
+
data-testid="CardBasic"
|
|
37
|
+
className={twMerge(
|
|
38
|
+
cx(animateClasses, cardClasses, { 'p-4': padded }, { 'hover:scale-100': !scaleOnHover }, className),
|
|
39
|
+
)}
|
|
40
|
+
onClick={onClick}>
|
|
41
|
+
{image && (
|
|
42
|
+
<div
|
|
43
|
+
className={twMerge(
|
|
44
|
+
cx('relative w-full overflow-hidden aspect-[16/9]', { rounded: padded }, image.aspectRatio),
|
|
45
|
+
)}>
|
|
46
|
+
<Image
|
|
47
|
+
fill
|
|
48
|
+
src={image?.src ?? appContext?.images?.placeholder}
|
|
49
|
+
sizes="100vh"
|
|
50
|
+
alt={image?.alt}
|
|
51
|
+
className={cx('absolute inset-0 object-cover group-hover:scale-110 dura', animateClasses)}
|
|
52
|
+
/>
|
|
53
|
+
</div>
|
|
54
|
+
)}
|
|
55
|
+
{titleOverlay && title && (
|
|
56
|
+
<div className="absolute inset-0 w-full h-full z-10 flex items-center justify-center bg-black bg-opacity-30">
|
|
57
|
+
<Heading tag={HEADING_TAGS.H4} singleLine flush className='text-white'>
|
|
58
|
+
{title}
|
|
59
|
+
</Heading>
|
|
60
|
+
</div>
|
|
61
|
+
)}
|
|
62
|
+
{(!titleOverlay && (title || htmlDetails || description)) && (
|
|
63
|
+
<div className="w-full flex flex-col gap-1">
|
|
64
|
+
<div className={cx({ 'p-3': !padded }, { 'pt-3': padded })}>
|
|
65
|
+
<div>
|
|
66
|
+
{title && (
|
|
67
|
+
<Heading tag={HEADING_TAGS.H4} singleLine flush>
|
|
68
|
+
{title}
|
|
69
|
+
</Heading>
|
|
70
|
+
)}
|
|
71
|
+
</div>
|
|
72
|
+
{!htmlDetails && description && (
|
|
73
|
+
<div>
|
|
74
|
+
<Copy className="mb-0">{truncateString(description)}</Copy>
|
|
75
|
+
</div>
|
|
76
|
+
)}
|
|
77
|
+
{htmlDetails && description && (
|
|
78
|
+
<div>
|
|
79
|
+
<HtmlContent className="mb-0" data={truncateString(description)} />
|
|
80
|
+
</div>
|
|
81
|
+
)}
|
|
82
|
+
<div className="flex items-center justify-between gap-2">
|
|
83
|
+
{metaData && (
|
|
84
|
+
<div className="flex shrink-0 mt-2">
|
|
85
|
+
{metaData.map((meta, index) => {
|
|
86
|
+
if(metaData.length === 1) {
|
|
87
|
+
return (
|
|
88
|
+
<Copy key={meta} className="text-xs" as={COPY_TAG.SMALL}>
|
|
89
|
+
{meta}
|
|
90
|
+
</Copy>
|
|
91
|
+
);
|
|
92
|
+
}
|
|
93
|
+
if (index === 0) {
|
|
94
|
+
return (
|
|
95
|
+
<Copy key={meta} className="text-xs" as={COPY_TAG.SMALL}>
|
|
96
|
+
{meta} ·
|
|
97
|
+
</Copy>
|
|
98
|
+
);
|
|
99
|
+
}
|
|
100
|
+
// If last item, don't add the middot
|
|
101
|
+
if (index === metaData.length - 1) {
|
|
102
|
+
return (
|
|
103
|
+
<Copy key={meta} className="text-xs" as={COPY_TAG.SMALL}>
|
|
104
|
+
{meta}
|
|
105
|
+
</Copy>
|
|
106
|
+
);
|
|
107
|
+
}
|
|
108
|
+
return (
|
|
109
|
+
<Copy key={meta} className="text-xs" as={COPY_TAG.SMALL}>
|
|
110
|
+
{meta} ·
|
|
111
|
+
</Copy>
|
|
112
|
+
);
|
|
113
|
+
})}
|
|
114
|
+
</div>
|
|
115
|
+
)}
|
|
116
|
+
{actions && (
|
|
117
|
+
<div className="flex items-center gap-1 flex-wrap flex-1 justify-end">
|
|
118
|
+
{actions.like && (
|
|
119
|
+
<Button
|
|
120
|
+
variant={BTN_VARIANTS.PRIMARY}
|
|
121
|
+
icon={actions.like.isActive ? 'mdi:like' : 'mdi:like-outline'}
|
|
122
|
+
size={BTN_SIZES.SMALL}
|
|
123
|
+
onClick={(event: MouseEvent<HTMLButtonElement>) => {
|
|
124
|
+
event.stopPropagation();
|
|
125
|
+
if (actions?.like?.onClick && typeof actions.like.onClick === 'function') {
|
|
126
|
+
actions.like.onClick({ id });
|
|
127
|
+
}
|
|
128
|
+
}}
|
|
129
|
+
/>
|
|
130
|
+
)}
|
|
131
|
+
{actions.share && (
|
|
132
|
+
<Button
|
|
133
|
+
variant={BTN_VARIANTS.PRIMARY}
|
|
134
|
+
icon={actions.share.isActive ? 'mdi:share' : 'mdi:share-outline'}
|
|
135
|
+
size={BTN_SIZES.SMALL}
|
|
136
|
+
onClick={(event: MouseEvent<HTMLButtonElement>) => {
|
|
137
|
+
event.stopPropagation();
|
|
138
|
+
if (actions?.share?.onClick && typeof actions.share.onClick === 'function') {
|
|
139
|
+
actions.share.onClick({ id });
|
|
140
|
+
}
|
|
141
|
+
}}
|
|
142
|
+
/>
|
|
143
|
+
)}
|
|
144
|
+
{actions.save && (
|
|
145
|
+
<Button
|
|
146
|
+
variant={BTN_VARIANTS.PRIMARY}
|
|
147
|
+
icon={actions.save.isActive ? 'mdi:bookmark' : 'mdi:bookmark-outline'}
|
|
148
|
+
size={BTN_SIZES.SMALL}
|
|
149
|
+
onClick={(event: MouseEvent<HTMLButtonElement>) => {
|
|
150
|
+
event.stopPropagation();
|
|
151
|
+
if (actions?.save?.onClick && typeof actions.save.onClick === 'function') {
|
|
152
|
+
actions.save.onClick({ id });
|
|
153
|
+
}
|
|
154
|
+
}}
|
|
155
|
+
/>
|
|
156
|
+
)}
|
|
157
|
+
{actions.comment && (
|
|
158
|
+
<Button
|
|
159
|
+
variant={BTN_VARIANTS.PRIMARY}
|
|
160
|
+
icon={actions.comment.isActive ? 'mdi:comment' : 'mdi:comment-outline'}
|
|
161
|
+
size={BTN_SIZES.SMALL}
|
|
162
|
+
onClick={(event: MouseEvent<HTMLButtonElement>) => {
|
|
163
|
+
event.stopPropagation();
|
|
164
|
+
if (actions?.comment?.onClick && typeof actions.comment.onClick === 'function') {
|
|
165
|
+
actions.comment.onClick({ id });
|
|
166
|
+
}
|
|
167
|
+
}}
|
|
168
|
+
/>
|
|
169
|
+
)}
|
|
170
|
+
{actions.bookmark && (
|
|
171
|
+
<Button
|
|
172
|
+
variant={BTN_VARIANTS.PRIMARY}
|
|
173
|
+
icon={actions.bookmark.isActive ? 'mdi:bookmark' : 'mdi:bookmark-outline'}
|
|
174
|
+
size={BTN_SIZES.SMALL}
|
|
175
|
+
onClick={(event: MouseEvent<HTMLButtonElement>) => {
|
|
176
|
+
event.stopPropagation();
|
|
177
|
+
if (actions?.bookmark?.onClick && typeof actions.bookmark.onClick === 'function') {
|
|
178
|
+
actions.bookmark.onClick({ id });
|
|
179
|
+
}
|
|
180
|
+
}}
|
|
181
|
+
/>
|
|
182
|
+
)}
|
|
183
|
+
{actions.report && (
|
|
184
|
+
<Button
|
|
185
|
+
variant={BTN_VARIANTS.PRIMARY}
|
|
186
|
+
icon={actions.report.isActive ? 'mdi:flag' : 'mdi:flag-outline'}
|
|
187
|
+
size={BTN_SIZES.SMALL}
|
|
188
|
+
onClick={(event: MouseEvent<HTMLButtonElement>) => {
|
|
189
|
+
event.stopPropagation();
|
|
190
|
+
if (actions?.report?.onClick && typeof actions.report.onClick === 'function') {
|
|
191
|
+
actions.report.onClick({ id });
|
|
192
|
+
}
|
|
193
|
+
}}
|
|
194
|
+
/>
|
|
195
|
+
)}
|
|
196
|
+
{actions.follow && (
|
|
197
|
+
<Button
|
|
198
|
+
variant={BTN_VARIANTS.PRIMARY}
|
|
199
|
+
icon={actions.follow.isActive ? 'mdi:account-plus' : 'mdi:account-plus-outline'}
|
|
200
|
+
size={BTN_SIZES.SMALL}
|
|
201
|
+
onClick={(event: MouseEvent<HTMLButtonElement>) => {
|
|
202
|
+
event.stopPropagation();
|
|
203
|
+
if (actions?.follow?.onClick && typeof actions.follow.onClick === 'function') {
|
|
204
|
+
actions.follow.onClick({ id });
|
|
205
|
+
}
|
|
206
|
+
}}
|
|
207
|
+
/>
|
|
208
|
+
)}
|
|
209
|
+
{actions.download && (
|
|
210
|
+
<Button
|
|
211
|
+
variant={BTN_VARIANTS.PRIMARY}
|
|
212
|
+
icon={actions.download.isActive ? 'mdi:download' : 'mdi:download-outline'}
|
|
213
|
+
size={BTN_SIZES.SMALL}
|
|
214
|
+
onClick={(event: MouseEvent<HTMLButtonElement>) => {
|
|
215
|
+
event.stopPropagation();
|
|
216
|
+
if (actions?.download?.onClick && typeof actions.download.onClick === 'function') {
|
|
217
|
+
actions.download.onClick({ id });
|
|
218
|
+
}
|
|
219
|
+
}}
|
|
220
|
+
/>
|
|
221
|
+
)}
|
|
222
|
+
{actions.edit && (
|
|
223
|
+
<Button
|
|
224
|
+
variant={BTN_VARIANTS.PRIMARY}
|
|
225
|
+
icon={actions.edit.isActive ? 'mdi:pencil' : 'mdi:pencil-outline'}
|
|
226
|
+
size={BTN_SIZES.SMALL}
|
|
227
|
+
onClick={(event: MouseEvent<HTMLButtonElement>) => {
|
|
228
|
+
event.stopPropagation();
|
|
229
|
+
if (actions?.edit?.onClick && typeof actions.edit.onClick === 'function') {
|
|
230
|
+
actions.edit.onClick({ id });
|
|
231
|
+
}
|
|
232
|
+
}}
|
|
233
|
+
/>
|
|
234
|
+
)}
|
|
235
|
+
{actions.delete && (
|
|
236
|
+
<Button
|
|
237
|
+
variant={BTN_VARIANTS.PRIMARY}
|
|
238
|
+
icon={actions.delete.isActive ? 'mdi:delete' : 'mdi:delete-outline'}
|
|
239
|
+
size={BTN_SIZES.SMALL}
|
|
240
|
+
onClick={(event: MouseEvent<HTMLButtonElement>) => {
|
|
241
|
+
event.stopPropagation();
|
|
242
|
+
if (actions?.delete?.onClick && typeof actions.delete.onClick === 'function') {
|
|
243
|
+
actions.delete.onClick({ id });
|
|
244
|
+
}
|
|
245
|
+
}}
|
|
246
|
+
/>
|
|
247
|
+
)}
|
|
248
|
+
{actions.custom && actions.custom.map((action, index) => <div key={index}>{action}</div>)}
|
|
249
|
+
</div>
|
|
250
|
+
)}
|
|
251
|
+
</div>
|
|
252
|
+
</div>
|
|
253
|
+
</div>
|
|
254
|
+
)}
|
|
255
|
+
</div>
|
|
256
|
+
);
|
|
257
|
+
};
|
|
258
|
+
|
|
259
|
+
CardBasic.displayName = 'CardBasic';
|
|
260
|
+
|
|
261
|
+
export default CardBasic;
|
|
262
|
+
export type { Props };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './CardBasic';
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import React, { useEffect } from 'react';
|
|
2
|
+
import cx from 'classnames';
|
|
3
|
+
import { animate, motionValue } from 'framer-motion';
|
|
4
|
+
import { Props } from './CardData.types';
|
|
5
|
+
import Heading from '../../../Heading';
|
|
6
|
+
import { HEADING_TAGS } from '../../../Heading/Heading.types';
|
|
7
|
+
import Copy from '../../../Copy';
|
|
8
|
+
import AnimationCounter from '../../../AnimationCounter';
|
|
9
|
+
import { twMerge } from 'tailwind-merge';
|
|
10
|
+
import { animateClasses, cardWrapperClasses } from '../../constants';
|
|
11
|
+
|
|
12
|
+
const CardData = ({ testID, className, data, padded = true, shadow = true }: Props) => {
|
|
13
|
+
const x = motionValue(0);
|
|
14
|
+
|
|
15
|
+
useEffect(() => {
|
|
16
|
+
// TODO; make this global
|
|
17
|
+
if (window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
|
|
18
|
+
return;
|
|
19
|
+
}
|
|
20
|
+
animate(x, 200, { duration: 0.5 });
|
|
21
|
+
}, [x]);
|
|
22
|
+
|
|
23
|
+
if (!data) {
|
|
24
|
+
return <></>;
|
|
25
|
+
}
|
|
26
|
+
return (
|
|
27
|
+
<div
|
|
28
|
+
data-testid={testID || 'CardData'}
|
|
29
|
+
className={twMerge(
|
|
30
|
+
cx(
|
|
31
|
+
animateClasses,
|
|
32
|
+
cardWrapperClasses,
|
|
33
|
+
//'relative rounded-lg overflow-hidden flex flex-col items-center gap-4 p-2 bg-body-bg dark:bg-body-bg-dark w-full',
|
|
34
|
+
{ 'p-4': padded },
|
|
35
|
+
{ shadow: shadow },
|
|
36
|
+
className,
|
|
37
|
+
),
|
|
38
|
+
)}>
|
|
39
|
+
<div className='min-w-[110px] flex flex-col flex-1 items-center justify-center'>
|
|
40
|
+
{data?.animateNumber && (
|
|
41
|
+
<div className="font-heading text-4xl md:text-4xl lg:text-4xl font-bold">
|
|
42
|
+
<AnimationCounter
|
|
43
|
+
from={data.numberData.from}
|
|
44
|
+
to={data.numberData.to}
|
|
45
|
+
numDecimals={data.numberData.numDecimals}
|
|
46
|
+
/>
|
|
47
|
+
<span>{data?.item}</span>
|
|
48
|
+
</div>
|
|
49
|
+
)}
|
|
50
|
+
{!data?.animateNumber && (
|
|
51
|
+
<div className="text-lg">
|
|
52
|
+
<Heading tag={HEADING_TAGS.H2} flush>
|
|
53
|
+
{data?.item}
|
|
54
|
+
</Heading>
|
|
55
|
+
</div>
|
|
56
|
+
)}
|
|
57
|
+
<div className="flex flex-1 items-center justify-center">
|
|
58
|
+
<Copy className="mb-0">{data?.label}</Copy>
|
|
59
|
+
</div>
|
|
60
|
+
</div>
|
|
61
|
+
</div>
|
|
62
|
+
);
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
CardData.displayName = 'CardData';
|
|
66
|
+
|
|
67
|
+
export default CardData;
|
|
68
|
+
export type { Props };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { KeyframeOptions } from 'framer-motion';
|
|
2
|
+
import { CardData } from '../../Card.types';
|
|
3
|
+
|
|
4
|
+
export interface NumberType {
|
|
5
|
+
from: number;
|
|
6
|
+
to: number;
|
|
7
|
+
animationOptions?: KeyframeOptions;
|
|
8
|
+
numDecimals?: number;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface Props extends CardData {
|
|
12
|
+
testID?: string;
|
|
13
|
+
className?: string;
|
|
14
|
+
data?: {
|
|
15
|
+
item: string;
|
|
16
|
+
label: string;
|
|
17
|
+
numberData: NumberType;
|
|
18
|
+
animateNumber?: boolean;
|
|
19
|
+
};
|
|
20
|
+
shadow?: boolean;
|
|
21
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './CardData';
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import cx from 'classnames';
|
|
3
|
+
import { Props } from './CardHorz.types';
|
|
4
|
+
import { twMerge } from 'tailwind-merge';
|
|
5
|
+
import Image from '../../../Image';
|
|
6
|
+
import Heading from '../../../Heading';
|
|
7
|
+
import { HEADING_TAGS } from '../../../Heading/Heading.types';
|
|
8
|
+
import Copy from '../../../Copy';
|
|
9
|
+
import Icon from '../../../Icon';
|
|
10
|
+
import HtmlContent from '../../../HtmlContent';
|
|
11
|
+
import { truncateString } from '../../../../utils';
|
|
12
|
+
import { animateClasses, cardWrapperClasses, clickableCardWrapperClasses } from '../../constants';
|
|
13
|
+
|
|
14
|
+
const CardHorz = ({
|
|
15
|
+
testID,
|
|
16
|
+
id,
|
|
17
|
+
title,
|
|
18
|
+
description,
|
|
19
|
+
image,
|
|
20
|
+
onClick,
|
|
21
|
+
className,
|
|
22
|
+
padded,
|
|
23
|
+
icon,
|
|
24
|
+
raised = true,
|
|
25
|
+
htmlDetails,
|
|
26
|
+
}: Props) => {
|
|
27
|
+
const cardClasses = onClick ? clickableCardWrapperClasses : cardWrapperClasses;
|
|
28
|
+
|
|
29
|
+
return (
|
|
30
|
+
<div
|
|
31
|
+
id={id}
|
|
32
|
+
data-testid={testID || 'CardHorz'}
|
|
33
|
+
className={cx(
|
|
34
|
+
'relative rounded-lg overflow-hidden flex gap-4 cursor-pointer',
|
|
35
|
+
{ 'p-4': padded },
|
|
36
|
+
{ 'shadow hover:shadow-lg': raised },
|
|
37
|
+
animateClasses,
|
|
38
|
+
cardClasses,
|
|
39
|
+
className,
|
|
40
|
+
)}
|
|
41
|
+
onClick={onClick}>
|
|
42
|
+
{image && (
|
|
43
|
+
<div className="w-1/3 aspect-[1/1]">
|
|
44
|
+
<div className={twMerge(cx('relative w-full overflow-hidden h-full', image.aspectRatio))}>
|
|
45
|
+
<Image fill src={image?.src} alt={image?.alt} className="absolute inset-0 object-cover" />
|
|
46
|
+
</div>
|
|
47
|
+
</div>
|
|
48
|
+
)}
|
|
49
|
+
{icon && !image && (
|
|
50
|
+
<div className="py-2 pl-2">
|
|
51
|
+
<Icon name={icon} size={30} />
|
|
52
|
+
</div>
|
|
53
|
+
)}
|
|
54
|
+
<div className="flex flex-1 overflow-hidden h-min">
|
|
55
|
+
<div className="flex-col gap-2 py-2 pr-2 overflow-hidden">
|
|
56
|
+
{title && (
|
|
57
|
+
<div className="">
|
|
58
|
+
<Heading tag={HEADING_TAGS.H4}>{title}</Heading>
|
|
59
|
+
</div>
|
|
60
|
+
)}
|
|
61
|
+
{!htmlDetails && description && (
|
|
62
|
+
<div>
|
|
63
|
+
<Copy className="mb-0">{truncateString(description)}</Copy>
|
|
64
|
+
</div>
|
|
65
|
+
)}
|
|
66
|
+
{htmlDetails && description && (
|
|
67
|
+
<div>
|
|
68
|
+
<HtmlContent className="mb-0" data={truncateString(description)} />
|
|
69
|
+
</div>
|
|
70
|
+
)}
|
|
71
|
+
</div>
|
|
72
|
+
</div>
|
|
73
|
+
</div>
|
|
74
|
+
);
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
CardHorz.displayName = 'CardHorz';
|
|
78
|
+
|
|
79
|
+
export default CardHorz;
|
|
80
|
+
export type { Props };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './CardHorz';
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import cx from 'classnames';
|
|
3
|
+
import { Props } from './CardIcon.types';
|
|
4
|
+
import { animateClasses, cardWrapperClasses, clickableCardWrapperClasses } from '../../constants';
|
|
5
|
+
import Heading from '../../../Heading';
|
|
6
|
+
import { HEADING_TAGS } from '../../../Heading/Heading.types';
|
|
7
|
+
import Copy from '../../../Copy';
|
|
8
|
+
import Button from '../../../Button';
|
|
9
|
+
import Icon from '../../../Icon';
|
|
10
|
+
import { BTN_VARIANTS } from '../../../Button/Button.types';
|
|
11
|
+
import { twMerge } from 'tailwind-merge';
|
|
12
|
+
|
|
13
|
+
const CardIcon = ({
|
|
14
|
+
id,
|
|
15
|
+
title,
|
|
16
|
+
subtitle,
|
|
17
|
+
description,
|
|
18
|
+
icon,
|
|
19
|
+
className,
|
|
20
|
+
onClick = undefined,
|
|
21
|
+
moreTitle,
|
|
22
|
+
align,
|
|
23
|
+
}: Props) => {
|
|
24
|
+
const cardClasses = onClick ? clickableCardWrapperClasses : cardWrapperClasses;
|
|
25
|
+
return (
|
|
26
|
+
<div
|
|
27
|
+
id={id}
|
|
28
|
+
data-testid="CardIcon"
|
|
29
|
+
className={twMerge(
|
|
30
|
+
cx(
|
|
31
|
+
animateClasses,
|
|
32
|
+
cardClasses,
|
|
33
|
+
'p-8 group gap-4 flex flex-col cursor-default',
|
|
34
|
+
{ 'items-start': align === 'left' },
|
|
35
|
+
{ 'items-center': align === 'center' },
|
|
36
|
+
{ 'items-end': align === 'right' },
|
|
37
|
+
className,
|
|
38
|
+
),
|
|
39
|
+
)}>
|
|
40
|
+
{icon && (
|
|
41
|
+
<div className={cx('relative')}>
|
|
42
|
+
<Icon name={icon} size={48} />
|
|
43
|
+
</div>
|
|
44
|
+
)}
|
|
45
|
+
<div
|
|
46
|
+
className={cx(
|
|
47
|
+
{ 'text-left': align === 'left' },
|
|
48
|
+
{ 'text-center': align === 'center' },
|
|
49
|
+
{ 'text-right': align === 'right' },
|
|
50
|
+
)}>
|
|
51
|
+
<div>
|
|
52
|
+
{title && (
|
|
53
|
+
<Heading tag={HEADING_TAGS.H5} singleLine>
|
|
54
|
+
{title}
|
|
55
|
+
</Heading>
|
|
56
|
+
)}
|
|
57
|
+
{subtitle && <Copy bold>{subtitle}</Copy>}
|
|
58
|
+
</div>
|
|
59
|
+
<div>{description && <Copy align={align}>{description}</Copy>}</div>
|
|
60
|
+
</div>
|
|
61
|
+
{onClick && (
|
|
62
|
+
<Button
|
|
63
|
+
variant={BTN_VARIANTS.LINK}
|
|
64
|
+
onClick={onClick}
|
|
65
|
+
className="absolute left-0 top-0 w-full h-full cursor-pointer border border-solid">
|
|
66
|
+
{moreTitle}
|
|
67
|
+
</Button>
|
|
68
|
+
)}
|
|
69
|
+
</div>
|
|
70
|
+
);
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
CardIcon.displayName = 'CardIcon';
|
|
74
|
+
|
|
75
|
+
export default CardIcon;
|
|
76
|
+
export type { Props };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './CardIcon';
|