@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,287 @@
|
|
|
1
|
+
@import "../../../../assets/stylesheets/mixins.scss";
|
|
2
|
+
|
|
3
|
+
.custom-popup-wrapper,
|
|
4
|
+
.basic-popup-wrapper {
|
|
5
|
+
padding: var(--arrow-spacing-m) var(--arrow-spacing-m) 40px;
|
|
6
|
+
border-radius: var(--arrow-spacing-xs) var(--arrow-spacing-xs) 0 0;
|
|
7
|
+
position: fixed;
|
|
8
|
+
left: 0;
|
|
9
|
+
right: 0;
|
|
10
|
+
bottom: 0;
|
|
11
|
+
z-index: 1101;
|
|
12
|
+
@include desktop {
|
|
13
|
+
padding: 14px 14px var(--arrow-spacing-s);
|
|
14
|
+
width: 274px;
|
|
15
|
+
border-radius: var(--arrow-spacing-m);
|
|
16
|
+
position: absolute;
|
|
17
|
+
top: 56px;
|
|
18
|
+
right: unset;
|
|
19
|
+
bottom: unset;
|
|
20
|
+
z-index: 99;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.custom-popup-wrapper {
|
|
25
|
+
@include desktop {
|
|
26
|
+
top: 54px;
|
|
27
|
+
left: unset;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.content-width-2 {
|
|
32
|
+
@include desktop {
|
|
33
|
+
width: 124px;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.content-width-3 {
|
|
38
|
+
@include desktop {
|
|
39
|
+
width: 174px;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.content-width-4 {
|
|
44
|
+
@include desktop {
|
|
45
|
+
width: 224px;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.content-width-5 {
|
|
50
|
+
@include desktop {
|
|
51
|
+
width: 274px;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.content-width-6 {
|
|
56
|
+
@include desktop {
|
|
57
|
+
width: 324px;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.dark.custom-popup-wrapper,
|
|
62
|
+
.dark.basic-popup-wrapper {
|
|
63
|
+
background-color: var(--arrow-c-light);
|
|
64
|
+
box-shadow: 0px -2px 18px 0px rgba(0, 0, 0, 0.1);
|
|
65
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.light.custom-popup-wrapper,
|
|
69
|
+
.light.basic-popup-wrapper {
|
|
70
|
+
background-color: var(--arrow-c-dark);
|
|
71
|
+
box-shadow: 0px -2px 18px 0px rgba(0, 0, 0, 0.14);
|
|
72
|
+
border: 1px solid rgba(0, 0, 0, 0.14);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.top-bar {
|
|
76
|
+
display: flex;
|
|
77
|
+
justify-content: space-between;
|
|
78
|
+
align-items: center;
|
|
79
|
+
margin-bottom: var(--arrow-spacing-xs);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.close {
|
|
83
|
+
cursor: pointer;
|
|
84
|
+
padding: var(--arrow-spacing-xxs) 0 var(--arrow-spacing-xxs) var(--arrow-spacing-xxs);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.share-text {
|
|
88
|
+
font-size: var(--arrow-fs-s);
|
|
89
|
+
font-weight: var(--arrow-fw-semi-bold);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.dark .share-text {
|
|
93
|
+
color: #000000;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.light .share-text {
|
|
97
|
+
color: #ffffff;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.share-icon-wrapper {
|
|
101
|
+
display: flex;
|
|
102
|
+
flex-wrap: wrap;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.icon-wrapper {
|
|
106
|
+
list-style-type: none;
|
|
107
|
+
cursor: pointer;
|
|
108
|
+
padding: 6px;
|
|
109
|
+
margin: 6px var(--arrow-spacing-xs) 0 0;
|
|
110
|
+
border-radius: 2px;
|
|
111
|
+
width: 44px;
|
|
112
|
+
height: 44px;
|
|
113
|
+
flex-shrink: 0;
|
|
114
|
+
@include desktop {
|
|
115
|
+
margin: 6px 0 0 6px;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.dark .icon-wrapper {
|
|
120
|
+
background-color: var(--arrow-c-accent5);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.light .icon-wrapper {
|
|
124
|
+
background-color: #ffffff12;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.dark.custom-popup-wrapper::before,
|
|
128
|
+
.dark.basic-popup-wrapper::before {
|
|
129
|
+
color: var(--arrow-c-light);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.light.custom-popup-wrapper::before,
|
|
133
|
+
.light.basic-popup-wrapper::before {
|
|
134
|
+
color: var(--arrow-c-dark);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.triangle {
|
|
138
|
+
@include desktop {
|
|
139
|
+
position: absolute;
|
|
140
|
+
width: 16px;
|
|
141
|
+
height: 14px;
|
|
142
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
143
|
+
-webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
|
|
144
|
+
clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
|
|
145
|
+
top: -13px;
|
|
146
|
+
z-index: 9;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.triangle::after {
|
|
151
|
+
@include desktop {
|
|
152
|
+
content: "";
|
|
153
|
+
position: absolute;
|
|
154
|
+
top: 2px;
|
|
155
|
+
width: 14px;
|
|
156
|
+
height: 12px;
|
|
157
|
+
background-color: var(--arrow-c-light);
|
|
158
|
+
-webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
|
|
159
|
+
clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
|
|
160
|
+
box-sizing: border-box;
|
|
161
|
+
z-index: -1;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.light .triangle {
|
|
166
|
+
background-color: rgba(0, 0, 0, 0.14);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.light .triangle::after {
|
|
170
|
+
background-color: var(--arrow-c-dark);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
html[dir="ltr"] {
|
|
174
|
+
.basic-popup-wrapper .triangle {
|
|
175
|
+
@include desktop {
|
|
176
|
+
left: 32px;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
.basic-popup-wrapper .triangle::after {
|
|
180
|
+
@include desktop {
|
|
181
|
+
left: 1px;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.basic-popup-wrapper {
|
|
186
|
+
@include desktop {
|
|
187
|
+
left: 0%;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.custom-popup-wrapper .triangle {
|
|
192
|
+
@include desktop {
|
|
193
|
+
right: 14px;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
.custom-popup-wrapper .triangle::after {
|
|
197
|
+
@include desktop {
|
|
198
|
+
right: 1px;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.custom-popup-wrapper {
|
|
203
|
+
@include desktop {
|
|
204
|
+
right: 0;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.share-icon-wrapper :nth-child(1),
|
|
209
|
+
.share-icon-wrapper :nth-child(7) {
|
|
210
|
+
@include desktop {
|
|
211
|
+
margin-left: 0;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
html[dir="rtl"] {
|
|
217
|
+
.basic-popup-wrapper .triangle {
|
|
218
|
+
@include desktop {
|
|
219
|
+
right: 32px;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.basic-popup-wrapper .triangle::after {
|
|
224
|
+
@include desktop {
|
|
225
|
+
right: 1px;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.icon-wrapper {
|
|
230
|
+
margin: 6px 6px 0 0;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.basic-popup-wrapper {
|
|
234
|
+
@include desktop {
|
|
235
|
+
right: 0%;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.custom-popup-wrapper .triangle {
|
|
240
|
+
@include desktop {
|
|
241
|
+
left: 14px;
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.custom-popup-wrapper .triangle::after {
|
|
246
|
+
@include desktop {
|
|
247
|
+
left: 1px;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.custom-popup-wrapper {
|
|
252
|
+
@include desktop {
|
|
253
|
+
left: 0;
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.share-icon-wrapper :nth-child(1),
|
|
258
|
+
.share-icon-wrapper :nth-child(7) {
|
|
259
|
+
@include desktop {
|
|
260
|
+
margin-right: 0;
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.icon-wrapper :global(.copied-msg) {
|
|
266
|
+
position: absolute;
|
|
267
|
+
padding: 5px;
|
|
268
|
+
border-radius: 3px;
|
|
269
|
+
pointer-events: none;
|
|
270
|
+
transform: translate(-50%, -100%);
|
|
271
|
+
white-space: nowrap;
|
|
272
|
+
z-index: 1000;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.icon-wrapper :global(.copied-msg.hidden) {
|
|
276
|
+
display: none;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.dark .icon-wrapper :global(.copied-msg) {
|
|
280
|
+
background-color: #333;
|
|
281
|
+
color: white;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.light .icon-wrapper :global(.copied-msg) {
|
|
285
|
+
background-color: #333;
|
|
286
|
+
color: white;
|
|
287
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { shallow } from "enzyme";
|
|
3
|
+
import { SocialSharePopup } from "./index";
|
|
4
|
+
|
|
5
|
+
describe("Social Share Template", () => {
|
|
6
|
+
it("Should render social share popup", () => {
|
|
7
|
+
const data = {
|
|
8
|
+
fbUrl: "https://www.facebook.com",
|
|
9
|
+
twitterUrl: "https://twitter.com/",
|
|
10
|
+
linkedinUrl: "https://twitter.com/",
|
|
11
|
+
whatsappUrl: "https://twitter.com/",
|
|
12
|
+
redditUrl: "https://www.reddit.com/",
|
|
13
|
+
theme: "#ffff",
|
|
14
|
+
iconType: "plain-svg",
|
|
15
|
+
closePopup: "",
|
|
16
|
+
socialShareIconsOrder: ["facebook"]
|
|
17
|
+
};
|
|
18
|
+
const wrapper = shallow(<SocialSharePopup {...data} />);
|
|
19
|
+
expect(wrapper).toMatchSnapshot();
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
it("Should not render facebook icon if url not passed", () => {
|
|
23
|
+
const data = {
|
|
24
|
+
fbUrl: "",
|
|
25
|
+
twitterUrl: "https://twitter.com/",
|
|
26
|
+
linkedinUrl: "https://twitter.com/",
|
|
27
|
+
whatsappUrl: "https://twitter.com/",
|
|
28
|
+
redditUrl: "https://www.reddit.com/",
|
|
29
|
+
theme: "#ffff",
|
|
30
|
+
iconType: "plain-svg",
|
|
31
|
+
closePopup: "",
|
|
32
|
+
socialShareIconsOrder: ["facebook"]
|
|
33
|
+
};
|
|
34
|
+
const wrapper = shallow(<SocialSharePopup {...data} />);
|
|
35
|
+
expect(wrapper).toMatchSnapshot();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it("Should not render twitter icon if url not passed", () => {
|
|
39
|
+
const data = {
|
|
40
|
+
fbUrl: "https://twitter.com/",
|
|
41
|
+
twitterUrl: "",
|
|
42
|
+
linkedinUrl: "https://twitter.com/",
|
|
43
|
+
whatsappUrl: "https://twitter.com/",
|
|
44
|
+
theme: "#ffff",
|
|
45
|
+
iconType: "plain-svg",
|
|
46
|
+
vertical: true,
|
|
47
|
+
closePopup: "",
|
|
48
|
+
socialShareIconsOrder: ["facebook"]
|
|
49
|
+
};
|
|
50
|
+
const wrapper = shallow(<SocialSharePopup {...data} />);
|
|
51
|
+
expect(wrapper).toMatchSnapshot();
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
it("Should not render whatsapp icon if url not passed", () => {
|
|
55
|
+
const data = {
|
|
56
|
+
fbUrl: "https://twitter.com/",
|
|
57
|
+
twitterUrl: "https://twitter.com/",
|
|
58
|
+
linkedinUrl: "https://twitter.com/",
|
|
59
|
+
whatsappUrl: "",
|
|
60
|
+
theme: "#ffff",
|
|
61
|
+
iconType: "plain-svg",
|
|
62
|
+
vertical: true,
|
|
63
|
+
closePopup: "",
|
|
64
|
+
socialShareIconsOrder: ["facebook"]
|
|
65
|
+
};
|
|
66
|
+
const wrapper = shallow(<SocialSharePopup {...data} />);
|
|
67
|
+
expect(wrapper).toMatchSnapshot();
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
it("Should not render linkedin icon if url not passed", () => {
|
|
71
|
+
const data = {
|
|
72
|
+
fbUrl: "https://twitter.com/",
|
|
73
|
+
twitterUrl: "https://twitter.com/",
|
|
74
|
+
linkedinUrl: "",
|
|
75
|
+
whatsappUrl: "https://twitter.com/",
|
|
76
|
+
theme: "#ffff",
|
|
77
|
+
iconType: "plain-svg",
|
|
78
|
+
vertical: true,
|
|
79
|
+
closePopup: "",
|
|
80
|
+
socialShareIconsOrder: ["facebook"]
|
|
81
|
+
};
|
|
82
|
+
const wrapper = shallow(<SocialSharePopup {...data} />);
|
|
83
|
+
expect(wrapper).toMatchSnapshot();
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
it("Should render template if theme and icon is not passed", () => {
|
|
87
|
+
const data = {
|
|
88
|
+
fbUrl: "https://twitter.com/",
|
|
89
|
+
twitterUrl: "https://twitter.com/",
|
|
90
|
+
linkedinUrl: "https://twitter.com/",
|
|
91
|
+
whatsappUrl: "https://twitter.com/",
|
|
92
|
+
theme: "",
|
|
93
|
+
iconType: "plain-svg",
|
|
94
|
+
vertical: true,
|
|
95
|
+
closePopup: "",
|
|
96
|
+
socialShareIconsOrder: ["facebook"]
|
|
97
|
+
};
|
|
98
|
+
const wrapper = shallow(<SocialSharePopup {...data} />);
|
|
99
|
+
expect(wrapper).toMatchSnapshot();
|
|
100
|
+
});
|
|
101
|
+
});
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { withStore } from "../../../../storybook";
|
|
3
|
+
import { SocialSharePopup } from "./index";
|
|
4
|
+
import Readme from "./README.md";
|
|
5
|
+
|
|
6
|
+
const props = {
|
|
7
|
+
fbUrl: "https://www.facebook.com",
|
|
8
|
+
fullUrl:
|
|
9
|
+
"https://ace-web.qtstage.io/anything/recent-stories/newsready-player-one-review-spielberg-spins-a-dizzying-vr-yarn",
|
|
10
|
+
iconType: "plain-svg",
|
|
11
|
+
linkedinUrl: "https://www.linkedin.com",
|
|
12
|
+
mailtoUrl:
|
|
13
|
+
"mailto:?subject=Ready%20Player%20One%20review%20%E2%80%93%20Spielberg%C2%A0&body=https%3A%2F%2Face-web.qtstage.io%2Fanything%2Frecent-stories%2Fnews%2Fready-player-one-review-spielberg-spins-a-dizzying-vr-yarn",
|
|
14
|
+
publisherUrl: undefined,
|
|
15
|
+
theme: "#ffffff",
|
|
16
|
+
title: "Ready Player One review – Spielberg ",
|
|
17
|
+
twitterUrl: "https://twitter.com"
|
|
18
|
+
};
|
|
19
|
+
withStore("Atoms/Social Share Popup", {}, Readme).add("default", () => <SocialSharePopup {...props} />);
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import { getTextColor } from "../../../utils/utils";
|
|
4
|
+
import { useSelector } from "react-redux";
|
|
5
|
+
import get from "lodash.get";
|
|
6
|
+
import "./sponsored-lable.m.css";
|
|
7
|
+
|
|
8
|
+
export function SponsoredLabel({ story, sponsoredStoryConfig, isStoryPage }) {
|
|
9
|
+
const storyMetaData = get(story, ["metadata"], {});
|
|
10
|
+
const isSponsoredStory = storyMetaData.hasOwnProperty("sponsored-by");
|
|
11
|
+
if (!isSponsoredStory) return null;
|
|
12
|
+
|
|
13
|
+
const storySponsoredBy = get(storyMetaData, ["sponsored-by"], "");
|
|
14
|
+
const enableDarkMode = useSelector((state) => get(state, ["header", "isDarkModeEnabled"], false));
|
|
15
|
+
const {
|
|
16
|
+
sponsoredStoryPageLabel,
|
|
17
|
+
sponsoredLabelColor,
|
|
18
|
+
sponsoredLabelDarkColor,
|
|
19
|
+
sponsoredStoryRowLabel
|
|
20
|
+
} = sponsoredStoryConfig;
|
|
21
|
+
|
|
22
|
+
const sponsoredBy = sponsoredStoryPageLabel || `Sponsored by`;
|
|
23
|
+
const storyPageLabel = sponsoredBy + `: ${storySponsoredBy}`;
|
|
24
|
+
const storyRowLabel = sponsoredStoryRowLabel || "Sponsored";
|
|
25
|
+
|
|
26
|
+
const labelText = isStoryPage ? storyPageLabel : storyRowLabel;
|
|
27
|
+
const labelStyle = isStoryPage ? "story-label" : "card-label";
|
|
28
|
+
|
|
29
|
+
const lightBgColor = sponsoredLabelColor || "#E6E6E6";
|
|
30
|
+
const darkBgColor = sponsoredLabelDarkColor || "#404040";
|
|
31
|
+
const labelBgColor = enableDarkMode ? darkBgColor : lightBgColor;
|
|
32
|
+
const textColor = getTextColor(labelBgColor) === "light" ? "#ffffff" : "#000000";
|
|
33
|
+
|
|
34
|
+
return (
|
|
35
|
+
<div
|
|
36
|
+
style={{ background: labelBgColor, color: textColor }}
|
|
37
|
+
styleName={`sponsored-label ${labelStyle}`}
|
|
38
|
+
data-test-id={isStoryPage ? "sponsored-tag" : "sponsored-tag-cards"}>
|
|
39
|
+
{labelText}
|
|
40
|
+
</div>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
SponsoredLabel.propTypes = {
|
|
45
|
+
story: PropTypes.object,
|
|
46
|
+
sponsoredStoryConfig: PropTypes.object,
|
|
47
|
+
isStoryPage: PropTypes.bool
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
SponsoredLabel.defaultProps = {
|
|
51
|
+
isStoryPage: false
|
|
52
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.sponsored-label {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
border-radius: var(--arrow-spacing-xxs);
|
|
5
|
+
padding: 2px var(--arrow-spacing-xxs);
|
|
6
|
+
font-size: var(--arrow-fs-tiny);
|
|
7
|
+
font-weight: 450;
|
|
8
|
+
max-width: fit-content;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.story-label {
|
|
12
|
+
margin: var(--arrow-spacing-xxs) 0 12px 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.card-label {
|
|
16
|
+
margin: var(--arrow-spacing-xxs) 0;
|
|
17
|
+
}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import { PhotoIcon1, PhotoIcon2, PhotoIcon3, PhotoIcon4 } from "../../Svgs/photo-icons";
|
|
4
|
+
import { VideoIcon1, VideoIcon2, VideoIcon3, VideoIcon4, VideoIcon5 } from "../../Svgs/video-icons";
|
|
5
|
+
import { VisualStoryIcon1, VisualStoryIcon2, VisualStoryIcon3, VisualStoryIcon4 } from "../../Svgs/visual-story-icons";
|
|
6
|
+
|
|
7
|
+
function PhotoDemarcationIcon({ iconConfig, enableDarkMode, iconColor, darkIconColor }) {
|
|
8
|
+
const { enablePhotoDemarcationIcon = false, iconStyle } = iconConfig || {};
|
|
9
|
+
if (!enablePhotoDemarcationIcon) return <></>;
|
|
10
|
+
|
|
11
|
+
const iconBackground = (enableDarkMode ? darkIconColor : iconColor) || "#000000";
|
|
12
|
+
switch (iconStyle) {
|
|
13
|
+
case "photoIcon2":
|
|
14
|
+
return <PhotoIcon2 background={iconBackground} />;
|
|
15
|
+
case "photoIcon3":
|
|
16
|
+
return <PhotoIcon3 background={iconBackground} />;
|
|
17
|
+
case "photoIcon4":
|
|
18
|
+
return <PhotoIcon4 background={iconBackground} />;
|
|
19
|
+
default:
|
|
20
|
+
return <PhotoIcon1 background={iconBackground} />;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
function VideoDemarcationIcon({ iconConfig, enableDarkMode, iconColor, darkIconColor }) {
|
|
25
|
+
const { enableVideoDemarcationIcon = false, iconStyle } = iconConfig || {};
|
|
26
|
+
if (!enableVideoDemarcationIcon) return <></>;
|
|
27
|
+
|
|
28
|
+
const iconBackground = (enableDarkMode ? darkIconColor : iconColor) || "#000000";
|
|
29
|
+
switch (iconStyle) {
|
|
30
|
+
case "videoIcon2":
|
|
31
|
+
return <VideoIcon2 background={iconBackground} />;
|
|
32
|
+
case "videoIcon3":
|
|
33
|
+
return <VideoIcon3 background={iconBackground} />;
|
|
34
|
+
case "videoIcon4":
|
|
35
|
+
return <VideoIcon4 background={iconBackground} />;
|
|
36
|
+
case "videoIcon5":
|
|
37
|
+
return <VideoIcon5 background={iconBackground} />;
|
|
38
|
+
default:
|
|
39
|
+
return <VideoIcon1 background={iconBackground} />;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
function VisualStoryDemarcationIcon({ iconConfig, enableDarkMode, iconColor, darkIconColor }) {
|
|
44
|
+
const { enableVisualStoryDemarcationIcon = false, iconStyle } = iconConfig || {};
|
|
45
|
+
if (!enableVisualStoryDemarcationIcon) return <></>;
|
|
46
|
+
|
|
47
|
+
const iconBackground = (enableDarkMode ? darkIconColor : iconColor) || "#000000";
|
|
48
|
+
switch (iconStyle) {
|
|
49
|
+
case "visualStoryIcon2":
|
|
50
|
+
return <VisualStoryIcon2 background={iconBackground} />;
|
|
51
|
+
case "visualStoryIcon3":
|
|
52
|
+
return <VisualStoryIcon3 background={iconBackground} />;
|
|
53
|
+
case "visualStoryIcon4":
|
|
54
|
+
return <VisualStoryIcon4 background={iconBackground} />;
|
|
55
|
+
default:
|
|
56
|
+
return <VisualStoryIcon1 background={iconBackground} />;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function StoryDemarcationIcon({ storyTemplate, rowsConfig = {}, enableDarkMode }) {
|
|
61
|
+
const {
|
|
62
|
+
photoDemarcationIcon = {},
|
|
63
|
+
videoDemarcationIcon = {},
|
|
64
|
+
visualStoryDemarcationIcon = {},
|
|
65
|
+
iconColor,
|
|
66
|
+
darkIconColor
|
|
67
|
+
} = rowsConfig || {};
|
|
68
|
+
|
|
69
|
+
switch (storyTemplate) {
|
|
70
|
+
case "photo":
|
|
71
|
+
return (
|
|
72
|
+
<PhotoDemarcationIcon
|
|
73
|
+
iconConfig={photoDemarcationIcon}
|
|
74
|
+
enableDarkMode={enableDarkMode}
|
|
75
|
+
iconColor={iconColor}
|
|
76
|
+
darkIconColor={darkIconColor}
|
|
77
|
+
/>
|
|
78
|
+
);
|
|
79
|
+
case "video":
|
|
80
|
+
return (
|
|
81
|
+
<VideoDemarcationIcon
|
|
82
|
+
iconConfig={videoDemarcationIcon}
|
|
83
|
+
enableDarkMode={enableDarkMode}
|
|
84
|
+
iconColor={iconColor}
|
|
85
|
+
darkIconColor={darkIconColor}
|
|
86
|
+
/>
|
|
87
|
+
);
|
|
88
|
+
case "visual-story":
|
|
89
|
+
return (
|
|
90
|
+
<VisualStoryDemarcationIcon
|
|
91
|
+
iconConfig={visualStoryDemarcationIcon}
|
|
92
|
+
enableDarkMode={enableDarkMode}
|
|
93
|
+
iconColor={iconColor}
|
|
94
|
+
darkIconColor={darkIconColor}
|
|
95
|
+
/>
|
|
96
|
+
);
|
|
97
|
+
default:
|
|
98
|
+
return <></>;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
StoryDemarcationIcon.propTypes = {
|
|
103
|
+
storyTemplate: PropTypes.string,
|
|
104
|
+
rowsConfig: PropTypes.object,
|
|
105
|
+
enableDarkMode: PropTypes.bool
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
VideoDemarcationIcon.propTypes = {
|
|
109
|
+
iconConfig: PropTypes.object,
|
|
110
|
+
enableDarkMode: PropTypes.bool,
|
|
111
|
+
iconColor: PropTypes.string,
|
|
112
|
+
darkIconColor: PropTypes.string
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
VisualStoryDemarcationIcon.propTypes = {
|
|
116
|
+
iconConfig: PropTypes.object,
|
|
117
|
+
enableDarkMode: PropTypes.bool,
|
|
118
|
+
iconColor: PropTypes.string,
|
|
119
|
+
darkIconColor: PropTypes.string
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
PhotoDemarcationIcon.propTypes = {
|
|
123
|
+
iconConfig: PropTypes.object,
|
|
124
|
+
enableDarkMode: PropTypes.bool,
|
|
125
|
+
iconColor: PropTypes.string,
|
|
126
|
+
darkIconColor: PropTypes.string
|
|
127
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
export const AI_ICONS = {
|
|
4
|
+
star: (
|
|
5
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
6
|
+
<path
|
|
7
|
+
d="M5.825 21L7.45 13.975L2 9.25L9.2 8.625L12 2L14.8 8.625L22 9.25L16.55 13.975L18.175 21L12 17.275L5.825 21ZM17.25 7L17.775 4.775L16 3.3L18.35 3.1L19.25 1L20.15 3.1L22.5 3.3L20.725 4.775L21.25 7L19.25 5.825L17.25 7Z"
|
|
8
|
+
fill="currentColor"
|
|
9
|
+
/>
|
|
10
|
+
</svg>
|
|
11
|
+
),
|
|
12
|
+
sparkle: (
|
|
13
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
14
|
+
<g clipPath="url(#clip0_6169_488)">
|
|
15
|
+
<path
|
|
16
|
+
d="M12 0C11.4591 4.41494 11.2803 7.21839 10.2234 9.02811C8.4958 11.2775 5.50126 11.4917 0 12C5.41209 12.6548 8.33831 12.7968 10.071 14.8574C11.3655 16.6815 11.5845 19.5033 12 24C12.7057 18.168 12.8162 15.2229 15.3734 13.547C17.1915 12.6688 19.9046 12.4771 24 12C18.9219 11.3779 15.9755 11.2347 14.2214 9.68344C12.7382 7.91523 12.58 4.97914 12 0Z"
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
/>
|
|
19
|
+
<path d="M18 8L18.94 5.94L21 5L18.94 4.06L18 2L17.06 4.06L15 5L17.06 5.94L18 8Z" fill="currentColor" />
|
|
20
|
+
</g>
|
|
21
|
+
<defs>
|
|
22
|
+
<clipPath id="clip0_6169_488">
|
|
23
|
+
<rect width="24" height="24" fill="white" />
|
|
24
|
+
</clipPath>
|
|
25
|
+
</defs>
|
|
26
|
+
</svg>
|
|
27
|
+
),
|
|
28
|
+
wand: (
|
|
29
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
30
|
+
<path
|
|
31
|
+
d="m14.06 9.02.92.92L5.92 19H5v-.92zM17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83a.996.996 0 0 0 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29m-3.6 3.19L3 17.25V21h3.75L17.81 9.94zM11 5l.627-1.373L13 3l-1.373-.627L11 1l-.627 1.373L9 3l1.373.627zm-5 5 .94-2.06L9 7l-2.06-.94L6 4l-.94 2.06L3 7l2.06.94zm12 5-.94 2.06L15 18l2.06.94L18 21l.94-2.06L21 18l-2.06-.94z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
</svg>
|
|
35
|
+
),
|
|
36
|
+
diamond: (
|
|
37
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
38
|
+
<path
|
|
39
|
+
d="M9.93743 15.5C9.84815 15.1539 9.66777 14.8381 9.41505 14.5854C9.16232 14.3327 8.8465 14.1523 8.50043 14.063L2.36543 12.481C2.26076 12.4513 2.16864 12.3883 2.10304 12.3014C2.03744 12.2146 2.00195 12.1088 2.00195 12C2.00195 11.8912 2.03744 11.7854 2.10304 11.6986C2.16864 11.6118 2.26076 11.5487 2.36543 11.519L8.50043 9.93601C8.84638 9.84681 9.16212 9.66658 9.41483 9.41404C9.66754 9.16151 9.84799 8.84589 9.93743 8.50001L11.5194 2.36501C11.5488 2.25992 11.6118 2.16735 11.6987 2.1014C11.7857 2.03545 11.8918 1.99976 12.0009 1.99976C12.11 1.99976 12.2162 2.03545 12.3031 2.1014C12.39 2.16735 12.453 2.25992 12.4824 2.36501L14.0634 8.50001C14.1527 8.84608 14.3331 9.1619 14.5858 9.41462C14.8385 9.66734 15.1544 9.84773 15.5004 9.93701L21.6354 11.518C21.7409 11.5471 21.834 11.61 21.9003 11.6971C21.9666 11.7841 22.0025 11.8906 22.0025 12C22.0025 12.1094 21.9666 12.2159 21.9003 12.3029C21.834 12.39 21.7409 12.4529 21.6354 12.482L15.5004 14.063C15.1544 14.1523 14.8385 14.3327 14.5858 14.5854C14.3331 14.8381 14.1527 15.1539 14.0634 15.5L12.4814 21.635C12.452 21.7401 12.389 21.8327 12.3021 21.8986C12.2152 21.9646 12.109 22.0003 11.9999 22.0003C11.8908 22.0003 11.7847 21.9646 11.6977 21.8986C11.6108 21.8327 11.5478 21.7401 11.5184 21.635L9.93743 15.5Z"
|
|
40
|
+
stroke="currentColor"
|
|
41
|
+
strokeWidth="2"
|
|
42
|
+
strokeLinecap="round"
|
|
43
|
+
strokeLinejoin="round"
|
|
44
|
+
/>
|
|
45
|
+
<path d="M20 3V7" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
|
|
46
|
+
<path d="M22 5H18" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
|
|
47
|
+
<path d="M4 17V19" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
|
|
48
|
+
<path d="M5 18H3" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
|
|
49
|
+
</svg>
|
|
50
|
+
)
|
|
51
|
+
};
|