@quintype/arrow 3.0.0-spike-skeleton-layout.21 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (505) hide show
  1. package/.babelrc +12 -0
  2. package/.circleci/config.yml +42 -0
  3. package/.eslintrc.json +25 -0
  4. package/.prettierrc +6 -0
  5. package/.storybook/addons.js +5 -0
  6. package/.storybook/config.js +13 -0
  7. package/.storybook/webpack.config.js +8 -0
  8. package/.stylelintrc +10 -0
  9. package/.vscode/extensions.json +16 -0
  10. package/.vscode/settings.json +12 -0
  11. package/CHANGELOG.md +1362 -0
  12. package/README.md +10 -0
  13. package/__mocks__/fileMock.js +1 -0
  14. package/__mocks__/styleMock.js +1 -0
  15. package/{app.scss → assets/stylesheets/app.scss} +154 -1
  16. package/assets/stylesheets/mixins.scss +27 -0
  17. package/assets/stylesheets/reset.scss +148 -0
  18. package/assets/stylesheets/viewports.m.css +3 -0
  19. package/bin-dev-scripts/prepublish.sh +11 -0
  20. package/bin-dev-scripts/sync-to.sh +13 -0
  21. package/jest.config.json +14 -0
  22. package/package.json +131 -1
  23. package/publish +24 -0
  24. package/rollup.js +202 -0
  25. package/setupTests.js +3 -0
  26. package/src/components/Atoms/AdPlaceholder/ads.m.css +13 -0
  27. package/src/components/Atoms/AdPlaceholder/index.js +25 -0
  28. package/src/components/Atoms/Author/README.md +19 -0
  29. package/src/components/Atoms/Author/author.m.css +65 -0
  30. package/src/components/Atoms/Author/index.js +98 -0
  31. package/src/components/Atoms/Author/stories.js +23 -0
  32. package/src/components/Atoms/AuthorCard/README.md +47 -0
  33. package/src/components/Atoms/AuthorCard/author-card.m.css +174 -0
  34. package/src/components/Atoms/AuthorCard/author-card.test.js +72 -0
  35. package/src/components/Atoms/AuthorCard/index.js +115 -0
  36. package/src/components/Atoms/AuthorCard/stories.js +69 -0
  37. package/src/components/Atoms/AuthorImage/README.md +31 -0
  38. package/src/components/Atoms/AuthorImage/author-image.m.css +53 -0
  39. package/src/components/Atoms/AuthorImage/index.js +55 -0
  40. package/src/components/Atoms/AuthorImage/stories.js +20 -0
  41. package/src/components/Atoms/AuthorWithTimestamp/README.md +11 -0
  42. package/src/components/Atoms/AuthorWithTimestamp/author-with-timestamp.m.css +42 -0
  43. package/src/components/Atoms/AuthorWithTimestamp/index.js +79 -0
  44. package/src/components/Atoms/AuthorWithTimestamp/stories.js +21 -0
  45. package/src/components/Atoms/BulletPoint/README.md +9 -0
  46. package/src/components/Atoms/BulletPoint/bullet-point.m.css +14 -0
  47. package/src/components/Atoms/BulletPoint/index.js +19 -0
  48. package/src/components/Atoms/BulletPoint/stories.js +6 -0
  49. package/src/components/Atoms/CaptionAttribution/README.md +15 -0
  50. package/src/components/Atoms/CaptionAttribution/caption-attribution.m.css +40 -0
  51. package/src/components/Atoms/CaptionAttribution/caption-attribution.test.js +29 -0
  52. package/src/components/Atoms/CaptionAttribution/index.js +40 -0
  53. package/src/components/Atoms/CaptionAttribution/stories.js +40 -0
  54. package/src/components/Atoms/CollectionName/README.md +11 -0
  55. package/src/components/Atoms/CollectionName/collection-name.m.css +94 -0
  56. package/src/components/Atoms/CollectionName/index.js +143 -0
  57. package/src/components/Atoms/CollectionName/stories.js +52 -0
  58. package/src/components/Atoms/Divider/__snapshots__/divider.test.js.snap +18 -0
  59. package/src/components/Atoms/Divider/divider.m.css +6 -0
  60. package/src/components/Atoms/Divider/divider.test.js +10 -0
  61. package/src/components/Atoms/Divider/index.js +20 -0
  62. package/src/components/Atoms/Dot/dot.js +20 -0
  63. package/src/components/Atoms/Dot/dot.m.css +6 -0
  64. package/src/components/Atoms/ExtendedLoadMore/README.md +9 -0
  65. package/src/components/Atoms/ExtendedLoadMore/__snapshots__/extended-load-more.test.js.snap +11 -0
  66. package/src/components/Atoms/ExtendedLoadMore/extended-load-more.test.js +19 -0
  67. package/src/components/Atoms/ExtendedLoadMore/index.js +112 -0
  68. package/src/components/Atoms/FallbackImage/fallback.m.css +33 -0
  69. package/src/components/Atoms/FallbackImage/index.js +30 -0
  70. package/src/components/Atoms/Headline/README.md +7 -0
  71. package/src/components/Atoms/Headline/headline.m.css +26 -0
  72. package/src/components/Atoms/Headline/index.js +76 -0
  73. package/src/components/Atoms/Headline/stories.js +52 -0
  74. package/src/components/Atoms/HeroImage/README.md +13 -0
  75. package/src/components/Atoms/HeroImage/hero-image.m.css +71 -0
  76. package/src/components/Atoms/HeroImage/index.js +165 -0
  77. package/src/components/Atoms/HeroImage/stories.js +22 -0
  78. package/src/components/Atoms/LoadMoreTarget/index.js +24 -0
  79. package/src/components/Atoms/Loadmore/README.md +0 -0
  80. package/src/components/Atoms/Loadmore/__snapshots__/load-more.test.js.snap +25 -0
  81. package/src/components/Atoms/Loadmore/index.js +41 -0
  82. package/src/components/Atoms/Loadmore/load-more.m.css +23 -0
  83. package/src/components/Atoms/Loadmore/load-more.test.js +30 -0
  84. package/src/components/Atoms/Loadmore/stories.js +17 -0
  85. package/src/components/Atoms/MagazineCoverImage/README.md +21 -0
  86. package/src/components/Atoms/MagazineCoverImage/index.js +61 -0
  87. package/src/components/Atoms/MagazineCoverImage/magazine-cover-image.m.css +24 -0
  88. package/src/components/Atoms/MagazineCoverImage/stories.js +21 -0
  89. package/src/components/Atoms/PremiumStoryIcon/index.js +27 -0
  90. package/src/components/Atoms/PublishDetail/README.md +15 -0
  91. package/src/components/Atoms/PublishDetail/index.js +63 -0
  92. package/src/components/Atoms/PublishDetail/publish-details.m.css +47 -0
  93. package/src/components/Atoms/PublishDetail/publish-details.test.js +22 -0
  94. package/src/components/Atoms/PublishDetail/stories.js +21 -0
  95. package/src/components/Atoms/ReadTime/README.md +13 -0
  96. package/src/components/Atoms/ReadTime/index.js +44 -0
  97. package/src/components/Atoms/ReadTime/read-time.m.css +25 -0
  98. package/src/components/Atoms/ReadTime/read-time.test.js +18 -0
  99. package/src/components/Atoms/ReadTime/stories.js +19 -0
  100. package/src/components/Atoms/ScrollSnap/SliderArrow/index.js +57 -0
  101. package/src/components/Atoms/ScrollSnap/SliderArrow/slider-arrow.m.css +45 -0
  102. package/src/components/Atoms/ScrollSnap/SliderIndicator/index.js +41 -0
  103. package/src/components/Atoms/ScrollSnap/SliderIndicator/slider-indicator.m.css +71 -0
  104. package/src/components/Atoms/ScrollSnap/index.js +136 -0
  105. package/src/components/Atoms/ScrollSnap/scroll-snap.m.css +27 -0
  106. package/src/components/Atoms/SectionTag/README.md +11 -0
  107. package/src/components/Atoms/SectionTag/index.js +61 -0
  108. package/src/components/Atoms/SectionTag/section.m.css +53 -0
  109. package/src/components/Atoms/SectionTag/stories.js +26 -0
  110. package/src/components/Atoms/SocialSharePopup/README.md +25 -0
  111. package/src/components/Atoms/SocialSharePopup/__snapshots__/social-share-popup.test.js.snap +653 -0
  112. package/src/components/Atoms/SocialSharePopup/index.js +61 -0
  113. package/src/components/Atoms/SocialSharePopup/social-share-popup.m.css +109 -0
  114. package/src/components/Atoms/SocialSharePopup/social-share-popup.test.js +93 -0
  115. package/src/components/Atoms/SocialSharePopup/stories.js +19 -0
  116. package/src/components/Atoms/StoryElements/AlsoRead/README.md +49 -0
  117. package/src/components/Atoms/StoryElements/AlsoRead/also-read.m.css +135 -0
  118. package/src/components/Atoms/StoryElements/AlsoRead/also-read.test.js +83 -0
  119. package/src/components/Atoms/StoryElements/AlsoRead/index.js +117 -0
  120. package/src/components/Atoms/StoryElements/AlsoRead/stories.js +40 -0
  121. package/src/components/Atoms/StoryElements/Attachment/README.md +21 -0
  122. package/src/components/Atoms/StoryElements/Attachment/__snapshots__/attachment.test.js.snap +47 -0
  123. package/src/components/Atoms/StoryElements/Attachment/attachment.m.css +125 -0
  124. package/src/components/Atoms/StoryElements/Attachment/attachment.test.js +39 -0
  125. package/src/components/Atoms/StoryElements/Attachment/index.js +62 -0
  126. package/src/components/Atoms/StoryElements/Attachment/stories.js +48 -0
  127. package/src/components/Atoms/StoryElements/BigFact/README.md +9 -0
  128. package/src/components/Atoms/StoryElements/BigFact/big-fact.m.css +41 -0
  129. package/src/components/Atoms/StoryElements/BigFact/big-fact.test.js +21 -0
  130. package/src/components/Atoms/StoryElements/BigFact/index.js +33 -0
  131. package/src/components/Atoms/StoryElements/BigFact/stories.js +9 -0
  132. package/src/components/Atoms/StoryElements/BlockQuote/README.md +49 -0
  133. package/src/components/Atoms/StoryElements/BlockQuote/Svg/curve.js +26 -0
  134. package/src/components/Atoms/StoryElements/BlockQuote/Svg/edge.js +26 -0
  135. package/src/components/Atoms/StoryElements/BlockQuote/Svg/icon.m.css +4 -0
  136. package/src/components/Atoms/StoryElements/BlockQuote/block-quote.m.css +161 -0
  137. package/src/components/Atoms/StoryElements/BlockQuote/block-quote.test.js +48 -0
  138. package/src/components/Atoms/StoryElements/BlockQuote/index.js +82 -0
  139. package/src/components/Atoms/StoryElements/BlockQuote/stories.js +35 -0
  140. package/src/components/Atoms/StoryElements/Blurb/README.md +43 -0
  141. package/src/components/Atoms/StoryElements/Blurb/blurb.m.css +55 -0
  142. package/src/components/Atoms/StoryElements/Blurb/blurb.test.js +46 -0
  143. package/src/components/Atoms/StoryElements/Blurb/index.js +53 -0
  144. package/src/components/Atoms/StoryElements/Blurb/stories.js +28 -0
  145. package/src/components/Atoms/StoryElements/Image/README.md +13 -0
  146. package/src/components/Atoms/StoryElements/Image/image.m.css +17 -0
  147. package/src/components/Atoms/StoryElements/Image/image.test.js +20 -0
  148. package/src/components/Atoms/StoryElements/Image/index.js +57 -0
  149. package/src/components/Atoms/StoryElements/Image/stories.js +25 -0
  150. package/src/components/Atoms/StoryElements/ImageSlideshow/README.md +13 -0
  151. package/src/components/Atoms/StoryElements/ImageSlideshow/image-slideshow.m.css +49 -0
  152. package/src/components/Atoms/StoryElements/ImageSlideshow/index.js +63 -0
  153. package/src/components/Atoms/StoryElements/ImageSlideshow/stories.js +34 -0
  154. package/src/components/Atoms/StoryElements/QuestionAnswer/README.md +56 -0
  155. package/src/components/Atoms/StoryElements/QuestionAnswer/index.js +134 -0
  156. package/src/components/Atoms/StoryElements/QuestionAnswer/question-answer.m.css +106 -0
  157. package/src/components/Atoms/StoryElements/QuestionAnswer/question-answer.test.js +74 -0
  158. package/src/components/Atoms/StoryElements/QuestionAnswer/stories.js +79 -0
  159. package/src/components/Atoms/StoryElements/Quote/README.md +41 -0
  160. package/src/components/Atoms/StoryElements/Quote/index.js +44 -0
  161. package/src/components/Atoms/StoryElements/Quote/quote.m.css +111 -0
  162. package/src/components/Atoms/StoryElements/Quote/quote.test.js +39 -0
  163. package/src/components/Atoms/StoryElements/Quote/stories.js +28 -0
  164. package/src/components/Atoms/StoryElements/Reference/README.md +9 -0
  165. package/src/components/Atoms/StoryElements/Reference/index.js +52 -0
  166. package/src/components/Atoms/StoryElements/Reference/reference.m.css +42 -0
  167. package/src/components/Atoms/StoryElements/Reference/reference.test.js +28 -0
  168. package/src/components/Atoms/StoryElements/Reference/stories.js +18 -0
  169. package/src/components/Atoms/StoryElements/StoryElement/README.md +10 -0
  170. package/src/components/Atoms/StoryElements/StoryElement/index.js +21 -0
  171. package/src/components/Atoms/StoryElements/StoryElement/stories.js +20 -0
  172. package/src/components/Atoms/StoryElements/StoryElement/storyelement.test.js +13 -0
  173. package/src/components/Atoms/StoryElements/Summary/README.md +56 -0
  174. package/src/components/Atoms/StoryElements/Summary/index.js +68 -0
  175. package/src/components/Atoms/StoryElements/Summary/stories.js +33 -0
  176. package/src/components/Atoms/StoryElements/Summary/summary.m.css +121 -0
  177. package/src/components/Atoms/StoryElements/Summary/summary.test.js +50 -0
  178. package/src/components/Atoms/StoryElements/Text/README.md +32 -0
  179. package/src/components/Atoms/StoryElements/Text/index.js +41 -0
  180. package/src/components/Atoms/StoryElements/Text/stories.js +32 -0
  181. package/src/components/Atoms/StoryElements/Text/text.m.css +48 -0
  182. package/src/components/Atoms/StoryElements/Text/text.test.js +42 -0
  183. package/src/components/Atoms/StoryElements/Video/README.md +9 -0
  184. package/src/components/Atoms/StoryElements/Video/index.js +23 -0
  185. package/src/components/Atoms/StoryElements/Video/stories.js +24 -0
  186. package/src/components/Atoms/StoryElements/Video/video.m.css +3 -0
  187. package/src/components/Atoms/StoryElements/Video/video.test.js +13 -0
  188. package/src/components/Atoms/StoryElements/imageGallery/README.md +18 -0
  189. package/src/components/Atoms/StoryElements/imageGallery/image-gallery.m.css +48 -0
  190. package/src/components/Atoms/StoryElements/imageGallery/image-gallery.test.js +19 -0
  191. package/src/components/Atoms/StoryElements/imageGallery/index.js +74 -0
  192. package/src/components/Atoms/StoryElements/imageGallery/stories.js +23 -0
  193. package/src/components/Atoms/StoryElements/withElementWrapper.js +13 -0
  194. package/src/components/Atoms/StoryElements/withElementWrapper.test.js +31 -0
  195. package/src/components/Atoms/StoryHeadline/index.js +36 -0
  196. package/src/components/Atoms/StoryHeadline/story-headline.m.css +36 -0
  197. package/src/components/Atoms/StoryTags/README.md +9 -0
  198. package/src/components/Atoms/StoryTags/index.js +33 -0
  199. package/src/components/Atoms/StoryTags/stories.js +25 -0
  200. package/src/components/Atoms/StoryTags/story-tags.test.js +18 -0
  201. package/src/components/Atoms/StoryTags/tags.m.css +34 -0
  202. package/src/components/Atoms/Subheadline/README.md +17 -0
  203. package/src/components/Atoms/Subheadline/index.js +54 -0
  204. package/src/components/Atoms/Subheadline/stories.js +12 -0
  205. package/src/components/Atoms/Subheadline/subheadline.m.css +17 -0
  206. package/src/components/Atoms/TimeStamp/README.md +9 -0
  207. package/src/components/Atoms/TimeStamp/index.js +37 -0
  208. package/src/components/Atoms/TimeStamp/stories.js +9 -0
  209. package/src/components/Atoms/TimeStamp/timestamp.m.css +22 -0
  210. package/src/components/Fixture/config.json +2703 -0
  211. package/src/components/Fixture/dummy-collection.js +2787 -0
  212. package/src/components/Fixture/dummyStory.js +2148 -0
  213. package/src/components/Fixture/index.js +424 -0
  214. package/src/components/Fixture/slot-config.js +29 -0
  215. package/src/components/Molecules/FullScreenImages/fullscreenimages.scss +48 -0
  216. package/src/components/Molecules/FullScreenImages/index.js +86 -0
  217. package/src/components/Molecules/KeyEvents/README.md +21 -0
  218. package/src/components/Molecules/KeyEvents/index.js +109 -0
  219. package/src/components/Molecules/KeyEvents/key-events.m.css +89 -0
  220. package/src/components/Molecules/KeyEvents/stories.js +28 -0
  221. package/src/components/Molecules/PageIntroductionCard/README.md +25 -0
  222. package/src/components/Molecules/PageIntroductionCard/index.js +50 -0
  223. package/src/components/Molecules/PageIntroductionCard/page-intro-card.m.css +61 -0
  224. package/src/components/Molecules/PageIntroductionCard/stories.js +16 -0
  225. package/src/components/Molecules/SliderHorizontalCard/README.md +14 -0
  226. package/src/components/Molecules/SliderHorizontalCard/index.js +45 -0
  227. package/src/components/Molecules/SliderHorizontalCard/slider-horizontal-card.m.css +42 -0
  228. package/src/components/Molecules/SliderHorizontalCard/stories.js +30 -0
  229. package/src/components/Molecules/SocialShareTemplate/README.md +118 -0
  230. package/src/components/Molecules/SocialShareTemplate/__snapshots__/social-share-template.test.js.snap +738 -0
  231. package/src/components/Molecules/SocialShareTemplate/index.js +119 -0
  232. package/src/components/Molecules/SocialShareTemplate/social-share-data.js +66 -0
  233. package/src/components/Molecules/SocialShareTemplate/social-share-template.m.css +174 -0
  234. package/src/components/Molecules/SocialShareTemplate/social-share-template.test.js +116 -0
  235. package/src/components/Molecules/SocialShareTemplate/stories.js +40 -0
  236. package/src/components/Molecules/StoryCard/README.md +75 -0
  237. package/src/components/Molecules/StoryCard/READMEBGIMAGE.md +25 -0
  238. package/src/components/Molecules/StoryCard/READMEBORDER.md +61 -0
  239. package/src/components/Molecules/StoryCard/index.js +173 -0
  240. package/src/components/Molecules/StoryCard/stories.js +223 -0
  241. package/src/components/Molecules/StoryCard/storycard.m.css +158 -0
  242. package/src/components/Molecules/StoryCardWithBulletPoint/README.md +9 -0
  243. package/src/components/Molecules/StoryCardWithBulletPoint/index.js +32 -0
  244. package/src/components/Molecules/StoryCardWithBulletPoint/stories.js +31 -0
  245. package/src/components/Molecules/StoryCardWithBulletPoint/story-card-with-bullet-point.m.css +7 -0
  246. package/src/components/Molecules/StoryElementCard/README.md +9 -0
  247. package/src/components/Molecules/StoryElementCard/index.js +358 -0
  248. package/src/components/Molecules/StoryElementCard/stories.js +27 -0
  249. package/src/components/Molecules/StoryElementCard/story-element-card.m.css +78 -0
  250. package/src/components/Molecules/StorycardContent/README.md +34 -0
  251. package/src/components/Molecules/StorycardContent/index.js +76 -0
  252. package/src/components/Molecules/StorycardContent/stories.js +39 -0
  253. package/src/components/Molecules/StorycardContent/storycardContent.m.css +21 -0
  254. package/src/components/Rows/AlternateCollectionFilter/README.md +38 -0
  255. package/src/components/Rows/AlternateCollectionFilter/alternate-collection-filter.m.css +254 -0
  256. package/src/components/Rows/AlternateCollectionFilter/index.js +179 -0
  257. package/src/components/Rows/AlternateCollectionFilter/stories.js +74 -0
  258. package/src/components/Rows/AsideCollection/README.md +27 -0
  259. package/src/components/Rows/AsideCollection/aside-collection.m.css +103 -0
  260. package/src/components/Rows/AsideCollection/aside-collection.test.js +34 -0
  261. package/src/components/Rows/AsideCollection/index.js +175 -0
  262. package/src/components/Rows/AsideCollection/stories.js +52 -0
  263. package/src/components/Rows/AuthorIntroductionCard/README.md +43 -0
  264. package/src/components/Rows/AuthorIntroductionCard/author-intro.m.css +278 -0
  265. package/src/components/Rows/AuthorIntroductionCard/author-intro.test.js +106 -0
  266. package/src/components/Rows/AuthorIntroductionCard/index.js +120 -0
  267. package/src/components/Rows/AuthorIntroductionCard/stories.js +43 -0
  268. package/src/components/Rows/AuthorsList/README.md +24 -0
  269. package/src/components/Rows/AuthorsList/author-list.test.js +50 -0
  270. package/src/components/Rows/AuthorsList/authors-list.m.css +22 -0
  271. package/src/components/Rows/AuthorsList/index.js +50 -0
  272. package/src/components/Rows/AuthorsList/stories.js +61 -0
  273. package/src/components/Rows/CollectionFilter/README.md +39 -0
  274. package/src/components/Rows/CollectionFilter/collection-filter.m.css +213 -0
  275. package/src/components/Rows/CollectionFilter/index.js +232 -0
  276. package/src/components/Rows/CollectionFilter/stories.js +77 -0
  277. package/src/components/Rows/ElevenStories/11-stories.m.css +85 -0
  278. package/src/components/Rows/ElevenStories/README.md +39 -0
  279. package/src/components/Rows/ElevenStories/index.js +332 -0
  280. package/src/components/Rows/ElevenStories/stories.js +70 -0
  281. package/src/components/Rows/FourColFiveStories/README.md +37 -0
  282. package/src/components/Rows/FourColFiveStories/four-col-five-stories.m.css +56 -0
  283. package/src/components/Rows/FourColFiveStories/index.js +159 -0
  284. package/src/components/Rows/FourColFiveStories/stories.js +67 -0
  285. package/src/components/Rows/FourColGrid/README.md +38 -0
  286. package/src/components/Rows/FourColGrid/four-col.m.css +50 -0
  287. package/src/components/Rows/FourColGrid/index.js +137 -0
  288. package/src/components/Rows/FourColGrid/stories.js +65 -0
  289. package/src/components/Rows/FourColSixteenStories/README.md +35 -0
  290. package/src/components/Rows/FourColSixteenStories/four-col-sixteen-stories.m.css +104 -0
  291. package/src/components/Rows/FourColSixteenStories/index.js +103 -0
  292. package/src/components/Rows/FourColSixteenStories/stories.js +46 -0
  293. package/src/components/Rows/FourColTwelveStory/README.md +39 -0
  294. package/src/components/Rows/FourColTwelveStory/four-col-twelve-story.m.css +71 -0
  295. package/src/components/Rows/FourColTwelveStory/index.js +176 -0
  296. package/src/components/Rows/FourColTwelveStory/stories.js +117 -0
  297. package/src/components/Rows/FourStorySlider/README.md +45 -0
  298. package/src/components/Rows/FourStorySlider/four-story-slider.m.css +45 -0
  299. package/src/components/Rows/FourStorySlider/index.js +127 -0
  300. package/src/components/Rows/FourStorySlider/stories.js +117 -0
  301. package/src/components/Rows/FourTabbedBigStorySlider/README.md +39 -0
  302. package/src/components/Rows/FourTabbedBigStorySlider/four-tabbed-big-story-slider.m.css +221 -0
  303. package/src/components/Rows/FourTabbedBigStorySlider/index.js +161 -0
  304. package/src/components/Rows/FourTabbedBigStorySlider/stories.js +63 -0
  305. package/src/components/Rows/FullScreenSlider/README.md +46 -0
  306. package/src/components/Rows/FullScreenSlider/full-screen-slider.m.css +110 -0
  307. package/src/components/Rows/FullScreenSlider/index.js +114 -0
  308. package/src/components/Rows/FullScreenSlider/stories.js +115 -0
  309. package/src/components/Rows/HalfScreenSlider/README.md +43 -0
  310. package/src/components/Rows/HalfScreenSlider/half-screen-slider.m.css +35 -0
  311. package/src/components/Rows/HalfScreenSlider/index.js +104 -0
  312. package/src/components/Rows/HalfScreenSlider/stories.js +115 -0
  313. package/src/components/Rows/ListComponent/README.md +48 -0
  314. package/src/components/Rows/ListComponent/index.js +150 -0
  315. package/src/components/Rows/ListComponent/list-component.m.css +65 -0
  316. package/src/components/Rows/ListComponent/stories.js +63 -0
  317. package/src/components/Rows/MagazineEditions/README.md +21 -0
  318. package/src/components/Rows/MagazineEditions/index.js +91 -0
  319. package/src/components/Rows/MagazineEditions/magazine-editions.m.css +50 -0
  320. package/src/components/Rows/MagazineEditions/magazine-editions.test.js +33 -0
  321. package/src/components/Rows/MagazineEditions/stories.js +45 -0
  322. package/src/components/Rows/MagazineHeaderCard/README.md +21 -0
  323. package/src/components/Rows/MagazineHeaderCard/index.js +72 -0
  324. package/src/components/Rows/MagazineHeaderCard/magazine-cards.m.css +106 -0
  325. package/src/components/Rows/MagazineHeaderCard/stories.js +36 -0
  326. package/src/components/Rows/MagazineWidget/README.md +21 -0
  327. package/src/components/Rows/MagazineWidget/index.js +127 -0
  328. package/src/components/Rows/MagazineWidget/stories.js +43 -0
  329. package/src/components/Rows/OneColStoryList/README.md +48 -0
  330. package/src/components/Rows/OneColStoryList/index.js +196 -0
  331. package/src/components/Rows/OneColStoryList/one-col-story-list.m.css +81 -0
  332. package/src/components/Rows/OneColStoryList/stories.js +61 -0
  333. package/src/components/Rows/OpinionCollection/README.md +34 -0
  334. package/src/components/Rows/OpinionCollection/index.js +124 -0
  335. package/src/components/Rows/OpinionCollection/opinion-collection.m.css +118 -0
  336. package/src/components/Rows/OpinionCollection/stories.js +48 -0
  337. package/src/components/Rows/SixColSixStories/README.md +37 -0
  338. package/src/components/Rows/SixColSixStories/index.js +134 -0
  339. package/src/components/Rows/SixColSixStories/six-col-six-stories.m.css +75 -0
  340. package/src/components/Rows/SixColSixStories/stories.js +73 -0
  341. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/README.md +19 -0
  342. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/__snapshots__/listicle-story.test.js.snap +837 -0
  343. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/index.js +287 -0
  344. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.m.css +229 -0
  345. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.test.js +47 -0
  346. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/stories.js +117 -0
  347. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/README.md +25 -0
  348. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/index.js +51 -0
  349. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/live-blog.m.css +326 -0
  350. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/stories.js +120 -0
  351. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/templates.js +376 -0
  352. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/index.js +246 -0
  353. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo-story.test.js +144 -0
  354. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo.m.css +175 -0
  355. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/stories.js +123 -0
  356. package/src/components/Rows/StoryTemplates/TextStoryTemplates/README.md +49 -0
  357. package/src/components/Rows/StoryTemplates/TextStoryTemplates/index.js +69 -0
  358. package/src/components/Rows/StoryTemplates/TextStoryTemplates/stories.js +125 -0
  359. package/src/components/Rows/StoryTemplates/TextStoryTemplates/templates.js +272 -0
  360. package/src/components/Rows/StoryTemplates/TextStoryTemplates/text-story.m.css +449 -0
  361. package/src/components/Rows/StoryTemplates/TextStoryTemplates/text-story.test.js +222 -0
  362. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/README.md +31 -0
  363. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/index.js +234 -0
  364. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/stories.js +204 -0
  365. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/video-story.m.css +195 -0
  366. package/src/components/Rows/TagIntroductionCard/README.md +11 -0
  367. package/src/components/Rows/TagIntroductionCard/index.js +26 -0
  368. package/src/components/Rows/TagIntroductionCard/stories.js +21 -0
  369. package/src/components/Rows/TagIntroductionCard/tag-intro-card.module.css +30 -0
  370. package/src/components/Rows/ThreeColFlexStories/README.md +38 -0
  371. package/src/components/Rows/ThreeColFlexStories/index.js +180 -0
  372. package/src/components/Rows/ThreeColFlexStories/stories.js +73 -0
  373. package/src/components/Rows/ThreeColFlexStories/three-col-flex-stories.m.css +60 -0
  374. package/src/components/Rows/ThreeColFourteenStory/README.md +28 -0
  375. package/src/components/Rows/ThreeColFourteenStory/index.js +135 -0
  376. package/src/components/Rows/ThreeColFourteenStory/stories.js +60 -0
  377. package/src/components/Rows/ThreeColFourteenStory/three-col-fourteen-story.m.css +51 -0
  378. package/src/components/Rows/ThreeColGrid/README.md +36 -0
  379. package/src/components/Rows/ThreeColGrid/index.js +141 -0
  380. package/src/components/Rows/ThreeColGrid/stories.js +70 -0
  381. package/src/components/Rows/ThreeColGrid/three-col.m.css +43 -0
  382. package/src/components/Rows/ThreeColSevenStory/README.md +36 -0
  383. package/src/components/Rows/ThreeColSevenStory/index.js +172 -0
  384. package/src/components/Rows/ThreeColSevenStory/stories.js +71 -0
  385. package/src/components/Rows/ThreeColSevenStory/three-col-seven-story.m.css +44 -0
  386. package/src/components/Rows/ThreeColSixStories/README.md +40 -0
  387. package/src/components/Rows/ThreeColSixStories/index.js +161 -0
  388. package/src/components/Rows/ThreeColSixStories/stories.js +73 -0
  389. package/src/components/Rows/ThreeColSixStories/three-col-six-stories.m.css +32 -0
  390. package/src/components/Rows/ThreeColTwelveStories/README.md +41 -0
  391. package/src/components/Rows/ThreeColTwelveStories/index.js +123 -0
  392. package/src/components/Rows/ThreeColTwelveStories/stories.js +51 -0
  393. package/src/components/Rows/ThreeColTwelveStories/three-col-twelve-stories.m.css +83 -0
  394. package/src/components/Rows/TwoColFourStory/README.md +33 -0
  395. package/src/components/Rows/TwoColFourStory/index.js +151 -0
  396. package/src/components/Rows/TwoColFourStory/stories.js +68 -0
  397. package/src/components/Rows/TwoColFourStory/two-col-four-story.m.css +56 -0
  398. package/src/components/Rows/TwoColFourStoryHighlight/README.md +35 -0
  399. package/src/components/Rows/TwoColFourStoryHighlight/index.js +122 -0
  400. package/src/components/Rows/TwoColFourStoryHighlight/stories.js +48 -0
  401. package/src/components/Rows/TwoColFourStoryHighlight/two-col-four-story-highlight.m.css +116 -0
  402. package/src/components/Rows/TwoColSixStories/README.md +36 -0
  403. package/src/components/Rows/TwoColSixStories/index.js +117 -0
  404. package/src/components/Rows/TwoColSixStories/stories.js +67 -0
  405. package/src/components/Rows/TwoColSixStories/two-col-six-stories.m.css +79 -0
  406. package/src/components/Rows/TwoColTenStoriesSidebar/README.md +34 -0
  407. package/src/components/Rows/TwoColTenStoriesSidebar/index.js +168 -0
  408. package/src/components/Rows/TwoColTenStoriesSidebar/stories.js +45 -0
  409. package/src/components/Rows/TwoColTenStoriesSidebar/two-col-ten-stories-sidebar.m.css +52 -0
  410. package/src/components/Rows/TwoColThreeStory/README.md +36 -0
  411. package/src/components/Rows/TwoColThreeStory/index.js +137 -0
  412. package/src/components/Rows/TwoColThreeStory/stories.js +68 -0
  413. package/src/components/Rows/TwoColThreeStory/two-col-three-story.m.css +36 -0
  414. package/src/components/SharedContext.js +13 -0
  415. package/src/components/Svgs/Loading/loading.js +133 -0
  416. package/src/components/Svgs/Loading/loading.m.css +5 -0
  417. package/src/components/Svgs/SocialIcons/facebook.js +15 -0
  418. package/src/components/Svgs/SocialIcons/instagram.js +24 -0
  419. package/src/components/Svgs/SocialIcons/linkedin.js +15 -0
  420. package/src/components/Svgs/SocialIcons/pinterest.js +12 -0
  421. package/src/components/Svgs/SocialIcons/twitter.js +15 -0
  422. package/src/components/Svgs/SocialIcons/whatsapp.js +17 -0
  423. package/src/components/Svgs/SocialIcons/youtube.js +17 -0
  424. package/src/components/Svgs/caret-right.svg +3 -0
  425. package/src/components/Svgs/clock-icon.js +17 -0
  426. package/src/components/Svgs/close-icon.js +15 -0
  427. package/src/components/Svgs/crown.js +31 -0
  428. package/src/components/Svgs/fallbackImage.js +42 -0
  429. package/src/components/Svgs/key.js +33 -0
  430. package/src/components/Svgs/left-arrow.js +17 -0
  431. package/src/components/Svgs/liveicon.js +13 -0
  432. package/src/components/Svgs/lock.js +31 -0
  433. package/src/components/Svgs/right-arrow.js +17 -0
  434. package/src/components/Svgs/share-icon.js +17 -0
  435. package/src/components/Svgs/star.js +28 -0
  436. package/src/components/Svgs/user-fallback-icon.js +19 -0
  437. package/src/components/Typography/README.md +7 -0
  438. package/src/components/Typography/index.js +47 -0
  439. package/src/components/Typography/stories.js +10 -0
  440. package/src/components/Typography/style.m.css +11 -0
  441. package/src/entry-points.js +337 -0
  442. package/src/guide/stories.js +18 -0
  443. package/src/hydration-component/index.js +37 -0
  444. package/src/hydration-component/useNearScreen.js +56 -0
  445. package/src/index.js +85 -0
  446. package/src/utils/testing-utils.js +8 -0
  447. package/src/utils/utils.js +280 -0
  448. package/src/utils/utils.test.js +55 -0
  449. package/storybook/index.js +83 -0
  450. package/AlsoRead/styles.arrow.css +0 -1
  451. package/AsideCollection/styles.arrow.css +0 -1
  452. package/Attachment/styles.arrow.css +0 -1
  453. package/Author/styles.arrow.css +0 -1
  454. package/AuthorIntroductionCard/styles.arrow.css +0 -1
  455. package/AuthorPageIntroductionCard/styles.arrow.css +0 -1
  456. package/AuthorWithTime/styles.arrow.css +0 -1
  457. package/AuthorsList/styles.arrow.css +0 -1
  458. package/BigFact/styles.arrow.css +0 -1
  459. package/BlockQuote/styles.arrow.css +0 -1
  460. package/Blurb/styles.arrow.css +0 -1
  461. package/CollectionFilter/styles.arrow.css +0 -1
  462. package/CollectionName/styles.arrow.css +0 -1
  463. package/ElevenStories/styles.arrow.css +0 -1
  464. package/FourColGrid/styles.arrow.css +0 -1
  465. package/FourColTwelveStories/styles.arrow.css +0 -1
  466. package/FourStorySlider/styles.arrow.css +0 -1
  467. package/FullScreenSlider/styles.arrow.css +0 -1
  468. package/HalfScreenSlider/styles.arrow.css +0 -1
  469. package/Headline/styles.arrow.css +0 -1
  470. package/HeroImage/styles.arrow.css +0 -1
  471. package/Image/styles.arrow.css +0 -1
  472. package/ImageGallery/styles.arrow.css +0 -1
  473. package/ImageSlideshow/styles.arrow.css +0 -1
  474. package/ListComponent/styles.arrow.css +0 -1
  475. package/ListicleStoryTemplate/styles.arrow.css +0 -1
  476. package/LiveBlogStoryTemplate/styles.arrow.css +0 -1
  477. package/LoadmoreButton/styles.arrow.css +0 -1
  478. package/MagazineEditions/styles.arrow.css +0 -1
  479. package/MagazineHeaderCard/styles.arrow.css +0 -1
  480. package/MagazineWidget/styles.arrow.css +0 -1
  481. package/OneColStoryList/styles.arrow.css +0 -1
  482. package/PhotoStoryTemplate/styles.arrow.css +0 -1
  483. package/QuestionAnswer/styles.arrow.css +0 -1
  484. package/Quote/styles.arrow.css +0 -1
  485. package/Reference/styles.arrow.css +0 -1
  486. package/SectionTag/styles.arrow.css +0 -1
  487. package/StoryCard/styles.arrow.css +0 -1
  488. package/StoryElementCard/styles.arrow.css +0 -1
  489. package/StorycardContent/styles.arrow.css +0 -1
  490. package/Subheadline/styles.arrow.css +0 -1
  491. package/Summary/styles.arrow.css +0 -1
  492. package/TagIntroductionCard/styles.arrow.css +0 -1
  493. package/Text/styles.arrow.css +0 -1
  494. package/TextStoryTemplate/styles.arrow.css +0 -1
  495. package/ThreeColFourteenStories/styles.arrow.css +0 -1
  496. package/ThreeColGrid/styles.arrow.css +0 -1
  497. package/ThreeColSevenStory/styles.arrow.css +0 -1
  498. package/ThreeColSixStories/styles.arrow.css +0 -1
  499. package/TimeStamp/styles.arrow.css +0 -1
  500. package/TwoColFourStories/styles.arrow.css +0 -1
  501. package/TwoColThreeStories/styles.arrow.css +0 -1
  502. package/Video/styles.arrow.css +0 -1
  503. package/VideoStoryTemplate/styles.arrow.css +0 -1
  504. package/cjs/index.js +0 -1
  505. package/esm/index.js +0 -1
@@ -0,0 +1,109 @@
1
+ @import "../../../../assets/stylesheets/mixins.scss";
2
+ .share-popup-wrapper {
3
+ z-index: var(--zIndex-social-popup);
4
+ }
5
+
6
+ .light.share-popup-wrapper {
7
+ background-color: var(--arrow-c-dark);
8
+ }
9
+
10
+ .dark.share-popup-wrapper {
11
+ background-color: var(--arrow-c-light);
12
+ }
13
+
14
+ .share-popup {
15
+ composes: share-popup-wrapper;
16
+ padding: var(--arrow-spacing-l);
17
+ }
18
+
19
+ .social-wrapper {
20
+ display: flex;
21
+ flex-direction: row;
22
+ padding: var(--arrow-fs-tiny) 0;
23
+ align-items: center;
24
+ }
25
+
26
+ .dark .social-icon-wrapper {
27
+ border-bottom: 1px solid var(--arrow-c-mono7);
28
+ }
29
+
30
+ .light .social-icon-wrapper {
31
+ border-bottom: 1px solid var(--arrow-c-invert-mono7);
32
+ }
33
+
34
+ .wrapper {
35
+ list-style: none;
36
+ }
37
+
38
+ .dark .wrapper > :last-child,
39
+ .light .wrapper > :last-child {
40
+ border-bottom: unset;
41
+ }
42
+
43
+ .light .share-popup {
44
+ @include tablet {
45
+ border: solid 1px var(--arrow-c-invert-mono7);
46
+ }
47
+ }
48
+
49
+ .dark .share-popup {
50
+ @include tablet {
51
+ border: solid 1px var(--arrow-c-mono7);
52
+ }
53
+ }
54
+
55
+ .top-bar {
56
+ display: flex;
57
+ flex-direction: row;
58
+ justify-content: space-between;
59
+ }
60
+
61
+ .share-text {
62
+ font-size: var(--arrow-fs-xs);
63
+ font-weight: var(--arrow-fw-bold);
64
+ line-height: var(--arrow-lh-2);
65
+ margin-bottom: var(--arrow-spacing-s);
66
+ }
67
+
68
+ .close {
69
+ position: absolute;
70
+ top: var(--arrow-spacing-m);
71
+ right: var(--arrow-spacing-m);
72
+ }
73
+
74
+ .social-icon {
75
+ border-radius: 50%;
76
+ width: var(--arrow-fs-xl);
77
+ height: var(--arrow-fs-xl);
78
+ padding: var(--arrow-spacing-xxs);
79
+ }
80
+
81
+ .social-text {
82
+ padding-left: var(--arrow-fs-xs);
83
+ font-size: var(--arrow-fs-s);
84
+ font-weight: var(--arrow-fw-bold);
85
+ line-height: var(--arrow-lh-2);
86
+ color: var(--arrow-c-mono2);
87
+ }
88
+
89
+ .light .social-text,
90
+ .light .share-text {
91
+ color: var(--arrow-c-invert-mono2);
92
+ }
93
+
94
+ .dark .social-text,
95
+ .dark .share-text {
96
+ color: var(--arrow-c-mono2);
97
+ }
98
+
99
+ html[dir="rtl"] {
100
+ .social-text {
101
+ padding-left: 0;
102
+ padding-right: var(--arrow-fs-xs);
103
+ }
104
+
105
+ .close {
106
+ left: var(--arrow-spacing-m);
107
+ right: initial;
108
+ }
109
+ }
@@ -0,0 +1,93 @@
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
+ theme: "#ffff",
13
+ iconType: "plain-svg",
14
+ closePopup: ""
15
+ };
16
+ const wrapper = shallow(<SocialSharePopup {...data} />);
17
+ expect(wrapper).toMatchSnapshot();
18
+ });
19
+
20
+ it("Should not render facebook icon if url not passed", () => {
21
+ const data = {
22
+ fbUrl: "",
23
+ twitterUrl: "https://twitter.com/",
24
+ linkedinUrl: "https://twitter.com/",
25
+ whatsappUrl: "https://twitter.com/",
26
+ theme: "#ffff",
27
+ iconType: "plain-svg",
28
+ closePopup: ""
29
+ };
30
+ const wrapper = shallow(<SocialSharePopup {...data} />);
31
+ expect(wrapper).toMatchSnapshot();
32
+ });
33
+
34
+ it("Should not render twitter icon if url not passed", () => {
35
+ const data = {
36
+ fbUrl: "https://twitter.com/",
37
+ twitterUrl: "",
38
+ linkedinUrl: "https://twitter.com/",
39
+ whatsappUrl: "https://twitter.com/",
40
+ theme: "#ffff",
41
+ iconType: "plain-svg",
42
+ vertical: true,
43
+ closePopup: ""
44
+ };
45
+ const wrapper = shallow(<SocialSharePopup {...data} />);
46
+ expect(wrapper).toMatchSnapshot();
47
+ });
48
+
49
+ it("Should not render whatsapp icon if url not passed", () => {
50
+ const data = {
51
+ fbUrl: "https://twitter.com/",
52
+ twitterUrl: "https://twitter.com/",
53
+ linkedinUrl: "https://twitter.com/",
54
+ whatsappUrl: "",
55
+ theme: "#ffff",
56
+ iconType: "plain-svg",
57
+ vertical: true,
58
+ closePopup: ""
59
+ };
60
+ const wrapper = shallow(<SocialSharePopup {...data} />);
61
+ expect(wrapper).toMatchSnapshot();
62
+ });
63
+
64
+ it("Should not render linkedin icon if url not passed", () => {
65
+ const data = {
66
+ fbUrl: "https://twitter.com/",
67
+ twitterUrl: "https://twitter.com/",
68
+ linkedinUrl: "",
69
+ whatsappUrl: "https://twitter.com/",
70
+ theme: "#ffff",
71
+ iconType: "plain-svg",
72
+ vertical: true,
73
+ closePopup: ""
74
+ };
75
+ const wrapper = shallow(<SocialSharePopup {...data} />);
76
+ expect(wrapper).toMatchSnapshot();
77
+ });
78
+
79
+ it("Should render template if theme and icon is not passed", () => {
80
+ const data = {
81
+ fbUrl: "https://twitter.com/",
82
+ twitterUrl: "https://twitter.com/",
83
+ linkedinUrl: "https://twitter.com/",
84
+ whatsappUrl: "https://twitter.com/",
85
+ theme: "",
86
+ iconType: "plain-svg",
87
+ vertical: true,
88
+ closePopup: ""
89
+ };
90
+ const wrapper = shallow(<SocialSharePopup {...data} />);
91
+ expect(wrapper).toMatchSnapshot();
92
+ });
93
+ });
@@ -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,49 @@
1
+ # AlsoRead
2
+
3
+ Component to display the also read element.
4
+
5
+ ## Usage
6
+
7
+ #### AlsoRead story element with default template
8
+
9
+ ```jsx
10
+ <AlsoRead story={story} element={element} template="default" />
11
+ ```
12
+
13
+ #### AlsoRead story element with image right align template
14
+
15
+ ```jsx
16
+ <AlsoRead story={story} element={element} template="imageRightAlign" />
17
+ ```
18
+
19
+ #### AlsoRead story element with text left align template
20
+
21
+ ```jsx
22
+ <AlsoRead element={element} template="textLeftAlign" />
23
+ ```
24
+
25
+ #### AlsoRead story element with custom title
26
+
27
+ ```jsx
28
+ const css = { title: "Headline" };
29
+
30
+ <AlsoRead story={story} element={element} template="textLeftAlign" css={css} />;
31
+ ```
32
+
33
+ #### AlsoRead story element with text color
34
+
35
+ ```jsx
36
+ const css = { textcolor: "#333333" };
37
+
38
+ <AlsoRead story={story} element={element} template="default" css={css} />;
39
+ ```
40
+
41
+ #### Replace default also read element template with custom template passed using render
42
+
43
+ ```jsx
44
+ const customTemplate = ({ element }) => <h3 dangerouslySetInnerHTML={{ __html: element.text }} />;
45
+
46
+ <AlsoRead element={element} render={customTemplate} />;
47
+ ```
48
+
49
+ <!-- PROPS -->
@@ -0,0 +1,135 @@
1
+ @value viewports: "../../../../../assets/stylesheets/viewports.m.css";
2
+ @value mobile from viewports;
3
+
4
+ .card-image img {
5
+ position: absolute;
6
+ top: 0;
7
+ height: 100%;
8
+ }
9
+
10
+ .default-text {
11
+ font-family: var(--arrow-typeface-secondary);
12
+ }
13
+
14
+ .alsoread-textLeftAlign .default-text,
15
+ .alsoread-imageRightAlign .default-text {
16
+ font-size: var(--arrow-fs-xs);
17
+ font-weight: var(--arrow-fw-bold);
18
+ line-height: var(--arrow-lh-3);
19
+ @media (min-width: mobile) {
20
+ font-size: var(--arrow-fs-s);
21
+ }
22
+ }
23
+
24
+ .headline {
25
+ line-height: var(--arrow-lh-3);
26
+ font-weight: var(--arrow-fw-bold);
27
+ font-family: var(--arrow-typeface-primary);
28
+ }
29
+
30
+ .alsoread-default .headline {
31
+ padding-top: var(--arrow-spacing-xs);
32
+ font-size: var(--arrow-fs-s);
33
+ color: var(--arrow-c-dark);
34
+ @media (min-width: mobile) {
35
+ padding-top: 0;
36
+ font-size: var(--arrow-fs-l);
37
+ }
38
+ }
39
+
40
+ .alsoread-textLeftAlign .headline {
41
+ margin-top: var(--arrow-spacing-xs);
42
+ font-size: var(--arrow-fs-m);
43
+ color: var(--arrow-c-brand1);
44
+ @media (min-width: mobile) {
45
+ font-size: var(--arrow-fs-l);
46
+ }
47
+ }
48
+
49
+ .alsoread-imageRightAlign .headline {
50
+ font-size: var(--arrow-fs-m);
51
+ margin-right: var(--arrow-spacing-m);
52
+ color: var(--arrow-c-dark);
53
+ @media (min-width: mobile) {
54
+ font-size: var(--arrow-fs-l);
55
+ }
56
+ }
57
+
58
+ .card-image-wrapper {
59
+ position: relative;
60
+ }
61
+
62
+ .alsoread-default .card-image-wrapper {
63
+ @media (min-width: mobile) {
64
+ flex-basis: 30%;
65
+ margin-right: var(--arrow-spacing-m);
66
+ }
67
+ }
68
+
69
+ .card-image {
70
+ display: block;
71
+ position: relative;
72
+ }
73
+
74
+ .alsoread-imageRightAlign .card-image,
75
+ .alsoread-imageRightAlign .card-image-wrapper .image {
76
+ padding-top: 75%;
77
+ @media (min-width: mobile) {
78
+ padding-top: 56.25%;
79
+ }
80
+ }
81
+
82
+ .alsoread-default {
83
+ border: solid 1px var(--arrow-c-mono5);
84
+ display: block;
85
+ padding: var(--arrow-spacing-m);
86
+ @media (min-width: mobile) {
87
+ display: flex;
88
+ }
89
+ }
90
+
91
+ .alsoread-imageRightAlign .content-wrapper {
92
+ display: flex;
93
+ margin-top: var(--arrow-spacing-xs);
94
+ }
95
+
96
+ .alsoread-default .content-wrapper {
97
+ @media (min-width: mobile) {
98
+ flex-basis: 70%;
99
+ }
100
+ }
101
+
102
+ .alsoread-default .card-image,
103
+ .alsoread .card-image-wrapper .image,
104
+ .alsoread-default .card-image-wrapper .image {
105
+ padding-top: 56.25%;
106
+ }
107
+
108
+ .card-image-wrapper .image div {
109
+ background: var(--arrow-c-mono6);
110
+ }
111
+
112
+ .alsoread-imageRightAlign .card-image-wrapper .image :global(.arr--fallback-image),
113
+ .alsoread-imageRightAlign .card-image-wrapper .image,
114
+ .alsoread-imageRightAlign .card-image-wrapper .card-image {
115
+ width: 100px;
116
+ height: 75px;
117
+ @media (min-width: mobile) {
118
+ width: 160px;
119
+ height: 90px;
120
+ }
121
+ }
122
+ html[dir="rtl"] {
123
+ .content-wrapper {
124
+ margin-right: var(--arrow-spacing-m);
125
+ }
126
+ .card-image-wrapper {
127
+ margin-right: 0;
128
+ }
129
+ }
130
+ .dark {
131
+ color: var(--arrow-c-mono1);
132
+ }
133
+ .light {
134
+ color: var(--arrow-c-invert-mono1);
135
+ }
@@ -0,0 +1,83 @@
1
+ import * as React from "react";
2
+ import { shallow, mount } from "enzyme";
3
+ import { generateStoryElementData, generateStory, generateStore } from "../../../Fixture";
4
+ import { AlsoRead } from "./index";
5
+
6
+ import { Provider } from "react-redux";
7
+ import { Link } from "@quintype/components";
8
+
9
+ const element = generateStoryElementData("also-read");
10
+ const story = generateStory();
11
+
12
+ describe("Alsoread Story Element", () => {
13
+ it("Should render default template", () => {
14
+ const wrapper = mount(
15
+ <Provider store={generateStore}>
16
+ <AlsoRead story={story} element={element} template="default" />
17
+ </Provider>
18
+ );
19
+ expect(wrapper.find(Link).prop("className")).toMatch(/alsoread-default/);
20
+ });
21
+
22
+ it("Should render image right align template", () => {
23
+ const wrapper = mount(
24
+ <Provider store={generateStore}>
25
+ <AlsoRead story={story} element={element} template="imageRightAlign" />
26
+ </Provider>
27
+ );
28
+ expect(wrapper.find(Link).prop("className")).toMatch(/alsoread-imageRightAlign/);
29
+ });
30
+
31
+ it("Should render text left align template", () => {
32
+ const wrapper = mount(
33
+ <Provider store={generateStore}>
34
+ <AlsoRead story={story} element={element} template="textLeftAlign" />
35
+ </Provider>
36
+ );
37
+ expect(wrapper.find(Link).prop("className")).toMatch(/alsoread-textLeftAlign/);
38
+ });
39
+
40
+ it("Should render default template with fallback image", () => {
41
+ const wrapper = shallow(
42
+ <Provider store={generateStore}>
43
+ <AlsoRead element={element} template="default" css={{ textColor: "#3333" }} />
44
+ </Provider>
45
+ );
46
+ expect(wrapper.html()).toBe(
47
+ '<a data-test-id="also-read" aria-label="also-read" class="arrow-component arr--also-read-element also-read-m_alsoread-default__3cYER "><div class="also-read-m_card-image-wrapper__3GFzu"><div class="arr--fallback-also-read also-read-m_image__2jdRP"><div class="arr--fallback-image fallback-m_image__1GYCJ fallback-m_image-position__3KddP"><figure class="arr--fallback-svg fallback-m_fallback-svg__tK9fL"><svg width="40" height="30" viewBox="0 0 102 76" version="1.1"><g id="demo-home-copy" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" transform="translate(-377.000000, -314.000000)"><g id="Group-13" transform="translate(377.000000, 314.000000)"><path d="M43.2,49.7 L62.2,19.2 L87.2,59.4 L17,59.4 L32.8,39.4 L43.2,49.7 Z M29.9,28.6 C25.8683213,28.6 22.6,25.3316787 22.6,21.3 C22.6,17.2683213 25.8683213,14 29.9,14 C33.9316787,14 37.2,17.2683213 37.2,21.3 C37.2,25.3316787 33.9316787,28.6 29.9,28.6 Z" id="Combined-Shape" fill="#99B0CB" fill-rule="nonzero"></path><rect id="Rectangle-19" stroke="#99B0CB" stroke-width="3" x="1.5" y="1.5" width="99" height="73" rx="3"></rect></g></g></svg></figure></div></div></div><div class="also-read-m_content-wrapper__26AZX"><div class="also-read-m_headline__VzF-c" style="color:#3333">How is the coronavirus impacting people with disabilities?</div></div></a>'
48
+ );
49
+ });
50
+
51
+ it("Should render default template with text color", () => {
52
+ const wrapper = shallow(
53
+ <Provider store={generateStore}>
54
+ <AlsoRead story={story} element={element} template="default" css={{ textColor: "#3333" }} />
55
+ </Provider>
56
+ );
57
+ expect(wrapper.html()).toBe(
58
+ '<a data-test-id="also-read" aria-label="also-read" class="arrow-component arr--also-read-element also-read-m_alsoread-default__3cYER " href="https://ace-web.qtstage.io/anything/coronavirus/how-is-the-coronavirus-impacting-people-with-disabilities"><div class="also-read-m_card-image-wrapper__3GFzu"><figure class="also-read-m_card-image__3CwAv"><img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" aspect-ratio="16,9" alt="hero image caption" class="qt-image"/></figure></div><div class="also-read-m_content-wrapper__26AZX"><div class="also-read-m_headline__VzF-c" style="color:#3333">How is the coronavirus impacting people with disabilities?</div></div></a>'
59
+ );
60
+ });
61
+
62
+ it("Should render text left align template with custom title", () => {
63
+ const wrapper = shallow(
64
+ <Provider store={generateStore}>
65
+ <AlsoRead story={story} element={element} template="textLeftAlign" opts={{ title: "Also-Read" }} />
66
+ </Provider>
67
+ );
68
+ expect(wrapper.html()).toBe(
69
+ '<a data-test-id="also-read" aria-label="also-read" class="arrow-component arr--also-read-element also-read-m_alsoread-textLeftAlign__S0Dxe " href="https://ace-web.qtstage.io/anything/coronavirus/how-is-the-coronavirus-impacting-people-with-disabilities"><div class="also-read-m_default-text__hp2dp also-read-m_dark__1pUib">Also-Read</div><div class="also-read-m_content-wrapper__26AZX"><div class="also-read-m_headline__VzF-c" style="color:dark">How is the coronavirus impacting people with disabilities?</div></div></a>'
70
+ );
71
+ });
72
+
73
+ it("Should render custom template", () => {
74
+ // eslint-disable-next-line react/prop-types
75
+ const customTemplate = ({ element }) => <h3 dangerouslySetInnerHTML={{ __html: element.text }} />;
76
+ const wrapper = shallow(
77
+ <Provider store={generateStore}>
78
+ <AlsoRead element={element} render={customTemplate} />
79
+ </Provider>
80
+ );
81
+ expect(wrapper.html()).toBe("<h3>How is the coronavirus impacting people with disabilities?</h3>");
82
+ });
83
+ });
@@ -0,0 +1,117 @@
1
+ import React from "react";
2
+ import get from "lodash.get";
3
+ import { LazyLoadImages, Link, ResponsiveImage } from "@quintype/components";
4
+ import { withElementWrapper } from "../withElementWrapper";
5
+ import PropTypes from "prop-types";
6
+ import { FallbackImage } from "../../FallbackImage";
7
+ import { clientWidth, isEmpty, shapeConfig, getTextColor } from "../../../../utils/utils";
8
+ import { useStateValue } from "../../../SharedContext";
9
+ import "./also-read.m.css";
10
+
11
+ const DisplayImage = ({ story, linkedImage, template, isRightAlign }) => {
12
+ const isLeftAlign = template === "textLeftAlign";
13
+ const isMobile = clientWidth("mobile");
14
+ const rightAlignAspectRatio = isRightAlign && isMobile ? [4, 3] : [16, 9];
15
+ const imageAspectRatio = isLeftAlign ? [16, 9] : rightAlignAspectRatio;
16
+ const alternateText = story["hero-image-caption"] || story["headline"];
17
+
18
+ return (
19
+ <div styleName="card-image-wrapper">
20
+ {!isEmpty(linkedImage) ? (
21
+ <figure styleName="card-image">
22
+ <LazyLoadImages>
23
+ <ResponsiveImage
24
+ slug={linkedImage}
25
+ aspect-ratio={imageAspectRatio}
26
+ defaultWidth={480}
27
+ widths={[250, 480, 640]}
28
+ imgParams={{ auto: ["format", "compress"] }}
29
+ alt={alternateText}
30
+ />
31
+ </LazyLoadImages>
32
+ </figure>
33
+ ) : (
34
+ <div styleName="image" className="arr--fallback-also-read">
35
+ <FallbackImage />
36
+ </div>
37
+ )}
38
+ </div>
39
+ );
40
+ };
41
+
42
+ DisplayImage.propTypes = {
43
+ story: PropTypes.shape({ "hero-image-caption": PropTypes.string, headline: PropTypes.string }),
44
+ linkedImage: PropTypes.string,
45
+ template: PropTypes.string,
46
+ isRightAlign: PropTypes.bool
47
+ };
48
+
49
+ const AlsoReadBase = ({
50
+ story = {},
51
+ element,
52
+ template = "",
53
+ opts = {},
54
+ css = {},
55
+ config = {},
56
+ render,
57
+ ...restProps
58
+ }) => {
59
+ const content = element.text;
60
+ if (!content) return null;
61
+
62
+ const linkedStories = get(story, ["linked-stories"], {});
63
+ const linkedStoryId = get(element, ["metadata", "linked-story-id"]);
64
+ const linkedStorySlug = get(linkedStories, [linkedStoryId, "url"]);
65
+ const linkedImage = get(linkedStories, [linkedStoryId, "hero-image-s3-key"], "");
66
+ const storyUrl = linkedStorySlug && linkedStorySlug;
67
+ const configData = useStateValue() || {};
68
+ const textInvertColor = getTextColor(configData.theme);
69
+ const { title = "" } = opts;
70
+ const { textColor } = css;
71
+
72
+ const displayTitle = title || "Also Read";
73
+ const isDefault = template === "" || template === "default";
74
+ const isRightAlign = template === "imageRightAlign";
75
+ const templateStyle = template ? `alsoread-${template}` : "alsoread-default";
76
+
77
+ return (
78
+ <Link
79
+ className="arrow-component arr--also-read-element"
80
+ styleName={templateStyle}
81
+ data-test-id="also-read"
82
+ href={storyUrl}
83
+ aria-label="also-read"
84
+ {...restProps}>
85
+ {!isDefault && <div styleName={`default-text ${textInvertColor}`}>{displayTitle}</div>}
86
+ {isDefault && (
87
+ <DisplayImage story={story} linkedImage={linkedImage} template={template} isRightAlign={isRightAlign} />
88
+ )}
89
+ <div styleName="content-wrapper">
90
+ <div
91
+ styleName="headline"
92
+ style={textColor ? { color: textColor } : { color: textInvertColor }}
93
+ dangerouslySetInnerHTML={{ __html: content }}
94
+ />
95
+ {isRightAlign && <DisplayImage story={story} linkedImage={linkedImage} template={template} />}
96
+ </div>
97
+ </Link>
98
+ );
99
+ };
100
+
101
+ AlsoReadBase.propTypes = {
102
+ /** template can be default, textLeftAlign or imageRightAlign */
103
+ template: PropTypes.string,
104
+ story: PropTypes.shape({ "linked-stories": PropTypes.object }),
105
+ element: PropTypes.shape({
106
+ text: PropTypes.string,
107
+ metadata: PropTypes.shape({
108
+ linkedStoryId: PropTypes.shape({ url: PropTypes.string, "hero-image-s3-key": PropTypes.string })
109
+ })
110
+ }),
111
+ opts: PropTypes.shape({ title: PropTypes.string }),
112
+ config: shapeConfig,
113
+ render: PropTypes.func,
114
+ css: PropTypes.object
115
+ };
116
+
117
+ export const AlsoRead = withElementWrapper(AlsoReadBase);
@@ -0,0 +1,40 @@
1
+ import React from "react";
2
+ import { withStore, optionalSelect } from "../../../../../storybook";
3
+ import { color, text } from "@storybook/addon-knobs";
4
+ import { AlsoRead } from "./index";
5
+ import { generateStoryElementData, generateStory } from "../../../Fixture";
6
+ import Readme from "./README.md";
7
+
8
+ const element = generateStoryElementData("also-read");
9
+ const story = generateStory();
10
+ const templateStyle = {
11
+ Default: "default",
12
+ "Image Right Align": "imageRightAlign",
13
+ "Text Left Align": "textLeftAlign"
14
+ };
15
+
16
+ withStore(
17
+ "Atoms/Story Elements/Also Read",
18
+ {
19
+ qt: {
20
+ config: {
21
+ "cdn-image": "thumbor-stg.assettype.com"
22
+ }
23
+ }
24
+ },
25
+ Readme
26
+ )
27
+ .add("Default", () => (
28
+ <AlsoRead
29
+ story={story}
30
+ element={element}
31
+ template={optionalSelect("Template Options", templateStyle)}
32
+ css={{ textColor: color("Color", "#ff214b") }}
33
+ opts={{ title: text("Title", "Also read") }}
34
+ />
35
+ ))
36
+ .add("Custom", () => {
37
+ // eslint-disable-next-line react/prop-types
38
+ const customTemplate = ({ element }) => <h3 dangerouslySetInnerHTML={{ __html: element.text }} />;
39
+ return <AlsoRead element={element} render={customTemplate} />;
40
+ });
@@ -0,0 +1,21 @@
1
+ # Attachment
2
+
3
+ Component to display the attachment element.
4
+
5
+ ## Usage
6
+
7
+ #### Attachment story element with default template
8
+
9
+ ```jsx
10
+ <Attachment element={element} />
11
+ ```
12
+
13
+ #### Replace default attachment element template with custom template passed using render
14
+
15
+ ```jsx
16
+ const customTemplate = ({ element }) => <h3 dangerouslySetInnerHTML={{ __html: element["file-name"] }} />;
17
+
18
+ <Attachment element={element} />;
19
+ ```
20
+
21
+ <!-- PROPS -->