@quintype/arrow 3.54.1-debug-full-bleed.4 → 3.54.1-version-upgrade.1
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 +43 -0
- package/.eslintrc.json +35 -0
- package/.prettierrc +6 -0
- package/.storybook/addons.js +4 -0
- package/.storybook/main.js +7 -0
- package/.storybook/preview.js +3 -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 +2578 -0
- package/__mocks__/fileMock.js +1 -0
- package/__mocks__/styleMock.js +1 -0
- package/assets/stylesheets/mixins.scss +35 -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 +138 -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/AudioPlayer/PlayerBase.js +150 -0
- package/src/components/Atoms/AudioPlayer/PlayerControls.js +155 -0
- package/src/components/Atoms/AudioPlayer/ProgressBar.js +24 -0
- package/src/components/Atoms/AudioPlayer/audio.m.css +201 -0
- package/src/components/Atoms/AudioPlayer/index.js +59 -0
- package/src/components/Atoms/AudioPlayer/progressbar.m.css +48 -0
- package/src/components/Atoms/Author/README.md +19 -0
- package/src/components/Atoms/Author/author.m.css +62 -0
- package/src/components/Atoms/Author/index.js +112 -0
- package/src/components/Atoms/Author/stories.js +23 -0
- package/src/components/Atoms/AuthorCard/README.md +55 -0
- package/src/components/Atoms/AuthorCard/author-card.m.css +224 -0
- package/src/components/Atoms/AuthorCard/author-card.test.js +97 -0
- package/src/components/Atoms/AuthorCard/index.js +312 -0
- package/src/components/Atoms/AuthorCard/stories.js +164 -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 +62 -0
- package/src/components/Atoms/AuthorImage/stories.js +20 -0
- package/src/components/Atoms/AuthorWithTimestamp/README.md +12 -0
- package/src/components/Atoms/AuthorWithTimestamp/author-with-timestamp.m.css +40 -0
- package/src/components/Atoms/AuthorWithTimestamp/index.js +115 -0
- package/src/components/Atoms/AuthorWithTimestamp/stories.js +27 -0
- package/src/components/Atoms/BulletPoint/README.md +9 -0
- package/src/components/Atoms/BulletPoint/bullet-point.m.css +25 -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 +106 -0
- package/src/components/Atoms/CollectionName/index.js +147 -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 +114 -0
- package/src/components/Atoms/FallbackImage/fallback.m.css +33 -0
- package/src/components/Atoms/FallbackImage/index.js +39 -0
- package/src/components/Atoms/Headline/README.md +7 -0
- package/src/components/Atoms/Headline/headline.m.css +67 -0
- package/src/components/Atoms/Headline/index.js +112 -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 +99 -0
- package/src/components/Atoms/HeroImage/index.js +293 -0
- package/src/components/Atoms/HeroImage/stories.js +22 -0
- package/src/components/Atoms/Hyperlink/hyperlink.m.css +10 -0
- package/src/components/Atoms/Hyperlink/index.js +24 -0
- package/src/components/Atoms/LoadMoreTarget/index.js +30 -0
- package/src/components/Atoms/LoadMoreTarget/load-more-target.m.css +7 -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 +54 -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 +73 -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 +105 -0
- package/src/components/Atoms/PublishDetail/publish-details.m.css +53 -0
- package/src/components/Atoms/PublishDetail/publish-details.test.js +35 -0
- package/src/components/Atoms/PublishDetail/stories.js +22 -0
- package/src/components/Atoms/ReadTime/README.md +13 -0
- package/src/components/Atoms/ReadTime/index.js +59 -0
- package/src/components/Atoms/ReadTime/read-time.m.css +25 -0
- package/src/components/Atoms/ReadTime/read-time.test.js +27 -0
- package/src/components/Atoms/ReadTime/stories.js +19 -0
- package/src/components/Atoms/ResponsiveImg/index.js +174 -0
- package/src/components/Atoms/ScrollSnap/SliderArrow/index.js +67 -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 +179 -0
- package/src/components/Atoms/ScrollSnap/scroll-snap.m.css +26 -0
- package/src/components/Atoms/SectionTag/README.md +11 -0
- package/src/components/Atoms/SectionTag/index.js +74 -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 +259 -0
- package/src/components/Atoms/SocialSharePopup/index.js +122 -0
- package/src/components/Atoms/SocialSharePopup/social-share-popup.m.css +287 -0
- package/src/components/Atoms/SocialSharePopup/social-share-popup.test.js +101 -0
- package/src/components/Atoms/SocialSharePopup/stories.js +19 -0
- package/src/components/Atoms/SponsoredLabel/index.js +52 -0
- package/src/components/Atoms/SponsoredLabel/sponsored-lable.m.css +17 -0
- package/src/components/Atoms/StoryDemarcationIcon/index.js +127 -0
- package/src/components/Atoms/StoryElements/AISummary/ai-icons.js +51 -0
- package/src/components/Atoms/StoryElements/AISummary/ai-summary.m.css +106 -0
- package/src/components/Atoms/StoryElements/AISummary/index.js +206 -0
- package/src/components/Atoms/StoryElements/AISummary/stories.js +27 -0
- package/src/components/Atoms/StoryElements/AlsoRead/README.md +49 -0
- package/src/components/Atoms/StoryElements/AlsoRead/also-read.m.css +133 -0
- package/src/components/Atoms/StoryElements/AlsoRead/also-read.test.js +83 -0
- package/src/components/Atoms/StoryElements/AlsoRead/index.js +126 -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 +127 -0
- package/src/components/Atoms/StoryElements/Attachment/attachment.test.js +39 -0
- package/src/components/Atoms/StoryElements/Attachment/index.js +63 -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 +27 -0
- package/src/components/Atoms/StoryElements/BlockQuote/Svg/edge.js +27 -0
- package/src/components/Atoms/StoryElements/BlockQuote/Svg/icon.m.css +11 -0
- package/src/components/Atoms/StoryElements/BlockQuote/block-quote.m.css +170 -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 +56 -0
- package/src/components/Atoms/StoryElements/Blurb/blurb.test.js +71 -0
- package/src/components/Atoms/StoryElements/Blurb/index.js +50 -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 +21 -0
- package/src/components/Atoms/StoryElements/Image/image.test.js +20 -0
- package/src/components/Atoms/StoryElements/Image/index.js +76 -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 +63 -0
- package/src/components/Atoms/StoryElements/ImageSlideshow/index.js +101 -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 +150 -0
- package/src/components/Atoms/StoryElements/QuestionAnswer/question-answer.m.css +185 -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 +45 -0
- package/src/components/Atoms/StoryElements/Quote/quote.m.css +125 -0
- package/src/components/Atoms/StoryElements/Quote/quote.test.js +58 -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 +35 -0
- package/src/components/Atoms/StoryElements/StoryElement/stories.js +20 -0
- package/src/components/Atoms/StoryElements/StoryElement/storyElement.m.css +23 -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 +67 -0
- package/src/components/Atoms/StoryElements/Summary/stories.js +33 -0
- package/src/components/Atoms/StoryElements/Summary/summary.m.css +169 -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 +40 -0
- package/src/components/Atoms/StoryElements/Text/stories.js +32 -0
- package/src/components/Atoms/StoryElements/Text/text.m.css +88 -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 +46 -0
- package/src/components/Atoms/StoryElements/Video/stories.js +24 -0
- package/src/components/Atoms/StoryElements/Video/video.m.css +142 -0
- package/src/components/Atoms/StoryElements/Video/video.test.js +19 -0
- package/src/components/Atoms/StoryElements/imageGallery/README.md +18 -0
- package/src/components/Atoms/StoryElements/imageGallery/image-gallery.m.css +52 -0
- package/src/components/Atoms/StoryElements/imageGallery/image-gallery.test.js +19 -0
- package/src/components/Atoms/StoryElements/imageGallery/index.js +79 -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 +56 -0
- package/src/components/Atoms/StoryHeadline/story-headline.m.css +36 -0
- package/src/components/Atoms/StoryReview/README.md +9 -0
- package/src/components/Atoms/StoryReview/index.js +39 -0
- package/src/components/Atoms/StoryReview/stories.js +8 -0
- package/src/components/Atoms/StoryReview/story-review.m.css +34 -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 +42 -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 +83 -0
- package/src/components/Atoms/TimeStamp/stories.js +9 -0
- package/src/components/Atoms/TimeStamp/timestamp.m.css +21 -0
- package/src/components/Fixture/config.json +2703 -0
- package/src/components/Fixture/dummy-collection.js +2790 -0
- package/src/components/Fixture/dummyStory.js +2368 -0
- package/src/components/Fixture/index.js +425 -0
- package/src/components/Fixture/slot-config.js +29 -0
- package/src/components/Fixture/timezone.js +1 -0
- package/src/components/Molecules/FollowUs/README.md +17 -0
- package/src/components/Molecules/FollowUs/follow-us.m.css +99 -0
- package/src/components/Molecules/FollowUs/index.js +97 -0
- package/src/components/Molecules/FollowUs/stories.js +9 -0
- package/src/components/Molecules/FullScreenImages/fullscreenimages.scss +56 -0
- package/src/components/Molecules/FullScreenImages/index.js +98 -0
- package/src/components/Molecules/KeyEvents/README.md +21 -0
- package/src/components/Molecules/KeyEvents/index.js +132 -0
- package/src/components/Molecules/KeyEvents/key-events.m.css +103 -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/PortraitStoryCard/README.md +10 -0
- package/src/components/Molecules/PortraitStoryCard/index.js +54 -0
- package/src/components/Molecules/PortraitStoryCard/portrait-story-card.m.css +42 -0
- package/src/components/Molecules/PortraitStoryCard/stories.js +24 -0
- package/src/components/Molecules/SliderHorizontalCard/README.md +14 -0
- package/src/components/Molecules/SliderHorizontalCard/index.js +44 -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 +285 -0
- package/src/components/Molecules/SocialShareTemplate/index.js +299 -0
- package/src/components/Molecules/SocialShareTemplate/social-share-data.js +205 -0
- package/src/components/Molecules/SocialShareTemplate/social-share-template.m.css +340 -0
- package/src/components/Molecules/SocialShareTemplate/social-share-template.test.js +147 -0
- package/src/components/Molecules/SocialShareTemplate/stories.js +45 -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 +248 -0
- package/src/components/Molecules/StoryCard/stories.js +223 -0
- package/src/components/Molecules/StoryCard/storycard.m.css +197 -0
- package/src/components/Molecules/StoryCardWithBulletPoint/README.md +9 -0
- package/src/components/Molecules/StoryCardWithBulletPoint/index.js +33 -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 +511 -0
- package/src/components/Molecules/StoryElementCard/stories.js +27 -0
- package/src/components/Molecules/StoryElementCard/story-element-card.m.css +102 -0
- package/src/components/Molecules/StorycardContent/README.md +34 -0
- package/src/components/Molecules/StorycardContent/index.js +85 -0
- package/src/components/Molecules/StorycardContent/stories.js +39 -0
- package/src/components/Molecules/StorycardContent/storycardContent.m.css +27 -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 +125 -0
- package/src/components/Rows/AsideCollection/aside-collection.test.js +34 -0
- package/src/components/Rows/AsideCollection/index.js +247 -0
- package/src/components/Rows/AsideCollection/stories.js +52 -0
- package/src/components/Rows/AstrologyCollection/README.md +40 -0
- package/src/components/Rows/AstrologyCollection/astrology-collection.m.css +173 -0
- package/src/components/Rows/AstrologyCollection/index.js +176 -0
- package/src/components/Rows/AstrologyCollection/stories.js +60 -0
- package/src/components/Rows/AuthorIntroductionCard/README.md +43 -0
- package/src/components/Rows/AuthorIntroductionCard/author-intro.m.css +334 -0
- package/src/components/Rows/AuthorIntroductionCard/author-intro.test.js +106 -0
- package/src/components/Rows/AuthorIntroductionCard/index.js +126 -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 +48 -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 +240 -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 +338 -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 +115 -0
- package/src/components/Rows/FourColFiveStories/index.js +170 -0
- package/src/components/Rows/FourColFiveStories/stories.js +68 -0
- package/src/components/Rows/FourColGrid/README.md +39 -0
- package/src/components/Rows/FourColGrid/four-col.m.css +50 -0
- package/src/components/Rows/FourColGrid/index.js +164 -0
- package/src/components/Rows/FourColGrid/stories.js +66 -0
- package/src/components/Rows/FourColPortraitStories/README.md +38 -0
- package/src/components/Rows/FourColPortraitStories/four-col-portrait-stories.m.css +45 -0
- package/src/components/Rows/FourColPortraitStories/index.js +149 -0
- package/src/components/Rows/FourColPortraitStories/stories.js +66 -0
- package/src/components/Rows/FourColSixteenStories/README.md +35 -0
- package/src/components/Rows/FourColSixteenStories/four-col-sixteen-stories.m.css +165 -0
- package/src/components/Rows/FourColSixteenStories/index.js +136 -0
- package/src/components/Rows/FourColSixteenStories/stories.js +47 -0
- package/src/components/Rows/FourColTwelveStory/README.md +39 -0
- package/src/components/Rows/FourColTwelveStory/four-col-twelve-story.m.css +80 -0
- package/src/components/Rows/FourColTwelveStory/index.js +175 -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 +78 -0
- package/src/components/Rows/FourStorySlider/index.js +128 -0
- package/src/components/Rows/FourStorySlider/stories.js +117 -0
- package/src/components/Rows/FourStorySliderPortrait/README.md +45 -0
- package/src/components/Rows/FourStorySliderPortrait/four-story-slider-portrait.m.css +272 -0
- package/src/components/Rows/FourStorySliderPortrait/index.js +128 -0
- package/src/components/Rows/FourStorySliderPortrait/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 +265 -0
- package/src/components/Rows/FourTabbedBigStorySlider/index.js +159 -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 +162 -0
- package/src/components/Rows/FullScreenSlider/index.js +122 -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 +80 -0
- package/src/components/Rows/HalfScreenSlider/index.js +112 -0
- package/src/components/Rows/HalfScreenSlider/stories.js +115 -0
- package/src/components/Rows/IntroductionCard/README.md +11 -0
- package/src/components/Rows/IntroductionCard/index.js +72 -0
- package/src/components/Rows/IntroductionCard/intro-card.module.css +102 -0
- package/src/components/Rows/IntroductionCard/stories.js +32 -0
- package/src/components/Rows/ListComponent/README.md +48 -0
- package/src/components/Rows/ListComponent/index.js +149 -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/Listicles/README.md +32 -0
- package/src/components/Rows/Listicles/index.js +162 -0
- package/src/components/Rows/Listicles/listicles.m.css +149 -0
- package/src/components/Rows/Listicles/stories.js +66 -0
- package/src/components/Rows/MagazineEditions/README.md +21 -0
- package/src/components/Rows/MagazineEditions/index.js +96 -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 +77 -0
- package/src/components/Rows/MagazineHeaderCard/magazine-cards.m.css +107 -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 +132 -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 +217 -0
- package/src/components/Rows/OneColStoryList/one-col-story-list.m.css +91 -0
- package/src/components/Rows/OneColStoryList/stories.js +61 -0
- package/src/components/Rows/OpinionCollection/README.md +36 -0
- package/src/components/Rows/OpinionCollection/index.js +156 -0
- package/src/components/Rows/OpinionCollection/opinion-collection.m.css +210 -0
- package/src/components/Rows/OpinionCollection/stories.js +82 -0
- package/src/components/Rows/SixColSixStories/README.md +39 -0
- package/src/components/Rows/SixColSixStories/index.js +182 -0
- package/src/components/Rows/SixColSixStories/six-col-six-stories.m.css +92 -0
- package/src/components/Rows/SixColSixStories/stories.js +76 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/CustomAttributes/custom-attributes.m.css +78 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/CustomAttributes/index.js +103 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/event-story.m.css +138 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/index.js +56 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/stories.js +78 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/template.js +169 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/README.md +19 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/__snapshots__/listicle-story.test.js.snap +841 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/index.js +477 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.m.css +285 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.test.js +47 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicleUtils.js +16 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/stories.js +125 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/README.md +25 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/index.js +74 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/live-blog.m.css +320 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/stories.js +114 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/templates.js +449 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/index.js +381 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo-story.test.js +144 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo.m.css +199 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/stories.js +117 -0
- package/src/components/Rows/StoryTemplates/Snapshot/README.md +9 -0
- package/src/components/Rows/StoryTemplates/Snapshot/index.js +103 -0
- package/src/components/Rows/StoryTemplates/Snapshot/snapshot.m.css +88 -0
- package/src/components/Rows/StoryTemplates/Snapshot/stories.js +95 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/README.md +49 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/index.js +100 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/stories.js +120 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/templates.js +413 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/text-story.m.css +496 -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 +294 -0
- package/src/components/Rows/StoryTemplates/VideoStoryTemplates/stories.js +217 -0
- package/src/components/Rows/StoryTemplates/VideoStoryTemplates/video-story.m.css +185 -0
- package/src/components/Rows/ThreeColFlexStories/README.md +38 -0
- package/src/components/Rows/ThreeColFlexStories/index.js +217 -0
- package/src/components/Rows/ThreeColFlexStories/stories.js +73 -0
- package/src/components/Rows/ThreeColFlexStories/three-col-flex-stories.m.css +58 -0
- package/src/components/Rows/ThreeColFourteenStory/README.md +28 -0
- package/src/components/Rows/ThreeColFourteenStory/index.js +131 -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 +177 -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 +242 -0
- package/src/components/Rows/ThreeColSevenStory/stories.js +103 -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 +183 -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 +153 -0
- package/src/components/Rows/ThreeColTwelveStories/stories.js +51 -0
- package/src/components/Rows/ThreeColTwelveStories/three-col-twelve-stories.m.css +105 -0
- package/src/components/Rows/TwoColFourStory/README.md +33 -0
- package/src/components/Rows/TwoColFourStory/index.js +162 -0
- package/src/components/Rows/TwoColFourStory/stories.js +68 -0
- package/src/components/Rows/TwoColFourStory/two-col-four-story.m.css +66 -0
- package/src/components/Rows/TwoColFourStoryHighlight/README.md +35 -0
- package/src/components/Rows/TwoColFourStoryHighlight/index.js +138 -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/TwoColSevenStories/README.md +37 -0
- package/src/components/Rows/TwoColSevenStories/index.js +150 -0
- package/src/components/Rows/TwoColSevenStories/stories.js +100 -0
- package/src/components/Rows/TwoColSevenStories/two-col-seven-stories.m.css +182 -0
- package/src/components/Rows/TwoColSixStories/README.md +36 -0
- package/src/components/Rows/TwoColSixStories/index.js +140 -0
- package/src/components/Rows/TwoColSixStories/stories.js +67 -0
- package/src/components/Rows/TwoColSixStories/two-col-six-stories.m.css +174 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/README.md +34 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/index.js +193 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/stories.js +45 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/two-col-ten-stories-sidebar.m.css +64 -0
- package/src/components/Rows/TwoColThreeStory/README.md +40 -0
- package/src/components/Rows/TwoColThreeStory/index.js +155 -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 +6 -0
- package/src/components/Svgs/SocialIcons/circular-color/copylink.js +22 -0
- package/src/components/Svgs/SocialIcons/circular-color/email.js +16 -0
- package/src/components/Svgs/SocialIcons/circular-color/facebook.js +23 -0
- package/src/components/Svgs/SocialIcons/circular-color/instagram.js +24 -0
- package/src/components/Svgs/SocialIcons/circular-color/jio.js +30 -0
- package/src/components/Svgs/SocialIcons/circular-color/linkedin.js +16 -0
- package/src/components/Svgs/SocialIcons/circular-color/pinterest.js +16 -0
- package/src/components/Svgs/SocialIcons/circular-color/reddit.js +27 -0
- package/src/components/Svgs/SocialIcons/circular-color/telegram.js +16 -0
- package/src/components/Svgs/SocialIcons/circular-color/tiktok.js +40 -0
- package/src/components/Svgs/SocialIcons/circular-color/twitter.js +22 -0
- package/src/components/Svgs/SocialIcons/circular-color/whatsapp.js +18 -0
- package/src/components/Svgs/SocialIcons/circular-color/youtube.js +16 -0
- package/src/components/Svgs/SocialIcons/circular-plain/copylink.js +19 -0
- package/src/components/Svgs/SocialIcons/circular-plain/email.js +19 -0
- package/src/components/Svgs/SocialIcons/circular-plain/facebook.js +29 -0
- package/src/components/Svgs/SocialIcons/circular-plain/instagram.js +21 -0
- package/src/components/Svgs/SocialIcons/circular-plain/linkedin.js +21 -0
- package/src/components/Svgs/SocialIcons/circular-plain/reddit.js +33 -0
- package/src/components/Svgs/SocialIcons/circular-plain/telegram.js +22 -0
- package/src/components/Svgs/SocialIcons/circular-plain/twitter.js +21 -0
- package/src/components/Svgs/SocialIcons/circular-plain/whatsapp.js +23 -0
- package/src/components/Svgs/SocialIcons/circular-plain/youtube.js +17 -0
- package/src/components/Svgs/SocialIcons/plain/copylink.js +17 -0
- package/src/components/Svgs/SocialIcons/plain/email.js +23 -0
- package/src/components/Svgs/SocialIcons/plain/facebook.js +21 -0
- package/src/components/Svgs/SocialIcons/plain/google-news.js +26 -0
- package/src/components/Svgs/SocialIcons/plain/instagram.js +17 -0
- package/src/components/Svgs/SocialIcons/plain/linkedin.js +17 -0
- package/src/components/Svgs/SocialIcons/plain/pinterest.js +19 -0
- package/src/components/Svgs/SocialIcons/plain/reddit.js +25 -0
- package/src/components/Svgs/SocialIcons/plain/twitter.js +17 -0
- package/src/components/Svgs/SocialIcons/plain/whatsapp.js +19 -0
- package/src/components/Svgs/SocialIcons/plain/youtube.js +17 -0
- package/src/components/Svgs/SocialIcons/square/copylink.js +19 -0
- package/src/components/Svgs/SocialIcons/square/email.js +13 -0
- package/src/components/Svgs/SocialIcons/square/facebook.js +20 -0
- package/src/components/Svgs/SocialIcons/square/instagram.js +17 -0
- package/src/components/Svgs/SocialIcons/square/linkedin.js +13 -0
- package/src/components/Svgs/SocialIcons/square/reddit.js +24 -0
- package/src/components/Svgs/SocialIcons/square/telegram.js +13 -0
- package/src/components/Svgs/SocialIcons/square/twitter.js +19 -0
- package/src/components/Svgs/SocialIcons/square/whatsapp.js +15 -0
- package/src/components/Svgs/SocialIcons/square/youtube.js +13 -0
- package/src/components/Svgs/TTS-Icons/AudioSpeakerIcon.js +14 -0
- package/src/components/Svgs/TTS-Icons/BackwardIconSvg.js +13 -0
- package/src/components/Svgs/TTS-Icons/ClosePlayerIconSvg.js +13 -0
- package/src/components/Svgs/TTS-Icons/ForwordIconSvg.js +13 -0
- package/src/components/Svgs/TTS-Icons/PauseIconSvg.js +13 -0
- package/src/components/Svgs/TTS-Icons/PlayIconSvg.js +15 -0
- package/src/components/Svgs/TTS-Icons/ReplayIcon.js +16 -0
- package/src/components/Svgs/back-arrow.js +22 -0
- package/src/components/Svgs/calender.js +20 -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/hyperlink.js +17 -0
- package/src/components/Svgs/key.js +33 -0
- package/src/components/Svgs/large-share-icon.js +64 -0
- package/src/components/Svgs/left-arrow.js +17 -0
- package/src/components/Svgs/liveicon.js +14 -0
- package/src/components/Svgs/location.js +19 -0
- package/src/components/Svgs/lock.js +31 -0
- package/src/components/Svgs/photo-icons.js +84 -0
- package/src/components/Svgs/right-arrow.js +17 -0
- package/src/components/Svgs/share-icon.js +66 -0
- package/src/components/Svgs/star.js +33 -0
- package/src/components/Svgs/user-fallback-icon.js +19 -0
- package/src/components/Svgs/video-icons.js +104 -0
- package/src/components/Svgs/visual-story-icons.js +77 -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/constants.js +2 -0
- package/src/entry-points.js +373 -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 +99 -0
- package/src/utils/copy-link.js +37 -0
- package/src/utils/dateFnsLocales.js +9 -0
- package/src/utils/img-size-utils.js +102 -0
- package/src/utils/testing-utils.js +8 -0
- package/src/utils/utils.js +615 -0
- package/src/utils/utils.test.js +108 -0
- package/storybook/index.js +83 -0
- package/AlsoRead/styles.arrow.css +0 -1
- package/AlternateCollectionFilter/styles.arrow.css +0 -1
- package/AsideCollection/styles.arrow.css +0 -1
- package/AstrologyCollection/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/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/EventStoryTemplate/styles.arrow.css +0 -1
- package/FollowUs/styles.arrow.css +0 -1
- package/FourColFiveStories/styles.arrow.css +0 -1
- package/FourColGrid/styles.arrow.css +0 -1
- package/FourColPortraitStories/styles.arrow.css +0 -1
- package/FourColSixteenStories/styles.arrow.css +0 -1
- package/FourColTwelveStories/styles.arrow.css +0 -1
- package/FourStorySlider/styles.arrow.css +0 -1
- package/FourStorySliderPortrait/styles.arrow.css +0 -1
- package/FourTabbedBigStorySlider/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/IntroductionCard/styles.arrow.css +0 -1
- package/KeyEvents/styles.arrow.css +0 -1
- package/ListComponent/styles.arrow.css +0 -1
- package/ListicleStoryTemplate/styles.arrow.css +0 -1
- package/Listicles/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/OpinionCollection/styles.arrow.css +0 -1
- package/PageIntroductionCard/styles.arrow.css +0 -1
- package/PhotoStoryTemplate/styles.arrow.css +0 -1
- package/PublishDetails/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/ScrollSnap/styles.arrow.css +0 -1
- package/SectionTag/styles.arrow.css +0 -1
- package/SixColSixStories/styles.arrow.css +0 -1
- package/Snapshot/styles.arrow.css +0 -1
- package/SocialShareTemplate/styles.arrow.css +0 -1
- package/StoryCard/styles.arrow.css +0 -1
- package/StoryCollection/styles.arrow.css +0 -1
- package/StoryElement/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/Text/styles.arrow.css +0 -1
- package/TextStoryTemplate/styles.arrow.css +0 -1
- package/ThreeColFlexStories/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/ThreeColTwelveStories/styles.arrow.css +0 -1
- package/TimeStamp/styles.arrow.css +0 -1
- package/TwoColFourStories/styles.arrow.css +0 -1
- package/TwoColFourStoryHighlight/styles.arrow.css +0 -1
- package/TwoColSevenStories/styles.arrow.css +0 -1
- package/TwoColSixStories/styles.arrow.css +0 -1
- package/TwoColTenStoriesSidebar/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/{app.scss → assets/stylesheets/app.scss} +0 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { generateStory } from "../../Fixture";
|
|
3
|
+
import { StoryCardWithBulletPoint } from "./index";
|
|
4
|
+
import Readme from "./README.md";
|
|
5
|
+
import { color, boolean } from "@storybook/addon-knobs";
|
|
6
|
+
import { withStore } from "../../../../storybook";
|
|
7
|
+
|
|
8
|
+
const story = generateStory();
|
|
9
|
+
|
|
10
|
+
withStore(
|
|
11
|
+
"molecules/Story Card With Bullet Point ",
|
|
12
|
+
{
|
|
13
|
+
qt: {
|
|
14
|
+
config: {
|
|
15
|
+
"cdn-image": "thumbor-stg.assettype.com",
|
|
16
|
+
mountAt: "/sub-directory"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
Readme
|
|
21
|
+
).add("Default", () => {
|
|
22
|
+
const contextConfig = {
|
|
23
|
+
theme: color("color", "#ffffff"),
|
|
24
|
+
showSection: boolean("Show Section", true),
|
|
25
|
+
showAuthor: boolean("Show Author", true),
|
|
26
|
+
showTime: boolean("Show Time", true),
|
|
27
|
+
showReadTime: boolean("Read time", true)
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
return <StoryCardWithBulletPoint story={story} bulletValue={"1"} config={contextConfig} />;
|
|
31
|
+
});
|
|
@@ -0,0 +1,511 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import get from "lodash.get";
|
|
3
|
+
import { Text } from "../../Atoms/StoryElements/Text";
|
|
4
|
+
import { Blurb } from "../../Atoms/StoryElements/Blurb";
|
|
5
|
+
import "./story-element-card.m.css";
|
|
6
|
+
import { Summary } from "../../Atoms/StoryElements/Summary";
|
|
7
|
+
import { BlockQuote } from "../../Atoms/StoryElements/BlockQuote";
|
|
8
|
+
import { BigFact } from "../../Atoms/StoryElements/BigFact";
|
|
9
|
+
import { AlsoRead } from "../../Atoms/StoryElements/AlsoRead";
|
|
10
|
+
import { Image } from "../../Atoms/StoryElements/Image";
|
|
11
|
+
import PropTypes from "prop-types";
|
|
12
|
+
import { QuestionAnswer } from "../../Atoms/StoryElements/QuestionAnswer";
|
|
13
|
+
import { ImageGallery } from "../../Atoms/StoryElements/imageGallery";
|
|
14
|
+
import { StoryElement } from "../../Atoms/StoryElements/StoryElement";
|
|
15
|
+
import { Video } from "../../Atoms/StoryElements/Video";
|
|
16
|
+
import { Quote } from "../../Atoms/StoryElements/Quote";
|
|
17
|
+
import { Reference } from "../../Atoms/StoryElements/Reference";
|
|
18
|
+
import { CaptionAttribution } from "../../Atoms/CaptionAttribution";
|
|
19
|
+
import { Attachment } from "../../Atoms/StoryElements/Attachment";
|
|
20
|
+
import { SocialShare } from "@quintype/components";
|
|
21
|
+
import { SocialShareTemplate } from "../../Molecules/SocialShareTemplate";
|
|
22
|
+
import { facebookMobileVideoResizeFix, getTextColor } from "../../../utils/utils";
|
|
23
|
+
import { ImageSlideshow } from "../../Atoms/StoryElements/ImageSlideshow";
|
|
24
|
+
import { AISummary } from "../../Atoms/StoryElements/AISummary";
|
|
25
|
+
|
|
26
|
+
const getElementType = (element) => element["subtype"] || element["type"] || "";
|
|
27
|
+
const getElement = (story, element, config = {}, AdComponent, WidgetComp, index, cardId, enableDarkMode) => {
|
|
28
|
+
const {
|
|
29
|
+
text = {},
|
|
30
|
+
summary = {},
|
|
31
|
+
blurb = {},
|
|
32
|
+
blockquote = {},
|
|
33
|
+
quote = {},
|
|
34
|
+
"also-read": alsoRead = {},
|
|
35
|
+
"q-and-a": qaElement = {},
|
|
36
|
+
question: questionElement = {},
|
|
37
|
+
answer: answerElement = {},
|
|
38
|
+
references = {},
|
|
39
|
+
jsEmbed = {},
|
|
40
|
+
attachment = {},
|
|
41
|
+
aiSummary = {}
|
|
42
|
+
} = config;
|
|
43
|
+
|
|
44
|
+
let elementType = getElementType(element);
|
|
45
|
+
|
|
46
|
+
if (elementType === "image-gallery") {
|
|
47
|
+
elementType = element.metadata["type"];
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
if (elementType === "summary" && aiSummary?.opts?.enabled) {
|
|
51
|
+
const publishedAt = get(story, ["published-at"], 0);
|
|
52
|
+
elementType = publishedAt > 1773619200000 ? "ai-summary" : "summary";
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
const storyElementId = get(element, ["id"]);
|
|
56
|
+
const targetId = element.targetId ? `widget-${element.targetId}-${story.id}` : `widget-${index}_${cardId}`;
|
|
57
|
+
switch (elementType) {
|
|
58
|
+
case "ad":
|
|
59
|
+
return <AdComponent {...element} id={`ad-${index}_${cardId}`} />;
|
|
60
|
+
case "widget": {
|
|
61
|
+
const customCode = get(element, ["config", "customCode"], "");
|
|
62
|
+
const { placeholderHeight: widgetHeightMobile = "", widgetHeightDesktop = "" } = get(element, ["aheadNext"], {});
|
|
63
|
+
return (
|
|
64
|
+
<WidgetComp
|
|
65
|
+
widgetCode={customCode}
|
|
66
|
+
id={targetId}
|
|
67
|
+
widgetHeightMobile={widgetHeightMobile}
|
|
68
|
+
widgetHeightDesktop={widgetHeightDesktop}
|
|
69
|
+
/>
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
case "text":
|
|
73
|
+
case "cta":
|
|
74
|
+
const {
|
|
75
|
+
css: {
|
|
76
|
+
textColor: textElementColor = "#000",
|
|
77
|
+
darkTextColor: darkTextElementColor = "#fff",
|
|
78
|
+
hyperlinkColor = "#2f81cd"
|
|
79
|
+
} = {}
|
|
80
|
+
} = text;
|
|
81
|
+
|
|
82
|
+
return (
|
|
83
|
+
<Text
|
|
84
|
+
element={element}
|
|
85
|
+
css={{ textColor: enableDarkMode ? darkTextElementColor : textElementColor, hyperlinkColor: hyperlinkColor }}
|
|
86
|
+
/>
|
|
87
|
+
);
|
|
88
|
+
|
|
89
|
+
case "ai-summary": {
|
|
90
|
+
const { opts: { headline, subtitle, iconType } = {}, css = {} } = aiSummary;
|
|
91
|
+
return <AISummary element={element} opts={{ headline, subtitle, iconType }} css={css} story={story} />;
|
|
92
|
+
}
|
|
93
|
+
case "summary":
|
|
94
|
+
const {
|
|
95
|
+
template: summaryTemplate = "",
|
|
96
|
+
css: { headerBgColor = "", darkHeaderBgColor } = {},
|
|
97
|
+
opts: { headline = "", hideHeadline = false } = {}
|
|
98
|
+
} = summary;
|
|
99
|
+
return (
|
|
100
|
+
<Summary
|
|
101
|
+
element={element}
|
|
102
|
+
template={summaryTemplate}
|
|
103
|
+
opts={{
|
|
104
|
+
headline: headline || "Summary",
|
|
105
|
+
hideHeadline: hideHeadline
|
|
106
|
+
}}
|
|
107
|
+
css={{ headerBgColor: enableDarkMode ? darkHeaderBgColor : headerBgColor || "" }}
|
|
108
|
+
/>
|
|
109
|
+
);
|
|
110
|
+
|
|
111
|
+
case "blurb":
|
|
112
|
+
const {
|
|
113
|
+
template: blurbTemplate = "default",
|
|
114
|
+
css: { borderColor = "#3cab92", darkBorderColor = "#3cab92" } = {}
|
|
115
|
+
} = blurb;
|
|
116
|
+
return (
|
|
117
|
+
<Blurb
|
|
118
|
+
element={element}
|
|
119
|
+
template={blurbTemplate}
|
|
120
|
+
css={{ borderColor: enableDarkMode ? darkBorderColor : borderColor }}
|
|
121
|
+
/>
|
|
122
|
+
);
|
|
123
|
+
|
|
124
|
+
case "blockquote":
|
|
125
|
+
const {
|
|
126
|
+
template: blockQuoteTemplate = "default",
|
|
127
|
+
css: {
|
|
128
|
+
iconType = "edgeIcon",
|
|
129
|
+
blockQuoteColor = "",
|
|
130
|
+
darkBlockQuoteColor = "",
|
|
131
|
+
backgroundShade = "",
|
|
132
|
+
darkBackgroundShade = ""
|
|
133
|
+
} = {}
|
|
134
|
+
} = blockquote;
|
|
135
|
+
return (
|
|
136
|
+
<BlockQuote
|
|
137
|
+
element={element}
|
|
138
|
+
template={blockQuoteTemplate}
|
|
139
|
+
css={{
|
|
140
|
+
iconType: iconType,
|
|
141
|
+
blockQuoteColor: enableDarkMode ? darkBlockQuoteColor : blockQuoteColor,
|
|
142
|
+
backgroundShade: enableDarkMode ? darkBackgroundShade : backgroundShade
|
|
143
|
+
}}
|
|
144
|
+
/>
|
|
145
|
+
);
|
|
146
|
+
|
|
147
|
+
case "quote":
|
|
148
|
+
const {
|
|
149
|
+
template: quoteTemplate = "borderNone",
|
|
150
|
+
css: { borderColor: quoteBorderColor = "#2f81cd", darkBorderColor: darkQuoteBorderColor = "#2f81cd" } = {}
|
|
151
|
+
} = quote;
|
|
152
|
+
return (
|
|
153
|
+
<Quote
|
|
154
|
+
element={element}
|
|
155
|
+
template={quoteTemplate}
|
|
156
|
+
css={{ borderColor: enableDarkMode ? darkQuoteBorderColor : quoteBorderColor }}
|
|
157
|
+
/>
|
|
158
|
+
);
|
|
159
|
+
|
|
160
|
+
case "bigfact":
|
|
161
|
+
return <BigFact element={element} />;
|
|
162
|
+
|
|
163
|
+
case "also-read":
|
|
164
|
+
const {
|
|
165
|
+
template: alsoReadTemplate = "default",
|
|
166
|
+
css: { textColor = "", darkTextColor = "" } = {},
|
|
167
|
+
opts: { title = "" } = {}
|
|
168
|
+
} = alsoRead;
|
|
169
|
+
return (
|
|
170
|
+
<AlsoRead
|
|
171
|
+
story={story}
|
|
172
|
+
element={element}
|
|
173
|
+
template={alsoReadTemplate}
|
|
174
|
+
css={{ textColor: enableDarkMode ? darkTextColor : textColor }}
|
|
175
|
+
opts={{ title }}
|
|
176
|
+
/>
|
|
177
|
+
);
|
|
178
|
+
|
|
179
|
+
case "image":
|
|
180
|
+
return <Image element={element} />;
|
|
181
|
+
|
|
182
|
+
case "q-and-a": {
|
|
183
|
+
const {
|
|
184
|
+
template: qaTemplate = "default",
|
|
185
|
+
css: { iconColor = "", darkIconColor = "" } = {},
|
|
186
|
+
opts: { defaultIconType = "edge" } = {}
|
|
187
|
+
} = qaElement;
|
|
188
|
+
return (
|
|
189
|
+
<QuestionAnswer
|
|
190
|
+
element={element}
|
|
191
|
+
opts={{
|
|
192
|
+
type: "q-and-a",
|
|
193
|
+
defaultIconType: defaultIconType
|
|
194
|
+
}}
|
|
195
|
+
template={qaTemplate}
|
|
196
|
+
css={{
|
|
197
|
+
iconColor: enableDarkMode ? darkIconColor : iconColor
|
|
198
|
+
}}
|
|
199
|
+
/>
|
|
200
|
+
);
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
case "question": {
|
|
204
|
+
const {
|
|
205
|
+
template: questionTemplate = "default",
|
|
206
|
+
css: { iconColor = "", darkIconColor = "" } = {},
|
|
207
|
+
opts: { defaultQuestionIconType = "edge" } = {}
|
|
208
|
+
} = questionElement;
|
|
209
|
+
return (
|
|
210
|
+
<QuestionAnswer
|
|
211
|
+
element={element}
|
|
212
|
+
opts={{
|
|
213
|
+
type: "question",
|
|
214
|
+
defaultIconType: defaultQuestionIconType
|
|
215
|
+
}}
|
|
216
|
+
template={questionTemplate}
|
|
217
|
+
css={{
|
|
218
|
+
iconColor: enableDarkMode ? darkIconColor : iconColor
|
|
219
|
+
}}
|
|
220
|
+
/>
|
|
221
|
+
);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
case "answer":
|
|
225
|
+
const {
|
|
226
|
+
template: answerTemplate = "default",
|
|
227
|
+
css: { iconColor = "", darkIconColor = "" } = {},
|
|
228
|
+
opts: { defaultAnswerIconType = "edge" } = {}
|
|
229
|
+
} = answerElement;
|
|
230
|
+
return (
|
|
231
|
+
<QuestionAnswer
|
|
232
|
+
element={element}
|
|
233
|
+
opts={{
|
|
234
|
+
type: "answer",
|
|
235
|
+
defaultIconType: defaultAnswerIconType
|
|
236
|
+
}}
|
|
237
|
+
template={answerTemplate}
|
|
238
|
+
css={{
|
|
239
|
+
iconColor: enableDarkMode ? darkIconColor : iconColor
|
|
240
|
+
}}
|
|
241
|
+
/>
|
|
242
|
+
);
|
|
243
|
+
|
|
244
|
+
case "gallery":
|
|
245
|
+
return (
|
|
246
|
+
<div className="content-style" id={`image-gallery-${storyElementId}`}>
|
|
247
|
+
<ImageGallery element={element} />
|
|
248
|
+
</div>
|
|
249
|
+
);
|
|
250
|
+
|
|
251
|
+
case "slideshow":
|
|
252
|
+
return (
|
|
253
|
+
<div className="content-style" id={`image-slideshow-${storyElementId}`}>
|
|
254
|
+
<ImageSlideshow element={element} />
|
|
255
|
+
</div>
|
|
256
|
+
);
|
|
257
|
+
|
|
258
|
+
case "youtube-video":
|
|
259
|
+
case "dailymotion-video":
|
|
260
|
+
case "dailymotion-embed-script":
|
|
261
|
+
case "brightcove-video":
|
|
262
|
+
case "jwplayer":
|
|
263
|
+
const lazyLoad = get(jsEmbed, ["lazyLoad"], true);
|
|
264
|
+
return (
|
|
265
|
+
<div className="content-style" id={`video-${storyElementId}`}>
|
|
266
|
+
<Video element={element} story={story} loadIframeOnClick={lazyLoad} />
|
|
267
|
+
</div>
|
|
268
|
+
);
|
|
269
|
+
case "attachment":
|
|
270
|
+
return <Attachment element={element} opts={attachment?.["opts"]} />;
|
|
271
|
+
case "tweet":
|
|
272
|
+
case "jsembed":
|
|
273
|
+
return (
|
|
274
|
+
<div className="content-style" id={`jsembed-${storyElementId}`}>
|
|
275
|
+
<StoryElement element={element} />
|
|
276
|
+
</div>
|
|
277
|
+
);
|
|
278
|
+
case "references":
|
|
279
|
+
const { opts: { showHeadline = true, headlineText = "" } = {} } = references;
|
|
280
|
+
return (
|
|
281
|
+
<Reference
|
|
282
|
+
element={element}
|
|
283
|
+
opts={{
|
|
284
|
+
showHeadline: showHeadline,
|
|
285
|
+
headlineText: headlineText
|
|
286
|
+
}}
|
|
287
|
+
/>
|
|
288
|
+
);
|
|
289
|
+
default:
|
|
290
|
+
return (
|
|
291
|
+
<div className="content-style" id={`element-${storyElementId}`} styleName={`${getTextColor(config.theme)}`}>
|
|
292
|
+
<StoryElement element={element} story={story} />
|
|
293
|
+
</div>
|
|
294
|
+
);
|
|
295
|
+
}
|
|
296
|
+
};
|
|
297
|
+
|
|
298
|
+
export const LiveBlogStoryElement = ({
|
|
299
|
+
story,
|
|
300
|
+
card,
|
|
301
|
+
heroVideoElementId = -1,
|
|
302
|
+
config,
|
|
303
|
+
theme,
|
|
304
|
+
adComponent,
|
|
305
|
+
widgetComp,
|
|
306
|
+
enableDarkMode,
|
|
307
|
+
CardShare
|
|
308
|
+
}) => {
|
|
309
|
+
const textColor = getTextColor(theme);
|
|
310
|
+
let shouldRunFBMobileVideoFix = true;
|
|
311
|
+
const storyElements = get(card, ["story-elements"], []);
|
|
312
|
+
const firstNonAdElementIndex = storyElements.findIndex(
|
|
313
|
+
(element) => element.type !== "ad" && element.type !== "widget"
|
|
314
|
+
);
|
|
315
|
+
|
|
316
|
+
const adElementsAbove = storyElements.slice(0, firstNonAdElementIndex);
|
|
317
|
+
const restElements = storyElements.slice(firstNonAdElementIndex);
|
|
318
|
+
|
|
319
|
+
function StoryElements(storyElements) {
|
|
320
|
+
return (
|
|
321
|
+
<div className="arr--story-page-card-wrapper">
|
|
322
|
+
{storyElements.map((element, index) => {
|
|
323
|
+
if (element.id === heroVideoElementId) return false;
|
|
324
|
+
if (element.subtype && element.subtype === "facebook-post" && shouldRunFBMobileVideoFix) {
|
|
325
|
+
facebookMobileVideoResizeFix();
|
|
326
|
+
shouldRunFBMobileVideoFix = false;
|
|
327
|
+
}
|
|
328
|
+
const cardId = get(card, ["id"], "");
|
|
329
|
+
|
|
330
|
+
return (
|
|
331
|
+
<>
|
|
332
|
+
<div
|
|
333
|
+
key={element.id}
|
|
334
|
+
className="arr--element-container"
|
|
335
|
+
styleName={`element-container live-blog ${textColor}`}>
|
|
336
|
+
{getElement(story, element, config, adComponent, widgetComp, index, cardId, enableDarkMode)}
|
|
337
|
+
</div>
|
|
338
|
+
</>
|
|
339
|
+
);
|
|
340
|
+
})}
|
|
341
|
+
</div>
|
|
342
|
+
);
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
return (
|
|
346
|
+
<>
|
|
347
|
+
{StoryElements(adElementsAbove)}
|
|
348
|
+
<CardShare />
|
|
349
|
+
{StoryElements(restElements)}
|
|
350
|
+
</>
|
|
351
|
+
);
|
|
352
|
+
};
|
|
353
|
+
|
|
354
|
+
LiveBlogStoryElement.propTypes = {
|
|
355
|
+
story: PropTypes.object,
|
|
356
|
+
card: PropTypes.object,
|
|
357
|
+
heroVideoElementId: PropTypes.number,
|
|
358
|
+
config: PropTypes.object,
|
|
359
|
+
theme: PropTypes.string,
|
|
360
|
+
adComponent: PropTypes.func,
|
|
361
|
+
widgetComp: PropTypes.func,
|
|
362
|
+
enableDarkMode: PropTypes.bool,
|
|
363
|
+
CardShare: PropTypes.func
|
|
364
|
+
};
|
|
365
|
+
|
|
366
|
+
const MainImageWrapper = ({ imageElement, story, children, config, card }) => {
|
|
367
|
+
return (
|
|
368
|
+
<>
|
|
369
|
+
<div style={{ backgroundColor: config.theme || "initial" }}>
|
|
370
|
+
<Image element={imageElement} caption={false} />
|
|
371
|
+
<div styleName="image-share">
|
|
372
|
+
<CaptionAttribution element={imageElement} config={config} />
|
|
373
|
+
<SocialShare
|
|
374
|
+
template={SocialShareTemplate}
|
|
375
|
+
title={story.headline}
|
|
376
|
+
theme={config.theme}
|
|
377
|
+
fullUrl={encodeURI(`${get(story, ["url"], "")}?cardId=${get(card, ["id"], -1)}`)}
|
|
378
|
+
shareIconsOnly
|
|
379
|
+
socialShareStyle="fixed"
|
|
380
|
+
/>
|
|
381
|
+
</div>
|
|
382
|
+
</div>
|
|
383
|
+
</>
|
|
384
|
+
);
|
|
385
|
+
};
|
|
386
|
+
|
|
387
|
+
MainImageWrapper.propTypes = {
|
|
388
|
+
story: PropTypes.object,
|
|
389
|
+
imageElement: PropTypes.object,
|
|
390
|
+
config: PropTypes.object,
|
|
391
|
+
children: PropTypes.node,
|
|
392
|
+
card: PropTypes.shape({
|
|
393
|
+
id: PropTypes.string
|
|
394
|
+
})
|
|
395
|
+
};
|
|
396
|
+
|
|
397
|
+
export const StoryElementCard = ({
|
|
398
|
+
story,
|
|
399
|
+
card,
|
|
400
|
+
heroVideoElementId = -1,
|
|
401
|
+
config,
|
|
402
|
+
isLive,
|
|
403
|
+
listicleBulletOpts = {},
|
|
404
|
+
theme,
|
|
405
|
+
adComponent,
|
|
406
|
+
widgetComp,
|
|
407
|
+
enableDarkMode
|
|
408
|
+
}) => {
|
|
409
|
+
const textColor = getTextColor(theme);
|
|
410
|
+
const isLiveBlog = isLive ? "live-blog" : "";
|
|
411
|
+
let shouldRunFBMobileVideoFix = true;
|
|
412
|
+
const { isTitlePresent, firstDescriptionElementsIndex, addNonInlineBullets } = listicleBulletOpts;
|
|
413
|
+
|
|
414
|
+
return (
|
|
415
|
+
<div className="arr--story-page-card-wrapper">
|
|
416
|
+
{get(card, ["story-elements"], []).map((element, index) => {
|
|
417
|
+
if (element.id === heroVideoElementId) return false;
|
|
418
|
+
if (element.subtype && element.subtype === "facebook-post" && shouldRunFBMobileVideoFix) {
|
|
419
|
+
facebookMobileVideoResizeFix();
|
|
420
|
+
shouldRunFBMobileVideoFix = false;
|
|
421
|
+
}
|
|
422
|
+
const cardId = get(card, ["id"], "");
|
|
423
|
+
return (
|
|
424
|
+
<>
|
|
425
|
+
{!isTitlePresent && firstDescriptionElementsIndex === index && addNonInlineBullets(listicleBulletOpts)}
|
|
426
|
+
<div
|
|
427
|
+
key={element.id}
|
|
428
|
+
className="arr--element-container"
|
|
429
|
+
styleName={`element-container ${isLiveBlog} ${textColor}`}>
|
|
430
|
+
{getElement(story, element, config, adComponent, widgetComp, index, cardId, enableDarkMode)}
|
|
431
|
+
</div>
|
|
432
|
+
</>
|
|
433
|
+
);
|
|
434
|
+
})}
|
|
435
|
+
</div>
|
|
436
|
+
);
|
|
437
|
+
};
|
|
438
|
+
StoryElementCard.propTypes = {
|
|
439
|
+
story: PropTypes.object,
|
|
440
|
+
card: PropTypes.array,
|
|
441
|
+
heroVideoElementId: PropTypes.number,
|
|
442
|
+
config: PropTypes.object,
|
|
443
|
+
isLive: PropTypes.bool,
|
|
444
|
+
listicleBulletOpts: PropTypes.object,
|
|
445
|
+
theme: PropTypes.string,
|
|
446
|
+
adComponent: PropTypes.func,
|
|
447
|
+
widgetComp: PropTypes.func,
|
|
448
|
+
enableDarkMode: PropTypes.bool
|
|
449
|
+
};
|
|
450
|
+
|
|
451
|
+
export const PhotoStoryElement = ({ card = {}, config, story, adComponent, widgetComp, enableDarkMode, theme }) => {
|
|
452
|
+
let shouldRunFBMobileVideoFix = true;
|
|
453
|
+
const textColor = getTextColor(theme);
|
|
454
|
+
return (
|
|
455
|
+
<div styleName={`story-card ${textColor}`}>
|
|
456
|
+
{get(card, ["story-elements"], []).map((element, index) => {
|
|
457
|
+
const cardId = get(card, ["id"], "");
|
|
458
|
+
if (element.type === "image") {
|
|
459
|
+
return <MainImageWrapper imageElement={element} story={story} config={config} card={card} />;
|
|
460
|
+
} else {
|
|
461
|
+
if (element.subtype && element.subtype === "facebook-post" && shouldRunFBMobileVideoFix) {
|
|
462
|
+
facebookMobileVideoResizeFix();
|
|
463
|
+
shouldRunFBMobileVideoFix = false;
|
|
464
|
+
}
|
|
465
|
+
return (
|
|
466
|
+
<div styleName="element-container" key={index}>
|
|
467
|
+
{getElement(story, element, config, adComponent, widgetComp, index, cardId, enableDarkMode)}
|
|
468
|
+
</div>
|
|
469
|
+
);
|
|
470
|
+
}
|
|
471
|
+
})}
|
|
472
|
+
</div>
|
|
473
|
+
);
|
|
474
|
+
};
|
|
475
|
+
|
|
476
|
+
PhotoStoryElement.propTypes = {
|
|
477
|
+
story: PropTypes.object,
|
|
478
|
+
card: PropTypes.object,
|
|
479
|
+
config: PropTypes.object,
|
|
480
|
+
adComponent: PropTypes.func,
|
|
481
|
+
widgetComp: PropTypes.func,
|
|
482
|
+
enableDarkMode: PropTypes.bool,
|
|
483
|
+
theme: PropTypes.string
|
|
484
|
+
};
|
|
485
|
+
|
|
486
|
+
export const SlotAfterStory = ({ id = "", element = {}, AdComponent, WidgetComp }) => {
|
|
487
|
+
const targetId = element.targetId ? `widget-after-story-${element.targetId}-${id}` : `widget-after-story-${id}`;
|
|
488
|
+
const { placeholderHeight: widgetHeightMobile = "", widgetHeightDesktop = "" } = get(element, ["aheadNext"], {});
|
|
489
|
+
switch (element.type) {
|
|
490
|
+
case "ad":
|
|
491
|
+
return <AdComponent {...element} id={`ad-after-story-${id}`} />;
|
|
492
|
+
case "widget":
|
|
493
|
+
return (
|
|
494
|
+
<WidgetComp
|
|
495
|
+
widgetCode={element.config.customCode}
|
|
496
|
+
id={targetId}
|
|
497
|
+
widgetHeightMobile={widgetHeightMobile}
|
|
498
|
+
widgetHeightDesktop={widgetHeightDesktop}
|
|
499
|
+
/>
|
|
500
|
+
);
|
|
501
|
+
default:
|
|
502
|
+
return null;
|
|
503
|
+
}
|
|
504
|
+
};
|
|
505
|
+
|
|
506
|
+
SlotAfterStory.propTypes = {
|
|
507
|
+
id: PropTypes.string,
|
|
508
|
+
element: PropTypes.object,
|
|
509
|
+
AdComponent: PropTypes.func,
|
|
510
|
+
WidgetComp: PropTypes.func
|
|
511
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { generateStory } from "../../Fixture";
|
|
3
|
+
import { withStore } from "../../../../storybook";
|
|
4
|
+
import Readme from "./README.md";
|
|
5
|
+
import { StoryElementCard } from "./index";
|
|
6
|
+
import { color } from "@storybook/addon-knobs";
|
|
7
|
+
|
|
8
|
+
const story = generateStory();
|
|
9
|
+
const { cards } = story;
|
|
10
|
+
|
|
11
|
+
withStore(
|
|
12
|
+
"Molecules/Story Element Card",
|
|
13
|
+
{
|
|
14
|
+
qt: {
|
|
15
|
+
config: {
|
|
16
|
+
"cdn-image": "thumbor-stg.assettype.com",
|
|
17
|
+
mountAt: "/sub-directory"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
Readme
|
|
22
|
+
).add("Default", () => {
|
|
23
|
+
const config = {
|
|
24
|
+
theme: color("Background Color", "#fff")
|
|
25
|
+
};
|
|
26
|
+
return <StoryElementCard story={story} card={cards[0]} config={config} />;
|
|
27
|
+
});
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
@import "../../../../assets/stylesheets/mixins.scss";
|
|
2
|
+
|
|
3
|
+
.element-container {
|
|
4
|
+
margin: var(--arrow-spacing-l) 0;
|
|
5
|
+
@include tablet {
|
|
6
|
+
margin: var(--arrow-spacing-xl) 0;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.live-blog {
|
|
11
|
+
margin: var(--arrow-spacing-m) 0 var(--arrow-spacing-l);
|
|
12
|
+
@include tablet {
|
|
13
|
+
margin: var(--arrow-spacing-m) 0 var(--arrow-spacing-xl);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.image-share {
|
|
18
|
+
display: flex;
|
|
19
|
+
justify-content: space-between;
|
|
20
|
+
padding: var(--arrow-spacing-xs) 0 var(--arrow-spacing-l);
|
|
21
|
+
}
|
|
22
|
+
.image-share :global(.arr--caption-attribution) {
|
|
23
|
+
margin: unset;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.image-share :global(.desktop-share-wrapper) {
|
|
27
|
+
@include desktop {
|
|
28
|
+
max-width: 42px;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.story-card {
|
|
33
|
+
margin-bottom: var(--arrow-spacing-xl);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.story-card.dark {
|
|
37
|
+
border-bottom: 1px solid var(--arrow-c-mono2);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.story-card.light {
|
|
41
|
+
border-bottom: 1px solid var(--arrow-c-invert-mono2);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.element-container :global(.story-element-jsembed) iframe {
|
|
45
|
+
max-width: 100%;
|
|
46
|
+
width: 100%;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.element-container :global(.story-element-jsembed) img {
|
|
50
|
+
width: fit-content;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.element-container :global(.story-element-jsembed-dailymotion-video) iframe {
|
|
54
|
+
width: 100%;
|
|
55
|
+
height: 100%;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
:global(.story-element-jsembed.story-element-jsembed-facebook-post *) {
|
|
59
|
+
@include mobile {
|
|
60
|
+
max-width: 100%;
|
|
61
|
+
position: relative;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
:global(.story-element-jsembed.story-element-jsembed-facebook-post) {
|
|
66
|
+
@include mobile {
|
|
67
|
+
max-width: calc(100vw - var(--arrow-spacing-l));
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.element-container :global(.dailymotion-embed-wrapper) {
|
|
72
|
+
padding-bottom: 56.25%;
|
|
73
|
+
position: relative;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.element-container :global(.story-element-jsembed-instagram > .jsembed-wrapper) {
|
|
77
|
+
/* fix instagram overflowing container on safari */
|
|
78
|
+
position: relative;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.element-container :global(.story-element-jsembed > .jsembed-wrapper.facebook-jsembed) iframe {
|
|
82
|
+
max-width: 100%;
|
|
83
|
+
width: revert-layer;
|
|
84
|
+
display: block;
|
|
85
|
+
margin: auto;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.element-container :global(.dailymotion-embed-wrapper .dailymotion-player-root) {
|
|
89
|
+
padding-bottom: 0 !important;
|
|
90
|
+
position: absolute !important;
|
|
91
|
+
top: 0;
|
|
92
|
+
left: 0;
|
|
93
|
+
width: 100%;
|
|
94
|
+
height: 100%;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.dark {
|
|
98
|
+
color: var(--arrow-c-mono2);
|
|
99
|
+
}
|
|
100
|
+
.light {
|
|
101
|
+
color: var(--arrow-c-invert-mono2);
|
|
102
|
+
}
|