@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,150 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { StoryCard } from "../../Molecules/StoryCard";
|
|
3
|
+
import { CollectionName } from "../../Atoms/CollectionName";
|
|
4
|
+
import { generateNavigateSlug, getTextColor, navigateTo } from "../../../utils/utils";
|
|
5
|
+
import { collectionToStories } from "@quintype/components";
|
|
6
|
+
import { HeroImage } from "../../Atoms/HeroImage";
|
|
7
|
+
import { StorycardContent } from "../../Molecules/StorycardContent";
|
|
8
|
+
import { Headline } from "../../Atoms/Headline";
|
|
9
|
+
import { AuthorWithTime } from "../../Atoms/AuthorWithTimestamp";
|
|
10
|
+
import { SectionTag } from "../../Atoms/SectionTag";
|
|
11
|
+
import PropTypes from "prop-types";
|
|
12
|
+
import { StateProvider } from "../../SharedContext";
|
|
13
|
+
import "./list-component.m.css";
|
|
14
|
+
import { Subheadline } from "../../Atoms/Subheadline";
|
|
15
|
+
import { LoadmoreButton } from "../../Atoms/Loadmore";
|
|
16
|
+
import { useDispatch, useSelector } from "react-redux";
|
|
17
|
+
import get from "lodash.get";
|
|
18
|
+
|
|
19
|
+
const ListComponent = ({ collection, config = {}, getMoreStories, limit, hideButton }) => {
|
|
20
|
+
const storyItems = collectionToStories(collection);
|
|
21
|
+
if (storyItems.length < 1) {
|
|
22
|
+
return null;
|
|
23
|
+
}
|
|
24
|
+
const {
|
|
25
|
+
collectionNameBorderColor = "",
|
|
26
|
+
borderColor = "",
|
|
27
|
+
theme = "",
|
|
28
|
+
border = "",
|
|
29
|
+
collectionNameTemplate = "",
|
|
30
|
+
footerButton = "",
|
|
31
|
+
localizationConfig = {}
|
|
32
|
+
} = config;
|
|
33
|
+
|
|
34
|
+
const dispatch = useDispatch();
|
|
35
|
+
const qtConfig = useSelector((state) => get(state, ["qt", "config"], {}));
|
|
36
|
+
const url = generateNavigateSlug(collection, qtConfig);
|
|
37
|
+
|
|
38
|
+
const borderHandler = (story) => {
|
|
39
|
+
switch (border) {
|
|
40
|
+
case "bottom":
|
|
41
|
+
return (
|
|
42
|
+
<div styleName="one-col-border-bottom">
|
|
43
|
+
<StoryCard
|
|
44
|
+
story={story}
|
|
45
|
+
theme={theme}
|
|
46
|
+
headerLevel="4"
|
|
47
|
+
isHorizontal
|
|
48
|
+
border={border}
|
|
49
|
+
aspectRatio={[[4, 3]]}
|
|
50
|
+
borderColor={borderColor}
|
|
51
|
+
prefix="By"
|
|
52
|
+
config={config}
|
|
53
|
+
/>
|
|
54
|
+
</div>
|
|
55
|
+
);
|
|
56
|
+
case "full":
|
|
57
|
+
return (
|
|
58
|
+
<div styleName="one-col-border-full">
|
|
59
|
+
<StoryCard
|
|
60
|
+
story={story}
|
|
61
|
+
border={border}
|
|
62
|
+
theme={theme}
|
|
63
|
+
isHorizontal
|
|
64
|
+
borderColor={borderColor}
|
|
65
|
+
config={config}>
|
|
66
|
+
<HeroImage story={story} isHorizontal aspectRatio={[[4, 3]]} />
|
|
67
|
+
<div styleName="story-card-content-wrapper">
|
|
68
|
+
<StorycardContent story={story} borderColor={borderColor} config={config}>
|
|
69
|
+
<SectionTag story={story} />
|
|
70
|
+
<Headline story={story} headerLevel="4" premiumStoryIconConfig={config} />
|
|
71
|
+
<Subheadline story={story} />
|
|
72
|
+
<AuthorWithTime config={localizationConfig} story={story} prefix="By" />
|
|
73
|
+
</StorycardContent>
|
|
74
|
+
</div>
|
|
75
|
+
</StoryCard>
|
|
76
|
+
</div>
|
|
77
|
+
);
|
|
78
|
+
default:
|
|
79
|
+
return (
|
|
80
|
+
<div styleName="one-col-border-default">
|
|
81
|
+
<StoryCard
|
|
82
|
+
story={story}
|
|
83
|
+
theme={theme}
|
|
84
|
+
headerLevel="4"
|
|
85
|
+
isHorizontal
|
|
86
|
+
border={border}
|
|
87
|
+
aspectRatio={[[4, 3]]}
|
|
88
|
+
borderColor={borderColor}
|
|
89
|
+
prefix="By"
|
|
90
|
+
config={config}
|
|
91
|
+
/>
|
|
92
|
+
</div>
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
const textColor = getTextColor(theme);
|
|
98
|
+
|
|
99
|
+
return (
|
|
100
|
+
<div className="full-width-with-padding arrow-component" style={{ backgroundColor: theme, color: textColor }}>
|
|
101
|
+
<div styleName="list-wrapper ">
|
|
102
|
+
<CollectionName
|
|
103
|
+
collection={collection}
|
|
104
|
+
collectionNameTemplate={collectionNameTemplate}
|
|
105
|
+
collectionNameBorderColor={collectionNameBorderColor}
|
|
106
|
+
/>
|
|
107
|
+
<div styleName="wrapper" style={{ backgroundColor: theme, color: textColor }}>
|
|
108
|
+
<div styleName="list">
|
|
109
|
+
{storyItems.slice(0, limit).map((story, index) => {
|
|
110
|
+
return <div key={`default-${index}`}>{borderHandler(story)}</div>;
|
|
111
|
+
})}
|
|
112
|
+
</div>
|
|
113
|
+
</div>
|
|
114
|
+
{!hideButton && (
|
|
115
|
+
<div>
|
|
116
|
+
{getMoreStories ? (
|
|
117
|
+
<LoadmoreButton
|
|
118
|
+
onClick={getMoreStories}
|
|
119
|
+
template={footerButton}
|
|
120
|
+
config={config}
|
|
121
|
+
navigate={() => navigateTo(dispatch, url)}
|
|
122
|
+
qtConfig={qtConfig}
|
|
123
|
+
/>
|
|
124
|
+
) : null}
|
|
125
|
+
</div>
|
|
126
|
+
)}
|
|
127
|
+
</div>
|
|
128
|
+
</div>
|
|
129
|
+
);
|
|
130
|
+
};
|
|
131
|
+
ListComponent.propTypes = {
|
|
132
|
+
/** collection is the array of objects which is returning by API */
|
|
133
|
+
collection: PropTypes.object.isRequired,
|
|
134
|
+
/** The config for the Row */
|
|
135
|
+
config: PropTypes.shape({
|
|
136
|
+
borderColor: PropTypes.string,
|
|
137
|
+
theme: PropTypes.string,
|
|
138
|
+
border: PropTypes.string,
|
|
139
|
+
footerButton: PropTypes.string,
|
|
140
|
+
// row title style
|
|
141
|
+
collectionNameTemplate: PropTypes.string,
|
|
142
|
+
// row title style colour
|
|
143
|
+
collectionNameBorderColor: PropTypes.string
|
|
144
|
+
}),
|
|
145
|
+
getMoreStories: PropTypes.object.isRequired,
|
|
146
|
+
limit: PropTypes.number,
|
|
147
|
+
hideButton: PropTypes.bool
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
export default StateProvider(ListComponent);
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
@custom-media --viewport-medium (width >= 768px);
|
|
2
|
+
@custom-media --viewport-small (width < 768px);
|
|
3
|
+
|
|
4
|
+
.list-wrapper {
|
|
5
|
+
padding: var(--arrow-spacing-s);
|
|
6
|
+
}
|
|
7
|
+
.wrapper {
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: column;
|
|
10
|
+
margin: var(--arrow-spacing-xs) 0;
|
|
11
|
+
@media (--viewport-medium) {
|
|
12
|
+
display: grid;
|
|
13
|
+
grid-template-columns: repeat(2, 1fr);
|
|
14
|
+
grid-column-gap: 44px;
|
|
15
|
+
margin: var(--arrow-spacing-m) 0;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.one-col-border-full {
|
|
20
|
+
margin-bottom: var(--arrow-spacing-m);
|
|
21
|
+
@media (--viewport-medium) {
|
|
22
|
+
margin-bottom: var(--arrow-spacing-l);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
.one-col-border-bottom {
|
|
26
|
+
padding-top: var(--arrow-spacing-m);
|
|
27
|
+
}
|
|
28
|
+
.one-col-border-default {
|
|
29
|
+
margin-bottom: var(--arrow-spacing-m);
|
|
30
|
+
@media (--viewport-medium) {
|
|
31
|
+
margin-bottom: var(--arrow-spacing-l);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
.list {
|
|
35
|
+
grid-column: 1/3;
|
|
36
|
+
grid-row: 2/3;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.story-card-content-wrapper {
|
|
40
|
+
padding: var(--arrow-spacing-s) var(--arrow-spacing-xs) 0;
|
|
41
|
+
@media (--viewport-medium) {
|
|
42
|
+
padding: var(--arrow-spacing-m) var(--arrow-spacing-m) 0;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.list :global .arr--hero-image {
|
|
47
|
+
@media (--viewport-medium) {
|
|
48
|
+
padding-right: 24px;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
html[dir="rtl"] {
|
|
53
|
+
.list :global .arr--hero-image {
|
|
54
|
+
@media (--viewport-medium) {
|
|
55
|
+
padding-left: 24px;
|
|
56
|
+
padding-right: 0;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.list-wrapper :global(.arr--sub-headline) {
|
|
62
|
+
@media (--viewport-small) {
|
|
63
|
+
display: none;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import ListComponent from "./index";
|
|
2
|
+
import { withStore, optionalSelect, sectionTagTemplates, collectionNameTemplates } from "../../../../storybook";
|
|
3
|
+
|
|
4
|
+
import React from "react";
|
|
5
|
+
import { color, boolean, text } from "@storybook/addon-knobs";
|
|
6
|
+
import { generateCollection } from "../../Fixture/";
|
|
7
|
+
import readme from "./README.md";
|
|
8
|
+
|
|
9
|
+
const label = "color";
|
|
10
|
+
const defaultvalue = "#ffffff";
|
|
11
|
+
|
|
12
|
+
const collectionNameDefaultValue = "#3a9fdd";
|
|
13
|
+
const collectionNameBorderColorLabel = "Collection Name Border Color";
|
|
14
|
+
|
|
15
|
+
const sectionTagBorderColor = "Section Tag Border Color";
|
|
16
|
+
const sectionTagDefaultvalue = "#3a9fdd";
|
|
17
|
+
|
|
18
|
+
const collection = generateCollection({ stories: 10 });
|
|
19
|
+
const borderOptions = {
|
|
20
|
+
"No Value": "",
|
|
21
|
+
bottom: "bottom",
|
|
22
|
+
full: "full"
|
|
23
|
+
};
|
|
24
|
+
const footerButton = {
|
|
25
|
+
SubsequentLoadCount: "SubsequentLoadCount"
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
const getMoreStories = () => {
|
|
29
|
+
console.log("load more data");
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
withStore(
|
|
33
|
+
"Rows/List stories",
|
|
34
|
+
{
|
|
35
|
+
qt: {
|
|
36
|
+
config: {
|
|
37
|
+
"cdn-image": "thumbor-stg.assettype.com"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
readme
|
|
42
|
+
)
|
|
43
|
+
.addDecorator((story) => <div style={{ maxWidth: "1000px", margin: "auto" }}>{story()}</div>)
|
|
44
|
+
.add("Default", () => {
|
|
45
|
+
const contextConfig = {
|
|
46
|
+
collectionNameBorderColor: color(collectionNameBorderColorLabel, collectionNameDefaultValue),
|
|
47
|
+
borderColor: color(sectionTagBorderColor, sectionTagDefaultvalue),
|
|
48
|
+
theme: color(label, defaultvalue),
|
|
49
|
+
collectionNameTemplate: optionalSelect("Collection Name Templates", collectionNameTemplates),
|
|
50
|
+
sectionTagTemplate: optionalSelect("Section Tag Templates", sectionTagTemplates),
|
|
51
|
+
border: optionalSelect("Border Level", borderOptions),
|
|
52
|
+
showSection: boolean("Section disable", true),
|
|
53
|
+
showAuthor: boolean("Author disable", true),
|
|
54
|
+
showTime: boolean("Timestamp disable", true),
|
|
55
|
+
footerButton: optionalSelect("Footer Button", footerButton),
|
|
56
|
+
buttonText: text("Footer text", "Read More"),
|
|
57
|
+
showRowTitle: boolean("Row title", true),
|
|
58
|
+
initialLoadCount: text("Initial Load Count", 6),
|
|
59
|
+
showButton: boolean("Show button", true),
|
|
60
|
+
showReadTime: boolean("Read time", true)
|
|
61
|
+
};
|
|
62
|
+
return <ListComponent collection={collection} config={contextConfig} getMoreStories={getMoreStories} />;
|
|
63
|
+
});
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# MagazineEditions
|
|
2
|
+
|
|
3
|
+
Magazine Editions is used to represent the issues of a magazine.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
Import the MagazineEditions and pass magazine collection, props and the config.
|
|
8
|
+
|
|
9
|
+
```jsx
|
|
10
|
+
import { MagazineEditions } from "@quintype/arrow";
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Use as a component
|
|
14
|
+
|
|
15
|
+
```jsx
|
|
16
|
+
const contextConfig = {
|
|
17
|
+
theme: #333333;
|
|
18
|
+
};
|
|
19
|
+
<MagazineEditions collection={magazineCollection} config={contextConfig} >
|
|
20
|
+
|
|
21
|
+
```
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import { useDispatch, useSelector } from "react-redux";
|
|
4
|
+
import { MagazineCoverImageCard } from "../../Atoms/MagazineCoverImage";
|
|
5
|
+
import { CollectionName } from "../../Atoms/CollectionName";
|
|
6
|
+
import { generateNavigateSlug, getTextColor, getTimeStamp, navigateTo, timestampToFormat } from "../../../utils/utils";
|
|
7
|
+
import "./magazine-editions.m.css";
|
|
8
|
+
import { StateProvider } from "../../SharedContext";
|
|
9
|
+
import get from "lodash/get";
|
|
10
|
+
import { LoadmoreButton } from "../../Atoms/Loadmore";
|
|
11
|
+
|
|
12
|
+
const MagazineEditions = ({ collection = [], config = {}, onClick, limit, showLoadmore = false }) => {
|
|
13
|
+
if (!collection.length) return null;
|
|
14
|
+
const {
|
|
15
|
+
theme = "",
|
|
16
|
+
collectionNameTemplate = "",
|
|
17
|
+
showRowTitle = true,
|
|
18
|
+
rowTitle = "Other Issues",
|
|
19
|
+
editionNameFormat = "magazineDate",
|
|
20
|
+
template = "NavigateToPage"
|
|
21
|
+
} = config;
|
|
22
|
+
const textColor = getTextColor(theme);
|
|
23
|
+
let issues = collection.map((issue) => issue.collection) || [];
|
|
24
|
+
const qtConfig = useSelector((state) => get(state, ["qt", "config"], {}));
|
|
25
|
+
const dispatch = useDispatch();
|
|
26
|
+
const url = generateNavigateSlug(collection, { ...qtConfig, ...config });
|
|
27
|
+
|
|
28
|
+
return (
|
|
29
|
+
<div
|
|
30
|
+
className="full-width-with-padding arrow-component arr-magazine-issues"
|
|
31
|
+
style={{ backgroundColor: theme, color: textColor }}
|
|
32
|
+
data-test-id="editions">
|
|
33
|
+
<div styleName={`container ${textColor}`}>
|
|
34
|
+
{showRowTitle && (
|
|
35
|
+
<CollectionName
|
|
36
|
+
collection={issues}
|
|
37
|
+
collectionNameTemplate={collectionNameTemplate}
|
|
38
|
+
customCollectionName={rowTitle}
|
|
39
|
+
navigate={false}
|
|
40
|
+
/>
|
|
41
|
+
)}
|
|
42
|
+
<div styleName="issues">
|
|
43
|
+
{issues.slice(0, limit).map((issue, index) => {
|
|
44
|
+
const { name, "created-at": createdAt, "collection-date": issueDate } = issue;
|
|
45
|
+
const date = issueDate || createdAt;
|
|
46
|
+
const timeStampConfig = {
|
|
47
|
+
isUpperCase: true,
|
|
48
|
+
disableMeridiem: true
|
|
49
|
+
};
|
|
50
|
+
return (
|
|
51
|
+
<div key={index} data-test-id={`current-issue-${index}`}>
|
|
52
|
+
<MagazineCoverImageCard collection={issue} config={{ ...config, isArchivePage: false }} />
|
|
53
|
+
<div styleName="date" data-test-id="issue-label">
|
|
54
|
+
{editionNameFormat === "magazineTitle"
|
|
55
|
+
? name
|
|
56
|
+
: getTimeStamp(date, timestampToFormat, timeStampConfig)}
|
|
57
|
+
</div>
|
|
58
|
+
</div>
|
|
59
|
+
);
|
|
60
|
+
})}
|
|
61
|
+
</div>
|
|
62
|
+
{showLoadmore && (
|
|
63
|
+
<LoadmoreButton
|
|
64
|
+
onClick={onClick}
|
|
65
|
+
template={template}
|
|
66
|
+
config={config}
|
|
67
|
+
qtConfig={qtConfig}
|
|
68
|
+
navigate={() => navigateTo(dispatch, url)}
|
|
69
|
+
/>
|
|
70
|
+
)}
|
|
71
|
+
</div>
|
|
72
|
+
</div>
|
|
73
|
+
);
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
MagazineEditions.propTypes = {
|
|
77
|
+
collection: PropTypes.array,
|
|
78
|
+
config: PropTypes.shape({
|
|
79
|
+
rowTitle: PropTypes.string,
|
|
80
|
+
collectionNameTemplate: PropTypes.string,
|
|
81
|
+
collectionNameBorderColor: PropTypes.string,
|
|
82
|
+
theme: PropTypes.string,
|
|
83
|
+
editionNameFormat: PropTypes.string,
|
|
84
|
+
showRowTitle: PropTypes.bool
|
|
85
|
+
}),
|
|
86
|
+
onClick: PropTypes.func,
|
|
87
|
+
limit: PropTypes.number,
|
|
88
|
+
showLoadmore: PropTypes.bool
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
export default StateProvider(MagazineEditions);
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
@value viewports: "../../../../assets/stylesheets/viewports.m.css";
|
|
2
|
+
@value mobile from viewports;
|
|
3
|
+
@value tablet from viewports;
|
|
4
|
+
|
|
5
|
+
.container {
|
|
6
|
+
margin: var(--arrow-spacing-m);
|
|
7
|
+
@media (min-width: mobile) {
|
|
8
|
+
margin: var(--arrow-spacing-l);
|
|
9
|
+
@media (min-width: tablet) {
|
|
10
|
+
margin: 0;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.issues {
|
|
16
|
+
display: grid;
|
|
17
|
+
grid-template-columns: repeat(2, 1fr);
|
|
18
|
+
grid-column-gap: var(--arrow-spacing-l);
|
|
19
|
+
grid-row-gap: var(--arrow-spacing-l);
|
|
20
|
+
@media (min-width: mobile) {
|
|
21
|
+
grid-template-columns: repeat(4, 1fr);
|
|
22
|
+
@media (min-width: tablet) {
|
|
23
|
+
grid-column-gap: 70px;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.date {
|
|
29
|
+
display: flex;
|
|
30
|
+
justify-content: center;
|
|
31
|
+
margin-top: var(--arrow-spacing-s);
|
|
32
|
+
font-weight: var(--arrow-fw-bold);
|
|
33
|
+
line-height: var(--arrow-lh-2);
|
|
34
|
+
font-size: var(--arrow-fs-xs);
|
|
35
|
+
@media (min-width: mobile) {
|
|
36
|
+
margin-top: var(--arrow-spacing-m);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.info {
|
|
41
|
+
text-align: center;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.dark {
|
|
45
|
+
color: var(--arrow-c-mono2);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.light {
|
|
49
|
+
color: var(--arrow-c-invert-mono2);
|
|
50
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { mount, shallow } from "enzyme";
|
|
3
|
+
import MagazineEditions from ".";
|
|
4
|
+
import { generateStore, generateMagazineIssues } from "../../Fixture";
|
|
5
|
+
import { Provider } from "react-redux";
|
|
6
|
+
|
|
7
|
+
const magazineCollection = generateMagazineIssues();
|
|
8
|
+
|
|
9
|
+
describe("MagazineEditions component", () => {
|
|
10
|
+
it("Should render template with array of collections", () => {
|
|
11
|
+
const contextConfig = {
|
|
12
|
+
collectionNameBorderColor: "",
|
|
13
|
+
theme: "",
|
|
14
|
+
collectionNameTemplate: "",
|
|
15
|
+
footerButton: "",
|
|
16
|
+
editionsTitle: "",
|
|
17
|
+
enableEditionsTitle: true,
|
|
18
|
+
title: ""
|
|
19
|
+
};
|
|
20
|
+
const wrapper = mount(
|
|
21
|
+
<Provider store={generateStore}>
|
|
22
|
+
<MagazineEditions collection={magazineCollection} config={contextConfig} />
|
|
23
|
+
);
|
|
24
|
+
</Provider>
|
|
25
|
+
);
|
|
26
|
+
expect(wrapper.find(MagazineEditions)).toHaveLength(1);
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
it("Should render `no editions message` if there are no editions", () => {
|
|
30
|
+
const wrapper = shallow(<MagazineEditions />);
|
|
31
|
+
expect(wrapper.find(MagazineEditions)).toHaveLength(0);
|
|
32
|
+
});
|
|
33
|
+
});
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { generateMagazineIssues } from "../../Fixture";
|
|
3
|
+
import MagazineEditions from "./index";
|
|
4
|
+
import Readme from "./README.md";
|
|
5
|
+
import { color, text, boolean } from "@storybook/addon-knobs";
|
|
6
|
+
import { withStore, optionalSelect, collectionNameTemplates } from "../../../../storybook";
|
|
7
|
+
|
|
8
|
+
const magazineCollection = generateMagazineIssues();
|
|
9
|
+
|
|
10
|
+
const footerButton = {
|
|
11
|
+
SubsequentLoadCount: "SubsequentLoadCount",
|
|
12
|
+
CustomUrlPath: "CustomUrlPath"
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
const collectionNameDefaultValue = "#3a9fdd";
|
|
16
|
+
const collectionNameBorderColorLabel = "Collection Name Border Color";
|
|
17
|
+
|
|
18
|
+
withStore(
|
|
19
|
+
"Rows/Magazine Editions",
|
|
20
|
+
{
|
|
21
|
+
qt: {
|
|
22
|
+
config: {
|
|
23
|
+
"cdn-image": "thumbor-stg.assettype.com",
|
|
24
|
+
mountAt: "/sub-directory"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
Readme
|
|
29
|
+
).add("Magazine Editions", () => {
|
|
30
|
+
const contextConfig = {
|
|
31
|
+
theme: color("Background Color", "#ffffff"),
|
|
32
|
+
showRowTitle: boolean("Show Row Title", true),
|
|
33
|
+
title: text("Magazine Row title", "Magazine Editions"),
|
|
34
|
+
collectionNameTemplate: optionalSelect("Collection row Templates", collectionNameTemplates),
|
|
35
|
+
collectionNameBorderColor: color(collectionNameBorderColorLabel, collectionNameDefaultValue),
|
|
36
|
+
buttonText: text("Footer text", "Read More"),
|
|
37
|
+
footerButton: optionalSelect("Button Settings", footerButton),
|
|
38
|
+
customUrlPath: text("Custom URL", ""),
|
|
39
|
+
enableEditionsTitle: boolean("Show Editions Title", true),
|
|
40
|
+
editionsTitle: text("Editions Title", "Magazine Title"),
|
|
41
|
+
showButton: boolean("Show Button", true),
|
|
42
|
+
initialLoadCount: text("Initial Load Count", 4)
|
|
43
|
+
};
|
|
44
|
+
return <MagazineEditions collection={magazineCollection} config={contextConfig} showLoadmore={true} />;
|
|
45
|
+
});
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# MagazineHeaderCard
|
|
2
|
+
|
|
3
|
+
Magazine Header Card is used to display the brief content of the magazine.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
Import the MagazineHeaderCard and pass collection as props and the config.
|
|
8
|
+
|
|
9
|
+
```jsx
|
|
10
|
+
import { MagazineHeaderCard } from "@quintype/arrow";
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Use as a component
|
|
14
|
+
|
|
15
|
+
```jsx
|
|
16
|
+
const contextConfig = {
|
|
17
|
+
theme: #333333;
|
|
18
|
+
};
|
|
19
|
+
<MagazineHeaderCard collection={collection} config={contextConfig}>
|
|
20
|
+
|
|
21
|
+
```
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import { CollectionName } from "../../Atoms/CollectionName";
|
|
4
|
+
import { LoadmoreButton } from "../../Atoms/Loadmore";
|
|
5
|
+
import { generateNavigateSlug, getTextColor, getTimeStamp, navigateTo, timestampToFormat } from "../../../utils/utils";
|
|
6
|
+
import "./magazine-cards.m.css";
|
|
7
|
+
import { StateProvider } from "../../SharedContext";
|
|
8
|
+
import { MagazineCoverImageCard } from "../../Atoms/MagazineCoverImage";
|
|
9
|
+
import { useDispatch, useSelector } from "react-redux";
|
|
10
|
+
import get from "lodash/get";
|
|
11
|
+
import upperCase from "lodash/upperCase";
|
|
12
|
+
|
|
13
|
+
const MagazineHeaderCard = ({ collection = {}, config = {} }) => {
|
|
14
|
+
const { "created-at": createdAt, "collection-date": issueDate, summary } = collection;
|
|
15
|
+
const { theme = "", customUrlPath = "", magazineTitle = "", magazinePageUrl = "", magazineSlug = "" } = config;
|
|
16
|
+
const textColor = getTextColor(theme);
|
|
17
|
+
const dispatch = useDispatch();
|
|
18
|
+
const qtConfig = useSelector((state) => get(state, ["qt", "config"], {}));
|
|
19
|
+
const url = generateNavigateSlug(collection, qtConfig, customUrlPath);
|
|
20
|
+
const date = issueDate || createdAt;
|
|
21
|
+
const timeStampConfig = {
|
|
22
|
+
isUpperCase: true,
|
|
23
|
+
disableMeridiem: true
|
|
24
|
+
};
|
|
25
|
+
return (
|
|
26
|
+
<div
|
|
27
|
+
className="full-width-with-padding arrow-component"
|
|
28
|
+
style={{ backgroundColor: theme }}
|
|
29
|
+
data-test-id="magazine-header-card">
|
|
30
|
+
<div className="arr-magazine-card" styleName="magazine-header intro-button">
|
|
31
|
+
<MagazineCoverImageCard collection={collection} config={{ ...config, magazineSlug }} />
|
|
32
|
+
<div styleName="content">
|
|
33
|
+
<div styleName={`time ${textColor}`} data-test-id="title-time">
|
|
34
|
+
<a href={magazinePageUrl} data-test-id="magazine-title" aria-label="magazine-title">
|
|
35
|
+
{upperCase(magazineTitle)}
|
|
36
|
+
</a>
|
|
37
|
+
|
|
|
38
|
+
{getTimeStamp(date, timestampToFormat, timeStampConfig)}
|
|
39
|
+
</div>
|
|
40
|
+
<CollectionName collection={collection} headerLevel="2" navigate={false} />
|
|
41
|
+
<div styleName={`summary ${textColor}`} data-test-id="magazine-summary">
|
|
42
|
+
{summary}
|
|
43
|
+
</div>
|
|
44
|
+
<LoadmoreButton
|
|
45
|
+
collection={collection}
|
|
46
|
+
template="customUrlPath"
|
|
47
|
+
config={config}
|
|
48
|
+
navigate={() => navigateTo(dispatch, url)}
|
|
49
|
+
qtConfig={qtConfig}
|
|
50
|
+
/>
|
|
51
|
+
</div>
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
);
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
MagazineHeaderCard.propTypes = {
|
|
58
|
+
collection: PropTypes.shape({
|
|
59
|
+
"created-at": PropTypes.number,
|
|
60
|
+
summary: PropTypes.string,
|
|
61
|
+
items: PropTypes.array
|
|
62
|
+
}),
|
|
63
|
+
config: PropTypes.shape({
|
|
64
|
+
theme: PropTypes.string,
|
|
65
|
+
footerButton: PropTypes.string,
|
|
66
|
+
magazineTitle: PropTypes.string,
|
|
67
|
+
magazinePageUrl: PropTypes.string,
|
|
68
|
+
customUrlPath: PropTypes.string
|
|
69
|
+
})
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
export default StateProvider(MagazineHeaderCard);
|