@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
package/rollup.js
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
/* eslint-disable no-console */
|
|
2
|
+
const fs = require("fs");
|
|
3
|
+
const { exec } = require("child_process");
|
|
4
|
+
const path = require("path");
|
|
5
|
+
const rollup = require("rollup");
|
|
6
|
+
const { babel } = require("@rollup/plugin-babel");
|
|
7
|
+
const postcssCustomMedia = require("postcss-custom-media");
|
|
8
|
+
const precss = require("precss");
|
|
9
|
+
const postcss = require("rollup-plugin-postcss");
|
|
10
|
+
const commonjs = require("@rollup/plugin-commonjs");
|
|
11
|
+
const { nodeResolve } = require("@rollup/plugin-node-resolve");
|
|
12
|
+
const packageJson = require("./package.json");
|
|
13
|
+
const { getEntryPoints } = require("./src/entry-points");
|
|
14
|
+
const { terser } = require("rollup-plugin-terser");
|
|
15
|
+
const { visualizer } = require("rollup-plugin-visualizer");
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Runs rollup via javascript API
|
|
19
|
+
* - deletes old dist dir, creates a new one
|
|
20
|
+
* - creates distribution-safe package.json, puts it in dist
|
|
21
|
+
* - bundles all components individually and extracts the component css in their respective files (takes component names from src/entry-points.js)
|
|
22
|
+
* - deletes JS files created in previous step since js will be imported from the main bundle
|
|
23
|
+
* - creates main bundle (containing all arrow components) in both ESM and CJS formats
|
|
24
|
+
* - copies assets (app.scss, readme) to dist
|
|
25
|
+
*/
|
|
26
|
+
|
|
27
|
+
async function main() {
|
|
28
|
+
console.time("Bundling completed in");
|
|
29
|
+
console.log("#### Building, please wait... ####");
|
|
30
|
+
await houseKeeping();
|
|
31
|
+
await buildComponentBundles();
|
|
32
|
+
await buildMainBundle();
|
|
33
|
+
await copyAssets();
|
|
34
|
+
console.timeEnd("Bundling completed in");
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
main();
|
|
38
|
+
|
|
39
|
+
async function buildMainBundle() {
|
|
40
|
+
const { index } = getEntryPoints();
|
|
41
|
+
const inputOptions = {
|
|
42
|
+
input: index,
|
|
43
|
+
external: getExternals(),
|
|
44
|
+
plugins: [
|
|
45
|
+
babel({
|
|
46
|
+
exclude: ["node_modules/**", /.test.js$/, /.stories.js$/, /entry-points.js$/],
|
|
47
|
+
include: /.jsx?$/,
|
|
48
|
+
babelHelpers: "runtime"
|
|
49
|
+
}),
|
|
50
|
+
postcss({
|
|
51
|
+
modules: true,
|
|
52
|
+
minimize: true,
|
|
53
|
+
plugins: [precss(), postcssCustomMedia()],
|
|
54
|
+
extract: false
|
|
55
|
+
}),
|
|
56
|
+
nodeResolve(),
|
|
57
|
+
commonjs(),
|
|
58
|
+
...(process.env.NODE_ENV === "production" ? [terser()] : [])
|
|
59
|
+
]
|
|
60
|
+
};
|
|
61
|
+
const outputOptionsEsm = {
|
|
62
|
+
format: "es",
|
|
63
|
+
file: getPath("dist/esm/index.js")
|
|
64
|
+
};
|
|
65
|
+
const outputOptionsCjs = {
|
|
66
|
+
format: "cjs",
|
|
67
|
+
file: getPath("dist/cjs/index.js")
|
|
68
|
+
};
|
|
69
|
+
await build(inputOptions, outputOptionsEsm, { analyze: process.env.ANALYZE_STATS });
|
|
70
|
+
await build(inputOptions, outputOptionsCjs);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
async function buildComponentBundles() {
|
|
74
|
+
if (process.env.ANALYZE_STATS) return;
|
|
75
|
+
const { index, ...componentEntryPoints } = getEntryPoints();
|
|
76
|
+
for (const bundleName in componentEntryPoints) {
|
|
77
|
+
const componentBundlePath = componentEntryPoints[bundleName];
|
|
78
|
+
const inputOptions = {
|
|
79
|
+
input: componentBundlePath,
|
|
80
|
+
external: getExternals(),
|
|
81
|
+
plugins: [
|
|
82
|
+
babel({
|
|
83
|
+
exclude: ["node_modules/**", /.test.js$/, /.stories.js$/, /entry-points.js$/],
|
|
84
|
+
include: /.jsx?$/,
|
|
85
|
+
babelHelpers: "runtime"
|
|
86
|
+
}),
|
|
87
|
+
postcss({
|
|
88
|
+
modules: true,
|
|
89
|
+
minimize: true,
|
|
90
|
+
plugins: [precss(), postcssCustomMedia()],
|
|
91
|
+
extract: getPath(`dist/${bundleName}/styles.arrow.css`)
|
|
92
|
+
}),
|
|
93
|
+
nodeResolve(),
|
|
94
|
+
commonjs(),
|
|
95
|
+
...(process.env.NODE_ENV === "production" ? [terser()] : [])
|
|
96
|
+
]
|
|
97
|
+
};
|
|
98
|
+
const outputOptions = {
|
|
99
|
+
format: "es",
|
|
100
|
+
file: getPath(`dist/${bundleName}/index.js`)
|
|
101
|
+
};
|
|
102
|
+
await build(inputOptions, outputOptions);
|
|
103
|
+
}
|
|
104
|
+
await cleanupDist();
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
function getExternals() {
|
|
108
|
+
const dependencies = Object.keys(packageJson.dependencies || {});
|
|
109
|
+
const peerDependencies = Object.keys(packageJson.peerDependencies || {});
|
|
110
|
+
return dependencies
|
|
111
|
+
.concat(peerDependencies)
|
|
112
|
+
.concat(["@dr.pogodin/babel-plugin-react-css-modules/dist/browser/getClassName", "prop-types"]);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
async function build(inputOptions, outputOptions, opts = {}) {
|
|
116
|
+
if (opts.analyze) {
|
|
117
|
+
inputOptions.plugins.push(
|
|
118
|
+
visualizer({ filename: path.join(__dirname, `stats/stats-${Date.now()}.html`), open: true })
|
|
119
|
+
);
|
|
120
|
+
}
|
|
121
|
+
const bundle = await rollup.rollup(inputOptions);
|
|
122
|
+
await bundle.write(outputOptions);
|
|
123
|
+
await bundle.close();
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
// returns absolute path wrt to this file
|
|
127
|
+
function getPath(pathStr) {
|
|
128
|
+
return path.resolve(path.join(__dirname, pathStr));
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* houseKeeping:
|
|
133
|
+
* - delete old dist dir, create new empty dist dir
|
|
134
|
+
* - create distribution-safe package.json, put it in dist dir
|
|
135
|
+
*/
|
|
136
|
+
async function houseKeeping() {
|
|
137
|
+
const pathToDist = getPath("dist");
|
|
138
|
+
const safePkgJsonObj = getSafePackageJson();
|
|
139
|
+
await execShellCmd(`rm -rf ${pathToDist}`);
|
|
140
|
+
await execShellCmd(`mkdir ${pathToDist}`);
|
|
141
|
+
fs.writeFileSync(`${pathToDist}/package.json`, Buffer.from(JSON.stringify(safePkgJsonObj), "utf-8"));
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* Removes the js files generated for individual components
|
|
146
|
+
*/
|
|
147
|
+
async function cleanupDist() {
|
|
148
|
+
const componentsPath = getPath("dist");
|
|
149
|
+
const componentsDir = fs.readdirSync(componentsPath, { withFileTypes: true });
|
|
150
|
+
const subDirectories = componentsDir.filter((dirent) => dirent.isDirectory()).map((dirent) => dirent.name);
|
|
151
|
+
for (const subDir of subDirectories) {
|
|
152
|
+
const jsFilePath = getPath(`dist/${subDir}/index.js`);
|
|
153
|
+
await execShellCmd(`rm ${jsFilePath}`);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
async function copyAssets() {
|
|
158
|
+
const distPath = getPath("dist");
|
|
159
|
+
await execShellCmd(`cp ${getPath("assets/stylesheets/app.scss")} ${distPath}`);
|
|
160
|
+
await execShellCmd(`cp ${getPath("README.md")} ${distPath}`);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
function getSafePackageJson() {
|
|
164
|
+
const take = [
|
|
165
|
+
"name",
|
|
166
|
+
"version",
|
|
167
|
+
"engines",
|
|
168
|
+
"description",
|
|
169
|
+
"main",
|
|
170
|
+
"module",
|
|
171
|
+
"repository",
|
|
172
|
+
"author",
|
|
173
|
+
"license",
|
|
174
|
+
"bugs",
|
|
175
|
+
"peerDependencies",
|
|
176
|
+
"dependencies",
|
|
177
|
+
"homepage"
|
|
178
|
+
];
|
|
179
|
+
const pkgJsonStr = fs.readFileSync(getPath("package.json")).toString();
|
|
180
|
+
const pkgJsonObj = JSON.parse(pkgJsonStr);
|
|
181
|
+
const acc = {};
|
|
182
|
+
take.forEach((key) => {
|
|
183
|
+
if (pkgJsonObj.hasOwnProperty(key)) {
|
|
184
|
+
acc[key] = pkgJsonObj[key];
|
|
185
|
+
}
|
|
186
|
+
});
|
|
187
|
+
return acc;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
function execShellCmd(command) {
|
|
191
|
+
return new Promise((resolve, reject) => {
|
|
192
|
+
exec(command, (err, stdout, stderr) => {
|
|
193
|
+
if (err) {
|
|
194
|
+
reject(err);
|
|
195
|
+
return;
|
|
196
|
+
}
|
|
197
|
+
if (stdout) console.log(stdout);
|
|
198
|
+
if (stderr) console.error(stderr);
|
|
199
|
+
resolve();
|
|
200
|
+
});
|
|
201
|
+
});
|
|
202
|
+
}
|
package/setupTests.js
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import "./ads.m.css";
|
|
4
|
+
|
|
5
|
+
export const AdPlaceholder = ({ height, width }) => {
|
|
6
|
+
return (
|
|
7
|
+
<div className="arr--ad-wrapper" styleName="ad-wrapper">
|
|
8
|
+
<div styleName="ads" style={{ height: height, width: width }}>
|
|
9
|
+
<h3 styleName="ad-text">LEADERBOARD </h3>
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
);
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
AdPlaceholder.propTypes = {
|
|
16
|
+
// height of ad
|
|
17
|
+
height: PropTypes.string,
|
|
18
|
+
// width of ad
|
|
19
|
+
width: PropTypes.string
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
AdPlaceholder.defaultProps = {
|
|
23
|
+
width: "720px",
|
|
24
|
+
height: "90px"
|
|
25
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Author
|
|
2
|
+
|
|
3
|
+
Displays the author for the story card based on the first author from the Story API reponse.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```jsx
|
|
8
|
+
<Author story={story} />
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
```jsx
|
|
12
|
+
<Author story={story} hideAuthorImage />
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
```jsx
|
|
16
|
+
<Author story={story} prefix="By" />
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
<!-- PROPS -->
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
@custom-media --viewport-medium (width >= 768px);
|
|
2
|
+
|
|
3
|
+
.author {
|
|
4
|
+
display: flex;
|
|
5
|
+
align-items: center;
|
|
6
|
+
color: var(--arrow-c-mono4);
|
|
7
|
+
margin-bottom: var(--arrow-spacing-xs);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.author-image {
|
|
11
|
+
border-radius: 100%;
|
|
12
|
+
width: var(--arrow-spacing-l);
|
|
13
|
+
height: var(--arrow-spacing-l);
|
|
14
|
+
margin-right: var(--arrow-spacing-xs);
|
|
15
|
+
overflow: hidden;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.author-image figure,
|
|
19
|
+
.author-image img {
|
|
20
|
+
/* width & height need to be explicitly set for improving CLS */
|
|
21
|
+
height: 100%;
|
|
22
|
+
width: 100%;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.author-name {
|
|
26
|
+
margin: auto var(--arrow-spacing-xs) auto 0;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.bottom-fix {
|
|
30
|
+
margin-top: auto;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.prefix {
|
|
34
|
+
margin: auto var(--arrow-spacing-xxs) auto 0;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.rtl-image {
|
|
38
|
+
display: none;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
html[dir="rtl"] {
|
|
42
|
+
.author-name {
|
|
43
|
+
margin-right: 0;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.prefix {
|
|
47
|
+
margin-right: 0;
|
|
48
|
+
margin-left: var(--arrow-spacing-xxs);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.ltr-image {
|
|
52
|
+
display: none;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.rtl-image {
|
|
56
|
+
display: block;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.dark {
|
|
61
|
+
color: var(--arrow-c-mono4);
|
|
62
|
+
}
|
|
63
|
+
.light {
|
|
64
|
+
color: var(--arrow-c-invert-mono4);
|
|
65
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import get from "lodash.get";
|
|
4
|
+
import { useStateValue } from "../../SharedContext";
|
|
5
|
+
import { ResponsiveImage, Link } from "@quintype/components";
|
|
6
|
+
import { getTextColor } from "../../../utils/utils";
|
|
7
|
+
import { connect } from "react-redux";
|
|
8
|
+
|
|
9
|
+
import "./author.m.css";
|
|
10
|
+
|
|
11
|
+
const AuthorBase = ({ story, hideAuthorImage, isBottom, prefix = "", config = {} }) => {
|
|
12
|
+
const configData = useStateValue() || {};
|
|
13
|
+
const isAuthor = get(configData, ["showAuthor"], true);
|
|
14
|
+
const { "avatar-url": avatarUrl, "avatar-s3-key": avatarS3Key, name: authorName, slug } = get(
|
|
15
|
+
story,
|
|
16
|
+
["authors", "0"],
|
|
17
|
+
""
|
|
18
|
+
);
|
|
19
|
+
const isBottomClasses = isBottom ? "bottom-fix" : "";
|
|
20
|
+
const textColor = getTextColor(configData.theme);
|
|
21
|
+
const mountAt = get(config, ["mountAt"], "");
|
|
22
|
+
|
|
23
|
+
const authorImage = (dir) => {
|
|
24
|
+
if (!avatarUrl && !avatarS3Key) {
|
|
25
|
+
return null;
|
|
26
|
+
}
|
|
27
|
+
return (
|
|
28
|
+
<div styleName={`author-image ${dir}-image`} data-test-id="author-image">
|
|
29
|
+
<figure>
|
|
30
|
+
{avatarS3Key ? (
|
|
31
|
+
<ResponsiveImage
|
|
32
|
+
slug={avatarS3Key}
|
|
33
|
+
aspect-ratio={[1, 1]}
|
|
34
|
+
defaultWidth={400}
|
|
35
|
+
imgParams={{ auto: ["format", "compress"] }}
|
|
36
|
+
alt={authorName}
|
|
37
|
+
/>
|
|
38
|
+
) : (
|
|
39
|
+
<img src={avatarUrl} />
|
|
40
|
+
)}
|
|
41
|
+
</figure>
|
|
42
|
+
</div>
|
|
43
|
+
);
|
|
44
|
+
};
|
|
45
|
+
const isPrefix = (dir) => {
|
|
46
|
+
if (prefix) {
|
|
47
|
+
return (
|
|
48
|
+
<div className="arr-author-prefix" styleName={`prefix ${textColor}`}>
|
|
49
|
+
{prefix}
|
|
50
|
+
</div>
|
|
51
|
+
);
|
|
52
|
+
}
|
|
53
|
+
return !hideAuthorImage && authorImage(dir);
|
|
54
|
+
};
|
|
55
|
+
return (
|
|
56
|
+
<>
|
|
57
|
+
{isAuthor && (
|
|
58
|
+
<Link
|
|
59
|
+
className="author-name arr-author-name arrow-component"
|
|
60
|
+
href={`${mountAt}/author/` + slug}
|
|
61
|
+
styleName={`author ${isBottomClasses}`}
|
|
62
|
+
aria-label="author-name">
|
|
63
|
+
{isPrefix("ltr")}
|
|
64
|
+
<div className="author-name" styleName={`author-name ${textColor}`} data-test-id="author-name">
|
|
65
|
+
{authorName || story["author-name"]}
|
|
66
|
+
</div>
|
|
67
|
+
{!prefix && isPrefix("rtl")}
|
|
68
|
+
</Link>
|
|
69
|
+
)}
|
|
70
|
+
</>
|
|
71
|
+
);
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
function mapStateToProps(state) {
|
|
75
|
+
return {
|
|
76
|
+
config: get(state, ["qt", "config"], {})
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export const Author = connect(mapStateToProps)(AuthorBase);
|
|
81
|
+
|
|
82
|
+
AuthorBase.propTypes = {
|
|
83
|
+
/** The Story Object from the API response */
|
|
84
|
+
story: PropTypes.object.isRequired,
|
|
85
|
+
/** Hide Author Avatar Image */
|
|
86
|
+
hideAuthorImage: PropTypes.bool,
|
|
87
|
+
// fix Author bottom of the storyCard
|
|
88
|
+
isBottom: PropTypes.bool,
|
|
89
|
+
// fix prefix before the author name
|
|
90
|
+
prefix: PropTypes.string,
|
|
91
|
+
config: PropTypes.object
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
AuthorBase.defaultProps = {
|
|
95
|
+
hideAuthorImage: false,
|
|
96
|
+
isBottom: false,
|
|
97
|
+
prefix: ""
|
|
98
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { generateStory } from "../../Fixture";
|
|
3
|
+
import { withStore } from "../../../../storybook";
|
|
4
|
+
import { Author } from "./index";
|
|
5
|
+
import Readme from "./README.md";
|
|
6
|
+
|
|
7
|
+
const story = generateStory();
|
|
8
|
+
|
|
9
|
+
withStore(
|
|
10
|
+
"Atoms/Author",
|
|
11
|
+
{
|
|
12
|
+
qt: {
|
|
13
|
+
config: {
|
|
14
|
+
"cdn-image": "thumbor-stg.assettype.com",
|
|
15
|
+
mountAt: "/sub-directory"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
Readme
|
|
20
|
+
)
|
|
21
|
+
.add("With Author Image", () => <Author story={story} />)
|
|
22
|
+
.add("With Prefix", () => <Author story={story} prefix="By" />)
|
|
23
|
+
.add("Without Author Image", () => <Author story={story} hideAuthorImage />);
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Author Card
|
|
2
|
+
|
|
3
|
+
Displays the author details as a card for the story page
|
|
4
|
+
|
|
5
|
+
### Use as a component
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
#### default template
|
|
9
|
+
|
|
10
|
+
```jsx
|
|
11
|
+
<AuthorCard story={story}/>
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
#### Author card with right align template
|
|
15
|
+
|
|
16
|
+
```jsx
|
|
17
|
+
<AuthorCard story={story} template="rightAligned" />
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
#### Author card with center align template
|
|
21
|
+
|
|
22
|
+
```jsx
|
|
23
|
+
<AuthorCard story={story} template="centerAligned" />
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
#### Author card with default align template
|
|
27
|
+
|
|
28
|
+
```jsx
|
|
29
|
+
<AuthorCard story={story} template="default" />
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
#### Author card with left align template
|
|
33
|
+
|
|
34
|
+
```jsx
|
|
35
|
+
<AuthorCard story={story} template="leftAligned" />
|
|
36
|
+
```
|
|
37
|
+
#### Author card with options
|
|
38
|
+
|
|
39
|
+
```jsx
|
|
40
|
+
<AuthorCard story={story} template="default" opts={hideImage: true, hideBio: true}/>
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
<!-- PROPS -->
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
@value viewports: "../../../../assets/stylesheets/viewports.m.css";
|
|
2
|
+
@value mobile from viewports;
|
|
3
|
+
|
|
4
|
+
.author-card-wrapper {
|
|
5
|
+
display: flex;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.author-card-wrapper.centerAligned {
|
|
9
|
+
display: block;
|
|
10
|
+
text-align: center;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.author-image-wrapper {
|
|
14
|
+
display: flex;
|
|
15
|
+
margin-right: var(--arrow-spacing-m);
|
|
16
|
+
margin-bottom: var(--arrow-spacing-s);
|
|
17
|
+
@media (min-width: mobile) {
|
|
18
|
+
margin-right: var(--arrow-spacing-l);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.default .author-image-wrapper {
|
|
23
|
+
margin: 0 12px 0 0;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.centerAligned .author-image-wrapper {
|
|
27
|
+
justify-content: center;
|
|
28
|
+
margin-right: 0;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.author-image {
|
|
32
|
+
margin-left: -100px;
|
|
33
|
+
overflow: hidden;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.author-image figure {
|
|
37
|
+
margin: 0;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.author-image img {
|
|
41
|
+
border-radius: 50%;
|
|
42
|
+
height: 72px;
|
|
43
|
+
width: 72px;
|
|
44
|
+
@media (min-width: mobile) {
|
|
45
|
+
height: 124px;
|
|
46
|
+
width: 124px;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.multi-author-image img {
|
|
51
|
+
border: solid 2px var(--arrow-c-light);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.default .author-image img {
|
|
55
|
+
height: 32px;
|
|
56
|
+
width: 32px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.default .multi-author-image {
|
|
60
|
+
margin-left: -24px;
|
|
61
|
+
border-width: 1px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.author-image.first-author-image {
|
|
65
|
+
margin-left: 0;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.author-details-wrapper {
|
|
69
|
+
display: flex;
|
|
70
|
+
flex-direction: column;
|
|
71
|
+
justify-content: center;
|
|
72
|
+
padding: 0;
|
|
73
|
+
margin-left: var(--arrow-spacing-m);
|
|
74
|
+
@media (min-width: mobile) {
|
|
75
|
+
padding: var(--arrow-spacing-xs) var(--arrow-spacing-xs) var(--arrow-spacing-xs) 0;
|
|
76
|
+
margin-left: var(--arrow-spacing-l);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.default .author-details-wrapper {
|
|
81
|
+
margin-left: var(--arrow-spacing-s);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.leftAligned .author-details-wrapper {
|
|
85
|
+
margin-left: var(--arrow-spacing-m);
|
|
86
|
+
@media (min-width: mobile) {
|
|
87
|
+
margin-left: var(--arrow-spacing-l);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.centerAligned .author-details-wrapper {
|
|
92
|
+
align-items: center;
|
|
93
|
+
margin-left: 0;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.author-name-share {
|
|
97
|
+
display: flex;
|
|
98
|
+
align-items: center;
|
|
99
|
+
font-size: var(--arrow-fs-xs);
|
|
100
|
+
line-height: var(--arrow-lh-1);
|
|
101
|
+
justify-content: center;
|
|
102
|
+
@media (min-width: mobile) {
|
|
103
|
+
font-size: var(--arrow-fs-s);
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
html[dir="rtl"] {
|
|
108
|
+
.author-image-wrapper {
|
|
109
|
+
margin-left: var(--arrow-spacing-m);
|
|
110
|
+
margin-right: 0;
|
|
111
|
+
@media (min-width: mobile) {
|
|
112
|
+
margin-left: var(--arrow-spacing-l);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.leftAligned .author-details-wrapper {
|
|
117
|
+
margin-right: var(--arrow-spacing-m);
|
|
118
|
+
margin-left: 0;
|
|
119
|
+
@media (min-width: mobile) {
|
|
120
|
+
margin-right: var(--arrow-spacing-l);
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.multi-author-image {
|
|
125
|
+
position: relative;
|
|
126
|
+
right: -100px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.default .multi-author-image {
|
|
130
|
+
margin-left: -16px;
|
|
131
|
+
right: -12px;
|
|
132
|
+
@media (min-width: mobile) {
|
|
133
|
+
margin-left: -24px;
|
|
134
|
+
right: -12px;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.author-image.first-author-image {
|
|
139
|
+
position: static;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.centerAligned .author-image-wrapper {
|
|
143
|
+
margin-left: 0;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.multiple-author-style {
|
|
148
|
+
font-size: var(--arrow-fs-xs);
|
|
149
|
+
@media (min-width: mobile) {
|
|
150
|
+
font-size: var(--arrow-fs-s);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.dot-wrapper {
|
|
155
|
+
margin: 0 var(--arrow-spacing-xxs) 0 var(--arrow-spacing-xs);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.author-bio {
|
|
159
|
+
font-style: italic;
|
|
160
|
+
line-height: var(--arrow-lh-5);
|
|
161
|
+
color: var(--arrow-c-m);
|
|
162
|
+
font-size: var(--arrow-fs-tiny);
|
|
163
|
+
@media (min-width: mobile) {
|
|
164
|
+
font-size: var(--arrow-fs-xs);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.dark {
|
|
169
|
+
color: var(--arrow-c-mono2);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.light {
|
|
173
|
+
color: var(--arrow-c-invert-mono2);
|
|
174
|
+
}
|