@quintype/arrow 3.0.0-spike-skeleton-layout.21 → 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/.babelrc +12 -0
- package/.circleci/config.yml +42 -0
- package/.eslintrc.json +25 -0
- package/.prettierrc +6 -0
- package/.storybook/addons.js +5 -0
- package/.storybook/config.js +13 -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 +1362 -0
- package/README.md +10 -0
- package/__mocks__/fileMock.js +1 -0
- package/__mocks__/styleMock.js +1 -0
- package/{app.scss → assets/stylesheets/app.scss} +154 -1
- package/assets/stylesheets/mixins.scss +27 -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 +131 -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/Author/README.md +19 -0
- package/src/components/Atoms/Author/author.m.css +65 -0
- package/src/components/Atoms/Author/index.js +98 -0
- package/src/components/Atoms/Author/stories.js +23 -0
- package/src/components/Atoms/AuthorCard/README.md +47 -0
- package/src/components/Atoms/AuthorCard/author-card.m.css +174 -0
- package/src/components/Atoms/AuthorCard/author-card.test.js +72 -0
- package/src/components/Atoms/AuthorCard/index.js +115 -0
- package/src/components/Atoms/AuthorCard/stories.js +69 -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 +55 -0
- package/src/components/Atoms/AuthorImage/stories.js +20 -0
- package/src/components/Atoms/AuthorWithTimestamp/README.md +11 -0
- package/src/components/Atoms/AuthorWithTimestamp/author-with-timestamp.m.css +42 -0
- package/src/components/Atoms/AuthorWithTimestamp/index.js +79 -0
- package/src/components/Atoms/AuthorWithTimestamp/stories.js +21 -0
- package/src/components/Atoms/BulletPoint/README.md +9 -0
- package/src/components/Atoms/BulletPoint/bullet-point.m.css +14 -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 +94 -0
- package/src/components/Atoms/CollectionName/index.js +143 -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 +112 -0
- package/src/components/Atoms/FallbackImage/fallback.m.css +33 -0
- package/src/components/Atoms/FallbackImage/index.js +30 -0
- package/src/components/Atoms/Headline/README.md +7 -0
- package/src/components/Atoms/Headline/headline.m.css +26 -0
- package/src/components/Atoms/Headline/index.js +76 -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 +71 -0
- package/src/components/Atoms/HeroImage/index.js +165 -0
- package/src/components/Atoms/HeroImage/stories.js +22 -0
- package/src/components/Atoms/LoadMoreTarget/index.js +24 -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 +41 -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 +61 -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 +63 -0
- package/src/components/Atoms/PublishDetail/publish-details.m.css +47 -0
- package/src/components/Atoms/PublishDetail/publish-details.test.js +22 -0
- package/src/components/Atoms/PublishDetail/stories.js +21 -0
- package/src/components/Atoms/ReadTime/README.md +13 -0
- package/src/components/Atoms/ReadTime/index.js +44 -0
- package/src/components/Atoms/ReadTime/read-time.m.css +25 -0
- package/src/components/Atoms/ReadTime/read-time.test.js +18 -0
- package/src/components/Atoms/ReadTime/stories.js +19 -0
- package/src/components/Atoms/ScrollSnap/SliderArrow/index.js +57 -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 +136 -0
- package/src/components/Atoms/ScrollSnap/scroll-snap.m.css +27 -0
- package/src/components/Atoms/SectionTag/README.md +11 -0
- package/src/components/Atoms/SectionTag/index.js +61 -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 +653 -0
- package/src/components/Atoms/SocialSharePopup/index.js +61 -0
- package/src/components/Atoms/SocialSharePopup/social-share-popup.m.css +109 -0
- package/src/components/Atoms/SocialSharePopup/social-share-popup.test.js +93 -0
- package/src/components/Atoms/SocialSharePopup/stories.js +19 -0
- package/src/components/Atoms/StoryElements/AlsoRead/README.md +49 -0
- package/src/components/Atoms/StoryElements/AlsoRead/also-read.m.css +135 -0
- package/src/components/Atoms/StoryElements/AlsoRead/also-read.test.js +83 -0
- package/src/components/Atoms/StoryElements/AlsoRead/index.js +117 -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 +125 -0
- package/src/components/Atoms/StoryElements/Attachment/attachment.test.js +39 -0
- package/src/components/Atoms/StoryElements/Attachment/index.js +62 -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 +26 -0
- package/src/components/Atoms/StoryElements/BlockQuote/Svg/edge.js +26 -0
- package/src/components/Atoms/StoryElements/BlockQuote/Svg/icon.m.css +4 -0
- package/src/components/Atoms/StoryElements/BlockQuote/block-quote.m.css +161 -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 +55 -0
- package/src/components/Atoms/StoryElements/Blurb/blurb.test.js +46 -0
- package/src/components/Atoms/StoryElements/Blurb/index.js +53 -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 +17 -0
- package/src/components/Atoms/StoryElements/Image/image.test.js +20 -0
- package/src/components/Atoms/StoryElements/Image/index.js +57 -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 +49 -0
- package/src/components/Atoms/StoryElements/ImageSlideshow/index.js +63 -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 +134 -0
- package/src/components/Atoms/StoryElements/QuestionAnswer/question-answer.m.css +106 -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 +44 -0
- package/src/components/Atoms/StoryElements/Quote/quote.m.css +111 -0
- package/src/components/Atoms/StoryElements/Quote/quote.test.js +39 -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 +21 -0
- package/src/components/Atoms/StoryElements/StoryElement/stories.js +20 -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 +68 -0
- package/src/components/Atoms/StoryElements/Summary/stories.js +33 -0
- package/src/components/Atoms/StoryElements/Summary/summary.m.css +121 -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 +41 -0
- package/src/components/Atoms/StoryElements/Text/stories.js +32 -0
- package/src/components/Atoms/StoryElements/Text/text.m.css +48 -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 +23 -0
- package/src/components/Atoms/StoryElements/Video/stories.js +24 -0
- package/src/components/Atoms/StoryElements/Video/video.m.css +3 -0
- package/src/components/Atoms/StoryElements/Video/video.test.js +13 -0
- package/src/components/Atoms/StoryElements/imageGallery/README.md +18 -0
- package/src/components/Atoms/StoryElements/imageGallery/image-gallery.m.css +48 -0
- package/src/components/Atoms/StoryElements/imageGallery/image-gallery.test.js +19 -0
- package/src/components/Atoms/StoryElements/imageGallery/index.js +74 -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 +36 -0
- package/src/components/Atoms/StoryHeadline/story-headline.m.css +36 -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 +34 -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 +37 -0
- package/src/components/Atoms/TimeStamp/stories.js +9 -0
- package/src/components/Atoms/TimeStamp/timestamp.m.css +22 -0
- package/src/components/Fixture/config.json +2703 -0
- package/src/components/Fixture/dummy-collection.js +2787 -0
- package/src/components/Fixture/dummyStory.js +2148 -0
- package/src/components/Fixture/index.js +424 -0
- package/src/components/Fixture/slot-config.js +29 -0
- package/src/components/Molecules/FullScreenImages/fullscreenimages.scss +48 -0
- package/src/components/Molecules/FullScreenImages/index.js +86 -0
- package/src/components/Molecules/KeyEvents/README.md +21 -0
- package/src/components/Molecules/KeyEvents/index.js +109 -0
- package/src/components/Molecules/KeyEvents/key-events.m.css +89 -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/SliderHorizontalCard/README.md +14 -0
- package/src/components/Molecules/SliderHorizontalCard/index.js +45 -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 +738 -0
- package/src/components/Molecules/SocialShareTemplate/index.js +119 -0
- package/src/components/Molecules/SocialShareTemplate/social-share-data.js +66 -0
- package/src/components/Molecules/SocialShareTemplate/social-share-template.m.css +174 -0
- package/src/components/Molecules/SocialShareTemplate/social-share-template.test.js +116 -0
- package/src/components/Molecules/SocialShareTemplate/stories.js +40 -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 +173 -0
- package/src/components/Molecules/StoryCard/stories.js +223 -0
- package/src/components/Molecules/StoryCard/storycard.m.css +158 -0
- package/src/components/Molecules/StoryCardWithBulletPoint/README.md +9 -0
- package/src/components/Molecules/StoryCardWithBulletPoint/index.js +32 -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 +358 -0
- package/src/components/Molecules/StoryElementCard/stories.js +27 -0
- package/src/components/Molecules/StoryElementCard/story-element-card.m.css +78 -0
- package/src/components/Molecules/StorycardContent/README.md +34 -0
- package/src/components/Molecules/StorycardContent/index.js +76 -0
- package/src/components/Molecules/StorycardContent/stories.js +39 -0
- package/src/components/Molecules/StorycardContent/storycardContent.m.css +21 -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 +103 -0
- package/src/components/Rows/AsideCollection/aside-collection.test.js +34 -0
- package/src/components/Rows/AsideCollection/index.js +175 -0
- package/src/components/Rows/AsideCollection/stories.js +52 -0
- package/src/components/Rows/AuthorIntroductionCard/README.md +43 -0
- package/src/components/Rows/AuthorIntroductionCard/author-intro.m.css +278 -0
- package/src/components/Rows/AuthorIntroductionCard/author-intro.test.js +106 -0
- package/src/components/Rows/AuthorIntroductionCard/index.js +120 -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 +50 -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 +232 -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 +332 -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 +56 -0
- package/src/components/Rows/FourColFiveStories/index.js +159 -0
- package/src/components/Rows/FourColFiveStories/stories.js +67 -0
- package/src/components/Rows/FourColGrid/README.md +38 -0
- package/src/components/Rows/FourColGrid/four-col.m.css +50 -0
- package/src/components/Rows/FourColGrid/index.js +137 -0
- package/src/components/Rows/FourColGrid/stories.js +65 -0
- package/src/components/Rows/FourColSixteenStories/README.md +35 -0
- package/src/components/Rows/FourColSixteenStories/four-col-sixteen-stories.m.css +104 -0
- package/src/components/Rows/FourColSixteenStories/index.js +103 -0
- package/src/components/Rows/FourColSixteenStories/stories.js +46 -0
- package/src/components/Rows/FourColTwelveStory/README.md +39 -0
- package/src/components/Rows/FourColTwelveStory/four-col-twelve-story.m.css +71 -0
- package/src/components/Rows/FourColTwelveStory/index.js +176 -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 +45 -0
- package/src/components/Rows/FourStorySlider/index.js +127 -0
- package/src/components/Rows/FourStorySlider/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 +221 -0
- package/src/components/Rows/FourTabbedBigStorySlider/index.js +161 -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 +110 -0
- package/src/components/Rows/FullScreenSlider/index.js +114 -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 +35 -0
- package/src/components/Rows/HalfScreenSlider/index.js +104 -0
- package/src/components/Rows/HalfScreenSlider/stories.js +115 -0
- package/src/components/Rows/ListComponent/README.md +48 -0
- package/src/components/Rows/ListComponent/index.js +150 -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/MagazineEditions/README.md +21 -0
- package/src/components/Rows/MagazineEditions/index.js +91 -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 +72 -0
- package/src/components/Rows/MagazineHeaderCard/magazine-cards.m.css +106 -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 +127 -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 +196 -0
- package/src/components/Rows/OneColStoryList/one-col-story-list.m.css +81 -0
- package/src/components/Rows/OneColStoryList/stories.js +61 -0
- package/src/components/Rows/OpinionCollection/README.md +34 -0
- package/src/components/Rows/OpinionCollection/index.js +124 -0
- package/src/components/Rows/OpinionCollection/opinion-collection.m.css +118 -0
- package/src/components/Rows/OpinionCollection/stories.js +48 -0
- package/src/components/Rows/SixColSixStories/README.md +37 -0
- package/src/components/Rows/SixColSixStories/index.js +134 -0
- package/src/components/Rows/SixColSixStories/six-col-six-stories.m.css +75 -0
- package/src/components/Rows/SixColSixStories/stories.js +73 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/README.md +19 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/__snapshots__/listicle-story.test.js.snap +837 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/index.js +287 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.m.css +229 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.test.js +47 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/stories.js +117 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/README.md +25 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/index.js +51 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/live-blog.m.css +326 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/stories.js +120 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/templates.js +376 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/index.js +246 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo-story.test.js +144 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo.m.css +175 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/stories.js +123 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/README.md +49 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/index.js +69 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/stories.js +125 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/templates.js +272 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/text-story.m.css +449 -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 +234 -0
- package/src/components/Rows/StoryTemplates/VideoStoryTemplates/stories.js +204 -0
- package/src/components/Rows/StoryTemplates/VideoStoryTemplates/video-story.m.css +195 -0
- package/src/components/Rows/TagIntroductionCard/README.md +11 -0
- package/src/components/Rows/TagIntroductionCard/index.js +26 -0
- package/src/components/Rows/TagIntroductionCard/stories.js +21 -0
- package/src/components/Rows/TagIntroductionCard/tag-intro-card.module.css +30 -0
- package/src/components/Rows/ThreeColFlexStories/README.md +38 -0
- package/src/components/Rows/ThreeColFlexStories/index.js +180 -0
- package/src/components/Rows/ThreeColFlexStories/stories.js +73 -0
- package/src/components/Rows/ThreeColFlexStories/three-col-flex-stories.m.css +60 -0
- package/src/components/Rows/ThreeColFourteenStory/README.md +28 -0
- package/src/components/Rows/ThreeColFourteenStory/index.js +135 -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 +141 -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 +172 -0
- package/src/components/Rows/ThreeColSevenStory/stories.js +71 -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 +161 -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 +123 -0
- package/src/components/Rows/ThreeColTwelveStories/stories.js +51 -0
- package/src/components/Rows/ThreeColTwelveStories/three-col-twelve-stories.m.css +83 -0
- package/src/components/Rows/TwoColFourStory/README.md +33 -0
- package/src/components/Rows/TwoColFourStory/index.js +151 -0
- package/src/components/Rows/TwoColFourStory/stories.js +68 -0
- package/src/components/Rows/TwoColFourStory/two-col-four-story.m.css +56 -0
- package/src/components/Rows/TwoColFourStoryHighlight/README.md +35 -0
- package/src/components/Rows/TwoColFourStoryHighlight/index.js +122 -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/TwoColSixStories/README.md +36 -0
- package/src/components/Rows/TwoColSixStories/index.js +117 -0
- package/src/components/Rows/TwoColSixStories/stories.js +67 -0
- package/src/components/Rows/TwoColSixStories/two-col-six-stories.m.css +79 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/README.md +34 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/index.js +168 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/stories.js +45 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/two-col-ten-stories-sidebar.m.css +52 -0
- package/src/components/Rows/TwoColThreeStory/README.md +36 -0
- package/src/components/Rows/TwoColThreeStory/index.js +137 -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 +5 -0
- package/src/components/Svgs/SocialIcons/facebook.js +15 -0
- package/src/components/Svgs/SocialIcons/instagram.js +24 -0
- package/src/components/Svgs/SocialIcons/linkedin.js +15 -0
- package/src/components/Svgs/SocialIcons/pinterest.js +12 -0
- package/src/components/Svgs/SocialIcons/twitter.js +15 -0
- package/src/components/Svgs/SocialIcons/whatsapp.js +17 -0
- package/src/components/Svgs/SocialIcons/youtube.js +17 -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/key.js +33 -0
- package/src/components/Svgs/left-arrow.js +17 -0
- package/src/components/Svgs/liveicon.js +13 -0
- package/src/components/Svgs/lock.js +31 -0
- package/src/components/Svgs/right-arrow.js +17 -0
- package/src/components/Svgs/share-icon.js +17 -0
- package/src/components/Svgs/star.js +28 -0
- package/src/components/Svgs/user-fallback-icon.js +19 -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/entry-points.js +337 -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 +85 -0
- package/src/utils/testing-utils.js +8 -0
- package/src/utils/utils.js +280 -0
- package/src/utils/utils.test.js +55 -0
- package/storybook/index.js +83 -0
- package/AlsoRead/styles.arrow.css +0 -1
- package/AsideCollection/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/AuthorPageIntroductionCard/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/FourColGrid/styles.arrow.css +0 -1
- package/FourColTwelveStories/styles.arrow.css +0 -1
- package/FourStorySlider/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/ListComponent/styles.arrow.css +0 -1
- package/ListicleStoryTemplate/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/PhotoStoryTemplate/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/SectionTag/styles.arrow.css +0 -1
- package/StoryCard/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/TagIntroductionCard/styles.arrow.css +0 -1
- package/Text/styles.arrow.css +0 -1
- package/TextStoryTemplate/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/TimeStamp/styles.arrow.css +0 -1
- package/TwoColFourStories/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
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
import get from "lodash.get";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import React, { useEffect, useState } from "react";
|
|
4
|
+
import { isEmpty, getCollectionData } from "../../../utils/utils";
|
|
5
|
+
import { AuthorWithTime } from "../../Atoms/AuthorWithTimestamp";
|
|
6
|
+
import { CollectionName } from "../../Atoms/CollectionName";
|
|
7
|
+
import { Headline } from "../../Atoms/Headline";
|
|
8
|
+
import { HeroImage } from "../../Atoms/HeroImage";
|
|
9
|
+
import { SectionTag } from "../../Atoms/SectionTag";
|
|
10
|
+
import { StoryCard } from "../../Molecules/StoryCard";
|
|
11
|
+
import { StateProvider } from "../../SharedContext";
|
|
12
|
+
import KeyEvents from "../../Molecules/KeyEvents";
|
|
13
|
+
import "./aside-collection.m.css";
|
|
14
|
+
|
|
15
|
+
const StoryCollection = ({ data, slotData, horizontal, config, opts }) => {
|
|
16
|
+
const { theme = "", title = "", collectionSlug = "" } = slotData || config;
|
|
17
|
+
const heading = title || "Related Stories";
|
|
18
|
+
const isHorizontal = horizontal ? "horizontal-wrapper" : "";
|
|
19
|
+
const mountAt = get(config, ["mountAtPrefix"], "");
|
|
20
|
+
const [storyList, updateStoryList] = useState([]);
|
|
21
|
+
const [collectionData, updateCollectionData] = useState([]);
|
|
22
|
+
const updateStoryListItems = async (slug) => {
|
|
23
|
+
const collectionDataResponse = await getCollectionData(slug, mountAt);
|
|
24
|
+
updateCollectionData(collectionDataResponse);
|
|
25
|
+
const storyItems = collectionDataResponse.items;
|
|
26
|
+
updateStoryList(storyItems);
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
useEffect(() => {
|
|
30
|
+
if (collectionSlug) {
|
|
31
|
+
updateStoryListItems(collectionSlug);
|
|
32
|
+
}
|
|
33
|
+
}, [collectionSlug]);
|
|
34
|
+
|
|
35
|
+
useEffect(() => {
|
|
36
|
+
if (!collectionSlug && data) {
|
|
37
|
+
const storyItems = data.items || data;
|
|
38
|
+
updateStoryList(storyItems);
|
|
39
|
+
}
|
|
40
|
+
}, [data, collectionSlug]);
|
|
41
|
+
|
|
42
|
+
return (
|
|
43
|
+
<>
|
|
44
|
+
<CollectionName customCollectionName={heading} textColor collection={collectionData} />
|
|
45
|
+
<div styleName="stories">
|
|
46
|
+
{storyList && storyList.length > 0 ? (
|
|
47
|
+
storyList.slice(0, 4).map((item) => {
|
|
48
|
+
const story = item.story || item;
|
|
49
|
+
return (
|
|
50
|
+
<div styleName="story" key={story.id}>
|
|
51
|
+
<StoryCard story={story} isHorizontal theme={theme} config={config}>
|
|
52
|
+
<div styleName="story-hero-image">
|
|
53
|
+
<HeroImage story={story} aspectRatio={[[4, 3]]} />
|
|
54
|
+
</div>
|
|
55
|
+
<div>
|
|
56
|
+
{isHorizontal && <SectionTag story={story} />}
|
|
57
|
+
<Headline story={story} />
|
|
58
|
+
<div styleName="story-byline">
|
|
59
|
+
<AuthorWithTime config={opts} story={story} />
|
|
60
|
+
</div>
|
|
61
|
+
</div>
|
|
62
|
+
</StoryCard>
|
|
63
|
+
</div>
|
|
64
|
+
);
|
|
65
|
+
})
|
|
66
|
+
) : (
|
|
67
|
+
<div data-test-id="no-stories" styleName="info">
|
|
68
|
+
No stories found.
|
|
69
|
+
</div>
|
|
70
|
+
)}
|
|
71
|
+
</div>
|
|
72
|
+
</>
|
|
73
|
+
);
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
StoryCollection.propTypes = {
|
|
77
|
+
data: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
|
|
78
|
+
config: PropTypes.object,
|
|
79
|
+
horizontal: PropTypes.bool,
|
|
80
|
+
slotData: PropTypes.object,
|
|
81
|
+
opts: PropTypes.object
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
const AsideCollection = ({
|
|
85
|
+
data = {},
|
|
86
|
+
config = {},
|
|
87
|
+
horizontal = false,
|
|
88
|
+
slots = [],
|
|
89
|
+
sticky = false,
|
|
90
|
+
keyEventsData = {},
|
|
91
|
+
enableKeyEvents = false,
|
|
92
|
+
adComponent,
|
|
93
|
+
widgetComp,
|
|
94
|
+
storyId,
|
|
95
|
+
opts = {}
|
|
96
|
+
}) => {
|
|
97
|
+
if (isEmpty(data)) return null;
|
|
98
|
+
const { theme } = config;
|
|
99
|
+
const isHorizontal = horizontal ? "horizontal-wrapper" : "";
|
|
100
|
+
|
|
101
|
+
if (horizontal) {
|
|
102
|
+
return (
|
|
103
|
+
<div
|
|
104
|
+
className="arrow-component arr--aside-collection"
|
|
105
|
+
styleName={`wrapper ${isHorizontal}`}
|
|
106
|
+
style={{ backgroundColor: theme }}
|
|
107
|
+
data-test-id="aside-collection"
|
|
108
|
+
id={`aside-collection-${storyId}`}>
|
|
109
|
+
<StoryCollection data={data} horizontal={horizontal} config={config} opts={opts} />
|
|
110
|
+
</div>
|
|
111
|
+
);
|
|
112
|
+
}
|
|
113
|
+
const isSticky = sticky ? "sticky" : "";
|
|
114
|
+
const asideSlot = (type, slot, index) => {
|
|
115
|
+
switch (type) {
|
|
116
|
+
case "ad":
|
|
117
|
+
return (
|
|
118
|
+
<div styleName="ad-slot" className="aside-collection-ad-slot">
|
|
119
|
+
{adComponent({ ...slot, id: `ad-${index}_${storyId}` })}
|
|
120
|
+
</div>
|
|
121
|
+
);
|
|
122
|
+
case "widget":
|
|
123
|
+
return (
|
|
124
|
+
<div styleName="ad-slot" className="aside-collection-ad-slot">
|
|
125
|
+
{widgetComp({ ...slot, id: `widget-${index}_${storyId}` })}
|
|
126
|
+
</div>
|
|
127
|
+
);
|
|
128
|
+
|
|
129
|
+
case "collection":
|
|
130
|
+
return (
|
|
131
|
+
<div id={`aside-collection-${index}_${storyId}`}>
|
|
132
|
+
<StoryCollection slotData={slot} data={data} horizontal={horizontal} config={config} opts={opts} />
|
|
133
|
+
</div>
|
|
134
|
+
);
|
|
135
|
+
}
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
return (
|
|
139
|
+
<div
|
|
140
|
+
className="arrow-component arr--aside-collection"
|
|
141
|
+
styleName={["wrapper", isHorizontal, isSticky].join(" ")}
|
|
142
|
+
style={{ backgroundColor: theme }}
|
|
143
|
+
data-test-id="aside-collection">
|
|
144
|
+
{enableKeyEvents && (
|
|
145
|
+
<KeyEvents
|
|
146
|
+
story={keyEventsData.story}
|
|
147
|
+
showLoadMore={keyEventsData.showLoadMore}
|
|
148
|
+
config={keyEventsData.config}
|
|
149
|
+
/>
|
|
150
|
+
)}
|
|
151
|
+
{slots.map((slot, index) => asideSlot(slot.type, slot, index))}
|
|
152
|
+
</div>
|
|
153
|
+
);
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
AsideCollection.propTypes = {
|
|
157
|
+
data: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
|
|
158
|
+
config: PropTypes.object,
|
|
159
|
+
opts: PropTypes.object,
|
|
160
|
+
horizontal: PropTypes.bool,
|
|
161
|
+
slots: PropTypes.array,
|
|
162
|
+
adComponent: PropTypes.func,
|
|
163
|
+
widgetComp: PropTypes.func,
|
|
164
|
+
sticky: PropTypes.bool,
|
|
165
|
+
keyEventsData: PropTypes.shape({
|
|
166
|
+
story: PropTypes.object,
|
|
167
|
+
config: PropTypes.object,
|
|
168
|
+
showLoadMore: PropTypes.boolean
|
|
169
|
+
}),
|
|
170
|
+
enableKeyEvents: PropTypes.boolean,
|
|
171
|
+
storyId: PropTypes.string
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
export default StateProvider(AsideCollection);
|
|
175
|
+
export { StoryCollection };
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { boolean, color, text } from "@storybook/addon-knobs";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import AsideCollection from ".";
|
|
4
|
+
import { collectionNameTemplates, optionalSelect, withStore } from "../../../../storybook";
|
|
5
|
+
import { AdPlaceholder } from "../../Atoms/AdPlaceholder";
|
|
6
|
+
import { generateStory } from "../../Fixture";
|
|
7
|
+
import { slotData } from "../../Fixture/slot-config";
|
|
8
|
+
import Readme from "./README.md";
|
|
9
|
+
|
|
10
|
+
const story = generateStory();
|
|
11
|
+
const stories = [story, story, story];
|
|
12
|
+
const label = "Background color";
|
|
13
|
+
const defaultvalue = "#ffffff";
|
|
14
|
+
const collectionNameDefaultValue = "#3a9fdd";
|
|
15
|
+
const collectionNameBorderColorLabel = "Collection Name Border Color";
|
|
16
|
+
|
|
17
|
+
const configurableSlot = () => {
|
|
18
|
+
return <AdPlaceholder height="250px" width="300px" />;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
withStore(
|
|
22
|
+
"Rows/Aside Collection",
|
|
23
|
+
{
|
|
24
|
+
qt: {
|
|
25
|
+
config: {
|
|
26
|
+
"cdn-image": "thumbor-stg.assettype.com"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
Readme
|
|
31
|
+
).add("Aside Collection template", () => {
|
|
32
|
+
const config = {
|
|
33
|
+
title: text("Title", "Recommended Stories"),
|
|
34
|
+
theme: color(label, defaultvalue),
|
|
35
|
+
showAuthor: boolean("Author", true),
|
|
36
|
+
showTime: boolean("Timestamp", true),
|
|
37
|
+
showReadTime: boolean("Read time", true),
|
|
38
|
+
showRowTitle: boolean("Collection name", true),
|
|
39
|
+
collectionNameTemplate: optionalSelect("Collection Name Templates", collectionNameTemplates),
|
|
40
|
+
collectionNameBorderColor: color(collectionNameBorderColorLabel, collectionNameDefaultValue)
|
|
41
|
+
};
|
|
42
|
+
return (
|
|
43
|
+
<AsideCollection
|
|
44
|
+
data={stories}
|
|
45
|
+
config={config}
|
|
46
|
+
adComp={configurableSlot}
|
|
47
|
+
widgetComp={configurableSlot}
|
|
48
|
+
slots={slotData}
|
|
49
|
+
sticky={true}
|
|
50
|
+
/>
|
|
51
|
+
);
|
|
52
|
+
});
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Author Introduction Card
|
|
2
|
+
|
|
3
|
+
Author Introduction card is used to display the author information which consists of name, bio with author image and social connect of the author.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
Import the AuthorIntroductionCard and pass authorDetails as props and config.
|
|
8
|
+
|
|
9
|
+
```jsx
|
|
10
|
+
import { AuthorIntroductionCard } from "@quintype/arrow";
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Use as a component
|
|
14
|
+
|
|
15
|
+
```jsx
|
|
16
|
+
const contextConfig = {
|
|
17
|
+
theme: #333333;
|
|
18
|
+
enableBio: false;
|
|
19
|
+
enableSocialLinks: true;
|
|
20
|
+
};
|
|
21
|
+
<AuthorIntroductionCard props={authorDetails} config={contextConfig} >
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
```jsx
|
|
26
|
+
const contextConfig = {
|
|
27
|
+
theme: #333333;
|
|
28
|
+
enableBio: false;
|
|
29
|
+
enableSocialLinks: true;
|
|
30
|
+
};
|
|
31
|
+
<AuthorIntroductionCard props={authorDetails} config={contextConfig} template="square" >
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
```jsx
|
|
36
|
+
const contextConfig = {
|
|
37
|
+
theme: #333333;
|
|
38
|
+
enableBio: false;
|
|
39
|
+
enableSocialLinks: true;
|
|
40
|
+
};
|
|
41
|
+
<AuthorIntroductionCard props={authorDetails} config={contextConfig} template="smallCircle" >
|
|
42
|
+
|
|
43
|
+
```
|
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
@value viewports: "../../../../assets/stylesheets/viewports.m.css";
|
|
2
|
+
@value mobile from viewports;
|
|
3
|
+
@value tablet from viewports;
|
|
4
|
+
|
|
5
|
+
.connect {
|
|
6
|
+
font-size: var(--arrow-spacing-m);
|
|
7
|
+
line-height: var(--arrow-lh-5);
|
|
8
|
+
color: var(--arrow-c-mono4);
|
|
9
|
+
align-self: center;
|
|
10
|
+
margin-bottom: var(--arrow-spacing-xxs);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.social-share {
|
|
14
|
+
flex: 1;
|
|
15
|
+
padding: var(--arrow-spacing-xs);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.share-icon {
|
|
19
|
+
display: flex;
|
|
20
|
+
align-items: flex-end;
|
|
21
|
+
margin-right: var(--arrow-spacing-l);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.default .author-image {
|
|
25
|
+
align-self: center;
|
|
26
|
+
@media (min-width: mobile) {
|
|
27
|
+
grid-column: 8/12;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.default .author-name {
|
|
32
|
+
color: var(--arrow-c-mono2);
|
|
33
|
+
font-weight: var(--arrow-fw-bold);
|
|
34
|
+
line-height: var(--arrow-lh-5);
|
|
35
|
+
align-self: center;
|
|
36
|
+
margin: var(--arrow-spacing-xs) 0 var(--arrow-spacing-xxs);
|
|
37
|
+
@media (min-width: mobile) {
|
|
38
|
+
line-height: var(--arrow-lh-2);
|
|
39
|
+
align-self: flex-start;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.default .author-description {
|
|
44
|
+
margin: var(--arrow-spacing-s) 0;
|
|
45
|
+
color: var(--arrow-c-mono4);
|
|
46
|
+
font-size: var(--arrow-spacing-m);
|
|
47
|
+
line-height: var(--arrow-lh-5);
|
|
48
|
+
white-space: pre-line;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.default .wrapper {
|
|
52
|
+
display: flex;
|
|
53
|
+
flex-direction: column-reverse;
|
|
54
|
+
padding: 0 var(--arrow-spacing-s) var(--arrow-spacing-m) var(--arrow-spacing-s);
|
|
55
|
+
@media (min-width: mobile) {
|
|
56
|
+
display: grid;
|
|
57
|
+
grid-gap: var(--arrow-fs-l);
|
|
58
|
+
grid-template-columns: repeat(12, 1fr);
|
|
59
|
+
padding: 0 0 var(--arrow-fs-xxl) 0;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.default .introduction-card {
|
|
64
|
+
display: flex;
|
|
65
|
+
flex: 1;
|
|
66
|
+
justify-content: center;
|
|
67
|
+
flex-direction: column;
|
|
68
|
+
@media (min-width: mobile) {
|
|
69
|
+
grid-column: 2/8;
|
|
70
|
+
}
|
|
71
|
+
@media (min-width: tablet) {
|
|
72
|
+
grid-column: 2/7;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.default .social-wrapper {
|
|
77
|
+
margin-top: var(--arrow-spacing-xs);
|
|
78
|
+
display: flex;
|
|
79
|
+
justify-content: space-between;
|
|
80
|
+
@media (min-width: mobile) {
|
|
81
|
+
align-items: center;
|
|
82
|
+
}
|
|
83
|
+
@media (min-width: tablet) {
|
|
84
|
+
margin-top: unset;
|
|
85
|
+
position: relative;
|
|
86
|
+
align-items: unset;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.default .connect {
|
|
91
|
+
@media (min-width: tablet) {
|
|
92
|
+
margin-bottom: var(--arrow-spacing-xs);
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.default .linkWrapper {
|
|
97
|
+
display: flex;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.default .social-connect-wrapper {
|
|
101
|
+
@media (min-width: mobile) {
|
|
102
|
+
display: flex;
|
|
103
|
+
}
|
|
104
|
+
@media (min-width: tablet) {
|
|
105
|
+
margin-top: var(--arrow-spacing-xs);
|
|
106
|
+
display: block;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.default :global(.desktop-share-wrapper) {
|
|
111
|
+
@media (min-width: tablet) {
|
|
112
|
+
position: absolute;
|
|
113
|
+
right: 0;
|
|
114
|
+
max-width: 42px;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.default .social-wrapper > :nth-child(2) {
|
|
119
|
+
margin-top: var(--arrow-spacing-xxs);
|
|
120
|
+
@media (min-width: mobile) {
|
|
121
|
+
margin-top: unset;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.default .social-connect-wrapper > :nth-child(2) {
|
|
126
|
+
margin-left: unset;
|
|
127
|
+
@media (min-width: mobile) {
|
|
128
|
+
margin-left: var(--arrow-spacing-xs);
|
|
129
|
+
}
|
|
130
|
+
@media (min-width: tablet) {
|
|
131
|
+
margin-left: unset;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.default .wrapper.dark {
|
|
136
|
+
border-bottom: 1px solid var(--dark-border);
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.default .wrapper.light {
|
|
140
|
+
border-bottom: 1px solid var(--light-border);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.small-circle {
|
|
144
|
+
@media (min-width: mobile) {
|
|
145
|
+
padding: var(--arrow-spacing-l) var(--arrow-spacing-s);
|
|
146
|
+
height: 100%;
|
|
147
|
+
@media (min-width: tablet) {
|
|
148
|
+
padding: var(--arrow-spacing-xl);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.small-circle.border {
|
|
154
|
+
border-radius: 3px;
|
|
155
|
+
padding: var(--arrow-spacing-m);
|
|
156
|
+
@media (min-width: mobile) {
|
|
157
|
+
padding: var(--arrow-spacing-l) var(--arrow-spacing-s);
|
|
158
|
+
}
|
|
159
|
+
@media (min-width: tablet) {
|
|
160
|
+
padding: var(--arrow-spacing-xl);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.small-circle.border.dark {
|
|
165
|
+
border: solid 1px var(--dark-border);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.small-circle.border.light {
|
|
169
|
+
border: solid 1px var(--light-border);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.small-circle .wrapper {
|
|
173
|
+
display: flex;
|
|
174
|
+
flex-direction: column-reverse;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.small-circle .introduction-card {
|
|
178
|
+
@media (min-width: mobile) {
|
|
179
|
+
text-align: center;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.small-circle .author-image {
|
|
184
|
+
display: flex;
|
|
185
|
+
align-items: center;
|
|
186
|
+
@media (min-width: mobile) {
|
|
187
|
+
justify-content: center;
|
|
188
|
+
align-items: unset;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.small-circle .social-wrapper {
|
|
193
|
+
@media (min-width: mobile) {
|
|
194
|
+
justify-content: center;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.small-circle .author-name {
|
|
199
|
+
color: var(--arrow-c-mono2);
|
|
200
|
+
font-size: var(--arrow-fs-s);
|
|
201
|
+
line-height: var(--arrow-lh-3);
|
|
202
|
+
font-weight: var(--arrow-fw-bold);
|
|
203
|
+
@media (min-width: mobile) {
|
|
204
|
+
font-size: var(--arrow-fs-m);
|
|
205
|
+
margin-top: var(--arrow-spacing-m);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.small-circle .author-image > div {
|
|
210
|
+
margin-right: var(--arrow-spacing-m);
|
|
211
|
+
@media (min-width: mobile) {
|
|
212
|
+
margin-right: unset;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.small-circle .author-description,
|
|
217
|
+
.small-circle .connect {
|
|
218
|
+
font-size: var(--arrow-fs-tiny);
|
|
219
|
+
line-height: var(--arrow-lh-5);
|
|
220
|
+
color: var(--arrow-c-mono4);
|
|
221
|
+
@media (min-width: mobile) {
|
|
222
|
+
font-size: var(--arrow-fs-tiny);
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.small-circle .author-description {
|
|
227
|
+
position: relative;
|
|
228
|
+
max-height: 63px;
|
|
229
|
+
overflow: hidden;
|
|
230
|
+
margin-top: var(--arrow-spacing-xs);
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.small-circle .fade-out {
|
|
234
|
+
position: absolute;
|
|
235
|
+
bottom: 0;
|
|
236
|
+
right: 0;
|
|
237
|
+
width: 90%;
|
|
238
|
+
height: 21px;
|
|
239
|
+
background-image: inherit;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.small-circle .social-connect-wrapper {
|
|
243
|
+
margin-top: var(--arrow-spacing-xxs);
|
|
244
|
+
@media (min-width: mobile) {
|
|
245
|
+
margin-top: var(--arrow-spacing-xs);
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.small-circle.border .social-connect-wrapper {
|
|
250
|
+
margin-top: var(--arrow-spacing-xs);
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.default .dark,
|
|
254
|
+
.small-circle .dark {
|
|
255
|
+
color: var(--arrow-c-mono2);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.default .light,
|
|
259
|
+
.small-circle .light {
|
|
260
|
+
color: var(--arrow-c-invert-mono2);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.default .social-connect-wrapper > :nth-child(2),
|
|
264
|
+
.small-circle .social-connect-wrapper > :nth-child(1) {
|
|
265
|
+
padding-left: unset;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.small-circle .social-share {
|
|
269
|
+
padding: var(--arrow-spacing-m) var(--arrow-spacing-xs) var(--arrow-spacing-xs);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
html[dir="rtl"] {
|
|
273
|
+
.default :global(.desktop-share-wrapper) {
|
|
274
|
+
@media (min-width: tablet) {
|
|
275
|
+
position: static;
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
@@ -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
|
+
});
|