@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,61 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { LazyLoadImages, ResponsiveImage, Link } from "@quintype/components";
|
|
3
|
+
import PropTypes from "prop-types";
|
|
4
|
+
import get from "lodash.get";
|
|
5
|
+
import { getSlug } from "../../../utils/utils";
|
|
6
|
+
import "./magazine-cover-image.m.css";
|
|
7
|
+
import { FallbackImage } from "../FallbackImage";
|
|
8
|
+
|
|
9
|
+
export const MagazineCoverImageCard = ({ collection, config = {} }) => {
|
|
10
|
+
const imgAltText = get(collection, ["metadata", "magazine", "name"], "cover-image");
|
|
11
|
+
const coverImageData = get(collection, ["metadata", "cover-image"]) || {};
|
|
12
|
+
const { magazineSlug = "" } = config;
|
|
13
|
+
const {
|
|
14
|
+
"cover-image-url": coverUrl,
|
|
15
|
+
"cover-image-s3-key": covers3Key,
|
|
16
|
+
"cover-image-metadata": coverImageMetaData
|
|
17
|
+
} = coverImageData;
|
|
18
|
+
|
|
19
|
+
const slug = magazineSlug && collection && getSlug(collection, config);
|
|
20
|
+
|
|
21
|
+
return (
|
|
22
|
+
<div className="arr--magazine-cover-img" styleName="cover-image">
|
|
23
|
+
{covers3Key || coverUrl ? (
|
|
24
|
+
<figure styleName="image">
|
|
25
|
+
{covers3Key ? (
|
|
26
|
+
<Link href={slug} aria-label="magazine-cover-image">
|
|
27
|
+
<LazyLoadImages>
|
|
28
|
+
<ResponsiveImage
|
|
29
|
+
slug={covers3Key}
|
|
30
|
+
aspectRatio={[1, 2]}
|
|
31
|
+
metadata={{ coverImageMetaData }}
|
|
32
|
+
defaultWidth={400}
|
|
33
|
+
imgParams={{ auto: ["format", "compress"] }}
|
|
34
|
+
alt={imgAltText}
|
|
35
|
+
/>
|
|
36
|
+
</LazyLoadImages>
|
|
37
|
+
</Link>
|
|
38
|
+
) : (
|
|
39
|
+
<img src={coverUrl} alt="cover-image" loading="lazy" />
|
|
40
|
+
)}
|
|
41
|
+
</figure>
|
|
42
|
+
) : (
|
|
43
|
+
<div styleName="fallback-img">
|
|
44
|
+
<FallbackImage slug={slug} />
|
|
45
|
+
</div>
|
|
46
|
+
)}
|
|
47
|
+
</div>
|
|
48
|
+
);
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
MagazineCoverImageCard.propTypes = {
|
|
52
|
+
collection: PropTypes.shape({
|
|
53
|
+
"cover-image-url": PropTypes.string,
|
|
54
|
+
"cover-image-s3-key": PropTypes.string,
|
|
55
|
+
"cover-image-metadata": PropTypes.string,
|
|
56
|
+
slug: PropTypes.string
|
|
57
|
+
}),
|
|
58
|
+
config: PropTypes.shape({
|
|
59
|
+
magazineSlug: PropTypes.string
|
|
60
|
+
})
|
|
61
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
.cover-image {
|
|
2
|
+
position: relative;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.cover-image figure.image {
|
|
6
|
+
padding-top: 138%;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.image {
|
|
10
|
+
position: relative;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.image img {
|
|
14
|
+
position: absolute;
|
|
15
|
+
top: 0;
|
|
16
|
+
bottom: 0;
|
|
17
|
+
left: 0;
|
|
18
|
+
right: 0;
|
|
19
|
+
height: 100%;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.fallback-img {
|
|
23
|
+
padding-top: 138%;
|
|
24
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { withStore } from "../../../../storybook";
|
|
3
|
+
import { MagazineCoverImageCard } from "./index";
|
|
4
|
+
import Readme from "./README.md";
|
|
5
|
+
import { generateCollection } from "../../Fixture";
|
|
6
|
+
import { config } from "@storybook/addon-actions";
|
|
7
|
+
|
|
8
|
+
const collection = generateCollection({ stories: 4 });
|
|
9
|
+
|
|
10
|
+
withStore(
|
|
11
|
+
"Atoms/Magazine CoverImage",
|
|
12
|
+
{
|
|
13
|
+
qt: {
|
|
14
|
+
config: {
|
|
15
|
+
"cdn-image": "thumbor-stg.assettype.com",
|
|
16
|
+
mountAt: "/sub-directory"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
Readme
|
|
21
|
+
).add("MagazineCoverImage", () => <MagazineCoverImageCard collection={collection} config={config} />);
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import { CrownIcon } from "../../Svgs/crown";
|
|
4
|
+
import { KeyIcon } from "../../Svgs/key";
|
|
5
|
+
import { LockIcon } from "../../Svgs/lock";
|
|
6
|
+
import { StarIcon } from "../../Svgs/star";
|
|
7
|
+
|
|
8
|
+
export const PremiumStoryIcon = ({ width, height, color, iconType, positionTop }) => {
|
|
9
|
+
switch (iconType) {
|
|
10
|
+
case "crown":
|
|
11
|
+
return <CrownIcon width={width} height={height} color={color} positionTop={positionTop} />;
|
|
12
|
+
case "lock":
|
|
13
|
+
return <LockIcon width={width} height={height} color={color} positionTop={positionTop} />;
|
|
14
|
+
case "key":
|
|
15
|
+
return <KeyIcon width={width} height={height} color={color} positionTop={positionTop} />;
|
|
16
|
+
default:
|
|
17
|
+
return <StarIcon width={width} height={height} color={color} positionTop={positionTop} />;
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
PremiumStoryIcon.propTypes = {
|
|
22
|
+
width: PropTypes.string,
|
|
23
|
+
height: PropTypes.string,
|
|
24
|
+
color: PropTypes.string,
|
|
25
|
+
iconType: PropTypes.string,
|
|
26
|
+
positionTop: PropTypes.string
|
|
27
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Publish Details
|
|
2
|
+
|
|
3
|
+
Component to display the publish details for the story card.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```jsx
|
|
8
|
+
<PublishDetails story={story} />
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
```jsx
|
|
12
|
+
<PublishDetails story={story} opts={{ showReadTime: true, enableUpdatedTime: true, enablePublishedTime: false, localizedPublishedOn: "ಪ್ರಕಟಿಸಲಾಗಿದೆ", localizedUpdatedOn: "ನವೀಕರಿಸಲಾಗಿದೆ" }} />
|
|
13
|
+
|
|
14
|
+
<!-- PROPS -->
|
|
15
|
+
```
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import React, { useEffect, useState } from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import { getTextColor, getTimeStamp, timestampToFormat } from "../../../utils/utils";
|
|
4
|
+
import { ReadTime } from "../ReadTime";
|
|
5
|
+
|
|
6
|
+
import "./publish-details.m.css";
|
|
7
|
+
import { useStateValue } from "../../SharedContext";
|
|
8
|
+
|
|
9
|
+
export const PublishDetails = ({ story, opts = {} }) => {
|
|
10
|
+
const [direction, setDirection] = useState("ltr");
|
|
11
|
+
useEffect(() => {
|
|
12
|
+
const htmlElement = document.getElementsByTagName("HTML");
|
|
13
|
+
if (htmlElement && htmlElement.length > 0 && htmlElement[0].dir.toLocaleLowerCase() === "rtl") {
|
|
14
|
+
setDirection("rtl");
|
|
15
|
+
}
|
|
16
|
+
}, []);
|
|
17
|
+
|
|
18
|
+
const config = useStateValue() || {};
|
|
19
|
+
const { "first-published-at": firstPublishAt, "last-published-at": lastPublish, "updated-at": updatedAt } = story;
|
|
20
|
+
const { enableUpdatedTime, enablePublishedTime, showReadTime, localizedPublishedOn, localizedUpdatedOn } = opts;
|
|
21
|
+
const time = lastPublish || firstPublishAt;
|
|
22
|
+
const textColor = getTextColor(config.theme);
|
|
23
|
+
const timeStampProps =
|
|
24
|
+
direction === "rtl"
|
|
25
|
+
? { ...opts, direction: direction, isTimeFirst: true, showTime: true }
|
|
26
|
+
: { ...opts, direction: direction, showTime: true };
|
|
27
|
+
|
|
28
|
+
return (
|
|
29
|
+
<div data-test-id="timeStamp" className="arrow-component arr-publish-details" styleName={`timeStamp ${textColor}`}>
|
|
30
|
+
<div data-test-id="publishDetails" styleName={`publish-details ${textColor}`}>
|
|
31
|
+
{enablePublishedTime && (
|
|
32
|
+
<>
|
|
33
|
+
{localizedPublishedOn || "Published on"} :
|
|
34
|
+
<div styleName="date">{getTimeStamp(time, timestampToFormat, timeStampProps)}</div>
|
|
35
|
+
{showReadTime && <ReadTime story={story} opts={opts} />}
|
|
36
|
+
</>
|
|
37
|
+
)}
|
|
38
|
+
</div>
|
|
39
|
+
{enableUpdatedTime && (
|
|
40
|
+
<div data-test-id="updateDetails" styleName={`update-details ${textColor}`}>
|
|
41
|
+
{localizedUpdatedOn || "Updated on"} :
|
|
42
|
+
<div styleName="date">{getTimeStamp(updatedAt, timestampToFormat, timeStampProps)}</div>
|
|
43
|
+
{showReadTime && <ReadTime story={story} opts={opts} />}
|
|
44
|
+
</div>
|
|
45
|
+
)}
|
|
46
|
+
</div>
|
|
47
|
+
);
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
PublishDetails.propTypes = {
|
|
51
|
+
/** The Story Object from the API response */
|
|
52
|
+
story: PropTypes.shape({
|
|
53
|
+
"first-published-at": PropTypes.number,
|
|
54
|
+
"last-published-at": PropTypes.number,
|
|
55
|
+
"read-time": PropTypes.number,
|
|
56
|
+
"updated-at": PropTypes.number
|
|
57
|
+
}),
|
|
58
|
+
opts: PropTypes.shape({
|
|
59
|
+
showReadTime: PropTypes.bool,
|
|
60
|
+
enableUpdatedTime: PropTypes.bool,
|
|
61
|
+
enablePublishedTime: PropTypes.bool
|
|
62
|
+
})
|
|
63
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
@value viewports: "../../../../assets/stylesheets/viewports.m.css";
|
|
2
|
+
@value mobile from viewports;
|
|
3
|
+
|
|
4
|
+
.timeStamp {
|
|
5
|
+
font-size: var(--arrow-fs-tiny);
|
|
6
|
+
@media (min-width: mobile) {
|
|
7
|
+
font-size: var(--arrow-fs-xs);
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.timeStamp.dark {
|
|
12
|
+
color: var(--arrow-c-mono4);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.timeStamp.light {
|
|
16
|
+
color: var(--arrow-c-invert-mono4);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.publish-details {
|
|
20
|
+
display: flex;
|
|
21
|
+
align-items: baseline;
|
|
22
|
+
flex-wrap: wrap;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.update-details {
|
|
26
|
+
display: flex;
|
|
27
|
+
margin-top: var(--arrow-spacing-xs);
|
|
28
|
+
}
|
|
29
|
+
.dot-indicator {
|
|
30
|
+
display: flex;
|
|
31
|
+
align-items: center;
|
|
32
|
+
padding: 0 var(--arrow-spacing-xs);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.timeStamp :global(.arr--read-time) {
|
|
36
|
+
font-size: var(--arrow-fs-tiny);
|
|
37
|
+
@media (min-width: mobile) {
|
|
38
|
+
font-size: var(--arrow-fs-xs);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.date.dark {
|
|
43
|
+
color: var(--arrow-c-mono2);
|
|
44
|
+
}
|
|
45
|
+
.date.light {
|
|
46
|
+
color: var(--arrow-c-invert-mono2);
|
|
47
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { mount } from "enzyme";
|
|
3
|
+
import expect from "expect";
|
|
4
|
+
import { generateStory } from "../../Fixture/index";
|
|
5
|
+
import { PublishDetails } from "./index";
|
|
6
|
+
|
|
7
|
+
const story = generateStory();
|
|
8
|
+
|
|
9
|
+
describe("default author card", () => {
|
|
10
|
+
it("Should render default publish details componen", () => {
|
|
11
|
+
const wrapper = mount(<PublishDetails story={story} />);
|
|
12
|
+
expect(wrapper.find({ "data-test-id": "timeStamp" }).prop("className")).toMatch(/timeStamp/);
|
|
13
|
+
});
|
|
14
|
+
it("Should render without updated time", () => {
|
|
15
|
+
const wrapper = mount(<PublishDetails story={story} opts={{ enableUpdatedTime: false }} />);
|
|
16
|
+
expect(wrapper.find({ "data-test-id": "update-details" }).length).toEqual(0);
|
|
17
|
+
});
|
|
18
|
+
it("Should render without read time", () => {
|
|
19
|
+
const wrapper = mount(<PublishDetails story={story} opts={{ showReadTime: false }} />);
|
|
20
|
+
expect(wrapper.find({ "data-test-id": "read-time" }).length).toEqual(0);
|
|
21
|
+
});
|
|
22
|
+
});
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { generateStory } from "../../Fixture";
|
|
3
|
+
import { withStore } from "../../../../storybook";
|
|
4
|
+
import { PublishDetails } from "./index";
|
|
5
|
+
import { boolean, text } from "@storybook/addon-knobs";
|
|
6
|
+
import Readme from "./README.md";
|
|
7
|
+
|
|
8
|
+
const story = generateStory();
|
|
9
|
+
|
|
10
|
+
withStore("Atoms/Publish Details", {}, Readme).add("Default", () => (
|
|
11
|
+
<PublishDetails
|
|
12
|
+
story={story}
|
|
13
|
+
opts={{
|
|
14
|
+
showReadTime: boolean("Show read Time", true),
|
|
15
|
+
enableUpdatedTime: boolean("Enable Update Time", true),
|
|
16
|
+
enablePublishedTime: boolean("Enable Published Time", true),
|
|
17
|
+
localizedPublishedOn: text("Localise Published On", "ಪ್ರಕಟಿಸಲಾಗಿದೆ"),
|
|
18
|
+
localizedUpdatedOn: text("Localise Updated On", "ನವೀಕರಿಸಲಾಗಿದೆ")
|
|
19
|
+
}}
|
|
20
|
+
/>
|
|
21
|
+
));
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import get from "lodash.get";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import PropTypes from "prop-types";
|
|
4
|
+
import { getTextColor } from "../../../utils/utils";
|
|
5
|
+
import { useStateValue } from "../../SharedContext";
|
|
6
|
+
import "./read-time.m.css";
|
|
7
|
+
import { Dot } from "../Dot/dot";
|
|
8
|
+
|
|
9
|
+
export const ReadTime = ({ story, opts = {}, isLightTheme = false }) => {
|
|
10
|
+
const config = useStateValue() || {};
|
|
11
|
+
const showReadTime = get(config, ["showReadTime"]) || get(opts, ["showReadTime"], true);
|
|
12
|
+
const readTime = get(story, ["read-time"], 0);
|
|
13
|
+
const textColor = isLightTheme ? "light" : getTextColor(config.theme);
|
|
14
|
+
|
|
15
|
+
if (!showReadTime || !readTime) return null;
|
|
16
|
+
|
|
17
|
+
const timeToRead = get(opts, ["localizedTimeToRead"]) || "min read";
|
|
18
|
+
|
|
19
|
+
return (
|
|
20
|
+
<>
|
|
21
|
+
<div
|
|
22
|
+
className="arrow-component arr--read-time"
|
|
23
|
+
styleName={`read-time-wrapper ${textColor}`}
|
|
24
|
+
data-test-id="read-time">
|
|
25
|
+
<span styleName="dot-indicator" className="read-time-indicator">
|
|
26
|
+
<Dot color={textColor} />
|
|
27
|
+
</span>
|
|
28
|
+
<span>
|
|
29
|
+
{readTime} {timeToRead}
|
|
30
|
+
</span>
|
|
31
|
+
</div>
|
|
32
|
+
</>
|
|
33
|
+
);
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
ReadTime.propTypes = {
|
|
37
|
+
story: PropTypes.shape({
|
|
38
|
+
"read-time": PropTypes.number
|
|
39
|
+
}),
|
|
40
|
+
opts: PropTypes.shape({
|
|
41
|
+
showReadTime: PropTypes.bool
|
|
42
|
+
}),
|
|
43
|
+
isLightTheme: PropTypes.bool
|
|
44
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
@custom-media --viewport-medium (width >= 768px);
|
|
2
|
+
|
|
3
|
+
.read-time-wrapper {
|
|
4
|
+
display: flex;
|
|
5
|
+
font-size: var(--arrow-fs-tiny);
|
|
6
|
+
line-height: var(--arrow-lh-2);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.dot-indicator {
|
|
10
|
+
padding: 0 var(--arrow-spacing-xs) var(--arrow-spacing-xs);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.dark {
|
|
14
|
+
color: var(--arrow-c-mono4);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.light {
|
|
18
|
+
color: var(--arrow-c-invert-mono4);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
html[dir="rtl"] {
|
|
22
|
+
.read-time-wrapper {
|
|
23
|
+
margin-right: var(--arrow-spacing-xs);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { mount } from "enzyme";
|
|
3
|
+
import expect from "expect";
|
|
4
|
+
import { generateStory } from "../../Fixture/index";
|
|
5
|
+
import { ReadTime } from "./index";
|
|
6
|
+
|
|
7
|
+
const story = generateStory();
|
|
8
|
+
|
|
9
|
+
describe("Read time", () => {
|
|
10
|
+
it("Should render read time component", () => {
|
|
11
|
+
const wrapper = mount(<ReadTime story={story} opts={{ showReadTime: true }} />);
|
|
12
|
+
expect(wrapper.find({ "data-test-id": "read-time" }).prop("className")).toMatch(/read-time-wrapper/);
|
|
13
|
+
});
|
|
14
|
+
it("Should not render read time if showReadTime is false", () => {
|
|
15
|
+
const wrapper = mount(<ReadTime opts={{ showReadTime: false }} />);
|
|
16
|
+
expect(wrapper.find({ "data-test-id": "read-time" }).length).toEqual(0);
|
|
17
|
+
});
|
|
18
|
+
});
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { generateStory } from "../../Fixture";
|
|
3
|
+
import { withStore } from "../../../../storybook";
|
|
4
|
+
import { ReadTime } from "./index";
|
|
5
|
+
import Readme from "./README.md";
|
|
6
|
+
import { boolean } from "@storybook/addon-knobs";
|
|
7
|
+
|
|
8
|
+
const story = generateStory();
|
|
9
|
+
|
|
10
|
+
withStore("Atoms/Read Time", {}, Readme).add("default", () => {
|
|
11
|
+
return (
|
|
12
|
+
<ReadTime
|
|
13
|
+
story={story}
|
|
14
|
+
opts={{
|
|
15
|
+
showReadTime: boolean("Show Read Time", true)
|
|
16
|
+
}}
|
|
17
|
+
/>
|
|
18
|
+
);
|
|
19
|
+
});
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { number, string, func } from "prop-types";
|
|
3
|
+
|
|
4
|
+
import { getTextColor } from "../../../../utils/utils";
|
|
5
|
+
import { LeftArrow } from "../../../Svgs/left-arrow";
|
|
6
|
+
import { RightArrow } from "../../../Svgs/right-arrow";
|
|
7
|
+
import { useStateValue } from "../../../SharedContext";
|
|
8
|
+
|
|
9
|
+
import "./slider-arrow.m.css";
|
|
10
|
+
|
|
11
|
+
export const SliderArrow = ({ selectedIndex, previousClick, nextClick, noOfItems, perView, languageDirection }) => {
|
|
12
|
+
if (noOfItems < 1) {
|
|
13
|
+
return null;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
const config = useStateValue() || {};
|
|
17
|
+
const textColor = getTextColor(config.theme);
|
|
18
|
+
|
|
19
|
+
const rightArrowView = () => {
|
|
20
|
+
if (selectedIndex >= noOfItems - perView) return false;
|
|
21
|
+
return true;
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
const getLeftArrowClassName = languageDirection === "rtl" ? "left-arrow-rtl" : "left-arrow-ltr";
|
|
25
|
+
const getRightArrowClassName = languageDirection === "rtl" ? "right-arrow-rtl" : "right-arrow-ltr";
|
|
26
|
+
return (
|
|
27
|
+
<>
|
|
28
|
+
{selectedIndex !== 0 ? (
|
|
29
|
+
<button
|
|
30
|
+
onClick={previousClick}
|
|
31
|
+
styleName={`arrow left-arrow-${textColor} ${getLeftArrowClassName}`}
|
|
32
|
+
className={`left-arrow ${getLeftArrowClassName}`}>
|
|
33
|
+
<LeftArrow color={textColor === "dark" ? "#fff" : "#333"} />
|
|
34
|
+
</button>
|
|
35
|
+
) : null}
|
|
36
|
+
|
|
37
|
+
{selectedIndex < noOfItems - 1 && rightArrowView() ? (
|
|
38
|
+
<button
|
|
39
|
+
onClick={nextClick}
|
|
40
|
+
styleName={`arrow right-arrow-${textColor} ${getRightArrowClassName}`}
|
|
41
|
+
className={`right-arrow ${getRightArrowClassName}`}>
|
|
42
|
+
<RightArrow color={textColor === "dark" ? "#fff" : "#333"} />
|
|
43
|
+
</button>
|
|
44
|
+
) : null}
|
|
45
|
+
</>
|
|
46
|
+
);
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
SliderArrow.propTypes = {
|
|
50
|
+
noOfItems: number,
|
|
51
|
+
perView: number,
|
|
52
|
+
slideIndicator: string,
|
|
53
|
+
previousClick: func,
|
|
54
|
+
nextClick: func,
|
|
55
|
+
selectedIndex: number,
|
|
56
|
+
languageDirection: string
|
|
57
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
.arrow {
|
|
2
|
+
position: absolute;
|
|
3
|
+
top: 50%;
|
|
4
|
+
transform: translateY(-50%);
|
|
5
|
+
cursor: pointer;
|
|
6
|
+
background-color: var(--arrow-c-light);
|
|
7
|
+
opacity: 0.8;
|
|
8
|
+
padding: var(--arrow-spacing-l) var(--arrow-spacing-s);
|
|
9
|
+
border: none;
|
|
10
|
+
border-radius: 0;
|
|
11
|
+
@media only screen and (max-width: 767px) {
|
|
12
|
+
top: calc(25% + 40px);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.left-arrow-dark,
|
|
17
|
+
.right-arrow-dark {
|
|
18
|
+
background-color: var(--arrow-c-dark);
|
|
19
|
+
}
|
|
20
|
+
.left-arrow-light,
|
|
21
|
+
.right-arrow-light {
|
|
22
|
+
background-color: var(--arrow-c-light);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.left-arrow-ltr {
|
|
26
|
+
left: 0;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.right-arrow-ltr {
|
|
30
|
+
right: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.left-arrow-rtl {
|
|
34
|
+
right: 0;
|
|
35
|
+
left: unset;
|
|
36
|
+
}
|
|
37
|
+
.left-arrow-rtl svg,
|
|
38
|
+
.right-arrow-rtl svg {
|
|
39
|
+
transform: rotate(180deg);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.right-arrow-rtl {
|
|
43
|
+
left: 0;
|
|
44
|
+
right: unset;
|
|
45
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { array, number, string, func } from "prop-types";
|
|
3
|
+
|
|
4
|
+
import { getTextColor } from "../../../../utils/utils";
|
|
5
|
+
import { useStateValue } from "../../../SharedContext";
|
|
6
|
+
|
|
7
|
+
import "./slider-indicator.m.css";
|
|
8
|
+
|
|
9
|
+
export const SliderIndicator = ({ indicatorItems, indicatorClick, selectedIndex, indicatorType }) => {
|
|
10
|
+
if (indicatorItems.length < 1) {
|
|
11
|
+
return null;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const config = useStateValue() || {};
|
|
15
|
+
const textColor = getTextColor(config.theme);
|
|
16
|
+
|
|
17
|
+
return (
|
|
18
|
+
<ul styleName="indicators" className="slider-indicators">
|
|
19
|
+
{indicatorItems.map((_, index) => (
|
|
20
|
+
<li
|
|
21
|
+
key={`slider-${index}`}
|
|
22
|
+
styleName="indicator"
|
|
23
|
+
className="indicator"
|
|
24
|
+
onClick={(e) => indicatorClick(e, index)}>
|
|
25
|
+
<button
|
|
26
|
+
styleName={`indicator-button indicator-${indicatorType} indicator-${indicatorType}-${textColor}`}
|
|
27
|
+
className={`indicator-button indicator-${indicatorType}`}
|
|
28
|
+
aria-pressed={selectedIndex === index ? "true" : "false"}></button>
|
|
29
|
+
</li>
|
|
30
|
+
))}
|
|
31
|
+
</ul>
|
|
32
|
+
);
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
SliderIndicator.propTypes = {
|
|
36
|
+
indicatorItems: array,
|
|
37
|
+
perView: number,
|
|
38
|
+
indicatorType: string,
|
|
39
|
+
indicatorClick: func,
|
|
40
|
+
selectedIndex: number
|
|
41
|
+
};
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
.indicators {
|
|
2
|
+
display: flex;
|
|
3
|
+
justify-content: center;
|
|
4
|
+
width: 100%;
|
|
5
|
+
list-style: none;
|
|
6
|
+
font-family: var(--arrow-typeface-secondary);
|
|
7
|
+
cursor: pointer;
|
|
8
|
+
line-height: 0;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.indicator {
|
|
12
|
+
margin: var(--arrow-spacing-xs) 0;
|
|
13
|
+
padding: 4px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.indicator-button {
|
|
17
|
+
background: none;
|
|
18
|
+
border: none;
|
|
19
|
+
overflow: hidden;
|
|
20
|
+
padding: var(--arrow-spacing-s) var(--arrow-spacing-xxs);
|
|
21
|
+
cursor: pointer;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.indicator-dots {
|
|
25
|
+
width: 8px;
|
|
26
|
+
height: 8px;
|
|
27
|
+
border-radius: 50%;
|
|
28
|
+
background-color: var(--arrow-c-dark);
|
|
29
|
+
border: 1px solid var(--arrow-c-dark);
|
|
30
|
+
padding: 0;
|
|
31
|
+
opacity: 0.25;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.indicator-dots-dark[aria-pressed="true"] {
|
|
35
|
+
background-color: var(--arrow-c-dark);
|
|
36
|
+
opacity: 1;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.indicator-dots-light {
|
|
40
|
+
background-color: var(--arrow-c-light);
|
|
41
|
+
border-color: var(--arrow-c-light);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.indicator-dots-light[aria-pressed="true"] {
|
|
45
|
+
background-color: var(--arrow-c-light);
|
|
46
|
+
opacity: 1;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.indicator-dashes {
|
|
50
|
+
display: inline-block;
|
|
51
|
+
width: var(--arrow-spacing-s);
|
|
52
|
+
height: 2px;
|
|
53
|
+
padding: 0;
|
|
54
|
+
}
|
|
55
|
+
.indicator-dashes-dark {
|
|
56
|
+
opacity: 0.25;
|
|
57
|
+
background-color: var(--arrow-c-dark);
|
|
58
|
+
}
|
|
59
|
+
.indicator-dashes-light {
|
|
60
|
+
opacity: 0.25;
|
|
61
|
+
background-color: var(--arrow-c-light);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.indicator-dashes-dark[aria-pressed="true"] {
|
|
65
|
+
background-color: var(--arrow-c-dark);
|
|
66
|
+
opacity: 1;
|
|
67
|
+
}
|
|
68
|
+
.indicator-dashes-light[aria-pressed="true"] {
|
|
69
|
+
background-color: var(--arrow-c-light);
|
|
70
|
+
opacity: 1;
|
|
71
|
+
}
|