@quintype/arrow 3.54.1-debug-full-bleed.4 → 3.54.1-version-upgrade.1
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/.babelrc +12 -0
- package/.circleci/config.yml +43 -0
- package/.eslintrc.json +35 -0
- package/.prettierrc +6 -0
- package/.storybook/addons.js +4 -0
- package/.storybook/main.js +7 -0
- package/.storybook/preview.js +3 -0
- package/.storybook/webpack.config.js +8 -0
- package/.stylelintrc +10 -0
- package/.vscode/extensions.json +16 -0
- package/.vscode/settings.json +12 -0
- package/CHANGELOG.md +2578 -0
- package/__mocks__/fileMock.js +1 -0
- package/__mocks__/styleMock.js +1 -0
- package/assets/stylesheets/mixins.scss +35 -0
- package/assets/stylesheets/reset.scss +148 -0
- package/assets/stylesheets/viewports.m.css +3 -0
- package/bin-dev-scripts/prepublish.sh +11 -0
- package/bin-dev-scripts/sync-to.sh +13 -0
- package/jest.config.json +14 -0
- package/package.json +138 -1
- package/publish +24 -0
- package/rollup.js +202 -0
- package/setupTests.js +3 -0
- package/src/components/Atoms/AdPlaceholder/ads.m.css +13 -0
- package/src/components/Atoms/AdPlaceholder/index.js +25 -0
- package/src/components/Atoms/AudioPlayer/PlayerBase.js +150 -0
- package/src/components/Atoms/AudioPlayer/PlayerControls.js +155 -0
- package/src/components/Atoms/AudioPlayer/ProgressBar.js +24 -0
- package/src/components/Atoms/AudioPlayer/audio.m.css +201 -0
- package/src/components/Atoms/AudioPlayer/index.js +59 -0
- package/src/components/Atoms/AudioPlayer/progressbar.m.css +48 -0
- package/src/components/Atoms/Author/README.md +19 -0
- package/src/components/Atoms/Author/author.m.css +62 -0
- package/src/components/Atoms/Author/index.js +112 -0
- package/src/components/Atoms/Author/stories.js +23 -0
- package/src/components/Atoms/AuthorCard/README.md +55 -0
- package/src/components/Atoms/AuthorCard/author-card.m.css +224 -0
- package/src/components/Atoms/AuthorCard/author-card.test.js +97 -0
- package/src/components/Atoms/AuthorCard/index.js +312 -0
- package/src/components/Atoms/AuthorCard/stories.js +164 -0
- package/src/components/Atoms/AuthorImage/README.md +31 -0
- package/src/components/Atoms/AuthorImage/author-image.m.css +53 -0
- package/src/components/Atoms/AuthorImage/index.js +62 -0
- package/src/components/Atoms/AuthorImage/stories.js +20 -0
- package/src/components/Atoms/AuthorWithTimestamp/README.md +12 -0
- package/src/components/Atoms/AuthorWithTimestamp/author-with-timestamp.m.css +40 -0
- package/src/components/Atoms/AuthorWithTimestamp/index.js +115 -0
- package/src/components/Atoms/AuthorWithTimestamp/stories.js +27 -0
- package/src/components/Atoms/BulletPoint/README.md +9 -0
- package/src/components/Atoms/BulletPoint/bullet-point.m.css +25 -0
- package/src/components/Atoms/BulletPoint/index.js +19 -0
- package/src/components/Atoms/BulletPoint/stories.js +6 -0
- package/src/components/Atoms/CaptionAttribution/README.md +15 -0
- package/src/components/Atoms/CaptionAttribution/caption-attribution.m.css +40 -0
- package/src/components/Atoms/CaptionAttribution/caption-attribution.test.js +29 -0
- package/src/components/Atoms/CaptionAttribution/index.js +40 -0
- package/src/components/Atoms/CaptionAttribution/stories.js +40 -0
- package/src/components/Atoms/CollectionName/README.md +11 -0
- package/src/components/Atoms/CollectionName/collection-name.m.css +106 -0
- package/src/components/Atoms/CollectionName/index.js +147 -0
- package/src/components/Atoms/CollectionName/stories.js +52 -0
- package/src/components/Atoms/Divider/__snapshots__/divider.test.js.snap +18 -0
- package/src/components/Atoms/Divider/divider.m.css +6 -0
- package/src/components/Atoms/Divider/divider.test.js +10 -0
- package/src/components/Atoms/Divider/index.js +20 -0
- package/src/components/Atoms/Dot/dot.js +20 -0
- package/src/components/Atoms/Dot/dot.m.css +6 -0
- package/src/components/Atoms/ExtendedLoadMore/README.md +9 -0
- package/src/components/Atoms/ExtendedLoadMore/__snapshots__/extended-load-more.test.js.snap +11 -0
- package/src/components/Atoms/ExtendedLoadMore/extended-load-more.test.js +19 -0
- package/src/components/Atoms/ExtendedLoadMore/index.js +114 -0
- package/src/components/Atoms/FallbackImage/fallback.m.css +33 -0
- package/src/components/Atoms/FallbackImage/index.js +39 -0
- package/src/components/Atoms/Headline/README.md +7 -0
- package/src/components/Atoms/Headline/headline.m.css +67 -0
- package/src/components/Atoms/Headline/index.js +112 -0
- package/src/components/Atoms/Headline/stories.js +52 -0
- package/src/components/Atoms/HeroImage/README.md +13 -0
- package/src/components/Atoms/HeroImage/hero-image.m.css +99 -0
- package/src/components/Atoms/HeroImage/index.js +293 -0
- package/src/components/Atoms/HeroImage/stories.js +22 -0
- package/src/components/Atoms/Hyperlink/hyperlink.m.css +10 -0
- package/src/components/Atoms/Hyperlink/index.js +24 -0
- package/src/components/Atoms/LoadMoreTarget/index.js +30 -0
- package/src/components/Atoms/LoadMoreTarget/load-more-target.m.css +7 -0
- package/src/components/Atoms/Loadmore/README.md +0 -0
- package/src/components/Atoms/Loadmore/__snapshots__/load-more.test.js.snap +25 -0
- package/src/components/Atoms/Loadmore/index.js +54 -0
- package/src/components/Atoms/Loadmore/load-more.m.css +23 -0
- package/src/components/Atoms/Loadmore/load-more.test.js +30 -0
- package/src/components/Atoms/Loadmore/stories.js +17 -0
- package/src/components/Atoms/MagazineCoverImage/README.md +21 -0
- package/src/components/Atoms/MagazineCoverImage/index.js +73 -0
- package/src/components/Atoms/MagazineCoverImage/magazine-cover-image.m.css +24 -0
- package/src/components/Atoms/MagazineCoverImage/stories.js +21 -0
- package/src/components/Atoms/PremiumStoryIcon/index.js +27 -0
- package/src/components/Atoms/PublishDetail/README.md +15 -0
- package/src/components/Atoms/PublishDetail/index.js +105 -0
- package/src/components/Atoms/PublishDetail/publish-details.m.css +53 -0
- package/src/components/Atoms/PublishDetail/publish-details.test.js +35 -0
- package/src/components/Atoms/PublishDetail/stories.js +22 -0
- package/src/components/Atoms/ReadTime/README.md +13 -0
- package/src/components/Atoms/ReadTime/index.js +59 -0
- package/src/components/Atoms/ReadTime/read-time.m.css +25 -0
- package/src/components/Atoms/ReadTime/read-time.test.js +27 -0
- package/src/components/Atoms/ReadTime/stories.js +19 -0
- package/src/components/Atoms/ResponsiveImg/index.js +174 -0
- package/src/components/Atoms/ScrollSnap/SliderArrow/index.js +67 -0
- package/src/components/Atoms/ScrollSnap/SliderArrow/slider-arrow.m.css +45 -0
- package/src/components/Atoms/ScrollSnap/SliderIndicator/index.js +41 -0
- package/src/components/Atoms/ScrollSnap/SliderIndicator/slider-indicator.m.css +71 -0
- package/src/components/Atoms/ScrollSnap/index.js +179 -0
- package/src/components/Atoms/ScrollSnap/scroll-snap.m.css +26 -0
- package/src/components/Atoms/SectionTag/README.md +11 -0
- package/src/components/Atoms/SectionTag/index.js +74 -0
- package/src/components/Atoms/SectionTag/section.m.css +53 -0
- package/src/components/Atoms/SectionTag/stories.js +26 -0
- package/src/components/Atoms/SocialSharePopup/README.md +25 -0
- package/src/components/Atoms/SocialSharePopup/__snapshots__/social-share-popup.test.js.snap +259 -0
- package/src/components/Atoms/SocialSharePopup/index.js +122 -0
- package/src/components/Atoms/SocialSharePopup/social-share-popup.m.css +287 -0
- package/src/components/Atoms/SocialSharePopup/social-share-popup.test.js +101 -0
- package/src/components/Atoms/SocialSharePopup/stories.js +19 -0
- package/src/components/Atoms/SponsoredLabel/index.js +52 -0
- package/src/components/Atoms/SponsoredLabel/sponsored-lable.m.css +17 -0
- package/src/components/Atoms/StoryDemarcationIcon/index.js +127 -0
- package/src/components/Atoms/StoryElements/AISummary/ai-icons.js +51 -0
- package/src/components/Atoms/StoryElements/AISummary/ai-summary.m.css +106 -0
- package/src/components/Atoms/StoryElements/AISummary/index.js +206 -0
- package/src/components/Atoms/StoryElements/AISummary/stories.js +27 -0
- package/src/components/Atoms/StoryElements/AlsoRead/README.md +49 -0
- package/src/components/Atoms/StoryElements/AlsoRead/also-read.m.css +133 -0
- package/src/components/Atoms/StoryElements/AlsoRead/also-read.test.js +83 -0
- package/src/components/Atoms/StoryElements/AlsoRead/index.js +126 -0
- package/src/components/Atoms/StoryElements/AlsoRead/stories.js +40 -0
- package/src/components/Atoms/StoryElements/Attachment/README.md +21 -0
- package/src/components/Atoms/StoryElements/Attachment/__snapshots__/attachment.test.js.snap +47 -0
- package/src/components/Atoms/StoryElements/Attachment/attachment.m.css +127 -0
- package/src/components/Atoms/StoryElements/Attachment/attachment.test.js +39 -0
- package/src/components/Atoms/StoryElements/Attachment/index.js +63 -0
- package/src/components/Atoms/StoryElements/Attachment/stories.js +48 -0
- package/src/components/Atoms/StoryElements/BigFact/README.md +9 -0
- package/src/components/Atoms/StoryElements/BigFact/big-fact.m.css +41 -0
- package/src/components/Atoms/StoryElements/BigFact/big-fact.test.js +21 -0
- package/src/components/Atoms/StoryElements/BigFact/index.js +33 -0
- package/src/components/Atoms/StoryElements/BigFact/stories.js +9 -0
- package/src/components/Atoms/StoryElements/BlockQuote/README.md +49 -0
- package/src/components/Atoms/StoryElements/BlockQuote/Svg/curve.js +27 -0
- package/src/components/Atoms/StoryElements/BlockQuote/Svg/edge.js +27 -0
- package/src/components/Atoms/StoryElements/BlockQuote/Svg/icon.m.css +11 -0
- package/src/components/Atoms/StoryElements/BlockQuote/block-quote.m.css +170 -0
- package/src/components/Atoms/StoryElements/BlockQuote/block-quote.test.js +48 -0
- package/src/components/Atoms/StoryElements/BlockQuote/index.js +82 -0
- package/src/components/Atoms/StoryElements/BlockQuote/stories.js +35 -0
- package/src/components/Atoms/StoryElements/Blurb/README.md +43 -0
- package/src/components/Atoms/StoryElements/Blurb/blurb.m.css +56 -0
- package/src/components/Atoms/StoryElements/Blurb/blurb.test.js +71 -0
- package/src/components/Atoms/StoryElements/Blurb/index.js +50 -0
- package/src/components/Atoms/StoryElements/Blurb/stories.js +28 -0
- package/src/components/Atoms/StoryElements/Image/README.md +13 -0
- package/src/components/Atoms/StoryElements/Image/image.m.css +21 -0
- package/src/components/Atoms/StoryElements/Image/image.test.js +20 -0
- package/src/components/Atoms/StoryElements/Image/index.js +76 -0
- package/src/components/Atoms/StoryElements/Image/stories.js +25 -0
- package/src/components/Atoms/StoryElements/ImageSlideshow/README.md +13 -0
- package/src/components/Atoms/StoryElements/ImageSlideshow/image-slideshow.m.css +63 -0
- package/src/components/Atoms/StoryElements/ImageSlideshow/index.js +101 -0
- package/src/components/Atoms/StoryElements/ImageSlideshow/stories.js +34 -0
- package/src/components/Atoms/StoryElements/QuestionAnswer/README.md +56 -0
- package/src/components/Atoms/StoryElements/QuestionAnswer/index.js +150 -0
- package/src/components/Atoms/StoryElements/QuestionAnswer/question-answer.m.css +185 -0
- package/src/components/Atoms/StoryElements/QuestionAnswer/question-answer.test.js +74 -0
- package/src/components/Atoms/StoryElements/QuestionAnswer/stories.js +79 -0
- package/src/components/Atoms/StoryElements/Quote/README.md +41 -0
- package/src/components/Atoms/StoryElements/Quote/index.js +45 -0
- package/src/components/Atoms/StoryElements/Quote/quote.m.css +125 -0
- package/src/components/Atoms/StoryElements/Quote/quote.test.js +58 -0
- package/src/components/Atoms/StoryElements/Quote/stories.js +28 -0
- package/src/components/Atoms/StoryElements/Reference/README.md +9 -0
- package/src/components/Atoms/StoryElements/Reference/index.js +52 -0
- package/src/components/Atoms/StoryElements/Reference/reference.m.css +42 -0
- package/src/components/Atoms/StoryElements/Reference/reference.test.js +28 -0
- package/src/components/Atoms/StoryElements/Reference/stories.js +18 -0
- package/src/components/Atoms/StoryElements/StoryElement/README.md +10 -0
- package/src/components/Atoms/StoryElements/StoryElement/index.js +35 -0
- package/src/components/Atoms/StoryElements/StoryElement/stories.js +20 -0
- package/src/components/Atoms/StoryElements/StoryElement/storyElement.m.css +23 -0
- package/src/components/Atoms/StoryElements/StoryElement/storyelement.test.js +13 -0
- package/src/components/Atoms/StoryElements/Summary/README.md +56 -0
- package/src/components/Atoms/StoryElements/Summary/index.js +67 -0
- package/src/components/Atoms/StoryElements/Summary/stories.js +33 -0
- package/src/components/Atoms/StoryElements/Summary/summary.m.css +169 -0
- package/src/components/Atoms/StoryElements/Summary/summary.test.js +50 -0
- package/src/components/Atoms/StoryElements/Text/README.md +32 -0
- package/src/components/Atoms/StoryElements/Text/index.js +40 -0
- package/src/components/Atoms/StoryElements/Text/stories.js +32 -0
- package/src/components/Atoms/StoryElements/Text/text.m.css +88 -0
- package/src/components/Atoms/StoryElements/Text/text.test.js +42 -0
- package/src/components/Atoms/StoryElements/Video/README.md +9 -0
- package/src/components/Atoms/StoryElements/Video/index.js +46 -0
- package/src/components/Atoms/StoryElements/Video/stories.js +24 -0
- package/src/components/Atoms/StoryElements/Video/video.m.css +142 -0
- package/src/components/Atoms/StoryElements/Video/video.test.js +19 -0
- package/src/components/Atoms/StoryElements/imageGallery/README.md +18 -0
- package/src/components/Atoms/StoryElements/imageGallery/image-gallery.m.css +52 -0
- package/src/components/Atoms/StoryElements/imageGallery/image-gallery.test.js +19 -0
- package/src/components/Atoms/StoryElements/imageGallery/index.js +79 -0
- package/src/components/Atoms/StoryElements/imageGallery/stories.js +23 -0
- package/src/components/Atoms/StoryElements/withElementWrapper.js +13 -0
- package/src/components/Atoms/StoryElements/withElementWrapper.test.js +31 -0
- package/src/components/Atoms/StoryHeadline/index.js +56 -0
- package/src/components/Atoms/StoryHeadline/story-headline.m.css +36 -0
- package/src/components/Atoms/StoryReview/README.md +9 -0
- package/src/components/Atoms/StoryReview/index.js +39 -0
- package/src/components/Atoms/StoryReview/stories.js +8 -0
- package/src/components/Atoms/StoryReview/story-review.m.css +34 -0
- package/src/components/Atoms/StoryTags/README.md +9 -0
- package/src/components/Atoms/StoryTags/index.js +33 -0
- package/src/components/Atoms/StoryTags/stories.js +25 -0
- package/src/components/Atoms/StoryTags/story-tags.test.js +18 -0
- package/src/components/Atoms/StoryTags/tags.m.css +42 -0
- package/src/components/Atoms/Subheadline/README.md +17 -0
- package/src/components/Atoms/Subheadline/index.js +54 -0
- package/src/components/Atoms/Subheadline/stories.js +12 -0
- package/src/components/Atoms/Subheadline/subheadline.m.css +17 -0
- package/src/components/Atoms/TimeStamp/README.md +9 -0
- package/src/components/Atoms/TimeStamp/index.js +83 -0
- package/src/components/Atoms/TimeStamp/stories.js +9 -0
- package/src/components/Atoms/TimeStamp/timestamp.m.css +21 -0
- package/src/components/Fixture/config.json +2703 -0
- package/src/components/Fixture/dummy-collection.js +2790 -0
- package/src/components/Fixture/dummyStory.js +2368 -0
- package/src/components/Fixture/index.js +425 -0
- package/src/components/Fixture/slot-config.js +29 -0
- package/src/components/Fixture/timezone.js +1 -0
- package/src/components/Molecules/FollowUs/README.md +17 -0
- package/src/components/Molecules/FollowUs/follow-us.m.css +99 -0
- package/src/components/Molecules/FollowUs/index.js +97 -0
- package/src/components/Molecules/FollowUs/stories.js +9 -0
- package/src/components/Molecules/FullScreenImages/fullscreenimages.scss +56 -0
- package/src/components/Molecules/FullScreenImages/index.js +98 -0
- package/src/components/Molecules/KeyEvents/README.md +21 -0
- package/src/components/Molecules/KeyEvents/index.js +132 -0
- package/src/components/Molecules/KeyEvents/key-events.m.css +103 -0
- package/src/components/Molecules/KeyEvents/stories.js +28 -0
- package/src/components/Molecules/PageIntroductionCard/README.md +25 -0
- package/src/components/Molecules/PageIntroductionCard/index.js +50 -0
- package/src/components/Molecules/PageIntroductionCard/page-intro-card.m.css +61 -0
- package/src/components/Molecules/PageIntroductionCard/stories.js +16 -0
- package/src/components/Molecules/PortraitStoryCard/README.md +10 -0
- package/src/components/Molecules/PortraitStoryCard/index.js +54 -0
- package/src/components/Molecules/PortraitStoryCard/portrait-story-card.m.css +42 -0
- package/src/components/Molecules/PortraitStoryCard/stories.js +24 -0
- package/src/components/Molecules/SliderHorizontalCard/README.md +14 -0
- package/src/components/Molecules/SliderHorizontalCard/index.js +44 -0
- package/src/components/Molecules/SliderHorizontalCard/slider-horizontal-card.m.css +42 -0
- package/src/components/Molecules/SliderHorizontalCard/stories.js +30 -0
- package/src/components/Molecules/SocialShareTemplate/README.md +118 -0
- package/src/components/Molecules/SocialShareTemplate/__snapshots__/social-share-template.test.js.snap +285 -0
- package/src/components/Molecules/SocialShareTemplate/index.js +299 -0
- package/src/components/Molecules/SocialShareTemplate/social-share-data.js +205 -0
- package/src/components/Molecules/SocialShareTemplate/social-share-template.m.css +340 -0
- package/src/components/Molecules/SocialShareTemplate/social-share-template.test.js +147 -0
- package/src/components/Molecules/SocialShareTemplate/stories.js +45 -0
- package/src/components/Molecules/StoryCard/README.md +75 -0
- package/src/components/Molecules/StoryCard/READMEBGIMAGE.md +25 -0
- package/src/components/Molecules/StoryCard/READMEBORDER.md +61 -0
- package/src/components/Molecules/StoryCard/index.js +248 -0
- package/src/components/Molecules/StoryCard/stories.js +223 -0
- package/src/components/Molecules/StoryCard/storycard.m.css +197 -0
- package/src/components/Molecules/StoryCardWithBulletPoint/README.md +9 -0
- package/src/components/Molecules/StoryCardWithBulletPoint/index.js +33 -0
- package/src/components/Molecules/StoryCardWithBulletPoint/stories.js +31 -0
- package/src/components/Molecules/StoryCardWithBulletPoint/story-card-with-bullet-point.m.css +7 -0
- package/src/components/Molecules/StoryElementCard/README.md +9 -0
- package/src/components/Molecules/StoryElementCard/index.js +511 -0
- package/src/components/Molecules/StoryElementCard/stories.js +27 -0
- package/src/components/Molecules/StoryElementCard/story-element-card.m.css +102 -0
- package/src/components/Molecules/StorycardContent/README.md +34 -0
- package/src/components/Molecules/StorycardContent/index.js +85 -0
- package/src/components/Molecules/StorycardContent/stories.js +39 -0
- package/src/components/Molecules/StorycardContent/storycardContent.m.css +27 -0
- package/src/components/Rows/AlternateCollectionFilter/README.md +38 -0
- package/src/components/Rows/AlternateCollectionFilter/alternate-collection-filter.m.css +254 -0
- package/src/components/Rows/AlternateCollectionFilter/index.js +179 -0
- package/src/components/Rows/AlternateCollectionFilter/stories.js +74 -0
- package/src/components/Rows/AsideCollection/README.md +27 -0
- package/src/components/Rows/AsideCollection/aside-collection.m.css +125 -0
- package/src/components/Rows/AsideCollection/aside-collection.test.js +34 -0
- package/src/components/Rows/AsideCollection/index.js +247 -0
- package/src/components/Rows/AsideCollection/stories.js +52 -0
- package/src/components/Rows/AstrologyCollection/README.md +40 -0
- package/src/components/Rows/AstrologyCollection/astrology-collection.m.css +173 -0
- package/src/components/Rows/AstrologyCollection/index.js +176 -0
- package/src/components/Rows/AstrologyCollection/stories.js +60 -0
- package/src/components/Rows/AuthorIntroductionCard/README.md +43 -0
- package/src/components/Rows/AuthorIntroductionCard/author-intro.m.css +334 -0
- package/src/components/Rows/AuthorIntroductionCard/author-intro.test.js +106 -0
- package/src/components/Rows/AuthorIntroductionCard/index.js +126 -0
- package/src/components/Rows/AuthorIntroductionCard/stories.js +43 -0
- package/src/components/Rows/AuthorsList/README.md +24 -0
- package/src/components/Rows/AuthorsList/author-list.test.js +50 -0
- package/src/components/Rows/AuthorsList/authors-list.m.css +22 -0
- package/src/components/Rows/AuthorsList/index.js +48 -0
- package/src/components/Rows/AuthorsList/stories.js +61 -0
- package/src/components/Rows/CollectionFilter/README.md +39 -0
- package/src/components/Rows/CollectionFilter/collection-filter.m.css +213 -0
- package/src/components/Rows/CollectionFilter/index.js +240 -0
- package/src/components/Rows/CollectionFilter/stories.js +77 -0
- package/src/components/Rows/ElevenStories/11-stories.m.css +85 -0
- package/src/components/Rows/ElevenStories/README.md +39 -0
- package/src/components/Rows/ElevenStories/index.js +338 -0
- package/src/components/Rows/ElevenStories/stories.js +70 -0
- package/src/components/Rows/FourColFiveStories/README.md +37 -0
- package/src/components/Rows/FourColFiveStories/four-col-five-stories.m.css +115 -0
- package/src/components/Rows/FourColFiveStories/index.js +170 -0
- package/src/components/Rows/FourColFiveStories/stories.js +68 -0
- package/src/components/Rows/FourColGrid/README.md +39 -0
- package/src/components/Rows/FourColGrid/four-col.m.css +50 -0
- package/src/components/Rows/FourColGrid/index.js +164 -0
- package/src/components/Rows/FourColGrid/stories.js +66 -0
- package/src/components/Rows/FourColPortraitStories/README.md +38 -0
- package/src/components/Rows/FourColPortraitStories/four-col-portrait-stories.m.css +45 -0
- package/src/components/Rows/FourColPortraitStories/index.js +149 -0
- package/src/components/Rows/FourColPortraitStories/stories.js +66 -0
- package/src/components/Rows/FourColSixteenStories/README.md +35 -0
- package/src/components/Rows/FourColSixteenStories/four-col-sixteen-stories.m.css +165 -0
- package/src/components/Rows/FourColSixteenStories/index.js +136 -0
- package/src/components/Rows/FourColSixteenStories/stories.js +47 -0
- package/src/components/Rows/FourColTwelveStory/README.md +39 -0
- package/src/components/Rows/FourColTwelveStory/four-col-twelve-story.m.css +80 -0
- package/src/components/Rows/FourColTwelveStory/index.js +175 -0
- package/src/components/Rows/FourColTwelveStory/stories.js +117 -0
- package/src/components/Rows/FourStorySlider/README.md +45 -0
- package/src/components/Rows/FourStorySlider/four-story-slider.m.css +78 -0
- package/src/components/Rows/FourStorySlider/index.js +128 -0
- package/src/components/Rows/FourStorySlider/stories.js +117 -0
- package/src/components/Rows/FourStorySliderPortrait/README.md +45 -0
- package/src/components/Rows/FourStorySliderPortrait/four-story-slider-portrait.m.css +272 -0
- package/src/components/Rows/FourStorySliderPortrait/index.js +128 -0
- package/src/components/Rows/FourStorySliderPortrait/stories.js +117 -0
- package/src/components/Rows/FourTabbedBigStorySlider/README.md +39 -0
- package/src/components/Rows/FourTabbedBigStorySlider/four-tabbed-big-story-slider.m.css +265 -0
- package/src/components/Rows/FourTabbedBigStorySlider/index.js +159 -0
- package/src/components/Rows/FourTabbedBigStorySlider/stories.js +63 -0
- package/src/components/Rows/FullScreenSlider/README.md +46 -0
- package/src/components/Rows/FullScreenSlider/full-screen-slider.m.css +162 -0
- package/src/components/Rows/FullScreenSlider/index.js +122 -0
- package/src/components/Rows/FullScreenSlider/stories.js +115 -0
- package/src/components/Rows/HalfScreenSlider/README.md +43 -0
- package/src/components/Rows/HalfScreenSlider/half-screen-slider.m.css +80 -0
- package/src/components/Rows/HalfScreenSlider/index.js +112 -0
- package/src/components/Rows/HalfScreenSlider/stories.js +115 -0
- package/src/components/Rows/IntroductionCard/README.md +11 -0
- package/src/components/Rows/IntroductionCard/index.js +72 -0
- package/src/components/Rows/IntroductionCard/intro-card.module.css +102 -0
- package/src/components/Rows/IntroductionCard/stories.js +32 -0
- package/src/components/Rows/ListComponent/README.md +48 -0
- package/src/components/Rows/ListComponent/index.js +149 -0
- package/src/components/Rows/ListComponent/list-component.m.css +65 -0
- package/src/components/Rows/ListComponent/stories.js +63 -0
- package/src/components/Rows/Listicles/README.md +32 -0
- package/src/components/Rows/Listicles/index.js +162 -0
- package/src/components/Rows/Listicles/listicles.m.css +149 -0
- package/src/components/Rows/Listicles/stories.js +66 -0
- package/src/components/Rows/MagazineEditions/README.md +21 -0
- package/src/components/Rows/MagazineEditions/index.js +96 -0
- package/src/components/Rows/MagazineEditions/magazine-editions.m.css +50 -0
- package/src/components/Rows/MagazineEditions/magazine-editions.test.js +33 -0
- package/src/components/Rows/MagazineEditions/stories.js +45 -0
- package/src/components/Rows/MagazineHeaderCard/README.md +21 -0
- package/src/components/Rows/MagazineHeaderCard/index.js +77 -0
- package/src/components/Rows/MagazineHeaderCard/magazine-cards.m.css +107 -0
- package/src/components/Rows/MagazineHeaderCard/stories.js +36 -0
- package/src/components/Rows/MagazineWidget/README.md +21 -0
- package/src/components/Rows/MagazineWidget/index.js +132 -0
- package/src/components/Rows/MagazineWidget/stories.js +43 -0
- package/src/components/Rows/OneColStoryList/README.md +48 -0
- package/src/components/Rows/OneColStoryList/index.js +217 -0
- package/src/components/Rows/OneColStoryList/one-col-story-list.m.css +91 -0
- package/src/components/Rows/OneColStoryList/stories.js +61 -0
- package/src/components/Rows/OpinionCollection/README.md +36 -0
- package/src/components/Rows/OpinionCollection/index.js +156 -0
- package/src/components/Rows/OpinionCollection/opinion-collection.m.css +210 -0
- package/src/components/Rows/OpinionCollection/stories.js +82 -0
- package/src/components/Rows/SixColSixStories/README.md +39 -0
- package/src/components/Rows/SixColSixStories/index.js +182 -0
- package/src/components/Rows/SixColSixStories/six-col-six-stories.m.css +92 -0
- package/src/components/Rows/SixColSixStories/stories.js +76 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/CustomAttributes/custom-attributes.m.css +78 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/CustomAttributes/index.js +103 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/event-story.m.css +138 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/index.js +56 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/stories.js +78 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/template.js +169 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/README.md +19 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/__snapshots__/listicle-story.test.js.snap +841 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/index.js +477 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.m.css +285 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.test.js +47 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicleUtils.js +16 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/stories.js +125 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/README.md +25 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/index.js +74 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/live-blog.m.css +320 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/stories.js +114 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/templates.js +449 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/index.js +381 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo-story.test.js +144 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo.m.css +199 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/stories.js +117 -0
- package/src/components/Rows/StoryTemplates/Snapshot/README.md +9 -0
- package/src/components/Rows/StoryTemplates/Snapshot/index.js +103 -0
- package/src/components/Rows/StoryTemplates/Snapshot/snapshot.m.css +88 -0
- package/src/components/Rows/StoryTemplates/Snapshot/stories.js +95 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/README.md +49 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/index.js +100 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/stories.js +120 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/templates.js +413 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/text-story.m.css +496 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/text-story.test.js +222 -0
- package/src/components/Rows/StoryTemplates/VideoStoryTemplates/README.md +31 -0
- package/src/components/Rows/StoryTemplates/VideoStoryTemplates/index.js +294 -0
- package/src/components/Rows/StoryTemplates/VideoStoryTemplates/stories.js +217 -0
- package/src/components/Rows/StoryTemplates/VideoStoryTemplates/video-story.m.css +185 -0
- package/src/components/Rows/ThreeColFlexStories/README.md +38 -0
- package/src/components/Rows/ThreeColFlexStories/index.js +217 -0
- package/src/components/Rows/ThreeColFlexStories/stories.js +73 -0
- package/src/components/Rows/ThreeColFlexStories/three-col-flex-stories.m.css +58 -0
- package/src/components/Rows/ThreeColFourteenStory/README.md +28 -0
- package/src/components/Rows/ThreeColFourteenStory/index.js +131 -0
- package/src/components/Rows/ThreeColFourteenStory/stories.js +60 -0
- package/src/components/Rows/ThreeColFourteenStory/three-col-fourteen-story.m.css +51 -0
- package/src/components/Rows/ThreeColGrid/README.md +36 -0
- package/src/components/Rows/ThreeColGrid/index.js +177 -0
- package/src/components/Rows/ThreeColGrid/stories.js +70 -0
- package/src/components/Rows/ThreeColGrid/three-col.m.css +43 -0
- package/src/components/Rows/ThreeColSevenStory/README.md +36 -0
- package/src/components/Rows/ThreeColSevenStory/index.js +242 -0
- package/src/components/Rows/ThreeColSevenStory/stories.js +103 -0
- package/src/components/Rows/ThreeColSevenStory/three-col-seven-story.m.css +44 -0
- package/src/components/Rows/ThreeColSixStories/README.md +40 -0
- package/src/components/Rows/ThreeColSixStories/index.js +183 -0
- package/src/components/Rows/ThreeColSixStories/stories.js +73 -0
- package/src/components/Rows/ThreeColSixStories/three-col-six-stories.m.css +32 -0
- package/src/components/Rows/ThreeColTwelveStories/README.md +41 -0
- package/src/components/Rows/ThreeColTwelveStories/index.js +153 -0
- package/src/components/Rows/ThreeColTwelveStories/stories.js +51 -0
- package/src/components/Rows/ThreeColTwelveStories/three-col-twelve-stories.m.css +105 -0
- package/src/components/Rows/TwoColFourStory/README.md +33 -0
- package/src/components/Rows/TwoColFourStory/index.js +162 -0
- package/src/components/Rows/TwoColFourStory/stories.js +68 -0
- package/src/components/Rows/TwoColFourStory/two-col-four-story.m.css +66 -0
- package/src/components/Rows/TwoColFourStoryHighlight/README.md +35 -0
- package/src/components/Rows/TwoColFourStoryHighlight/index.js +138 -0
- package/src/components/Rows/TwoColFourStoryHighlight/stories.js +48 -0
- package/src/components/Rows/TwoColFourStoryHighlight/two-col-four-story-highlight.m.css +116 -0
- package/src/components/Rows/TwoColSevenStories/README.md +37 -0
- package/src/components/Rows/TwoColSevenStories/index.js +150 -0
- package/src/components/Rows/TwoColSevenStories/stories.js +100 -0
- package/src/components/Rows/TwoColSevenStories/two-col-seven-stories.m.css +182 -0
- package/src/components/Rows/TwoColSixStories/README.md +36 -0
- package/src/components/Rows/TwoColSixStories/index.js +140 -0
- package/src/components/Rows/TwoColSixStories/stories.js +67 -0
- package/src/components/Rows/TwoColSixStories/two-col-six-stories.m.css +174 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/README.md +34 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/index.js +193 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/stories.js +45 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/two-col-ten-stories-sidebar.m.css +64 -0
- package/src/components/Rows/TwoColThreeStory/README.md +40 -0
- package/src/components/Rows/TwoColThreeStory/index.js +155 -0
- package/src/components/Rows/TwoColThreeStory/stories.js +68 -0
- package/src/components/Rows/TwoColThreeStory/two-col-three-story.m.css +36 -0
- package/src/components/SharedContext.js +13 -0
- package/src/components/Svgs/Loading/loading.js +133 -0
- package/src/components/Svgs/Loading/loading.m.css +6 -0
- package/src/components/Svgs/SocialIcons/circular-color/copylink.js +22 -0
- package/src/components/Svgs/SocialIcons/circular-color/email.js +16 -0
- package/src/components/Svgs/SocialIcons/circular-color/facebook.js +23 -0
- package/src/components/Svgs/SocialIcons/circular-color/instagram.js +24 -0
- package/src/components/Svgs/SocialIcons/circular-color/jio.js +30 -0
- package/src/components/Svgs/SocialIcons/circular-color/linkedin.js +16 -0
- package/src/components/Svgs/SocialIcons/circular-color/pinterest.js +16 -0
- package/src/components/Svgs/SocialIcons/circular-color/reddit.js +27 -0
- package/src/components/Svgs/SocialIcons/circular-color/telegram.js +16 -0
- package/src/components/Svgs/SocialIcons/circular-color/tiktok.js +40 -0
- package/src/components/Svgs/SocialIcons/circular-color/twitter.js +22 -0
- package/src/components/Svgs/SocialIcons/circular-color/whatsapp.js +18 -0
- package/src/components/Svgs/SocialIcons/circular-color/youtube.js +16 -0
- package/src/components/Svgs/SocialIcons/circular-plain/copylink.js +19 -0
- package/src/components/Svgs/SocialIcons/circular-plain/email.js +19 -0
- package/src/components/Svgs/SocialIcons/circular-plain/facebook.js +29 -0
- package/src/components/Svgs/SocialIcons/circular-plain/instagram.js +21 -0
- package/src/components/Svgs/SocialIcons/circular-plain/linkedin.js +21 -0
- package/src/components/Svgs/SocialIcons/circular-plain/reddit.js +33 -0
- package/src/components/Svgs/SocialIcons/circular-plain/telegram.js +22 -0
- package/src/components/Svgs/SocialIcons/circular-plain/twitter.js +21 -0
- package/src/components/Svgs/SocialIcons/circular-plain/whatsapp.js +23 -0
- package/src/components/Svgs/SocialIcons/circular-plain/youtube.js +17 -0
- package/src/components/Svgs/SocialIcons/plain/copylink.js +17 -0
- package/src/components/Svgs/SocialIcons/plain/email.js +23 -0
- package/src/components/Svgs/SocialIcons/plain/facebook.js +21 -0
- package/src/components/Svgs/SocialIcons/plain/google-news.js +26 -0
- package/src/components/Svgs/SocialIcons/plain/instagram.js +17 -0
- package/src/components/Svgs/SocialIcons/plain/linkedin.js +17 -0
- package/src/components/Svgs/SocialIcons/plain/pinterest.js +19 -0
- package/src/components/Svgs/SocialIcons/plain/reddit.js +25 -0
- package/src/components/Svgs/SocialIcons/plain/twitter.js +17 -0
- package/src/components/Svgs/SocialIcons/plain/whatsapp.js +19 -0
- package/src/components/Svgs/SocialIcons/plain/youtube.js +17 -0
- package/src/components/Svgs/SocialIcons/square/copylink.js +19 -0
- package/src/components/Svgs/SocialIcons/square/email.js +13 -0
- package/src/components/Svgs/SocialIcons/square/facebook.js +20 -0
- package/src/components/Svgs/SocialIcons/square/instagram.js +17 -0
- package/src/components/Svgs/SocialIcons/square/linkedin.js +13 -0
- package/src/components/Svgs/SocialIcons/square/reddit.js +24 -0
- package/src/components/Svgs/SocialIcons/square/telegram.js +13 -0
- package/src/components/Svgs/SocialIcons/square/twitter.js +19 -0
- package/src/components/Svgs/SocialIcons/square/whatsapp.js +15 -0
- package/src/components/Svgs/SocialIcons/square/youtube.js +13 -0
- package/src/components/Svgs/TTS-Icons/AudioSpeakerIcon.js +14 -0
- package/src/components/Svgs/TTS-Icons/BackwardIconSvg.js +13 -0
- package/src/components/Svgs/TTS-Icons/ClosePlayerIconSvg.js +13 -0
- package/src/components/Svgs/TTS-Icons/ForwordIconSvg.js +13 -0
- package/src/components/Svgs/TTS-Icons/PauseIconSvg.js +13 -0
- package/src/components/Svgs/TTS-Icons/PlayIconSvg.js +15 -0
- package/src/components/Svgs/TTS-Icons/ReplayIcon.js +16 -0
- package/src/components/Svgs/back-arrow.js +22 -0
- package/src/components/Svgs/calender.js +20 -0
- package/src/components/Svgs/caret-right.svg +3 -0
- package/src/components/Svgs/clock-icon.js +17 -0
- package/src/components/Svgs/close-icon.js +15 -0
- package/src/components/Svgs/crown.js +31 -0
- package/src/components/Svgs/fallbackImage.js +42 -0
- package/src/components/Svgs/hyperlink.js +17 -0
- package/src/components/Svgs/key.js +33 -0
- package/src/components/Svgs/large-share-icon.js +64 -0
- package/src/components/Svgs/left-arrow.js +17 -0
- package/src/components/Svgs/liveicon.js +14 -0
- package/src/components/Svgs/location.js +19 -0
- package/src/components/Svgs/lock.js +31 -0
- package/src/components/Svgs/photo-icons.js +84 -0
- package/src/components/Svgs/right-arrow.js +17 -0
- package/src/components/Svgs/share-icon.js +66 -0
- package/src/components/Svgs/star.js +33 -0
- package/src/components/Svgs/user-fallback-icon.js +19 -0
- package/src/components/Svgs/video-icons.js +104 -0
- package/src/components/Svgs/visual-story-icons.js +77 -0
- package/src/components/Typography/README.md +7 -0
- package/src/components/Typography/index.js +47 -0
- package/src/components/Typography/stories.js +10 -0
- package/src/components/Typography/style.m.css +11 -0
- package/src/constants.js +2 -0
- package/src/entry-points.js +373 -0
- package/src/guide/stories.js +18 -0
- package/src/hydration-component/index.js +37 -0
- package/src/hydration-component/useNearScreen.js +56 -0
- package/src/index.js +99 -0
- package/src/utils/copy-link.js +37 -0
- package/src/utils/dateFnsLocales.js +9 -0
- package/src/utils/img-size-utils.js +102 -0
- package/src/utils/testing-utils.js +8 -0
- package/src/utils/utils.js +615 -0
- package/src/utils/utils.test.js +108 -0
- package/storybook/index.js +83 -0
- package/AlsoRead/styles.arrow.css +0 -1
- package/AlternateCollectionFilter/styles.arrow.css +0 -1
- package/AsideCollection/styles.arrow.css +0 -1
- package/AstrologyCollection/styles.arrow.css +0 -1
- package/Attachment/styles.arrow.css +0 -1
- package/Author/styles.arrow.css +0 -1
- package/AuthorIntroductionCard/styles.arrow.css +0 -1
- package/AuthorWithTime/styles.arrow.css +0 -1
- package/AuthorsList/styles.arrow.css +0 -1
- package/BigFact/styles.arrow.css +0 -1
- package/BlockQuote/styles.arrow.css +0 -1
- package/Blurb/styles.arrow.css +0 -1
- package/CollectionFilter/styles.arrow.css +0 -1
- package/CollectionName/styles.arrow.css +0 -1
- package/ElevenStories/styles.arrow.css +0 -1
- package/EventStoryTemplate/styles.arrow.css +0 -1
- package/FollowUs/styles.arrow.css +0 -1
- package/FourColFiveStories/styles.arrow.css +0 -1
- package/FourColGrid/styles.arrow.css +0 -1
- package/FourColPortraitStories/styles.arrow.css +0 -1
- package/FourColSixteenStories/styles.arrow.css +0 -1
- package/FourColTwelveStories/styles.arrow.css +0 -1
- package/FourStorySlider/styles.arrow.css +0 -1
- package/FourStorySliderPortrait/styles.arrow.css +0 -1
- package/FourTabbedBigStorySlider/styles.arrow.css +0 -1
- package/FullScreenSlider/styles.arrow.css +0 -1
- package/HalfScreenSlider/styles.arrow.css +0 -1
- package/Headline/styles.arrow.css +0 -1
- package/HeroImage/styles.arrow.css +0 -1
- package/Image/styles.arrow.css +0 -1
- package/ImageGallery/styles.arrow.css +0 -1
- package/ImageSlideshow/styles.arrow.css +0 -1
- package/IntroductionCard/styles.arrow.css +0 -1
- package/KeyEvents/styles.arrow.css +0 -1
- package/ListComponent/styles.arrow.css +0 -1
- package/ListicleStoryTemplate/styles.arrow.css +0 -1
- package/Listicles/styles.arrow.css +0 -1
- package/LiveBlogStoryTemplate/styles.arrow.css +0 -1
- package/LoadmoreButton/styles.arrow.css +0 -1
- package/MagazineEditions/styles.arrow.css +0 -1
- package/MagazineHeaderCard/styles.arrow.css +0 -1
- package/MagazineWidget/styles.arrow.css +0 -1
- package/OneColStoryList/styles.arrow.css +0 -1
- package/OpinionCollection/styles.arrow.css +0 -1
- package/PageIntroductionCard/styles.arrow.css +0 -1
- package/PhotoStoryTemplate/styles.arrow.css +0 -1
- package/PublishDetails/styles.arrow.css +0 -1
- package/QuestionAnswer/styles.arrow.css +0 -1
- package/Quote/styles.arrow.css +0 -1
- package/Reference/styles.arrow.css +0 -1
- package/ScrollSnap/styles.arrow.css +0 -1
- package/SectionTag/styles.arrow.css +0 -1
- package/SixColSixStories/styles.arrow.css +0 -1
- package/Snapshot/styles.arrow.css +0 -1
- package/SocialShareTemplate/styles.arrow.css +0 -1
- package/StoryCard/styles.arrow.css +0 -1
- package/StoryCollection/styles.arrow.css +0 -1
- package/StoryElement/styles.arrow.css +0 -1
- package/StoryElementCard/styles.arrow.css +0 -1
- package/StorycardContent/styles.arrow.css +0 -1
- package/Subheadline/styles.arrow.css +0 -1
- package/Summary/styles.arrow.css +0 -1
- package/Text/styles.arrow.css +0 -1
- package/TextStoryTemplate/styles.arrow.css +0 -1
- package/ThreeColFlexStories/styles.arrow.css +0 -1
- package/ThreeColFourteenStories/styles.arrow.css +0 -1
- package/ThreeColGrid/styles.arrow.css +0 -1
- package/ThreeColSevenStory/styles.arrow.css +0 -1
- package/ThreeColSixStories/styles.arrow.css +0 -1
- package/ThreeColTwelveStories/styles.arrow.css +0 -1
- package/TimeStamp/styles.arrow.css +0 -1
- package/TwoColFourStories/styles.arrow.css +0 -1
- package/TwoColFourStoryHighlight/styles.arrow.css +0 -1
- package/TwoColSevenStories/styles.arrow.css +0 -1
- package/TwoColSixStories/styles.arrow.css +0 -1
- package/TwoColTenStoriesSidebar/styles.arrow.css +0 -1
- package/TwoColThreeStories/styles.arrow.css +0 -1
- package/Video/styles.arrow.css +0 -1
- package/VideoStoryTemplate/styles.arrow.css +0 -1
- package/cjs/index.js +0 -1
- package/esm/index.js +0 -1
- /package/{app.scss → assets/stylesheets/app.scss} +0 -0
|
@@ -0,0 +1,334 @@
|
|
|
1
|
+
@value viewports: "../../../../assets/stylesheets/viewports.m.css";
|
|
2
|
+
@value mobile from viewports;
|
|
3
|
+
@value tablet from viewports;
|
|
4
|
+
@value desktop from viewports;
|
|
5
|
+
|
|
6
|
+
.connect {
|
|
7
|
+
font-size: var(--arrow-spacing-m);
|
|
8
|
+
line-height: var(--arrow-lh-5);
|
|
9
|
+
color: var(--arrow-c-mono4);
|
|
10
|
+
align-self: center;
|
|
11
|
+
margin-bottom: var(--arrow-spacing-xxs);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.social-share {
|
|
15
|
+
flex: 1;
|
|
16
|
+
padding: var(--arrow-spacing-xs);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.share-icon {
|
|
20
|
+
display: flex;
|
|
21
|
+
align-items: flex-end;
|
|
22
|
+
margin-right: var(--arrow-spacing-l);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.default .author-image {
|
|
26
|
+
align-self: center;
|
|
27
|
+
width: 164px;
|
|
28
|
+
height: 164px;
|
|
29
|
+
@media (min-width: mobile) {
|
|
30
|
+
grid-column: 8/12;
|
|
31
|
+
width: 224px;
|
|
32
|
+
height: 224px;
|
|
33
|
+
}
|
|
34
|
+
@media (min-width: tablet) {
|
|
35
|
+
width: 364px;
|
|
36
|
+
height: 364px;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.default .author-name {
|
|
41
|
+
color: var(--arrow-c-mono2);
|
|
42
|
+
font-weight: var(--arrow-fw-bold);
|
|
43
|
+
line-height: var(--arrow-lh-5);
|
|
44
|
+
align-self: center;
|
|
45
|
+
margin: var(--arrow-spacing-xs) 0 var(--arrow-spacing-xxs);
|
|
46
|
+
@media (min-width: mobile) {
|
|
47
|
+
line-height: var(--arrow-lh-2);
|
|
48
|
+
align-self: flex-start;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.default .author-description {
|
|
53
|
+
margin: var(--arrow-spacing-s) 0;
|
|
54
|
+
color: var(--arrow-c-mono4);
|
|
55
|
+
font-size: var(--arrow-spacing-m);
|
|
56
|
+
line-height: var(--arrow-lh-5);
|
|
57
|
+
white-space: pre-line;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.default .wrapper {
|
|
61
|
+
display: flex;
|
|
62
|
+
flex-direction: column-reverse;
|
|
63
|
+
padding: 0 var(--arrow-spacing-s) var(--arrow-spacing-m) var(--arrow-spacing-s);
|
|
64
|
+
min-height: 291px; /* Added to fix cls issue */
|
|
65
|
+
@media (min-width: mobile) {
|
|
66
|
+
display: grid;
|
|
67
|
+
grid-gap: var(--arrow-fs-l);
|
|
68
|
+
grid-template-columns: repeat(12, 1fr);
|
|
69
|
+
padding: 0 0 var(--arrow-fs-xxl) 0;
|
|
70
|
+
min-height: 401px; /* Added to fix cls issue */
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.small-circle .author-name {
|
|
75
|
+
color: var(--arrow-c-mono2);
|
|
76
|
+
font-size: var(--arrow-fs-s);
|
|
77
|
+
line-height: var(--arrow-lh-3);
|
|
78
|
+
font-weight: var(--arrow-fw-bold);
|
|
79
|
+
text-transform: capitalize;
|
|
80
|
+
margin-left: var(--arrow-spacing-l);
|
|
81
|
+
@media (min-width: mobile) {
|
|
82
|
+
font-size: var(--arrow-fs-m);
|
|
83
|
+
margin-top: var(--arrow-spacing-m);
|
|
84
|
+
margin-left: 0;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.default .introduction-card {
|
|
89
|
+
display: flex;
|
|
90
|
+
flex: 1;
|
|
91
|
+
justify-content: center;
|
|
92
|
+
flex-direction: column;
|
|
93
|
+
.author-name {
|
|
94
|
+
text-transform: capitalize;
|
|
95
|
+
min-height: 28px; /* Added to fix cls issues */
|
|
96
|
+
}
|
|
97
|
+
@media (min-width: mobile) {
|
|
98
|
+
grid-column: 2/8;
|
|
99
|
+
.author-name {
|
|
100
|
+
min-height: 40px; /* Added to fix cls issues */
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
@media (min-width: tablet) {
|
|
104
|
+
grid-column: 2/7;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.default .social-wrapper {
|
|
109
|
+
margin-top: var(--arrow-spacing-xs);
|
|
110
|
+
display: flex;
|
|
111
|
+
justify-content: space-between;
|
|
112
|
+
@media (min-width: mobile) {
|
|
113
|
+
align-items: center;
|
|
114
|
+
}
|
|
115
|
+
@media (min-width: tablet) {
|
|
116
|
+
margin-top: unset;
|
|
117
|
+
position: relative;
|
|
118
|
+
align-items: unset;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.default .connect {
|
|
123
|
+
@media (min-width: tablet) {
|
|
124
|
+
margin-bottom: var(--arrow-spacing-xs);
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.default .linkWrapper {
|
|
129
|
+
display: flex;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.default .social-connect-wrapper {
|
|
133
|
+
@media (min-width: mobile) {
|
|
134
|
+
display: flex;
|
|
135
|
+
}
|
|
136
|
+
@media (min-width: tablet) {
|
|
137
|
+
margin-top: var(--arrow-spacing-xs);
|
|
138
|
+
display: block;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.default :global(.desktop-share-wrapper) {
|
|
143
|
+
@media (min-width: tablet) {
|
|
144
|
+
position: absolute;
|
|
145
|
+
right: 0;
|
|
146
|
+
max-width: 42px;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.default .social-wrapper > :nth-child(2) {
|
|
151
|
+
margin-top: var(--arrow-spacing-xxs);
|
|
152
|
+
@media (min-width: mobile) {
|
|
153
|
+
margin-top: unset;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.default .social-connect-wrapper > :nth-child(2) {
|
|
158
|
+
margin-left: unset;
|
|
159
|
+
@media (min-width: mobile) {
|
|
160
|
+
margin-left: var(--arrow-spacing-xs);
|
|
161
|
+
}
|
|
162
|
+
@media (min-width: tablet) {
|
|
163
|
+
margin-left: unset;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.default .wrapper.dark {
|
|
168
|
+
border-bottom: 1px solid var(--dark-border);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.default .wrapper.light {
|
|
172
|
+
border-bottom: 1px solid var(--light-border);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.small-circle {
|
|
176
|
+
@media (min-width: mobile) {
|
|
177
|
+
padding: var(--arrow-spacing-l) var(--arrow-spacing-s);
|
|
178
|
+
height: 100%;
|
|
179
|
+
@media (min-width: tablet) {
|
|
180
|
+
padding: var(--arrow-spacing-xl);
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.small-circle.border {
|
|
186
|
+
border-radius: 3px;
|
|
187
|
+
padding: var(--arrow-spacing-m);
|
|
188
|
+
@media (min-width: mobile) {
|
|
189
|
+
padding: var(--arrow-spacing-l) var(--arrow-spacing-s);
|
|
190
|
+
}
|
|
191
|
+
@media (min-width: tablet) {
|
|
192
|
+
padding: var(--arrow-spacing-xl);
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.small-circle.border.dark {
|
|
197
|
+
border: solid 1px var(--dark-border);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.small-circle.border.light {
|
|
201
|
+
border: solid 1px var(--light-border);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.small-circle .wrapper {
|
|
205
|
+
display: flex;
|
|
206
|
+
flex-direction: column-reverse;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.small-circle .introduction-card {
|
|
210
|
+
@media (min-width: mobile) {
|
|
211
|
+
text-align: center;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.small-circle .author-image {
|
|
216
|
+
display: flex;
|
|
217
|
+
align-items: center;
|
|
218
|
+
@media (min-width: mobile) {
|
|
219
|
+
margin: auto;
|
|
220
|
+
width: 160px;
|
|
221
|
+
height: 160px;
|
|
222
|
+
justify-content: center;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.small-circle .social-wrapper {
|
|
227
|
+
@media (min-width: mobile) {
|
|
228
|
+
justify-content: center;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.small-circle .author-image > div {
|
|
233
|
+
margin-right: var(--arrow-spacing-m);
|
|
234
|
+
@media (min-width: mobile) {
|
|
235
|
+
margin-right: unset;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.small-circle .author-description,
|
|
240
|
+
.small-circle .connect {
|
|
241
|
+
font-size: var(--arrow-fs-tiny);
|
|
242
|
+
line-height: var(--arrow-lh-5);
|
|
243
|
+
color: var(--arrow-c-mono4);
|
|
244
|
+
@media (min-width: mobile) {
|
|
245
|
+
font-size: var(--arrow-fs-tiny);
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.small-circle .author-description {
|
|
250
|
+
position: relative;
|
|
251
|
+
max-height: 63px;
|
|
252
|
+
overflow: hidden;
|
|
253
|
+
margin-top: var(--arrow-spacing-xs);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.small-circle .fade-out {
|
|
257
|
+
position: absolute;
|
|
258
|
+
bottom: 0;
|
|
259
|
+
right: 0;
|
|
260
|
+
width: 90%;
|
|
261
|
+
height: 21px;
|
|
262
|
+
background-image: inherit;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.small-circle .social-connect-wrapper {
|
|
266
|
+
margin-top: var(--arrow-spacing-xxs);
|
|
267
|
+
@media (min-width: mobile) {
|
|
268
|
+
margin-top: var(--arrow-spacing-xs);
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.small-circle.border .social-connect-wrapper {
|
|
273
|
+
margin-top: var(--arrow-spacing-xs);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.default .dark,
|
|
277
|
+
.small-circle .dark {
|
|
278
|
+
color: var(--arrow-c-mono2);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.default .light,
|
|
282
|
+
.small-circle .light {
|
|
283
|
+
color: var(--arrow-c-invert-mono2);
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.default .social-connect-wrapper > :nth-child(2),
|
|
287
|
+
.small-circle .social-connect-wrapper > :nth-child(1) {
|
|
288
|
+
padding-left: unset;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.small-circle .social-share {
|
|
292
|
+
padding: var(--arrow-spacing-m) var(--arrow-spacing-xs) var(--arrow-spacing-xs);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
html[dir="ltr"] {
|
|
296
|
+
.social-wrapper :global(.arr--share) {
|
|
297
|
+
position: fixed;
|
|
298
|
+
right: 16px;
|
|
299
|
+
bottom: 64px;
|
|
300
|
+
@media (min-width: desktop) {
|
|
301
|
+
left: 0;
|
|
302
|
+
right: unset;
|
|
303
|
+
top: 120px;
|
|
304
|
+
bottom: unset;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
html[dir="rtl"] {
|
|
310
|
+
.default :global(.desktop-share-wrapper) {
|
|
311
|
+
@media (min-width: tablet) {
|
|
312
|
+
position: static;
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.small-circle .author-name {
|
|
317
|
+
margin-right: var(--arrow-spacing-l);
|
|
318
|
+
@media (min-width: mobile) {
|
|
319
|
+
margin-right: 0;
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.social-wrapper :global(.arr--share) {
|
|
324
|
+
position: fixed;
|
|
325
|
+
left: 16px;
|
|
326
|
+
bottom: 64px;
|
|
327
|
+
@media (min-width: desktop) {
|
|
328
|
+
right: 0;
|
|
329
|
+
left: unset;
|
|
330
|
+
top: 120px;
|
|
331
|
+
bottom: unset;
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { mount } from "enzyme";
|
|
3
|
+
import AuthorIntroductionCard from ".";
|
|
4
|
+
import { generateStore, authorData } from "../../Fixture";
|
|
5
|
+
import { Provider } from "react-redux";
|
|
6
|
+
|
|
7
|
+
describe("Author Intro component", () => {
|
|
8
|
+
it("Should render default template with border, author bio and social-links enabled", () => {
|
|
9
|
+
const contextConfig = {
|
|
10
|
+
theme: "#ffffff",
|
|
11
|
+
enableBio: true,
|
|
12
|
+
enableSocialLinks: true
|
|
13
|
+
};
|
|
14
|
+
const wrapper = mount(
|
|
15
|
+
<Provider store={generateStore}>
|
|
16
|
+
<AuthorIntroductionCard data={authorData} config={contextConfig} />;
|
|
17
|
+
</Provider>
|
|
18
|
+
);
|
|
19
|
+
expect(wrapper.find({ "data-test-id": "author-intro" }).prop("className")).toMatch(/default/);
|
|
20
|
+
expect(wrapper.find({ "data-test-id": "social-link" }).length).toBe(7);
|
|
21
|
+
expect(wrapper.find({ "data-test-id": "author-bio" }).length).toBe(1);
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
it("Should render default template with border, author bio and social-links disabled", () => {
|
|
25
|
+
const contextConfig = {
|
|
26
|
+
theme: "#ffffff",
|
|
27
|
+
enableBio: false,
|
|
28
|
+
enableSocialLinks: false
|
|
29
|
+
};
|
|
30
|
+
const wrapper = mount(
|
|
31
|
+
<Provider store={generateStore}>
|
|
32
|
+
<AuthorIntroductionCard data={authorData} config={contextConfig} />;
|
|
33
|
+
</Provider>
|
|
34
|
+
);
|
|
35
|
+
expect(wrapper.find({ "data-test-id": "author-intro" }).prop("className")).toMatch(/default/);
|
|
36
|
+
expect(wrapper.find({ "data-test-id": "social-link" }).length).toBe(0);
|
|
37
|
+
expect(wrapper.find({ "data-test-id": "author-bio" }).length).toBe(0);
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
it("Should render square template with border, author bio and social-links enabled", () => {
|
|
41
|
+
const contextConfig = {
|
|
42
|
+
theme: "#ffffff",
|
|
43
|
+
enableBio: true,
|
|
44
|
+
enableSocialLinks: true
|
|
45
|
+
};
|
|
46
|
+
const wrapper = mount(
|
|
47
|
+
<Provider store={generateStore}>
|
|
48
|
+
<AuthorIntroductionCard data={authorData} config={contextConfig} template="square" />;
|
|
49
|
+
</Provider>
|
|
50
|
+
);
|
|
51
|
+
expect(wrapper.find({ "data-test-id": "author-intro" }).prop("className")).toMatch(/default/);
|
|
52
|
+
expect(wrapper.find({ "data-test-id": "social-link" }).length).toBe(7);
|
|
53
|
+
expect(wrapper.find({ "data-test-id": "author-bio" }).length).toBe(1);
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
it("Should render square template with border, author bio and social-links disabled", () => {
|
|
57
|
+
const contextConfig = {
|
|
58
|
+
theme: "#ffffff",
|
|
59
|
+
enableBio: false,
|
|
60
|
+
enableSocialLinks: false
|
|
61
|
+
};
|
|
62
|
+
const wrapper = mount(
|
|
63
|
+
<Provider store={generateStore}>
|
|
64
|
+
<AuthorIntroductionCard data={authorData} config={contextConfig} template="square" />;
|
|
65
|
+
</Provider>
|
|
66
|
+
);
|
|
67
|
+
expect(wrapper.find({ "data-test-id": "author-intro" }).prop("className")).toMatch(/default/);
|
|
68
|
+
expect(wrapper.find({ "data-test-id": "social-link" }).length).toBe(0);
|
|
69
|
+
expect(wrapper.find({ "data-test-id": "author-bio" }).length).toBe(0);
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
it("Should render small cirlce template with border, author bio and social-links enabled", () => {
|
|
73
|
+
const contextConfig = {
|
|
74
|
+
theme: "#ffffff",
|
|
75
|
+
enableBio: true,
|
|
76
|
+
enableSocialLinks: true,
|
|
77
|
+
borderSupport: true
|
|
78
|
+
};
|
|
79
|
+
const wrapper = mount(
|
|
80
|
+
<Provider store={generateStore}>
|
|
81
|
+
<AuthorIntroductionCard data={authorData} config={contextConfig} template="smallCircle" />;
|
|
82
|
+
</Provider>
|
|
83
|
+
);
|
|
84
|
+
expect(wrapper.find({ "data-test-id": "author-intro" }).prop("className")).toMatch(/small-circle/);
|
|
85
|
+
expect(wrapper.find({ "data-test-id": "author-intro" }).prop("className")).toMatch(/border/);
|
|
86
|
+
expect(wrapper.find({ "data-test-id": "social-link" }).length).toBe(7);
|
|
87
|
+
expect(wrapper.find({ "data-test-id": "author-bio" }).length).toBe(1);
|
|
88
|
+
});
|
|
89
|
+
|
|
90
|
+
it("Should render small cirlce template with border, author bio and social-links disabled", () => {
|
|
91
|
+
const contextConfig = {
|
|
92
|
+
theme: "#ffffff",
|
|
93
|
+
enableBio: false,
|
|
94
|
+
enableSocialLinks: false,
|
|
95
|
+
borderSupport: false
|
|
96
|
+
};
|
|
97
|
+
const wrapper = mount(
|
|
98
|
+
<Provider store={generateStore}>
|
|
99
|
+
<AuthorIntroductionCard data={authorData} config={contextConfig} template="smallCircle" />;
|
|
100
|
+
</Provider>
|
|
101
|
+
);
|
|
102
|
+
expect(wrapper.find({ "data-test-id": "author-intro" }).prop("className")).toMatch(/small-circle/);
|
|
103
|
+
expect(wrapper.find({ "data-test-id": "social-link" }).length).toBe(0);
|
|
104
|
+
expect(wrapper.find({ "data-test-id": "author-bio" }).length).toBe(0);
|
|
105
|
+
});
|
|
106
|
+
});
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import { getTextColor, sharePageUrl, clientWidth } from "../../../utils/utils";
|
|
4
|
+
import AuthorImage from "../../Atoms/AuthorImage";
|
|
5
|
+
import { SocialShareTemplate } from "../../Molecules/SocialShareTemplate/index";
|
|
6
|
+
import { SocialShare } from "@quintype/components";
|
|
7
|
+
import "./author-intro.m.css";
|
|
8
|
+
import { Facebook } from "../../Svgs/SocialIcons/plain/facebook";
|
|
9
|
+
import { Youtube } from "../../Svgs/SocialIcons/plain/youtube";
|
|
10
|
+
import { Twitter } from "../../Svgs/SocialIcons/plain/twitter";
|
|
11
|
+
import { LinkedIn } from "../../Svgs/SocialIcons/plain/linkedin";
|
|
12
|
+
import { Instagram } from "../../Svgs/SocialIcons/plain/instagram";
|
|
13
|
+
import { WhatsApp } from "../../Svgs/SocialIcons/plain/whatsapp";
|
|
14
|
+
import { Pinterest } from "../../Svgs/SocialIcons/plain/pinterest";
|
|
15
|
+
|
|
16
|
+
const AuthorIntroductionCard = ({ data = {}, config = {}, template = "" }) => {
|
|
17
|
+
const { theme = "", enableBio = true, enableSocialLinks = true, borderSupport = true, customConnect = "" } = config;
|
|
18
|
+
const textColor = getTextColor(theme);
|
|
19
|
+
const { name, bio, social } = data;
|
|
20
|
+
const isSmallCircle = template === "smallCircle";
|
|
21
|
+
const authorCardStyle = isSmallCircle ? "small-circle" : "default";
|
|
22
|
+
const isMobile = clientWidth("mobile");
|
|
23
|
+
const isFullWidth = !isSmallCircle ? "full-width-with-padding" : "";
|
|
24
|
+
const supportBorder = isSmallCircle && borderSupport ? "border" : "";
|
|
25
|
+
|
|
26
|
+
const getIcon = (item) => {
|
|
27
|
+
switch (item) {
|
|
28
|
+
case "twitter":
|
|
29
|
+
return <Twitter color={textColor === "dark" ? "#000" : "#fff"} />;
|
|
30
|
+
case "facebook":
|
|
31
|
+
return <Facebook />;
|
|
32
|
+
case "youtube":
|
|
33
|
+
return <Youtube />;
|
|
34
|
+
case "linkedin":
|
|
35
|
+
return <LinkedIn />;
|
|
36
|
+
case "whatsapp":
|
|
37
|
+
return <WhatsApp color="#4AC959" />;
|
|
38
|
+
case "instagram":
|
|
39
|
+
return <Instagram />;
|
|
40
|
+
case "pinterest":
|
|
41
|
+
return <Pinterest />;
|
|
42
|
+
}
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
return (
|
|
46
|
+
<div
|
|
47
|
+
data-test-id="author-intro"
|
|
48
|
+
className={`${isFullWidth} arrow-component arr--author-intro-card`}
|
|
49
|
+
styleName={`${authorCardStyle} ${supportBorder} ${textColor}`}
|
|
50
|
+
style={{ backgroundColor: theme || "initial" }}>
|
|
51
|
+
<div styleName={`wrapper ${textColor}`} className="arrow-author-intro-wrapper">
|
|
52
|
+
<div styleName="introduction-card" className="arrow-author-introduction-card">
|
|
53
|
+
{isSmallCircle && isMobile ? null : <h1 styleName={`author-name ${textColor}`}>{name}</h1>}
|
|
54
|
+
{enableBio && bio && (
|
|
55
|
+
<div data-test-id="author-bio" styleName={`author-description ${textColor}`}>
|
|
56
|
+
{bio}
|
|
57
|
+
{isSmallCircle && (
|
|
58
|
+
<div
|
|
59
|
+
styleName="fade-out"
|
|
60
|
+
style={{
|
|
61
|
+
backgroundImage: `linear-gradient(to right, transparent, ${theme})` || "initial"
|
|
62
|
+
}}></div>
|
|
63
|
+
)}
|
|
64
|
+
</div>
|
|
65
|
+
)}
|
|
66
|
+
<div styleName="social-wrapper">
|
|
67
|
+
<div styleName="social-connect-wrapper">
|
|
68
|
+
{enableSocialLinks && social && (
|
|
69
|
+
<>
|
|
70
|
+
{template !== "smallCircle" && (
|
|
71
|
+
<div styleName={`connect ${textColor}`}>{customConnect || "Connect"}:</div>
|
|
72
|
+
)}
|
|
73
|
+
{Object.entries(social).map((item, index) =>
|
|
74
|
+
item.length > 0 && item[1] ? (
|
|
75
|
+
// can add Social Networks without the url so adding an additional check below
|
|
76
|
+
item[1].url ? (
|
|
77
|
+
<span>
|
|
78
|
+
<a
|
|
79
|
+
data-test-id="social-link"
|
|
80
|
+
href={item[1].url}
|
|
81
|
+
key={`${item}-${index}`}
|
|
82
|
+
rel="noopener noreferrer"
|
|
83
|
+
target="_blank"
|
|
84
|
+
styleName="social-share">
|
|
85
|
+
{getIcon(item[0])}
|
|
86
|
+
</a>
|
|
87
|
+
</span>
|
|
88
|
+
) : null
|
|
89
|
+
) : null
|
|
90
|
+
)}
|
|
91
|
+
</>
|
|
92
|
+
)}
|
|
93
|
+
</div>
|
|
94
|
+
{!isSmallCircle && (
|
|
95
|
+
<SocialShare
|
|
96
|
+
template={SocialShareTemplate}
|
|
97
|
+
fullUrl={sharePageUrl}
|
|
98
|
+
title={name}
|
|
99
|
+
theme={theme}
|
|
100
|
+
socialShareStyle="sticky"
|
|
101
|
+
displayDefaultIcons
|
|
102
|
+
/>
|
|
103
|
+
)}
|
|
104
|
+
</div>
|
|
105
|
+
</div>
|
|
106
|
+
<div styleName="author-image" className="arrow-author-image">
|
|
107
|
+
<AuthorImage author={data} template={template} />
|
|
108
|
+
{isSmallCircle && isMobile && <h1 styleName={`author-name ${textColor}`}>{name}</h1>}
|
|
109
|
+
</div>
|
|
110
|
+
</div>
|
|
111
|
+
</div>
|
|
112
|
+
);
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
AuthorIntroductionCard.propTypes = {
|
|
116
|
+
data: PropTypes.shape({ name: PropTypes.string, bio: PropTypes.string, social: PropTypes.object }),
|
|
117
|
+
config: PropTypes.shape({
|
|
118
|
+
theme: PropTypes.string,
|
|
119
|
+
enableBio: PropTypes.bool,
|
|
120
|
+
enableSocialLinks: PropTypes.bool,
|
|
121
|
+
borderSupport: PropTypes.bool,
|
|
122
|
+
customConnect: PropTypes.string
|
|
123
|
+
}),
|
|
124
|
+
template: PropTypes.string
|
|
125
|
+
};
|
|
126
|
+
export default AuthorIntroductionCard;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { withStore } from "../../../../storybook";
|
|
3
|
+
import AuthorIntroductionCard from "./index";
|
|
4
|
+
import { color, boolean } from "@storybook/addon-knobs";
|
|
5
|
+
import { authorData } from "../../Fixture";
|
|
6
|
+
import Readme from "./README.md";
|
|
7
|
+
|
|
8
|
+
withStore(
|
|
9
|
+
"Rows/Author Introduction Card ",
|
|
10
|
+
{
|
|
11
|
+
qt: {
|
|
12
|
+
config: {
|
|
13
|
+
"cdn-image": "thumbor-stg.assettype.com"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
Readme
|
|
18
|
+
)
|
|
19
|
+
.add("Default", () => {
|
|
20
|
+
const contextConfig = {
|
|
21
|
+
theme: color("Color", "#ffffff"),
|
|
22
|
+
enableBio: boolean("Enable Bio", true),
|
|
23
|
+
enableSocialLinks: boolean("Enable Social Links", true)
|
|
24
|
+
};
|
|
25
|
+
return <AuthorIntroductionCard data={authorData} config={contextConfig} />;
|
|
26
|
+
})
|
|
27
|
+
.add("Square", () => {
|
|
28
|
+
const contextConfig = {
|
|
29
|
+
theme: color("Color", "#ffffff"),
|
|
30
|
+
enableBio: boolean("Enable Bio", true),
|
|
31
|
+
enableSocialLinks: boolean("Enable Social Links", true)
|
|
32
|
+
};
|
|
33
|
+
return <AuthorIntroductionCard data={authorData} config={contextConfig} template="square" />;
|
|
34
|
+
})
|
|
35
|
+
.add("Small Circle", () => {
|
|
36
|
+
const contextConfig = {
|
|
37
|
+
theme: color("Color", "#ffffff"),
|
|
38
|
+
enableBio: boolean("Enable Bio", true),
|
|
39
|
+
enableSocialLinks: boolean("Enable Social Links", true),
|
|
40
|
+
borderSupport: boolean("With Border", true)
|
|
41
|
+
};
|
|
42
|
+
return <AuthorIntroductionCard data={authorData} config={contextConfig} template="smallCircle" />;
|
|
43
|
+
});
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Authors List
|
|
2
|
+
|
|
3
|
+
Authors List is used to display the authors information which consists of name, bio with author image and social connect of the author.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
Import the AuthorsList and pass authorDetails as data and config.
|
|
8
|
+
|
|
9
|
+
```jsx
|
|
10
|
+
import { AuthorsList } from "@quintype/arrow";
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Use as a component
|
|
14
|
+
|
|
15
|
+
```jsx
|
|
16
|
+
const config = {
|
|
17
|
+
enableBio: boolean("Enable Bio", true),
|
|
18
|
+
buttonText: text("Footer text", "Load More"),
|
|
19
|
+
theme: color("color", "#ffffff")
|
|
20
|
+
enableSocialLinks: boolean("Enable Social Links", true)
|
|
21
|
+
};
|
|
22
|
+
limit = 9;
|
|
23
|
+
<AuthorsList config={config} data={data} getMoreData={getMoreData} limit={limit} hideLoadmore={false} />;
|
|
24
|
+
```
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { mount } from "enzyme";
|
|
3
|
+
import { LoadmoreButton } from "../../Atoms/Loadmore";
|
|
4
|
+
import AuthorsList from ".";
|
|
5
|
+
import { generateStore, authorData } from "../../Fixture";
|
|
6
|
+
import { Provider } from "react-redux";
|
|
7
|
+
|
|
8
|
+
const getMoreData = () => {
|
|
9
|
+
console.log("load more data");
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
const AuthorsData = Array(8).fill(authorData);
|
|
13
|
+
|
|
14
|
+
describe("Authors List component", () => {
|
|
15
|
+
it("Should render authors list component if data is present", () => {
|
|
16
|
+
const wrapper = mount(
|
|
17
|
+
<Provider store={generateStore}>
|
|
18
|
+
<AuthorsList data={AuthorsData} config={{}} getMoreData={getMoreData} hideLoadmore={false} limit={9} />;
|
|
19
|
+
</Provider>
|
|
20
|
+
);
|
|
21
|
+
expect(wrapper.find({ "data-test-id": "authors-list" }).prop("className")).toMatch(/arr--authors-list/);
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
it("Should not render authors list component if data is absent", () => {
|
|
25
|
+
const wrapper = mount(
|
|
26
|
+
<Provider store={generateStore}>
|
|
27
|
+
<AuthorsList data={[]} config={{}} getMoreData={getMoreData} hideLoadmore={false} limit={9} />;
|
|
28
|
+
</Provider>
|
|
29
|
+
);
|
|
30
|
+
expect(wrapper.find({ "data-test-id": "authors-list" }).length).toBe(0);
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
it("Should render Authors List component with Load More disabled", () => {
|
|
34
|
+
const wrapper = mount(
|
|
35
|
+
<Provider store={generateStore}>
|
|
36
|
+
<AuthorsList data={AuthorsData} config={{}} getMoreData={getMoreData} hideLoadmore={true} limit={9} />; );
|
|
37
|
+
</Provider>
|
|
38
|
+
);
|
|
39
|
+
expect(wrapper.find(LoadmoreButton).length).toEqual(0);
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
it("Should render Authors List component with Load More enabled", () => {
|
|
43
|
+
const wrapper = mount(
|
|
44
|
+
<Provider store={generateStore}>
|
|
45
|
+
<AuthorsList data={AuthorsData} config={{}} getMoreData={getMoreData} hideLoadmore={false} limit={9} />; );
|
|
46
|
+
</Provider>
|
|
47
|
+
);
|
|
48
|
+
expect(wrapper.find(LoadmoreButton).length).toEqual(1);
|
|
49
|
+
});
|
|
50
|
+
});
|