@madie/madie-design-system 1.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 (316) hide show
  1. package/.babelrc +10 -0
  2. package/.editorconfig +22 -0
  3. package/.eslintignore +5 -0
  4. package/.eslintrc.js +31 -0
  5. package/.storybook/.babelrc +4 -0
  6. package/.storybook/main.js +89 -0
  7. package/.storybook/preview-head.html +9 -0
  8. package/.storybook/preview.js +5 -0
  9. package/README.md +5 -0
  10. package/components/Accordion/Accordion.stories.js +20 -0
  11. package/components/Accordion/index.jsx +93 -0
  12. package/components/Alert/Alert.stories.js +61 -0
  13. package/components/Alert/index.js +46 -0
  14. package/components/Breadcrumb/Breadcrumb.md +28 -0
  15. package/components/Breadcrumb/Breadcrumb.stories.js +76 -0
  16. package/components/Breadcrumb/index.js +83 -0
  17. package/components/Button/Button.stories.js +121 -0
  18. package/components/Button/index.js +90 -0
  19. package/components/CalloutBox/CalloutBox.stories.js +94 -0
  20. package/components/CalloutBox/index.js +109 -0
  21. package/components/Card/Card.stories.js +163 -0
  22. package/components/Card/index.js +137 -0
  23. package/components/Dropdown/Dropdown.stories.js +94 -0
  24. package/components/Dropdown/index.js +85 -0
  25. package/components/Error/Collapsible.jsx +88 -0
  26. package/components/Error/ErrorUI.jsx +31 -0
  27. package/components/Error/error.js +26 -0
  28. package/components/FlashNotification/FlashNotificationUI.jsx +91 -0
  29. package/components/FlashNotification/index.js +30 -0
  30. package/components/Footer/Footer.stories.js +20 -0
  31. package/components/Footer/FooterUI.jsx +269 -0
  32. package/components/Footer/LegacyFooterUI.jsx +194 -0
  33. package/components/Footer/SocialLinks.jsx +60 -0
  34. package/components/Footer/Subscribe.jsx +34 -0
  35. package/components/Footer/footer.js +30 -0
  36. package/components/Header/Header.md +111 -0
  37. package/components/Header/Header.stories.js +32 -0
  38. package/components/Header/HeaderAccountMenu.jsx +169 -0
  39. package/components/Header/HeaderCancel.jsx +16 -0
  40. package/components/Header/HeaderContainer.jsx +63 -0
  41. package/components/Header/HeaderLogo.jsx +42 -0
  42. package/components/Header/HeaderMenuButton.js +50 -0
  43. package/components/Header/HeaderMenuItem.jsx +232 -0
  44. package/components/Header/HeaderMenuLink.js +50 -0
  45. package/components/Header/HeaderMenuSignOutButton.js +62 -0
  46. package/components/Header/HeaderMobileButton.js +37 -0
  47. package/components/Header/HeaderUI.jsx +167 -0
  48. package/components/Header/HelpIcon.jsx +32 -0
  49. package/components/Header/ImpersonatorBanner.jsx +57 -0
  50. package/components/Header/NavigationButtonIcon.jsx +27 -0
  51. package/components/Header/default-content.json +280 -0
  52. package/components/Header/header.js +40 -0
  53. package/components/Header/hooks.js +52 -0
  54. package/components/Header/utag-helpers.js +9 -0
  55. package/components/Infotip/Infotip.jsx +75 -0
  56. package/components/Infotip/Infotip.stories.js +50 -0
  57. package/components/Infotip/InfotipIcon.jsx +41 -0
  58. package/components/Infotip/index.js +3 -0
  59. package/components/Link/Link.stories.js +81 -0
  60. package/components/Link/index.js +61 -0
  61. package/components/Modal/LegacyModal.jsx +72 -0
  62. package/components/Modal/Modal.jsx +140 -0
  63. package/components/Modal/Modal.stories.js +159 -0
  64. package/components/Modal/index.jsx +22 -0
  65. package/components/NotificationBanner/NotificationBanner.stories.js +23 -0
  66. package/components/NotificationBanner/index.js +265 -0
  67. package/components/SanitizedContent/index.jsx +200 -0
  68. package/components/Search/Search.stories.js +21 -0
  69. package/components/Search/index.js +85 -0
  70. package/components/SessionDialog/sessionDialog.js +26 -0
  71. package/components/SessionDialogUI.jsx +261 -0
  72. package/components/SideNav/AnimationGroup/AnimationGroup.jsx +27 -0
  73. package/components/SideNav/Chart/ScoreChart.jsx +268 -0
  74. package/components/SideNav/Chart/__tests__/ScoreChart.test.js +22 -0
  75. package/components/SideNav/Chart/__tests__/__snapshots__/ScoreChart.test.js.snap +173 -0
  76. package/components/SideNav/Chart/index.js +3 -0
  77. package/components/SideNav/Content/LevelOneContent.jsx +208 -0
  78. package/components/SideNav/Content/LevelTwoContent.jsx +216 -0
  79. package/components/SideNav/Content/index.js +4 -0
  80. package/components/SideNav/Details/IndividualDetails.jsx +18 -0
  81. package/components/SideNav/Details/PracticeDetails.jsx +45 -0
  82. package/components/SideNav/Details/index.js +4 -0
  83. package/components/SideNav/Links/CmsSwitchLink.jsx +41 -0
  84. package/components/SideNav/Links/NavItemInline.jsx +54 -0
  85. package/components/SideNav/Links/NavLinkContainer.jsx +38 -0
  86. package/components/SideNav/Links/NavLinkDrawer.jsx +249 -0
  87. package/components/SideNav/Links/NavLinkInline.jsx +107 -0
  88. package/components/SideNav/Links/NavLinkToggle.jsx +34 -0
  89. package/components/SideNav/Links/index.js +13 -0
  90. package/components/SideNav/SideNav.md +50 -0
  91. package/components/SideNav/SideNav.stories.js +379 -0
  92. package/components/SideNav/UI/SideNavUI.jsx +333 -0
  93. package/components/SideNav/UI/default-content.json +99 -0
  94. package/components/SideNav/UI/index.js +3 -0
  95. package/components/SideNav/helpers.js +49 -0
  96. package/components/SideNav/index.js +53 -0
  97. package/components/Spinner/index.js +9 -0
  98. package/components/Tabs/Tab.js +26 -0
  99. package/components/Tabs/TabPanel.js +34 -0
  100. package/components/Tabs/Tabs.stories.js +120 -0
  101. package/components/Tabs/index.js +95 -0
  102. package/components/TextInput/TextInput.stories.js +118 -0
  103. package/components/TextInput/index.js +137 -0
  104. package/components/Tooltip/Tooltip.jsx +88 -0
  105. package/components/Tooltip/Tooltip.stories.js +80 -0
  106. package/components/Tooltip/index.js +3 -0
  107. package/components/Tooltip/position.js +68 -0
  108. package/components/UnwrappedSpinner/index.js +8 -0
  109. package/components/hooks/useGetConfig.js +74 -0
  110. package/components/index.js +126 -0
  111. package/dist/browser.js +3 -0
  112. package/dist/browser.js.LICENSE.txt +54 -0
  113. package/dist/browser.js.map +1 -0
  114. package/dist/index.js +3 -0
  115. package/dist/index.js.LICENSE.txt +54 -0
  116. package/dist/index.js.map +1 -0
  117. package/dist/react/index.js +3 -0
  118. package/dist/react/index.js.LICENSE.txt +71 -0
  119. package/dist/react/index.js.map +1 -0
  120. package/fonts/FontAwesome.otf +0 -0
  121. package/fonts/OFL.txt +92 -0
  122. package/fonts/Rubik-Black.ttf +0 -0
  123. package/fonts/Rubik-BlackItalic.ttf +0 -0
  124. package/fonts/Rubik-Bold.ttf +0 -0
  125. package/fonts/Rubik-BoldItalic.ttf +0 -0
  126. package/fonts/Rubik-Italic.ttf +0 -0
  127. package/fonts/Rubik-Light.ttf +0 -0
  128. package/fonts/Rubik-LightItalic.ttf +0 -0
  129. package/fonts/Rubik-Medium.ttf +0 -0
  130. package/fonts/Rubik-MediumItalic.ttf +0 -0
  131. package/fonts/Rubik-Regular.ttf +0 -0
  132. package/fonts/fontawesome-webfont.eot +0 -0
  133. package/fonts/fontawesome-webfont.svg +2671 -0
  134. package/fonts/fontawesome-webfont.ttf +0 -0
  135. package/fonts/fontawesome-webfont.woff +0 -0
  136. package/fonts/fontawesome-webfont.woff2 +0 -0
  137. package/images/favicon/android-chrome-192x192.png +0 -0
  138. package/images/favicon/android-chrome-256x256.png +0 -0
  139. package/images/favicon/apple-touch-icon.png +0 -0
  140. package/images/favicon/browserconfig.xml +9 -0
  141. package/images/favicon/favicon-16x16.png +0 -0
  142. package/images/favicon/favicon-32x32.png +0 -0
  143. package/images/favicon/favicon.ico +0 -0
  144. package/images/favicon/manifest.json +18 -0
  145. package/images/favicon/mstile-150x150.png +0 -0
  146. package/images/favicon/safari-pinned-tab.svg +32 -0
  147. package/images/hhs-logo-black.svg +10 -0
  148. package/images/hhs-logo-white.svg +10 -0
  149. package/images/icons/close-x.svg +6 -0
  150. package/images/icons/help-headset.svg +21 -0
  151. package/images/icons/svg/arrow-down.svg +1 -0
  152. package/images/icons/svg/arrow-download.svg +1 -0
  153. package/images/icons/svg/arrow-right.svg +1 -0
  154. package/images/icons/svg/calendar.svg +1 -0
  155. package/images/icons/svg/close.svg +1 -0
  156. package/images/icons/svg/download.svg +1 -0
  157. package/images/icons/svg/external.svg +1 -0
  158. package/images/icons/svg/file-upload.svg +1 -0
  159. package/images/icons/svg/print.svg +1 -0
  160. package/images/icons/svg/search.svg +7 -0
  161. package/images/icons/svg/tooltip-question.svg +6 -0
  162. package/images/icons/svg/trash.svg +1 -0
  163. package/images/icons/svg/upload.svg +1 -0
  164. package/images/qpp_logo_reversed.png +0 -0
  165. package/images/qpp_logo_rgb_color.png +0 -0
  166. package/index.js +31 -0
  167. package/jest/mediaFileTransformer.js +9 -0
  168. package/jest.config.js +188 -0
  169. package/lib/Chevron.jsx +32 -0
  170. package/lib/SvgComponents.jsx +539 -0
  171. package/lib/svg-definitions.svg +125 -0
  172. package/package.json +125 -0
  173. package/session/index.js +5 -0
  174. package/session/logout.js +65 -0
  175. package/session/refresh.js +49 -0
  176. package/session/ttl.js +37 -0
  177. package/styles/_global.scss +106 -0
  178. package/styles/_main.scss +15 -0
  179. package/styles/_paths.scss +1 -0
  180. package/styles/_qpp-style.scss +31 -0
  181. package/styles/components/_accordion.scss +289 -0
  182. package/styles/components/_alerts.scss +54 -0
  183. package/styles/components/_autocomplete.scss +47 -0
  184. package/styles/components/_breadcrumbs.scss +64 -0
  185. package/styles/components/_buttons.scss +580 -0
  186. package/styles/components/_error-page.scss +56 -0
  187. package/styles/components/_flash-notification.scss +98 -0
  188. package/styles/components/_fonts.scss +42 -0
  189. package/styles/components/_forms.scss +277 -0
  190. package/styles/components/_grid.scss +37 -0
  191. package/styles/components/_info-modal.scss +139 -0
  192. package/styles/components/_links.scss +12 -0
  193. package/styles/components/_modals.scss +18 -0
  194. package/styles/components/_notification-banner.scss +165 -0
  195. package/styles/components/_panels.scss +61 -0
  196. package/styles/components/_pie-chart.scss +13 -0
  197. package/styles/components/_score-chart.scss +164 -0
  198. package/styles/components/_spinner.scss +7 -0
  199. package/styles/components/_tables.scss +111 -0
  200. package/styles/components/_tabs.scss +69 -0
  201. package/styles/components/_text.scss +150 -0
  202. package/styles/components/_toggles.scss +3 -0
  203. package/styles/components/_tooltip.scss +23 -0
  204. package/styles/components/_variables.scss +157 -0
  205. package/styles/components/_wells.scss +92 -0
  206. package/styles/qppds/README.md +0 -0
  207. package/styles/qppds/base/_backgrounds.scss +7 -0
  208. package/styles/qppds/base/_fonts.scss +26 -0
  209. package/styles/qppds/base/_icon.scss +23 -0
  210. package/styles/qppds/base/_layout.scss +5 -0
  211. package/styles/qppds/base/_typography.scss +85 -0
  212. package/styles/qppds/base/index.scss +8 -0
  213. package/styles/qppds/components/_alert.scss +95 -0
  214. package/styles/qppds/components/_breadcrumbs.scss +70 -0
  215. package/styles/qppds/components/_button.scss +292 -0
  216. package/styles/qppds/components/_card.scss +175 -0
  217. package/styles/qppds/components/_dropdown.scss +55 -0
  218. package/styles/qppds/components/_footer.scss +597 -0
  219. package/styles/qppds/components/_header.scss +892 -0
  220. package/styles/qppds/components/_link.scss +52 -0
  221. package/styles/qppds/components/_modal.scss +118 -0
  222. package/styles/qppds/components/_page-header.scss +67 -0
  223. package/styles/qppds/components/_pagination.scss +227 -0
  224. package/styles/qppds/components/_search.scss +112 -0
  225. package/styles/qppds/components/_sidebar.scss +9 -0
  226. package/styles/qppds/components/_table.scss +139 -0
  227. package/styles/qppds/components/_tabs.scss +197 -0
  228. package/styles/qppds/components/_text-input.scss +60 -0
  229. package/styles/qppds/components/index.scss +16 -0
  230. package/styles/qppds/components/sidebar/_animations.scss +38 -0
  231. package/styles/qppds/components/sidebar/_cms.scss +61 -0
  232. package/styles/qppds/components/sidebar/_details.scss +58 -0
  233. package/styles/qppds/components/sidebar/_links.scss +444 -0
  234. package/styles/qppds/components/sidebar/_sidebar-animation.scss +125 -0
  235. package/styles/qppds/components/sidebar/_sidebar-tooltip.scss +33 -0
  236. package/styles/qppds/components/sidebar/_sidebar.scss +146 -0
  237. package/styles/qppds/components/sidebar/project-specific/_wi.scss +42 -0
  238. package/styles/qppds/index.scss +4 -0
  239. package/styles/qppds/settings/_functions.scss +4 -0
  240. package/styles/qppds/settings/_index.scss +3 -0
  241. package/styles/qppds/settings/mixins/_borders.scss +6 -0
  242. package/styles/qppds/settings/mixins/_focus.scss +28 -0
  243. package/styles/qppds/settings/mixins/_icons.scss +33 -0
  244. package/styles/qppds/settings/mixins/_index.scss +8 -0
  245. package/styles/qppds/settings/mixins/_layout.scss +74 -0
  246. package/styles/qppds/settings/mixins/_lists.scss +12 -0
  247. package/styles/qppds/settings/mixins/_table.scss +91 -0
  248. package/styles/qppds/settings/mixins/_type.scss +65 -0
  249. package/styles/qppds/settings/mixins/_visually-hidden.scss +30 -0
  250. package/styles/qppds/settings/variables/_color.scss +86 -0
  251. package/styles/qppds/settings/variables/_index.scss +3 -0
  252. package/styles/qppds/settings/variables/_layout.scss +67 -0
  253. package/styles/qppds/settings/variables/_type.scss +132 -0
  254. package/styles/qppds/utilities/_background-color.scss +134 -0
  255. package/styles/qppds/utilities/_color.scss +32 -0
  256. package/styles/qppds/utilities/_display-visibility.scss +83 -0
  257. package/styles/qppds/utilities/_flexbox.scss +240 -0
  258. package/styles/qppds/utilities/_font-family.scss +9 -0
  259. package/styles/qppds/utilities/_font-size.scss +8 -0
  260. package/styles/qppds/utilities/_font-weight.scss +8 -0
  261. package/styles/qppds/utilities/_height.scss +38 -0
  262. package/styles/qppds/utilities/_margin.scss +136 -0
  263. package/styles/qppds/utilities/_padding.scss +76 -0
  264. package/styles/qppds/utilities/_position.scss +24 -0
  265. package/styles/qppds/utilities/_text-align.scss +40 -0
  266. package/styles/qppds/utilities/_text-transform.scss +7 -0
  267. package/styles/qppds/utilities/_truncate.scss +8 -0
  268. package/styles/qppds/utilities/_width.scss +79 -0
  269. package/styles/qppds/utilities/index.scss +15 -0
  270. package/styles/qppds.scss +2 -0
  271. package/styles/third-party/_legacy-bootstrap.scss +19 -0
  272. package/styles/third-party/legacy-bootstrap/_buttons.scss +126 -0
  273. package/styles/third-party/legacy-bootstrap/_dropdowns.scss +211 -0
  274. package/styles/third-party/legacy-bootstrap/_forms.scss +510 -0
  275. package/styles/third-party/legacy-bootstrap/_grid.scss +73 -0
  276. package/styles/third-party/legacy-bootstrap/_mixins.scss +27 -0
  277. package/styles/third-party/legacy-bootstrap/_navbar.scss +644 -0
  278. package/styles/third-party/legacy-bootstrap/_navs.scss +193 -0
  279. package/styles/third-party/legacy-bootstrap/_normalize.scss +385 -0
  280. package/styles/third-party/legacy-bootstrap/_scaffolding.scss +116 -0
  281. package/styles/third-party/legacy-bootstrap/_variables.scss +858 -0
  282. package/styles/third-party/legacy-bootstrap/mixins/_buttons.scss +70 -0
  283. package/styles/third-party/legacy-bootstrap/mixins/_clearfix.scss +22 -0
  284. package/styles/third-party/legacy-bootstrap/mixins/_forms.scss +108 -0
  285. package/styles/third-party/legacy-bootstrap/mixins/_grid-framework.scss +86 -0
  286. package/styles/third-party/legacy-bootstrap/mixins/_grid.scss +112 -0
  287. package/styles/third-party/legacy-bootstrap/mixins/_labels.scss +12 -0
  288. package/styles/third-party/legacy-bootstrap/mixins/_nav-divider.scss +10 -0
  289. package/styles/third-party/legacy-bootstrap/mixins/_nav-vertical-align.scss +9 -0
  290. package/styles/third-party/legacy-bootstrap/mixins/_opacity.scss +7 -0
  291. package/styles/third-party/legacy-bootstrap/mixins/_panels.scss +30 -0
  292. package/styles/third-party/legacy-bootstrap/mixins/_reset-filter.scss +7 -0
  293. package/styles/third-party/legacy-bootstrap/mixins/_reset-text.scss +18 -0
  294. package/styles/third-party/legacy-bootstrap/mixins/_resize.scss +6 -0
  295. package/styles/third-party/legacy-bootstrap/mixins/_responsive-visibility.scss +25 -0
  296. package/styles/third-party/legacy-bootstrap/mixins/_size.scss +10 -0
  297. package/styles/third-party/legacy-bootstrap/mixins/_tab-focus.scss +9 -0
  298. package/styles/third-party/legacy-bootstrap/mixins/_table-row.scss +28 -0
  299. package/styles/third-party/legacy-bootstrap/mixins/_text-emphasis.scss +12 -0
  300. package/styles/third-party/legacy-bootstrap/mixins/_text-overflow.scss +8 -0
  301. package/styles/third-party/legacy-bootstrap/mixins/_vendor-prefixes.scss +182 -0
  302. package/styles/utility/_mixins.scss +46 -0
  303. package/styles/utility/_utilities.scss +73 -0
  304. package/test/components/Accordion.test.js +12 -0
  305. package/test/components/ErrorUI.test.js +33 -0
  306. package/test/components/FooterUI.test.js +90 -0
  307. package/test/components/HeaderUI.test.js +45 -0
  308. package/test/components/Infotip.test.js +73 -0
  309. package/test/components/SessionDialogUI.test.js +339 -0
  310. package/test/components/SideNavUI.test.js +23 -0
  311. package/test/components/Tooltip.test.js +147 -0
  312. package/test/index.test.js +8 -0
  313. package/test/session/session.test.js +221 -0
  314. package/test-setup.js +9 -0
  315. package/webpack.config.js +147 -0
  316. package/webpack.config.react.js +86 -0
@@ -0,0 +1,200 @@
1
+ import React from 'react';
2
+ import xss from 'xss';
3
+ import PropTypes from 'prop-types';
4
+
5
+ // Override the default allowed HTML tags
6
+ const defaultAllowedTags = [
7
+ 'a',
8
+ 'abbr',
9
+ 'address',
10
+ 'article',
11
+ 'aside',
12
+ 'b',
13
+ 'blockquote',
14
+ 'br',
15
+ 'button',
16
+ 'caption',
17
+ 'cite',
18
+ 'code',
19
+ 'col',
20
+ 'colgroup',
21
+ 'datalist',
22
+ 'dd',
23
+ 'del',
24
+ 'details',
25
+ 'dfn',
26
+ 'dialog',
27
+ 'div',
28
+ 'dl',
29
+ 'dt',
30
+ 'em',
31
+ 'fieldset',
32
+ 'figcaption',
33
+ 'figure',
34
+ 'footer',
35
+ 'form',
36
+ 'h1',
37
+ 'h2',
38
+ 'h3',
39
+ 'h4',
40
+ 'h5',
41
+ 'h6',
42
+ 'header',
43
+ 'hr',
44
+ 'i',
45
+ 'img',
46
+ 'input',
47
+ 'ins',
48
+ 'kbd',
49
+ 'label',
50
+ 'legend',
51
+ 'li',
52
+ 'mark',
53
+ 'meter',
54
+ 'nav',
55
+ 'ol',
56
+ 'optgroup',
57
+ 'option',
58
+ 'output',
59
+ 'p',
60
+ 'picture',
61
+ 'pre',
62
+ 'progress',
63
+ 'q',
64
+ 'section',
65
+ 'select',
66
+ 'small',
67
+ 'source',
68
+ 'span',
69
+ 'strong',
70
+ 'sub',
71
+ 'summary',
72
+ 'sup',
73
+ 'table',
74
+ 'tbody',
75
+ 'td',
76
+ 'textarea',
77
+ 'tfoot',
78
+ 'th',
79
+ 'thead',
80
+ 'time',
81
+ 'tr',
82
+ 'ul',
83
+ 'svg',
84
+ 'use',
85
+ 'polygon',
86
+ 'circle',
87
+ 'g',
88
+ 'path',
89
+ ];
90
+
91
+ // Override the default allowed HTML attributes for all tags
92
+ const defaultAllowedAttributes = {
93
+ '*': [
94
+ 'action',
95
+ 'alt',
96
+ 'aria-*',
97
+ 'autocomplete',
98
+ 'cite',
99
+ 'class',
100
+ 'cols',
101
+ 'colspan',
102
+ 'data-*',
103
+ 'datetime',
104
+ 'disabled',
105
+ 'download',
106
+ 'for',
107
+ 'headers',
108
+ 'height',
109
+ 'hidden',
110
+ 'href',
111
+ 'hreflang',
112
+ 'id',
113
+ 'lang',
114
+ 'list',
115
+ 'max',
116
+ 'maxlength',
117
+ 'minlength',
118
+ 'media',
119
+ 'method',
120
+ 'min',
121
+ 'multiple',
122
+ 'name',
123
+ 'novalidate',
124
+ 'open',
125
+ 'pattern',
126
+ 'placeholder',
127
+ 'readonly',
128
+ 'rel',
129
+ 'required',
130
+ 'reversed',
131
+ 'rows',
132
+ 'rowspan',
133
+ 'sandbox',
134
+ 'scope',
135
+ 'scoped',
136
+ 'selected',
137
+ 'size',
138
+ 'sizes',
139
+ 'span',
140
+ 'spellcheck',
141
+ 'src',
142
+ 'srcset',
143
+ 'start',
144
+ 'step',
145
+ 'style',
146
+ 'summary',
147
+ 'tabindex',
148
+ 'target',
149
+ 'title',
150
+ 'type',
151
+ 'value',
152
+ 'width',
153
+ 'wrap',
154
+ 'fill',
155
+ 'stroke',
156
+ ' stroke-width',
157
+ 'd',
158
+ 'points',
159
+ 'viewbox',
160
+ 'x',
161
+ 'y',
162
+ 'cx',
163
+ 'cy',
164
+ 'r',
165
+ 'xmlns',
166
+ 'xmlns:xlink',
167
+ 'xlink:href',
168
+ 'version',
169
+ 'preserveaspectratio',
170
+ 'enable-background',
171
+ ],
172
+ };
173
+
174
+ const SanitizedContent = ({
175
+ html = '<div/>',
176
+ customClassName = null,
177
+ allowedTags = defaultAllowedTags,
178
+ allowedAttributes = defaultAllowedAttributes,
179
+ }) => {
180
+ const whiteList = allowedTags.reduce((map, tag) => {
181
+ map[tag] = allowedAttributes['*'];
182
+ return map;
183
+ }, {});
184
+ const sanitizedHTML = xss(html, { whiteList });
185
+ return (
186
+ <div
187
+ {...(customClassName && { className: customClassName })}
188
+ dangerouslySetInnerHTML={{ __html: sanitizedHTML }}
189
+ />
190
+ );
191
+ };
192
+
193
+ SanitizedContent.propTypes = {
194
+ html: PropTypes.string,
195
+ customClassName: PropTypes.string,
196
+ allowedTags: PropTypes.array,
197
+ allowedAttributes: PropTypes.array,
198
+ };
199
+
200
+ export default SanitizedContent;
@@ -0,0 +1,21 @@
1
+ import React from 'react';
2
+ import Search from './index';
3
+ import { withKnobs } from '@storybook/addon-knobs';
4
+
5
+ export default {
6
+ title: 'Search',
7
+ component: Search,
8
+ decorators: [withKnobs],
9
+ };
10
+
11
+ export const ExampleSearch = () => (
12
+ <Search
13
+ id="Example id"
14
+ name="Example name"
15
+ placeholder="Example placeholder"
16
+ inputAriaLabel="Example input arial-label"
17
+ buttonAriaLabel="Example button arial-label"
18
+ />
19
+ );
20
+
21
+ ExampleSearch.storyName = 'example Search';
@@ -0,0 +1,85 @@
1
+ import React from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import SearchIcon from '@material-ui/icons/Search';
4
+
5
+ const Search = ({
6
+ id,
7
+ name,
8
+ placeholder,
9
+ disableSearchBtn,
10
+ disabled,
11
+ inputValue,
12
+ onClick,
13
+ onChange,
14
+ inputAriaLabel,
15
+ buttonAriaLabel,
16
+ inputWidth,
17
+ }) => {
18
+ const inputStyle = {
19
+ width: inputWidth,
20
+ };
21
+ return (
22
+ <form role="search" className="qpp-c-search qpp-c-search--compact">
23
+ <label className="qpp-u-visually-hidden" htmlFor={id}>
24
+ Search
25
+ </label>
26
+ <div className="qpp-c-search__wrap">
27
+ <input
28
+ style={inputStyle}
29
+ className="qpp-c-text-input"
30
+ type="search"
31
+ id={id}
32
+ name={name}
33
+ placeholder={placeholder}
34
+ value={inputValue}
35
+ disabled={disabled}
36
+ onChange={onChange}
37
+ aria-label={inputAriaLabel}
38
+ />
39
+
40
+ <button
41
+ data-testid="search-btn"
42
+ aria-label={buttonAriaLabel}
43
+ onClick={onClick}
44
+ disabled={disableSearchBtn}
45
+ id={`${id}-submit`}
46
+ type="submit"
47
+ className="qpp-c-search__submit qpp-c-button qpp-c-button--text"
48
+ >
49
+ <span className="qpp-u-visually-hidden">Search</span>
50
+ <SearchIcon classes={{ root: 'qpp-icon-mat' }} />
51
+ </button>
52
+ </div>
53
+ </form>
54
+ );
55
+ };
56
+
57
+ Search.propTypes = {
58
+ id: PropTypes.string,
59
+ name: PropTypes.string,
60
+ placeholder: PropTypes.string,
61
+ disableSearchBtn: PropTypes.bool,
62
+ disabled: PropTypes.bool,
63
+ inputValue: PropTypes.string,
64
+ onClick: PropTypes.func,
65
+ onChange: PropTypes.func,
66
+ inputAriaLabel: PropTypes.string,
67
+ buttonAriaLabel: PropTypes.string,
68
+ inputWidth: PropTypes.string,
69
+ };
70
+
71
+ Search.defaultProps = {
72
+ id: 'search-input',
73
+ name: '',
74
+ placeholder: '',
75
+ disableSearchBtn: false,
76
+ disabled: false,
77
+ inputValue: '',
78
+ onClick: () => null,
79
+ onChange: () => null,
80
+ inputAriaLabel: '',
81
+ buttonAriaLabel: '',
82
+ inputWidth: 'auto',
83
+ };
84
+
85
+ export default Search;
@@ -0,0 +1,26 @@
1
+ import React from 'react';
2
+ import { render } from 'react-dom';
3
+ import SessionDialogUI from '../SessionDialogUI';
4
+
5
+ /**
6
+ * Renders the Session Dialog UI content.
7
+ */
8
+ export default class SessionDialog {
9
+ /**
10
+ * @param {Object} options - An object containing content and config data
11
+ * @param {Boolean} options.showImmediate
12
+ * @param {Number} options.warningTimeout
13
+ * @param {String} options.appElement
14
+ * @param {HTMLElement} options.rootElement - Elem inside which to render
15
+ */
16
+ constructor(options) {
17
+ render(
18
+ <SessionDialogUI
19
+ showImmediate={options.showImmediate}
20
+ warningTimeout={options.warningTimeout}
21
+ appElement={options.appElement}
22
+ />,
23
+ options.rootElement
24
+ );
25
+ }
26
+ }
@@ -0,0 +1,261 @@
1
+ import React, { Component } from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import cookie from 'cookie';
4
+ import retry from 'retry';
5
+ import jwtDecode from 'jwt-decode';
6
+
7
+ import Modal from './Modal';
8
+ import RefreshSession from '../session/refresh';
9
+ import LogoutSession from '../session/logout';
10
+ import fetchTtl from '../session/ttl';
11
+
12
+ const fetchTtlIntervalMs = 60000;
13
+
14
+ export default class SessionDialogUI extends Component {
15
+ /**
16
+ * Create a SessionDialogUI component.
17
+ * @param {object} props - Configuration options. See SessionDialog for more
18
+ */
19
+ constructor(props) {
20
+ super(props);
21
+
22
+ this.handleOpenModal = this.handleOpenModal.bind(this);
23
+ this.handleCloseModal = this.handleCloseModal.bind(this);
24
+ this.refreshSession = this.refreshSession.bind(this);
25
+ this.signOut = this.signOut.bind(this);
26
+ this.startTimer = this.startTimer.bind(this);
27
+ this.shouldShowDialog = this.shouldShowDialog.bind(this);
28
+ this.shouldSignOut = this.shouldSignOut.bind(this);
29
+ this.minutesUntil = this.minutesUntil.bind(this);
30
+ this.checkExpiry = this.checkExpiry.bind(this);
31
+ this.onInterval = this.onInterval.bind(this);
32
+
33
+ if (props.showImmediate === true) {
34
+ this.state = {
35
+ showModal: true,
36
+ showError: false,
37
+ };
38
+ } else {
39
+ this.state = {
40
+ showModal: false,
41
+ showError: false,
42
+ };
43
+
44
+ this.startTimer();
45
+ }
46
+ }
47
+
48
+ /**
49
+ * Extracts the token exp value as a JavaScript date.
50
+ * @param {Object} cookies - An object representation of the cookie store
51
+ * @returns {(date|null)} The token expiration date, if found
52
+ */
53
+ getTokenExpiry(cookies) {
54
+ let expiry = null;
55
+
56
+ if (cookies.hasOwnProperty('qpp_auth_token') && cookies.qpp_auth_token) {
57
+ // See https://tools.ietf.org/html/rfc7519
58
+ // `exp` is a NumericDate representing "seconds since the epoch"
59
+ // and it needs to be milliseconds to get a JavaScript date from it.
60
+ const { exp } = jwtDecode(cookies.qpp_auth_token);
61
+ expiry = new Date(exp * 1000);
62
+ }
63
+
64
+ return expiry;
65
+ }
66
+
67
+ checkExpiry(expiry) {
68
+ if (expiry) {
69
+ if (this.shouldShowDialog(expiry)) {
70
+ this.handleOpenModal();
71
+ } else if (this.shouldSignOut(expiry)) {
72
+ this.signOut();
73
+ clearInterval(this.warningInterval);
74
+ }
75
+ } else {
76
+ clearInterval(this.warningInterval);
77
+ }
78
+ }
79
+
80
+ onInterval() {
81
+ const cookies = cookie.parse(document.cookie);
82
+
83
+ if (cookies.hasOwnProperty('qpp_auth_token') && cookies.qpp_auth_token) {
84
+ const operation = retry.operation({
85
+ retries: 5,
86
+ factor: 1,
87
+ minTimeout: 1000,
88
+ maxTimeout: 1000,
89
+ });
90
+
91
+ operation.attempt(() => {
92
+ fetchTtl(cookies.qpp_auth_token)
93
+ .then(this.checkExpiry)
94
+ .catch((error) => {
95
+ if (operation.retry(error)) {
96
+ // try again before giving up
97
+ return;
98
+ }
99
+ clearInterval(this.warningInterval);
100
+ // sign an inactive user out
101
+ this.forceTimeoutHandle = setTimeout(this.signOut, 120 * 1000);
102
+ this.setState({
103
+ showModal: false,
104
+ showError: true,
105
+ });
106
+ });
107
+ });
108
+ }
109
+ }
110
+
111
+ /**
112
+ * Checks whether the user is within a specified number of minutes before
113
+ * their session token expires. If so, show a warning dialog. If the
114
+ * expiration has been reached, sign the user out.
115
+ */
116
+ startTimer() {
117
+ clearInterval(this.warningInterval);
118
+
119
+ this.warningInterval = setInterval(this.onInterval, fetchTtlIntervalMs);
120
+ }
121
+
122
+ /**
123
+ * Returns whether the current time is within the timeout range of expiry.
124
+ * @param {date|number} expiry - Expiration date to check against
125
+ * @returns {boolean}
126
+ */
127
+ shouldShowDialog(expiry) {
128
+ if (typeof expiry === 'number') {
129
+ const minutesLeft = expiry / 60;
130
+
131
+ return !this.state.showModal && minutesLeft <= this.props.warningTimeout;
132
+ } else {
133
+ return (
134
+ !this.state.showModal &&
135
+ this.minutesUntil(expiry) <= this.props.warningTimeout
136
+ );
137
+ }
138
+ }
139
+
140
+ /**
141
+ * Returns whether the current time has reached the expiration date.
142
+ * @param {date|number} expiry - Expiration date to check against
143
+ * @returns {boolean}
144
+ */
145
+ shouldSignOut(expiry) {
146
+ if (typeof expiry === 'number') {
147
+ return expiry <= 1;
148
+ } else {
149
+ return this.minutesUntil(expiry) <= 0;
150
+ }
151
+ }
152
+
153
+ /**
154
+ * Returns number of minutes until the expiration date.
155
+ * @param {date} expiry - Expiration date to check against
156
+ * @returns {number}
157
+ */
158
+ minutesUntil(expiry) {
159
+ return (expiry - new Date().getTime()) / 60000;
160
+ }
161
+
162
+ /**
163
+ * Sets the modal state to visible.
164
+ */
165
+ handleOpenModal() {
166
+ this.setState({
167
+ showModal: true,
168
+ showError: false,
169
+ });
170
+ }
171
+
172
+ /**
173
+ * Sets the modal state to hidden.
174
+ */
175
+ handleCloseModal() {
176
+ this.setState({
177
+ showModal: false,
178
+ showError: false,
179
+ });
180
+ }
181
+
182
+ /**
183
+ * Handles the user requesting their session be extended.
184
+ */
185
+ refreshSession() {
186
+ RefreshSession({
187
+ window,
188
+ onSuccess: () => {
189
+ this.startTimer();
190
+ },
191
+ });
192
+
193
+ this.handleCloseModal();
194
+ }
195
+
196
+ /**
197
+ * Handles the user requesting their session be ended.
198
+ */
199
+ signOut() {
200
+ if (this.forceTimeoutHandle) {
201
+ clearTimeout(this.forceTimeoutHandle);
202
+ }
203
+ LogoutSession(window);
204
+ this.handleCloseModal();
205
+ }
206
+
207
+ render() {
208
+ return (
209
+ <React.Fragment>
210
+ <Modal
211
+ useDesignSystem
212
+ title="You will be signed out within two minutes"
213
+ isOpen={this.state.showModal}
214
+ primary={{
215
+ title: 'Keep me signed in',
216
+ onClick: this.refreshSession,
217
+ }}
218
+ secondary={{
219
+ title: 'Sign me out now',
220
+ onClick: this.signOut,
221
+ }}
222
+ onRequestClose={this.handleCloseModal}
223
+ >
224
+ <p>
225
+ You have been inactive for thirty minutes. For your security, we
226
+ will sign you out automatically.
227
+ </p>
228
+ </Modal>
229
+
230
+ <Modal
231
+ useDesignSystem
232
+ title="Technical Difficulties"
233
+ isOpen={this.state.showError}
234
+ primary={{
235
+ title: 'Sign Out',
236
+ onClick: this.signOut,
237
+ }}
238
+ onRequestClose={this.signOut}
239
+ >
240
+ <p>
241
+ We’re experiencing technical difficulties. Please log in again to
242
+ continue. For your security, we will sign you out automatically
243
+ within two minutes.
244
+ </p>
245
+ </Modal>
246
+ </React.Fragment>
247
+ );
248
+ }
249
+ }
250
+
251
+ SessionDialogUI.propTypes = {
252
+ showImmediate: PropTypes.bool,
253
+ warningTimeout: PropTypes.number,
254
+ appElement: PropTypes.string,
255
+ };
256
+
257
+ SessionDialogUI.defaultProps = {
258
+ showImmediate: false,
259
+ warningTimeout: 2,
260
+ appElement: undefined,
261
+ };
@@ -0,0 +1,27 @@
1
+ import React from 'react';
2
+ import PropTypes from 'prop-types';
3
+
4
+ const hasDarkerBackground = (darkerBackground) => {
5
+ return darkerBackground ? 'background-highlight' : '';
6
+ }
7
+
8
+ const AnimationGroup = ({ display, className, children, darkerBackground }) => {
9
+ return (
10
+ <div
11
+ className={`animation-group animation-group-${className || 'default'}${
12
+ display ? ' animation-group-enter' : ' animation-group-exit'
13
+ } ${hasDarkerBackground(darkerBackground)}`}
14
+ >
15
+ {children}
16
+ </div>
17
+ );
18
+ };
19
+
20
+ AnimationGroup.propTypes = {
21
+ children: PropTypes.node,
22
+ className: PropTypes.string,
23
+ display: PropTypes.bool,
24
+ darkerBackground: PropTypes.bool
25
+ };
26
+
27
+ export default AnimationGroup;