@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,33 @@
|
|
|
1
|
+
.image-position {
|
|
2
|
+
position: absolute;
|
|
3
|
+
top: 0;
|
|
4
|
+
right: 0;
|
|
5
|
+
left: 0;
|
|
6
|
+
bottom: 0;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.image {
|
|
10
|
+
composes: image-position;
|
|
11
|
+
background: var(--fallback-img);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.image::after {
|
|
15
|
+
content: "";
|
|
16
|
+
position: absolute;
|
|
17
|
+
top: 0;
|
|
18
|
+
right: 0;
|
|
19
|
+
left: 0;
|
|
20
|
+
bottom: 0;
|
|
21
|
+
/* background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent 50%, transparent); */
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.fallback-svg svg {
|
|
25
|
+
object-fit: cover;
|
|
26
|
+
position: absolute;
|
|
27
|
+
top: 0;
|
|
28
|
+
right: 0;
|
|
29
|
+
bottom: 0;
|
|
30
|
+
left: 50%;
|
|
31
|
+
transform: translateX(-50%);
|
|
32
|
+
height: 100%;
|
|
33
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import { ImageFallbackIcon } from "../../Svgs/fallbackImage";
|
|
4
|
+
import { Link } from "@quintype/components";
|
|
5
|
+
|
|
6
|
+
import "./fallback.m.css";
|
|
7
|
+
|
|
8
|
+
const imageFallback = () => (
|
|
9
|
+
<div styleName="image" className="arr--fallback-image">
|
|
10
|
+
<figure styleName="fallback-svg" className="arr--fallback-svg">
|
|
11
|
+
<ImageFallbackIcon />
|
|
12
|
+
</figure>
|
|
13
|
+
</div>
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
export const FallbackImage = ({ slug }) => {
|
|
17
|
+
if (slug) {
|
|
18
|
+
return (
|
|
19
|
+
<Link href={slug} aria-label="image-fallback">
|
|
20
|
+
{imageFallback()}
|
|
21
|
+
</Link>
|
|
22
|
+
);
|
|
23
|
+
} else {
|
|
24
|
+
return imageFallback();
|
|
25
|
+
}
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
FallbackImage.propTypes = {
|
|
29
|
+
slug: PropTypes.string
|
|
30
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@custom-media --viewport-medium (width >= 768px);
|
|
2
|
+
|
|
3
|
+
.wrapper {
|
|
4
|
+
margin-bottom: 6px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.headline {
|
|
8
|
+
margin-bottom: var(--arrow-spacing-xxs);
|
|
9
|
+
color: var(--arrow-c-mono2);
|
|
10
|
+
font-weight: var(--arrow-fw-semi-bold);
|
|
11
|
+
@media (--viewport-medium) {
|
|
12
|
+
margin-bottom: var(--arrow-spacing-xs);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.wrapper .headline {
|
|
17
|
+
display: inline;
|
|
18
|
+
margin-bottom: var(--arrow-spacing-xs);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.dark {
|
|
22
|
+
color: var(--arrow-c-mono2);
|
|
23
|
+
}
|
|
24
|
+
.light {
|
|
25
|
+
color: var(--arrow-c-invert-mono2);
|
|
26
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import { Link } from "@quintype/components";
|
|
4
|
+
import { useStateValue } from "../../SharedContext";
|
|
5
|
+
import get from "lodash.get";
|
|
6
|
+
import { getTextColor, isExternalStory, getStoryUrl } from "../../../utils/utils";
|
|
7
|
+
|
|
8
|
+
import "./headline.m.css";
|
|
9
|
+
import { PremiumStoryIcon } from "../PremiumStoryIcon";
|
|
10
|
+
|
|
11
|
+
export const Headline = ({ story, headerLevel, premiumStoryIconConfig = {}, isLink }) => {
|
|
12
|
+
const configData = useStateValue() || {};
|
|
13
|
+
const { iconColor = "#F7B500", iconStyle = "star", enablePremiumStoryIcon = false } = premiumStoryIconConfig;
|
|
14
|
+
const alternateHeadline = get(story, ["alternative", "home", "default", "headline"]);
|
|
15
|
+
const premiumStory = enablePremiumStoryIcon && get(story, ["access"]) === "subscription";
|
|
16
|
+
const headline = alternateHeadline || story.headline;
|
|
17
|
+
const HeaderTag = "h" + headerLevel;
|
|
18
|
+
|
|
19
|
+
const positionHeadline = () => {
|
|
20
|
+
switch (parseInt(headerLevel)) {
|
|
21
|
+
case 1:
|
|
22
|
+
return "-2px";
|
|
23
|
+
case 2:
|
|
24
|
+
return "2px";
|
|
25
|
+
case 3:
|
|
26
|
+
return "4px";
|
|
27
|
+
case 4:
|
|
28
|
+
return "5px";
|
|
29
|
+
default:
|
|
30
|
+
return "6px";
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
const textColor = getTextColor(configData.theme);
|
|
35
|
+
const wrapperClass = premiumStory ? "wrapper" : "";
|
|
36
|
+
const iconSize = "24px";
|
|
37
|
+
|
|
38
|
+
return (
|
|
39
|
+
<div className="arrow-component arr--headline" styleName={wrapperClass} data-test-id="headline">
|
|
40
|
+
{premiumStory && (
|
|
41
|
+
<PremiumStoryIcon
|
|
42
|
+
width={iconSize}
|
|
43
|
+
height={iconSize}
|
|
44
|
+
color={iconColor}
|
|
45
|
+
iconType={iconStyle}
|
|
46
|
+
positionTop={positionHeadline()}
|
|
47
|
+
/>
|
|
48
|
+
)}
|
|
49
|
+
{isLink ? (
|
|
50
|
+
<Link href={getStoryUrl(story, `/${story.slug}`)} externalLink={isExternalStory(story)} aria-label="headline">
|
|
51
|
+
<HeaderTag styleName={`headline ${textColor}`}>{headline}</HeaderTag>
|
|
52
|
+
</Link>
|
|
53
|
+
) : (
|
|
54
|
+
<HeaderTag styleName={`headline ${textColor}`}>{headline}</HeaderTag>
|
|
55
|
+
)}
|
|
56
|
+
</div>
|
|
57
|
+
);
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
Headline.propTypes = {
|
|
61
|
+
/** The Story Object from the API response */
|
|
62
|
+
story: PropTypes.object.isRequired,
|
|
63
|
+
/** Header tags ranging h1-h6, where h[headerLevel] */
|
|
64
|
+
headerLevel: PropTypes.string,
|
|
65
|
+
premiumStoryIconConfig: PropTypes.shape({
|
|
66
|
+
iconColor: PropTypes.string,
|
|
67
|
+
iconType: PropTypes.string,
|
|
68
|
+
enablePremiumStoryIcon: PropTypes.bool
|
|
69
|
+
}),
|
|
70
|
+
isLink: PropTypes.bool
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
Headline.defaultProps = {
|
|
74
|
+
headerLevel: "6",
|
|
75
|
+
isLink: true
|
|
76
|
+
};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { generateStory } from "../../Fixture";
|
|
3
|
+
import { optionalSelect, withStore } from "../../../../storybook";
|
|
4
|
+
|
|
5
|
+
import { Headline } from "./index";
|
|
6
|
+
import Readme from "./README.md";
|
|
7
|
+
import { boolean, color } from "@storybook/addon-knobs";
|
|
8
|
+
|
|
9
|
+
const story = generateStory();
|
|
10
|
+
|
|
11
|
+
const headerLevelOptions = {
|
|
12
|
+
"No Value": "",
|
|
13
|
+
h1: 1,
|
|
14
|
+
h2: 2,
|
|
15
|
+
h3: 3,
|
|
16
|
+
h4: 4,
|
|
17
|
+
h5: 5,
|
|
18
|
+
h6: 6
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
const iconType = {
|
|
22
|
+
Star: "star",
|
|
23
|
+
Crown: "crown",
|
|
24
|
+
Lock: "lock",
|
|
25
|
+
Key: "key"
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
withStore(
|
|
29
|
+
"Atoms/Headline",
|
|
30
|
+
{
|
|
31
|
+
qt: {
|
|
32
|
+
config: {
|
|
33
|
+
"cdn-image": "thumbor-stg.assettype.com"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
Readme
|
|
38
|
+
).add(
|
|
39
|
+
"default",
|
|
40
|
+
() => (
|
|
41
|
+
<Headline
|
|
42
|
+
story={story}
|
|
43
|
+
headerLevel={optionalSelect("Header level", headerLevelOptions)}
|
|
44
|
+
premiumStoryIconConfig={{
|
|
45
|
+
iconColor: color("Icon color", "#F7B500"),
|
|
46
|
+
iconStyle: optionalSelect("Icon Types", iconType),
|
|
47
|
+
enablePremiumStoryIcon: boolean("Enable Premium Icon", true)
|
|
48
|
+
}}
|
|
49
|
+
/>
|
|
50
|
+
),
|
|
51
|
+
Readme
|
|
52
|
+
);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# HeroImage
|
|
2
|
+
Displays the Hero Image for a story with the help of the `ResponsiveHeroImage` component from the `@quintype/components` package.
|
|
3
|
+
|
|
4
|
+
## Usage
|
|
5
|
+
```jsx
|
|
6
|
+
<HeroImage story={story} />
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
```jsx
|
|
10
|
+
<HeroImage story={story} FullBleed={false} />
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
<!-- PROPS -->
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
@custom-media --viewport-medium (width >= 768px);
|
|
2
|
+
|
|
3
|
+
.hero-image {
|
|
4
|
+
margin-bottom: var(--arrow-spacing-xs);
|
|
5
|
+
padding-right: 0;
|
|
6
|
+
flex-grow: 1;
|
|
7
|
+
}
|
|
8
|
+
.right-padding {
|
|
9
|
+
margin-bottom: 0;
|
|
10
|
+
padding-right: var(--arrow-spacing-s);
|
|
11
|
+
flex-grow: 1;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.left-padding {
|
|
15
|
+
margin-bottom: 0;
|
|
16
|
+
padding-left: var(--arrow-spacing-s);
|
|
17
|
+
flex-grow: 1;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.right-padding-mob {
|
|
21
|
+
margin-bottom: 0;
|
|
22
|
+
padding-right: var(--arrow-spacing-s);
|
|
23
|
+
flex-grow: 1;
|
|
24
|
+
flex-basis: 30%;
|
|
25
|
+
@media (--viewport-medium) {
|
|
26
|
+
padding-right: 0;
|
|
27
|
+
margin-bottom: var(--arrow-spacing-xs);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.placeholder {
|
|
32
|
+
background-color: lightgray;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
html[dir="rtl"] {
|
|
36
|
+
.right-padding,
|
|
37
|
+
.right-padding-mob {
|
|
38
|
+
padding-right: 0;
|
|
39
|
+
padding-left: var(--arrow-spacing-s);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.right-padding-mob {
|
|
43
|
+
@media (--viewport-medium) {
|
|
44
|
+
padding-left: 0;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.hero-image-mob {
|
|
50
|
+
margin-bottom: var(--arrow-spacing-xs);
|
|
51
|
+
padding-right: 0;
|
|
52
|
+
flex-grow: 1;
|
|
53
|
+
@media (--viewport-medium) {
|
|
54
|
+
/* margin-bottom: 0; */
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
.with-padding {
|
|
58
|
+
padding: 16px 16px 0 16px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.image {
|
|
62
|
+
position: relative;
|
|
63
|
+
}
|
|
64
|
+
.image img {
|
|
65
|
+
position: absolute;
|
|
66
|
+
top: 0;
|
|
67
|
+
bottom: 0;
|
|
68
|
+
left: 0;
|
|
69
|
+
right: 0;
|
|
70
|
+
height: 100%;
|
|
71
|
+
}
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
import { Link, ResponsiveHeroImage, ResponsiveImage } from "@quintype/components";
|
|
2
|
+
import get from "lodash.get";
|
|
3
|
+
import PropTypes from "prop-types";
|
|
4
|
+
import React from "react";
|
|
5
|
+
import { useSelector } from "react-redux";
|
|
6
|
+
import { clientWidth, isExternalStory, getStoryUrl } from "../../../utils/utils";
|
|
7
|
+
import { useStateValue } from "../../SharedContext";
|
|
8
|
+
import { FallbackImage } from "../FallbackImage";
|
|
9
|
+
import "./hero-image.m.css";
|
|
10
|
+
|
|
11
|
+
export const HeroImage = ({
|
|
12
|
+
story,
|
|
13
|
+
FullBleed,
|
|
14
|
+
aspectRatio,
|
|
15
|
+
defaultWidth,
|
|
16
|
+
widths,
|
|
17
|
+
isHorizontal,
|
|
18
|
+
isHorizontalMobile,
|
|
19
|
+
isHorizontalWithImageLast,
|
|
20
|
+
defaultFallback,
|
|
21
|
+
isStoryPageImage
|
|
22
|
+
}) => {
|
|
23
|
+
const { fallbackImageUrl = "" } = useStateValue() || {};
|
|
24
|
+
|
|
25
|
+
const showImagePlaceholder = useSelector((state) => get(state, ["qt", "config", "showPlaceholder"]));
|
|
26
|
+
const getPlaceholderStyleName = showImagePlaceholder ? "placeholder" : "";
|
|
27
|
+
|
|
28
|
+
const fullBleed = FullBleed ? "" : "with-padding";
|
|
29
|
+
|
|
30
|
+
let heroImageClass = "hero-image";
|
|
31
|
+
if (isHorizontal) heroImageClass = "right-padding";
|
|
32
|
+
else if (isHorizontalWithImageLast) heroImageClass = "left-padding";
|
|
33
|
+
|
|
34
|
+
const heroImageMobClasses = isHorizontalMobile ? "right-padding-mob" : "";
|
|
35
|
+
|
|
36
|
+
const getPadding = (aspectRatio) => {
|
|
37
|
+
const [height, width] = aspectRatio;
|
|
38
|
+
if (height > 0 && width > 0) {
|
|
39
|
+
const padding = (width / height) * 100;
|
|
40
|
+
return padding;
|
|
41
|
+
}
|
|
42
|
+
return 0;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
const [mobileAspectRatio, desktopAspectRatio = mobileAspectRatio] = aspectRatio;
|
|
46
|
+
const isMobile = clientWidth("mobile");
|
|
47
|
+
|
|
48
|
+
const imageAspectRatio = isMobile ? mobileAspectRatio : desktopAspectRatio;
|
|
49
|
+
const imagePadding = isMobile ? getPadding(mobileAspectRatio) : getPadding(desktopAspectRatio);
|
|
50
|
+
const slug =
|
|
51
|
+
get(story, ["hero-image-s3-key"]) ||
|
|
52
|
+
get(story, ["alternative", "home", "default", "hero-image", "hero-image-s3-key"]);
|
|
53
|
+
|
|
54
|
+
const fallbackImage = () => {
|
|
55
|
+
if (!slug) {
|
|
56
|
+
if (fallbackImageUrl) {
|
|
57
|
+
return (
|
|
58
|
+
<figure
|
|
59
|
+
styleName={`image ${getPlaceholderStyleName}`}
|
|
60
|
+
className="arr--responsive-hero-image"
|
|
61
|
+
style={{
|
|
62
|
+
paddingTop: imagePadding + `%`
|
|
63
|
+
}}>
|
|
64
|
+
<ResponsiveImage
|
|
65
|
+
slug={!isStoryPageImage && fallbackImageUrl}
|
|
66
|
+
metadata={{}}
|
|
67
|
+
aspect-ratio={imageAspectRatio}
|
|
68
|
+
defaultWidth={defaultWidth}
|
|
69
|
+
widths={widths}
|
|
70
|
+
imgParams={{ auto: ["format", "compress"], fit: "max" }}
|
|
71
|
+
className=""
|
|
72
|
+
alt={"image-fallback"}
|
|
73
|
+
/>
|
|
74
|
+
</figure>
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
return (
|
|
79
|
+
<>
|
|
80
|
+
{defaultFallback ? (
|
|
81
|
+
<div
|
|
82
|
+
styleName={`image ${getPlaceholderStyleName}`}
|
|
83
|
+
className="arr--fallback-hero-image"
|
|
84
|
+
data-test-id="arr--fallback-hero-image"
|
|
85
|
+
style={{
|
|
86
|
+
paddingTop: imagePadding + `%`
|
|
87
|
+
}}>
|
|
88
|
+
<FallbackImage />
|
|
89
|
+
</div>
|
|
90
|
+
) : null}
|
|
91
|
+
</>
|
|
92
|
+
);
|
|
93
|
+
}
|
|
94
|
+
return (
|
|
95
|
+
<figure
|
|
96
|
+
styleName={`image ${getPlaceholderStyleName}`}
|
|
97
|
+
className="arr--responsive-hero-image"
|
|
98
|
+
style={{ paddingTop: imagePadding + `%` }}>
|
|
99
|
+
<ResponsiveHeroImage
|
|
100
|
+
story={story}
|
|
101
|
+
aspectRatio={imageAspectRatio}
|
|
102
|
+
defaultWidth={defaultWidth}
|
|
103
|
+
widths={widths}
|
|
104
|
+
imgParams={{ auto: ["format", "compress"], fit: "max" }}
|
|
105
|
+
/>
|
|
106
|
+
</figure>
|
|
107
|
+
);
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
return (
|
|
111
|
+
story &&
|
|
112
|
+
(isStoryPageImage ? (
|
|
113
|
+
<div
|
|
114
|
+
className="arr--hero-image"
|
|
115
|
+
data-test-id="arr--hero-image"
|
|
116
|
+
styleName={`${heroImageClass} ${fullBleed} ${heroImageMobClasses}`}>
|
|
117
|
+
{fallbackImage()}
|
|
118
|
+
</div>
|
|
119
|
+
) : (
|
|
120
|
+
<Link
|
|
121
|
+
className="arr--hero-image"
|
|
122
|
+
data-test-id="arr--hero-image"
|
|
123
|
+
href={getStoryUrl(story, `/${story.slug}`)}
|
|
124
|
+
externalLink={isExternalStory(story)}
|
|
125
|
+
styleName={`${heroImageClass} ${fullBleed} ${heroImageMobClasses}`}
|
|
126
|
+
aria-label="fallback-hero-image">
|
|
127
|
+
{fallbackImage()}
|
|
128
|
+
</Link>
|
|
129
|
+
))
|
|
130
|
+
);
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
HeroImage.propTypes = {
|
|
134
|
+
/** The Story Object from the API response */
|
|
135
|
+
story: PropTypes.object.isRequired,
|
|
136
|
+
/** Removes the Hero Image padding for the image to bleed over the margin */
|
|
137
|
+
FullBleed: PropTypes.bool,
|
|
138
|
+
/** The default width for the image, in case the browser does not support srcset */
|
|
139
|
+
defaultWidth: PropTypes.number,
|
|
140
|
+
/** The list of available widths */
|
|
141
|
+
widths: PropTypes.array,
|
|
142
|
+
// fatch the correct hero image
|
|
143
|
+
aspectRatio: PropTypes.array,
|
|
144
|
+
|
|
145
|
+
// Hints for the browser to choose the best size
|
|
146
|
+
/** This prop is responsible for adding padding-right of the image and remove padding bottom of the image */
|
|
147
|
+
isHorizontal: PropTypes.bool,
|
|
148
|
+
/** This prop is responsible for adding padding-bottom in desktop and padding-right in mobile */
|
|
149
|
+
isHorizontalMobile: PropTypes.bool,
|
|
150
|
+
// this prop is responsive for rendering fallback image on story page
|
|
151
|
+
defaultFallback: PropTypes.bool,
|
|
152
|
+
isHorizontalWithImageLast: PropTypes.bool
|
|
153
|
+
};
|
|
154
|
+
|
|
155
|
+
HeroImage.defaultProps = {
|
|
156
|
+
FullBleed: true,
|
|
157
|
+
aspectRatio: [[1, 1], [16, 9]],
|
|
158
|
+
defaultWidth: 480,
|
|
159
|
+
widths: [250, 480, 640],
|
|
160
|
+
isHorizontal: false,
|
|
161
|
+
isHorizontalMobile: false,
|
|
162
|
+
defaultFallback: true,
|
|
163
|
+
isStoryPageImage: false,
|
|
164
|
+
isHorizontalWithImageLast: false
|
|
165
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { generateStory } from "../../Fixture";
|
|
3
|
+
import { HeroImage } from "./index";
|
|
4
|
+
import Readme from "./README.md";
|
|
5
|
+
|
|
6
|
+
import { withStore } from "../../../../storybook";
|
|
7
|
+
|
|
8
|
+
const story = generateStory();
|
|
9
|
+
|
|
10
|
+
withStore(
|
|
11
|
+
"Atoms/Hero Image",
|
|
12
|
+
{
|
|
13
|
+
qt: {
|
|
14
|
+
config: {
|
|
15
|
+
"cdn-image": "thumbor-stg.assettype.com"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
Readme
|
|
20
|
+
)
|
|
21
|
+
.add("Full Bleed Image", () => <HeroImage story={story} />)
|
|
22
|
+
.add("With Padding Image", () => <HeroImage story={story} FullBleed={false} aspectRatio={[[1, 1], [16, 9]]} />);
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
|
|
4
|
+
export const LoadMoreTarget = ({ collection, componentName, offset, limit }) => {
|
|
5
|
+
return (
|
|
6
|
+
<div
|
|
7
|
+
id={`ELM-${collection.id}`}
|
|
8
|
+
data-collection-slug={collection["slug"]}
|
|
9
|
+
data-component-name={componentName}
|
|
10
|
+
data-collection-offset={offset}
|
|
11
|
+
data-collection-limit={limit}
|
|
12
|
+
/>
|
|
13
|
+
);
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
LoadMoreTarget.propTypes = {
|
|
17
|
+
collection: PropTypes.shape({
|
|
18
|
+
id: PropTypes.string,
|
|
19
|
+
slug: PropTypes.string
|
|
20
|
+
}),
|
|
21
|
+
componentName: PropTypes.string,
|
|
22
|
+
offset: PropTypes.number,
|
|
23
|
+
limit: PropTypes.number
|
|
24
|
+
};
|
|
File without changes
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
+
|
|
3
|
+
exports[`Load more button Should render button and load items subsequently with SubsequentLoadCount as template property. 1`] = `
|
|
4
|
+
<div
|
|
5
|
+
className="arr--button load-more-m_button__1mmf1 load-more-m_dark__3dfzb load-more-m_default__2_k4V"
|
|
6
|
+
data-test-id="load-more"
|
|
7
|
+
>
|
|
8
|
+
Read More
|
|
9
|
+
</div>
|
|
10
|
+
`;
|
|
11
|
+
|
|
12
|
+
exports[`Load more button Should render button and navigate to the corresponding url with NavigateToPage as template property. 1`] = `
|
|
13
|
+
<a
|
|
14
|
+
aria-label="load-more"
|
|
15
|
+
data-test-id="load-more"
|
|
16
|
+
href="/"
|
|
17
|
+
onClick={[Function]}
|
|
18
|
+
>
|
|
19
|
+
<div
|
|
20
|
+
className="arr--button load-more-m_button__1mmf1 load-more-m_dark__3dfzb load-more-m_default__2_k4V"
|
|
21
|
+
>
|
|
22
|
+
Read More
|
|
23
|
+
</div>
|
|
24
|
+
</a>
|
|
25
|
+
`;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { LinkBase } from "@quintype/components";
|
|
3
|
+
import PropTypes from "prop-types";
|
|
4
|
+
import { getTextColor, generateNavigateSlug } from "../../../utils/utils";
|
|
5
|
+
import "./load-more.m.css";
|
|
6
|
+
|
|
7
|
+
export const LoadmoreButton = ({
|
|
8
|
+
config = {},
|
|
9
|
+
collection,
|
|
10
|
+
template = "SubsequentLoadCount",
|
|
11
|
+
onClick,
|
|
12
|
+
navigate,
|
|
13
|
+
qtConfig
|
|
14
|
+
}) => {
|
|
15
|
+
const { showButton = true, buttonText = "Read More", theme = "", customUrlPath = "" } = config;
|
|
16
|
+
if (!showButton) return null;
|
|
17
|
+
|
|
18
|
+
const textColor = getTextColor(theme);
|
|
19
|
+
const slug = customUrlPath ? `/${customUrlPath}` : generateNavigateSlug(collection, { ...qtConfig, ...config });
|
|
20
|
+
|
|
21
|
+
return template === "SubsequentLoadCount" ? (
|
|
22
|
+
<div className="arr--button" styleName={`button ${textColor} default`} onClick={onClick} data-test-id="load-more">
|
|
23
|
+
{buttonText}
|
|
24
|
+
</div>
|
|
25
|
+
) : (
|
|
26
|
+
<LinkBase href={slug} navigateTo={navigate} data-test-id="load-more" aria-label="load-more">
|
|
27
|
+
<div className="arr--button" styleName={`button ${textColor} default`}>
|
|
28
|
+
{buttonText}
|
|
29
|
+
</div>
|
|
30
|
+
</LinkBase>
|
|
31
|
+
);
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
LoadmoreButton.propTypes = {
|
|
35
|
+
collection: PropTypes.object,
|
|
36
|
+
template: PropTypes.string,
|
|
37
|
+
config: PropTypes.object,
|
|
38
|
+
onClick: PropTypes.func,
|
|
39
|
+
navigate: PropTypes.func,
|
|
40
|
+
qtConfig: PropTypes.object
|
|
41
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
.button {
|
|
2
|
+
padding: var(--arrow-spacing-xs) var(--arrow-spacing-l);
|
|
3
|
+
border: 1px solid;
|
|
4
|
+
display: flex;
|
|
5
|
+
margin: var(--arrow-spacing-m) auto var(--arrow-spacing-xs) auto;
|
|
6
|
+
font-size: var(--arrow-fs-xs);
|
|
7
|
+
border-radius: var(--arrow-spacing-xxs);
|
|
8
|
+
background-color: transparent;
|
|
9
|
+
width: fit-content;
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.default {
|
|
14
|
+
display: block;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.dark {
|
|
18
|
+
color: var(--arrow-c-mono2);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.light {
|
|
22
|
+
color: var(--arrow-c-invert-mono2);
|
|
23
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import renderer from "react-test-renderer";
|
|
3
|
+
import { LoadmoreButton } from "./index";
|
|
4
|
+
import { Provider } from "react-redux";
|
|
5
|
+
import { generateStore, generateCollection } from "../../Fixture";
|
|
6
|
+
|
|
7
|
+
const collection = generateCollection();
|
|
8
|
+
|
|
9
|
+
describe("Load more button", () => {
|
|
10
|
+
it("Should render button and load items subsequently with SubsequentLoadCount as template property.", () => {
|
|
11
|
+
const wrapper = renderer
|
|
12
|
+
.create(
|
|
13
|
+
<Provider store={generateStore}>
|
|
14
|
+
<LoadmoreButton template="SubsequentLoadCount" collection={collection} />
|
|
15
|
+
</Provider>
|
|
16
|
+
)
|
|
17
|
+
.toJSON();
|
|
18
|
+
expect(wrapper).toMatchSnapshot();
|
|
19
|
+
});
|
|
20
|
+
it("Should render button and navigate to the corresponding url with NavigateToPage as template property.", () => {
|
|
21
|
+
const wrapper = renderer
|
|
22
|
+
.create(
|
|
23
|
+
<Provider store={generateStore}>
|
|
24
|
+
<LoadmoreButton template="NavigateToPage" collection={collection} />
|
|
25
|
+
</Provider>
|
|
26
|
+
)
|
|
27
|
+
.toJSON();
|
|
28
|
+
expect(wrapper).toMatchSnapshot();
|
|
29
|
+
});
|
|
30
|
+
});
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { withStore, optionalSelect } from "../../../../storybook";
|
|
3
|
+
import { LoadmoreButton } from "./index";
|
|
4
|
+
import Readme from "./README.md";
|
|
5
|
+
import { generateCollection } from "../../Fixture";
|
|
6
|
+
|
|
7
|
+
const collection = generateCollection();
|
|
8
|
+
|
|
9
|
+
const buttonOptions = {
|
|
10
|
+
NavigateToPage: "NavigateToPage",
|
|
11
|
+
SubsequentLoadCount: "SubsequentLoadCount",
|
|
12
|
+
CustomUrlPath: "CustomUrlPath"
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
withStore("Atoms/Button", {}, Readme).add("Buttons Options", () => (
|
|
16
|
+
<LoadmoreButton collection={collection} template={optionalSelect("Button Options", buttonOptions)} />
|
|
17
|
+
));
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# MagazineCoverImage
|
|
2
|
+
|
|
3
|
+
Magazine cover image is used to represent the cover of the magazine.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
Import the MagazineCoverImage and pass collection, props and the config.
|
|
8
|
+
|
|
9
|
+
```jsx
|
|
10
|
+
import { MagazineCoverImage } from "@quintype/arrow";
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Use as a component
|
|
14
|
+
|
|
15
|
+
```jsx
|
|
16
|
+
const contextConfig = {
|
|
17
|
+
theme: #333333;
|
|
18
|
+
};
|
|
19
|
+
<MagazineCoverImage collection={collection} config={contextConfig} >
|
|
20
|
+
|
|
21
|
+
```
|