@stokr/components-library 1.0.9 → 1.1.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 (522) hide show
  1. package/dist/api/StokrWeb3.js +184 -0
  2. package/dist/api/fetchData.js +76 -0
  3. package/dist/api/fetchDataPublic.js +65 -0
  4. package/dist/components/AccountBalance/AccountBalance.js +53 -0
  5. package/dist/components/AccountBalance/AccountBalance.stories.js +89 -0
  6. package/dist/components/AccountBalance/AccountBalance.styles.js +40 -0
  7. package/dist/components/AdminDashboard/Table/Table.js +170 -0
  8. package/dist/components/AdminDashboard/Table/Table.styles.js +79 -0
  9. package/dist/components/AgreementItem/AgreementItem.js +51 -0
  10. package/dist/components/AgreementItem/AgreementItem.stories.js +110 -0
  11. package/dist/components/AgreementItem/AgreementItem.styles.js +35 -0
  12. package/dist/components/AnalyticGraphs/Analytic.js +781 -0
  13. package/dist/components/AnalyticGraphs/Analytic.styles.js +37 -0
  14. package/dist/components/BackButton/BackButton.js +32 -0
  15. package/dist/components/BackButton/BackButton.stories.js +36 -0
  16. package/dist/components/BackButton/BackButton.styles.js +76 -0
  17. package/dist/components/Background/Background.js +45 -0
  18. package/dist/components/Background/Background.stories.js +79 -0
  19. package/dist/components/Background/Background.styles.js +76 -0
  20. package/dist/components/BarChart/BarChart.js +306 -0
  21. package/dist/components/BarChart/BarChart.stories.js +71 -0
  22. package/dist/components/BarChart/BarChart.styles.js +33 -0
  23. package/dist/components/BarChartLegend/BarChartLegend.js +106 -0
  24. package/dist/components/BarChartLegend/BarChartLegend.styles.js +26 -0
  25. package/dist/components/BasicTable/BasicTable.js +32 -0
  26. package/dist/components/BasicTable/BasicTable.stories.js +64 -0
  27. package/dist/components/BasicTable/BasicTable.styles.js +52 -0
  28. package/dist/components/Button/Button.stories.js +80 -0
  29. package/dist/components/Button/Button.styles.js +83 -0
  30. package/dist/components/ButtonContainer/ButtonContainer.styles.js +18 -0
  31. package/dist/components/CapitalRaisedSummary/CapitalRaisedSummery.stories.js +46 -0
  32. package/dist/components/CapitalRaisedSummary/CaptialRaisedSummary.js +34 -0
  33. package/dist/components/CapitalRaisedSummary/CaptialRaisedSummary.styles.js +34 -0
  34. package/dist/components/ChartBox/ChartBox.js +44 -0
  35. package/dist/components/ChartBox/ChartBox.stories.js +20 -0
  36. package/dist/components/ChartBox/ChartBox.styles.js +33 -0
  37. package/dist/components/ChartBox/ChartBoxDistribution.js +30 -0
  38. package/dist/components/ChartBox/ChartBoxDistribution.stories.js +21 -0
  39. package/dist/components/ChartLegend/ChartLegend.js +62 -0
  40. package/dist/components/ChartLegend/ChartLegend.stories.js +88 -0
  41. package/dist/components/ChartLegend/ChartLegend.styles.js +64 -0
  42. package/dist/components/Checkbox/Checkbox.js +116 -0
  43. package/dist/components/Checkbox/Checkbox.stories.js +93 -0
  44. package/dist/components/Checkbox/Checkbox.styles.js +45 -0
  45. package/dist/components/Checklist/UserChecklist.js +298 -0
  46. package/dist/components/Checklist/UserChecklist.stories.js +352 -0
  47. package/dist/components/ComponentScroll/ComponentScroll.js +100 -0
  48. package/dist/components/ComponentScroll/ComponentScroll.stories.js +102 -0
  49. package/dist/components/ComponentScroll/ComponentScroll.styles.js +66 -0
  50. package/dist/components/ComponentWrapper/ComponentWrapper.styles.js +68 -0
  51. package/dist/components/CryptoAddress/ComponentWrap.js +37 -0
  52. package/dist/components/CryptoAddress/CryptoAddress.js +187 -0
  53. package/dist/components/CryptoAddress/CryptoAddress.stories.js +211 -0
  54. package/dist/components/CryptoAddress/CryptoAddress.styles.js +191 -0
  55. package/dist/components/CryptoAddress/RadioWrap.js +56 -0
  56. package/dist/components/CryptoAddressDetails/CryptoAddressDetails.js +54 -0
  57. package/dist/components/CryptoAddressDetails/CryptoAddressDetails.stories.js +75 -0
  58. package/dist/components/CryptoAddressDetails/CryptoAddressDetails.styles.js +67 -0
  59. package/dist/components/CryptoAddressWrapper/CryptoAddressWrapper.js +40 -0
  60. package/dist/components/CryptoAddressWrapper/CryptoAddressWrapper.styles.js +59 -0
  61. package/dist/components/DonutChart/DonutChart.js +182 -0
  62. package/dist/components/DonutChart/DonutChart.stories.js +58 -0
  63. package/dist/components/DonutChart/DonutChart.styles.js +50 -0
  64. package/dist/components/DoubleButton/DoubleButton.styles.js +22 -0
  65. package/dist/components/ErrorMessage/ErrorMessage.styles.js +15 -0
  66. package/dist/components/FAQ/FAQ.js +75 -0
  67. package/dist/components/FAQ/FAQ.stories.js +75 -0
  68. package/dist/components/FAQ/FAQ.styles.js +48 -0
  69. package/dist/components/Footer/Footer.js +66 -0
  70. package/dist/components/Footer/Footer.stories.js +55 -0
  71. package/dist/components/Footer/Footer.styles.js +74 -0
  72. package/dist/components/Footer/FooterLayout.js +119 -0
  73. package/dist/components/Footer/FooterLayout.stories.js +32 -0
  74. package/dist/components/Footer/FooterMenu.js +117 -0
  75. package/dist/components/Footer/FooterMenu.stories.js +122 -0
  76. package/dist/components/Footer/FooterMenu.styles.js +80 -0
  77. package/dist/components/Footer/index.js +27 -0
  78. package/dist/components/Footer/sicos-logo.svg +1 -0
  79. package/dist/components/ForgotPasswordModal/ForgotPasswordModal.js +127 -0
  80. package/dist/components/ForgotPasswordModal/ForgotPasswordModal.stories.js +43 -0
  81. package/dist/components/Form/Form.js +68 -0
  82. package/dist/components/Form/Form.stories.js +36 -0
  83. package/dist/components/Form/Form.styles.js +59 -0
  84. package/dist/components/FullscreenCard/FullscreenCard.styles.js +32 -0
  85. package/dist/components/Grid/Grid.styles.js +68 -0
  86. package/dist/components/Header/Header.js +461 -0
  87. package/dist/components/Header/Header.stories.js +223 -0
  88. package/dist/components/Header/Header.styles.js +182 -0
  89. package/dist/components/Icon/Icon.style.js +71 -0
  90. package/dist/components/InfoIcon/InfoIcon.js +50 -0
  91. package/dist/components/InfoIcon/InfoIcon.stories.js +53 -0
  92. package/dist/components/InfoIcon/InfoIcon.styles.js +31 -0
  93. package/dist/components/InfoPanel/InfoPanel.js +146 -0
  94. package/dist/components/Input/DatePickerInput.js +85 -0
  95. package/dist/components/Input/DatePickerInput.stories.js +92 -0
  96. package/dist/components/Input/DatePickerInput.styles.js +29 -0
  97. package/dist/components/Input/Input.js +125 -0
  98. package/dist/components/Input/Input.stories.js +149 -0
  99. package/dist/components/Input/Input.styles.js +53 -0
  100. package/dist/components/Input/InputPassword.js +151 -0
  101. package/dist/components/Input/InputPassword.stories.js +86 -0
  102. package/dist/components/Input/InputPassword.styles.js +80 -0
  103. package/dist/components/Input/RangeInput.js +97 -0
  104. package/dist/components/Input/RangeInput.stories.js +62 -0
  105. package/dist/components/Input/RangeInput.styles.js +53 -0
  106. package/dist/components/Input/Select.js +148 -0
  107. package/dist/components/Input/Select.stories.js +143 -0
  108. package/dist/components/Input/Select.styles.js +65 -0
  109. package/dist/components/InvestCalculator/InvestCalculator.js +367 -0
  110. package/dist/components/InvestCalculator/InvestCalculator.stories.js +138 -0
  111. package/dist/components/InvestCalculator/InvestCalculator.styles.js +66 -0
  112. package/dist/components/InvestmentStat/InvestmentStat.js +40 -0
  113. package/dist/components/InvestmentStat/InvestmentStat.stories.js +57 -0
  114. package/dist/components/InvestmentStat/InvestmentStat.styles.js +43 -0
  115. package/dist/components/KYCFlow/BasicInfo.js +489 -0
  116. package/dist/components/KYCFlow/Confirmation.js +51 -0
  117. package/dist/components/KYCFlow/DocumentFileUpload.js +276 -0
  118. package/dist/components/KYCFlow/DocumentScan.js +74 -0
  119. package/dist/components/KYCFlow/DocumentScanUpload.js +258 -0
  120. package/dist/components/KYCFlow/DocumentSelect.js +148 -0
  121. package/dist/components/KYCFlow/DocumentSuccess.js +64 -0
  122. package/dist/components/KYCFlow/DocumentUpload.js +54 -0
  123. package/dist/components/KYCFlow/DocumentVerificationType.js +161 -0
  124. package/dist/components/KYCFlow/FaceScan.js +55 -0
  125. package/dist/components/KYCFlow/FaceScanRecognition.js +60 -0
  126. package/dist/components/KYCFlow/FaceScanSuccess.js +59 -0
  127. package/dist/components/KYCFlow/Terms.js +142 -0
  128. package/dist/components/KYCFlow/_styles.js +160 -0
  129. package/dist/components/KYCFlow/index.js +97 -0
  130. package/dist/components/KYCSelectBox/KYCSelectBox.styles.js +41 -0
  131. package/dist/components/LatestUpdate/LatestUpdate.js +51 -0
  132. package/dist/components/LatestUpdate/LatestUpdate.stories.js +63 -0
  133. package/dist/components/LatestUpdate/LatestUpdate.styles.js +71 -0
  134. package/dist/components/Layout/Layout-func-no-work.js +78 -0
  135. package/dist/components/Layout/Layout.js +103 -0
  136. package/dist/components/Layout/Layout.stories.js +67 -0
  137. package/dist/components/LearnMoreCarousel/LearnMoreCarousel.js +47 -0
  138. package/dist/components/LearnMoreCarousel/LearnMoreCarousel.stories.js +71 -0
  139. package/dist/components/LearnMoreCarousel/LearnMoreCarousel.styles.js +43 -0
  140. package/dist/components/LearnMorePage/LearnMore.js +255 -0
  141. package/dist/components/LearnMorePage/LearnMore.shared.styles.js +40 -0
  142. package/dist/components/LearnMorePage/LearnMore.stories.js +52 -0
  143. package/dist/components/LearnMorePage/LearnMore.styles.js +120 -0
  144. package/dist/components/LearnMorePage/LearnMoreExampleObject.js +87 -0
  145. package/dist/components/LearnMorePage/LearnMoreItem.js +75 -0
  146. package/dist/components/LearnMorePage/LearnMoreItem.stories.js +66 -0
  147. package/dist/components/LearnMorePage/LearnMoreItem.styles.js +87 -0
  148. package/dist/components/LearnMoreSection/LearnMore.js +199 -0
  149. package/dist/components/LearnMoreSection/LearnMore.stories.js +34 -0
  150. package/dist/components/LearnMoreSection/LearnMore.styles.js +73 -0
  151. package/dist/components/LearnMoreSection/LearnMoreItem.js +52 -0
  152. package/dist/components/LearnMoreSection/LearnMoreItem.stories.js +63 -0
  153. package/dist/components/LearnMoreSection/LearnMoreItem.styles.js +50 -0
  154. package/dist/components/LoginModal/LoginModal.js +182 -0
  155. package/dist/components/LoginModal/LoginModal.stories.js +70 -0
  156. package/dist/components/MainMenu/DynamicMainMenu.js +51 -0
  157. package/dist/components/MainMenu/MainMenu.js +261 -0
  158. package/dist/components/MainMenu/MainMenu.styles.js +125 -0
  159. package/dist/components/MatomoConnect/Matomo.js +490 -0
  160. package/dist/components/MatomoConnect/Matomo_fuckup.js +387 -0
  161. package/dist/components/MenuNav/MenuNav.styles.js +42 -0
  162. package/dist/components/Modal/Modal.js +139 -0
  163. package/dist/components/Modal/Modal.stories.js +83 -0
  164. package/dist/components/Modal/Modal.styles.js +142 -0
  165. package/dist/components/MultiProgressBar/MultiProgressBar.js +48 -0
  166. package/dist/components/MultiProgressBar/MultiProgressBar.stories.js +73 -0
  167. package/dist/components/MultiProgressBar/MultiProgressBar.styles.js +41 -0
  168. package/dist/components/Newsletter/Newsletter.js +162 -0
  169. package/dist/components/Newsletter/Newsletter.stories.js +20 -0
  170. package/dist/components/Newsletter/Newsletter.styles.js +83 -0
  171. package/dist/components/NotificationContext/NotificationContext.js +173 -0
  172. package/dist/components/NotificationContext/NotificationContext.stories.js +33 -0
  173. package/dist/components/NotificationCounter/NotificationCounter.styles.js +26 -0
  174. package/dist/components/Number/Number.js +35 -0
  175. package/dist/components/Number/Number.stories.js +41 -0
  176. package/dist/components/Number/Number.styles.js +20 -0
  177. package/dist/components/PageTransition/PageTransition.js +57 -0
  178. package/dist/components/Process/Process.stories.js +48 -0
  179. package/dist/components/Process/Process.styles.js +33 -0
  180. package/dist/components/ProfileBadge/ProfileBadge.js +53 -0
  181. package/dist/components/ProfileBadge/ProfileBadge.stories.js +49 -0
  182. package/dist/components/ProfileBadge/ProfileBadge.styles.js +32 -0
  183. package/dist/components/ProfileBox/ProfileBox.js +39 -0
  184. package/dist/components/ProfileBox/ProfileBox.stories.js +39 -0
  185. package/dist/components/ProfileBox/ProfileBox.styles.js +49 -0
  186. package/dist/components/ProfileHeader/ProfileHeader-CLb4.js +477 -0
  187. package/dist/components/ProfileHeader/ProfileHeader.js +313 -0
  188. package/dist/components/ProfileHeader/ProfileHeader.styles.js +87 -0
  189. package/dist/components/ProfileStat/ProfileStat.js +42 -0
  190. package/dist/components/ProfileStat/ProfileStat.stories.js +72 -0
  191. package/dist/components/ProfileStat/ProfileStat.styles.js +42 -0
  192. package/dist/components/ProofOfAddress/ProofOfAddress.styles.js +69 -0
  193. package/dist/components/ROI/ROI.js +312 -0
  194. package/dist/components/ROI/ROI.styles.js +63 -0
  195. package/dist/components/ROI/ROIChart.js +469 -0
  196. package/dist/components/ROI/ROIChart.styles.js +33 -0
  197. package/dist/components/ROI/ROIModal.js +91 -0
  198. package/dist/components/ROI/ROIScenarioBox.js +55 -0
  199. package/dist/components/ROI/ROIScenarioBox.styles.js +52 -0
  200. package/dist/components/Radio/Radio.js +68 -0
  201. package/dist/components/Radio/Radio.stories.js +77 -0
  202. package/dist/components/Radio/Radio.styles.js +31 -0
  203. package/dist/components/RefreshButton/RefreshButton.js +21 -0
  204. package/dist/components/RefreshButton/RefreshButton.stories.js +43 -0
  205. package/dist/components/RefreshButton/RefreshButton.styles.js +39 -0
  206. package/dist/components/RegisterAlgorand/AlgoAddressName.js +138 -0
  207. package/dist/components/RegisterAlgorand/AlgoAdressSelect.js +444 -0
  208. package/dist/components/RegisterAlgorand/AlgoConnectWallet.js +47 -0
  209. package/dist/components/RegisterAlgorand/AlgoSuccess.js +38 -0
  210. package/dist/components/RegisterAlgorand/Algorand.stories.js +80 -0
  211. package/dist/components/RegisterAlgorand/ChooseWallet.js +97 -0
  212. package/dist/components/RegisterAlgorand/SelectProject.js +90 -0
  213. package/dist/components/RegisterAlgorand/_styles.js +28 -0
  214. package/dist/components/RegisterAlgorand/flow.js +409 -0
  215. package/dist/components/RegisterAlgorand/flowWithMemo.js +410 -0
  216. package/dist/components/RegisterAlgorand/index.js +48 -0
  217. package/dist/components/RegisterConfirmModal/RegisterConfirmModal.js +40 -0
  218. package/dist/components/RegisterConfirmModal/RegisterConfirmModal.stories.js +34 -0
  219. package/dist/components/RegisterConfirmModal/RegisterConfirmModal.styles.js +16 -0
  220. package/dist/components/RegisterEthereum/EthAddressLedger.js +226 -0
  221. package/dist/components/RegisterEthereum/EthAddressMetamask.js +204 -0
  222. package/dist/components/RegisterEthereum/EthAddressName.js +135 -0
  223. package/dist/components/RegisterEthereum/EthConnectLedger.js +194 -0
  224. package/dist/components/RegisterEthereum/EthConnectMetamask.js +35 -0
  225. package/dist/components/RegisterEthereum/EthFinish.js +41 -0
  226. package/dist/components/RegisterEthereum/EthIntro.js +95 -0
  227. package/dist/components/RegisterEthereum/_styles.js +28 -0
  228. package/dist/components/RegisterEthereum/index.js +68 -0
  229. package/dist/components/RegisterLiquidSteps/RegisterLiquidSteps.js +106 -0
  230. package/dist/components/RegisterLiquidSteps/RegisterLiquidSteps.stories.js +66 -0
  231. package/dist/components/RegisterLiquidSteps/RegisterLiquidSteps.styles.js +48 -0
  232. package/dist/components/RegisterLiquidSteps/complete.js +37 -0
  233. package/dist/components/RegisterLiquidSteps/flow.js +197 -0
  234. package/dist/components/RegisterLiquidSteps/index.js +52 -0
  235. package/dist/components/RegisterLiquidSteps/register-liquid.js +240 -0
  236. package/dist/components/RegisterModal/RegisterModal.js +180 -0
  237. package/dist/components/RegisterModal/RegisterModal.stories.js +47 -0
  238. package/dist/components/RequestDataBox/RequestDataBox.js +31 -0
  239. package/dist/components/RequestDataBox/RequestDataBox.stories.js +41 -0
  240. package/dist/components/RequestDataBox/RequestDataBox.styles.js +31 -0
  241. package/dist/components/RiskQuestionnaire/RiskQuestionnaireContext.js +185 -0
  242. package/dist/components/RiskQuestionnaire/_styles.js +15 -0
  243. package/dist/components/SEO/SEO.js +71 -0
  244. package/dist/components/SEO/SEO.stories.js +64 -0
  245. package/dist/components/SectionTitle/SectionTitle.styles.js +15 -0
  246. package/dist/components/SideLine/SideLine.js +15 -0
  247. package/dist/components/SideLine/SideLine.stories.js +31 -0
  248. package/dist/components/SideLine/SideLine.styles.js +26 -0
  249. package/dist/components/SigningSubflow/SignSubAddressMetamask.js +137 -0
  250. package/dist/components/SigningSubflow/SignSubConnectLedger.js +150 -0
  251. package/dist/components/SigningSubflow/SignSubConnectMetamask.js +137 -0
  252. package/dist/components/SigningSubflow/SignSubIntro.js +54 -0
  253. package/dist/components/SigningSubflow/SignSubSendLedger.js +150 -0
  254. package/dist/components/SigningSubflow/SignSubSendMetamask.js +62 -0
  255. package/dist/components/SigningSubflow/SignSubTransactionLedger.js +161 -0
  256. package/dist/components/SigningSubflow/SignSubTransactionMetamask.js +166 -0
  257. package/dist/components/SigningSubflow/_styles.js +45 -0
  258. package/dist/components/SigningSubflow/index.js +74 -0
  259. package/dist/components/Slider/Slider.js +50 -0
  260. package/dist/components/Slider/Slider.stories.js +73 -0
  261. package/dist/components/Slider/Slider.styles.js +23 -0
  262. package/dist/components/SpanButton/SpanButton.styles.js +15 -0
  263. package/dist/components/StatusBadge/StatusBadge.styles.js +20 -0
  264. package/dist/components/StepController/StepController.js +111 -0
  265. package/dist/components/StepController/StepController.stories.js +64 -0
  266. package/dist/components/StepController/StepController.styles.js +26 -0
  267. package/dist/components/StepController/StepControllerContext.js +104 -0
  268. package/dist/components/StepController/StepControllerProgress.js +40 -0
  269. package/dist/components/StepController/StepControllerProgress.stories.js +53 -0
  270. package/dist/components/StepsProgress/StepsProgress.js +146 -0
  271. package/dist/components/StepsProgress/StepsProgress.stories.js +51 -0
  272. package/dist/components/StepsProgress/StepsProgress.styles.js +36 -0
  273. package/dist/components/StokrLoader/StokrLoader.js +32 -0
  274. package/dist/components/StokrLoader/media.js +27 -0
  275. package/dist/components/SvgIcons/AdminBadgeSvg.js +26 -0
  276. package/dist/components/SvgIcons/CameraSvg.js +36 -0
  277. package/dist/components/SvgIcons/CapsLockSvg.js +31 -0
  278. package/dist/components/SvgIcons/DocumentBackSvg.js +35 -0
  279. package/dist/components/SvgIcons/DocumentSmallSvg.js +61 -0
  280. package/dist/components/SvgIcons/DocumentSvg.js +38 -0
  281. package/dist/components/SvgIcons/Early.js +24 -0
  282. package/dist/components/SvgIcons/EthSvg.js +40 -0
  283. package/dist/components/SvgIcons/EurSvg.js +26 -0
  284. package/dist/components/SvgIcons/FaceScanIconSvg.js +31 -0
  285. package/dist/components/SvgIcons/FourSvg.js +21 -0
  286. package/dist/components/SvgIcons/Glassess.js +29 -0
  287. package/dist/components/SvgIcons/LogoSvg.js +24 -0
  288. package/dist/components/SvgIcons/OneSvg.js +23 -0
  289. package/dist/components/SvgIcons/PassportSvg.js +56 -0
  290. package/dist/components/SvgIcons/RefreshSvg.js +27 -0
  291. package/dist/components/SvgIcons/SocialFacebook.js +25 -0
  292. package/dist/components/SvgIcons/SocialInstagram.js +26 -0
  293. package/dist/components/SvgIcons/SocialLinkedIn.js +25 -0
  294. package/dist/components/SvgIcons/SocialMedium.js +25 -0
  295. package/dist/components/SvgIcons/SocialReddit.js +25 -0
  296. package/dist/components/SvgIcons/SocialTelegram.js +25 -0
  297. package/dist/components/SvgIcons/SocialTwitter.js +28 -0
  298. package/dist/components/SvgIcons/SocialYoutube.js +25 -0
  299. package/dist/components/SvgIcons/ThreeSvg.js +20 -0
  300. package/dist/components/SvgIcons/TwoSidedDocumentSvg.js +82 -0
  301. package/dist/components/SvgIcons/TwoSvg.js +23 -0
  302. package/dist/components/SvgIcons/UpdateDefaultSvg.js +29 -0
  303. package/dist/components/SvgIcons/UpdateHardSvg.js +25 -0
  304. package/dist/components/SvgIcons/UpdateSoftSvg.js +27 -0
  305. package/dist/components/SvgIcons/UploadSvg.js +34 -0
  306. package/dist/components/SvgIcons/VerifiedBadge.js +23 -0
  307. package/dist/components/SvgIcons/index.js +223 -0
  308. package/dist/components/Switch/Switch.js +70 -0
  309. package/dist/components/Switch/Switch.stories.js +87 -0
  310. package/dist/components/Switch/Switch.styles.js +47 -0
  311. package/dist/components/Tabs/Tabs.js +70 -0
  312. package/dist/components/Tabs/Tabs.stories.js +40 -0
  313. package/dist/components/Tabs/Tabs.styles.js +18 -0
  314. package/dist/components/TabsNav/TabNav.js +31 -0
  315. package/dist/components/TabsNav/TabNav.stories.js +45 -0
  316. package/dist/components/TabsNav/TabsNav.js +43 -0
  317. package/dist/components/TabsNav/TabsNav.stories.js +41 -0
  318. package/dist/components/TabsNav/TabsNav.styles.js +43 -0
  319. package/dist/components/TeamOverview/TeamOverview.js +125 -0
  320. package/dist/components/TeamOverview/TeamOverview.stories.js +81 -0
  321. package/dist/components/TeamOverview/TeamOverview.styles.js +81 -0
  322. package/dist/components/Text/Headline.js +29 -0
  323. package/dist/components/Text/Headline.stories.js +52 -0
  324. package/dist/components/Text/StyledText.js +19 -0
  325. package/dist/components/Text/Text.stories.js +75 -0
  326. package/dist/components/Text/Text.styles.js +40 -0
  327. package/dist/components/TextLink/TextLink.styles.js +30 -0
  328. package/dist/components/ToDoList/ToDoList.js +189 -0
  329. package/dist/components/ToDoList/ToDoList.stories.js +138 -0
  330. package/dist/components/ToDoList/ToDoList.styles.js +83 -0
  331. package/dist/components/ToDoList/ToDoListTask.js +120 -0
  332. package/dist/components/ToDoList/ToDoListTask.stories.js +73 -0
  333. package/dist/components/ToDoList/ToDoListTask.styles.js +74 -0
  334. package/dist/components/TransactionDetails/TransactionDetails.js +46 -0
  335. package/dist/components/TransactionDetails/TransactionDetails.stories.js +60 -0
  336. package/dist/components/TransactionDetails/TransactionDetails.styles.js +31 -0
  337. package/dist/components/TransactionInfo/TransactionInfo.js +58 -0
  338. package/dist/components/TransactionInfo/TransactionInfo.stories.js +65 -0
  339. package/dist/components/TransactionInfo/TransactionInfo.styles.js +54 -0
  340. package/dist/components/TwoFactorModal/TwoFactorModal.js +122 -0
  341. package/dist/components/breakdown/Breakdown.js +57 -0
  342. package/dist/components/breakdown/index.js +27 -0
  343. package/dist/components/context/Auth.js +207 -0
  344. package/dist/components/context/AuthContext.js +334 -0
  345. package/dist/components/icons/Arrow.js +70 -0
  346. package/dist/components/icons/Arrow.stories.js +49 -0
  347. package/dist/components/icons/ArrowSimple.js +59 -0
  348. package/dist/components/icons/ArrowSimple.stories.js +55 -0
  349. package/dist/components/icons/Check.js +43 -0
  350. package/dist/components/icons/Check.stories.js +25 -0
  351. package/dist/components/icons/Facebook.js +26 -0
  352. package/dist/components/icons/Facebook.stories.js +24 -0
  353. package/dist/components/icons/Info.js +55 -0
  354. package/dist/components/icons/Info.stories.js +19 -0
  355. package/dist/components/icons/Instagram.js +26 -0
  356. package/dist/components/icons/Instagram.stories.js +24 -0
  357. package/dist/components/icons/LinkIcon.js +34 -0
  358. package/dist/components/icons/LinkIcon.stories.js +24 -0
  359. package/dist/components/icons/LinkedIn.js +43 -0
  360. package/dist/components/icons/LinkedIn.stories.js +19 -0
  361. package/dist/components/icons/Medium.js +42 -0
  362. package/dist/components/icons/Medium.stories.js +19 -0
  363. package/dist/components/icons/Reddit.js +32 -0
  364. package/dist/components/icons/Reddit.stories.js +24 -0
  365. package/dist/components/icons/Share.js +62 -0
  366. package/dist/components/icons/Share.stories.js +19 -0
  367. package/dist/components/icons/Telegram.js +42 -0
  368. package/dist/components/icons/Telegram.stories.js +19 -0
  369. package/dist/components/icons/Twitter.js +26 -0
  370. package/dist/components/icons/Twitter.stories.js +24 -0
  371. package/dist/components/icons/X.js +26 -0
  372. package/dist/components/icons/X.stories.js +19 -0
  373. package/dist/components/icons/Youtube.js +26 -0
  374. package/dist/components/icons/Youtube.stories.js +24 -0
  375. package/dist/components/icons/index.js +170 -0
  376. package/dist/components/renderToBody/index.js +27 -0
  377. package/dist/components/renderToBody/renderToBody.js +68 -0
  378. package/dist/components/taxId/TaxId.stories.js +56 -0
  379. package/dist/components/taxId/complete.js +32 -0
  380. package/dist/components/taxId/flow.js +71 -0
  381. package/dist/components/taxId/index.js +27 -0
  382. package/dist/components/taxId/register-taxid.js +203 -0
  383. package/dist/components/video/Video.js +174 -0
  384. package/dist/components/video/Video.stories.js +56 -0
  385. package/dist/components/video/index.js +27 -0
  386. package/dist/constants/globalVariables.js +16 -0
  387. package/dist/constants/style.js +52 -0
  388. package/dist/index.js +1050 -2
  389. package/dist/model/axios.js +18 -0
  390. package/dist/model/axiosPublic.js +18 -0
  391. package/dist/static/fonts/Ionicons/ionicons.min.css +13 -0
  392. package/dist/static/fonts/icomoon/selection.json +1 -0
  393. package/dist/static/fonts/icomoon/style.css +137 -0
  394. package/dist/static/images/1.svg +4 -0
  395. package/dist/static/images/2.svg +4 -0
  396. package/dist/static/images/3.svg +3 -0
  397. package/dist/static/images/4.svg +3 -0
  398. package/dist/static/images/Glassess.svg +5 -0
  399. package/dist/static/images/VerifiedBadge.svg +1 -0
  400. package/dist/static/images/admin-badge.svg +3 -0
  401. package/dist/static/images/amazon-logo.png +0 -0
  402. package/dist/static/images/arrow-down-black.svg +21 -0
  403. package/dist/static/images/avatar-cog.png +0 -0
  404. package/dist/static/images/avatar.png +0 -0
  405. package/dist/static/images/background.png +0 -0
  406. package/dist/static/images/camera.svg +1 -0
  407. package/dist/static/images/caps-lock.svg +6 -0
  408. package/dist/static/images/covers/blockchain.png +0 -0
  409. package/dist/static/images/covers/country.jpg +0 -0
  410. package/dist/static/images/covers/ethereum.jpg +0 -0
  411. package/dist/static/images/covers/index.png +0 -0
  412. package/dist/static/images/covers/liquid.png +0 -0
  413. package/dist/static/images/covers/money.png +0 -0
  414. package/dist/static/images/covers/overview.jpg +0 -0
  415. package/dist/static/images/covers/risk-questionnaire.jpg +0 -0
  416. package/dist/static/images/covers/rocket.png +0 -0
  417. package/dist/static/images/covers/verify-identity.jpg +0 -0
  418. package/dist/static/images/covers/virtual-iban.jpg +0 -0
  419. package/dist/static/images/document-back.svg +1 -0
  420. package/dist/static/images/document-small.svg +1 -0
  421. package/dist/static/images/document.svg +1 -0
  422. package/dist/static/images/early-adopter.png +0 -0
  423. package/dist/static/images/early-adopter.svg +1 -0
  424. package/dist/static/images/eth.svg +10 -0
  425. package/dist/static/images/eur.svg +3 -0
  426. package/dist/static/images/face-scan-icon.svg +1 -0
  427. package/dist/static/images/favicon.png +0 -0
  428. package/dist/static/images/favicon.svg +57 -0
  429. package/dist/static/images/google-logo.png +0 -0
  430. package/dist/static/images/graduation.png +0 -0
  431. package/dist/static/images/hdd.png +0 -0
  432. package/dist/static/images/lemonway.png +0 -0
  433. package/dist/static/images/logo.svg +1 -0
  434. package/dist/static/images/member-item-picture.png +0 -0
  435. package/dist/static/images/one.jpg +0 -0
  436. package/dist/static/images/passport.svg +1 -0
  437. package/dist/static/images/process-waiting.gif +0 -0
  438. package/dist/static/images/profile-picture-placeholder.png +0 -0
  439. package/dist/static/images/profile-picture-placeholder.svg +1 -0
  440. package/dist/static/images/profile-picture.png +0 -0
  441. package/dist/static/images/refresh.svg +9 -0
  442. package/dist/static/images/shark.jpg +0 -0
  443. package/dist/static/images/sicos.png +0 -0
  444. package/dist/static/images/slider/1.jpg +0 -0
  445. package/dist/static/images/slider/2.jpg +0 -0
  446. package/dist/static/images/slider/3.jpg +0 -0
  447. package/dist/static/images/social/facebook.svg +3 -0
  448. package/dist/static/images/social/linkedin.svg +3 -0
  449. package/dist/static/images/social/medium.svg +3 -0
  450. package/dist/static/images/social/reddit.svg +3 -0
  451. package/dist/static/images/social/telegram.svg +3 -0
  452. package/dist/static/images/social/twitter.svg +3 -0
  453. package/dist/static/images/social/youtube.svg +3 -0
  454. package/dist/static/images/three.jpg +0 -0
  455. package/dist/static/images/two-sided-document.svg +26 -0
  456. package/dist/static/images/two.jpg +0 -0
  457. package/dist/static/images/upload.svg +1 -0
  458. package/dist/static/images/user-profile.png +0 -0
  459. package/dist/static/videos/Capybara-with-mandarin orange-on-head.mp4 +0 -0
  460. package/dist/styles/colors.js +55 -0
  461. package/dist/styles/fonts.js +34 -0
  462. package/dist/styles/global.js +18 -0
  463. package/dist/styles/grid.js +16 -0
  464. package/dist/styles/reactTippy.js +12 -0
  465. package/dist/styles/rwd.js +52 -0
  466. package/dist/styles/semanticUi.js +12 -0
  467. package/dist/styles/spacing.js +12 -0
  468. package/dist/styles/theme.js +43 -0
  469. package/dist/utils/allowed-countries-list.js +1375 -0
  470. package/dist/utils/breakpoint.js +19 -0
  471. package/dist/utils/countries-list.js +1008 -0
  472. package/dist/utils/customHooks.js +54 -0
  473. package/dist/utils/delete-redirect-cookie-and-navigate.js +20 -0
  474. package/dist/utils/fix-decimals.js +11 -0
  475. package/dist/utils/get-cookie-domain.js +16 -0
  476. package/dist/utils/get-short-address.js +10 -0
  477. package/dist/utils/km_ify.js +38 -0
  478. package/dist/utils/lock-body.js +20 -0
  479. package/dist/utils/redirect-url.js +10 -0
  480. package/dist/utils/set-redirect-cookie.js +20 -0
  481. package/dist/utils/withRouter.js +20 -0
  482. package/package.json +84 -89
  483. package/.vscode/settings.json +0 -3
  484. package/CHANGELOG.md +0 -7
  485. package/Dockerfile +0 -20
  486. package/buildpushndeploy.sh +0 -9
  487. package/devops/Dockerfile +0 -20
  488. package/devops/Jenkinsfile +0 -56
  489. package/devops/ansible/docker-stack-deploy.yml +0 -32
  490. package/devops/ansible/hosts.ini +0 -7
  491. package/devops/docker-compose.yml +0 -25
  492. package/dist/08418fc6c324f51f7e56.svg +0 -1
  493. package/dist/76dd0ed9c3f137513fd4.svg +0 -1
  494. package/dist/index.js.LICENSE.txt +0 -1
  495. package/docker-compose.yml +0 -25
  496. package/storybook-static/favicon.ico +0 -0
  497. /package/dist/{03f9f978feb2b015b6812ba10f689967.png → components/Footer/lemonway.png} +0 -0
  498. /package/dist/{98b7d3182f652f021bc3.ttf → static/fonts/Ionicons/Ionicons.ttf} +0 -0
  499. /package/dist/{4e528d6445ca1974c313.woff → static/fonts/Ionicons/Ionicons.woff} +0 -0
  500. /package/dist/{643c37f102b41f7f90c3.woff2 → static/fonts/Ionicons/Ionicons.woff2} +0 -0
  501. /package/dist/{9bea22b57dc165ed4382.ttf → static/fonts/OpenSans/OpenSans-Bold.ttf} +0 -0
  502. /package/dist/{a750292d6a0b5a760679.woff → static/fonts/OpenSans/OpenSans-Bold.woff} +0 -0
  503. /package/dist/{cbfc24090ef8bacab132.woff2 → static/fonts/OpenSans/OpenSans-Bold.woff2} +0 -0
  504. /package/dist/{bcb6531cf820152b7538.ttf → static/fonts/OpenSans/OpenSans-ExtraBold.ttf} +0 -0
  505. /package/dist/{81f3ef07b7952e249da1.woff → static/fonts/OpenSans/OpenSans-ExtraBold.woff} +0 -0
  506. /package/dist/{21e493d43617de76dbc7.woff2 → static/fonts/OpenSans/OpenSans-ExtraBold.woff2} +0 -0
  507. /package/dist/{55053cc0a8e6482eca64.ttf → static/fonts/OpenSans/OpenSans-Light.ttf} +0 -0
  508. /package/dist/{c6a4bc1bd034d6303053.woff → static/fonts/OpenSans/OpenSans-Light.woff} +0 -0
  509. /package/dist/{179ef2df02cb0b68c9fd.woff2 → static/fonts/OpenSans/OpenSans-Light.woff2} +0 -0
  510. /package/dist/{d97d7385fe8771611848.ttf → static/fonts/OpenSans/OpenSans-Regular.ttf} +0 -0
  511. /package/dist/{9ec738fbb66068dc1ca7.woff → static/fonts/OpenSans/OpenSans-Regular.woff} +0 -0
  512. /package/dist/{3caa0d4f9b7d58668066.woff2 → static/fonts/OpenSans/OpenSans-Regular.woff2} +0 -0
  513. /package/dist/{d2b1865643b98c0e8b54.ttf → static/fonts/OpenSans/OpenSans-SemiBold.ttf} +0 -0
  514. /package/dist/{39f5961b2d3eb4aa5bf5.woff → static/fonts/OpenSans/OpenSans-SemiBold.woff} +0 -0
  515. /package/dist/{311956ded96d3fd2813d.woff2 → static/fonts/OpenSans/OpenSans-SemiBold.woff2} +0 -0
  516. /package/dist/{2640959b1f9381cde047.eot → static/fonts/icomoon/icomoon.eot} +0 -0
  517. /package/dist/{07233f511246c9825a0d58e5ab2641f3.svg → static/fonts/icomoon/icomoon.svg} +0 -0
  518. /package/dist/{a1d7666a48f976227722.ttf → static/fonts/icomoon/icomoon.ttf} +0 -0
  519. /package/dist/{4c3c428d0ce82f840710.woff → static/fonts/icomoon/icomoon.woff} +0 -0
  520. /package/dist/{14aa35d4e84aebef77cf00b421fc393a.gif → static/images/address-refreshing.gif} +0 -0
  521. /package/dist/{2ba2db4ff86a2663686a100e75b50ba9.png → static/images/avatar-placeholder.png} +0 -0
  522. /package/dist/{b85a961d44cc55c58050cbf7c53dd505.png → static/images/whales.png} +0 -0
@@ -0,0 +1,781 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = exports.Analytic = void 0;
7
+ var _Matomo = _interopRequireDefault(require("../MatomoConnect/Matomo"));
8
+ var Moment = _interopRequireWildcard(require("moment"));
9
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
10
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
12
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
13
+ function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, catch: function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
14
+ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
15
+ function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
16
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
17
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
18
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
19
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
20
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
21
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
22
+ var matomoConnect = new _Matomo.default();
23
+ var months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
24
+ var monthsShort = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
25
+ var Analytic = /*#__PURE__*/function () {
26
+ function Analytic() {
27
+ _classCallCheck(this, Analytic);
28
+ _defineProperty(this, "CURRENT_DATE", void 0);
29
+ _defineProperty(this, "START_DATE", void 0);
30
+ _defineProperty(this, "VISITS_SUMMARY", {});
31
+ _defineProperty(this, "TOTAL_SUMMARY", {});
32
+ this.CURRENT_DATE = new Moment();
33
+ this.START_DATE = this.CURRENT_DATE.clone().subtract(2, 'months');
34
+ this.getSummary();
35
+ }
36
+ _createClass(Analytic, [{
37
+ key: "getSummary",
38
+ value: function () {
39
+ var _getSummary = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
40
+ var _this = this;
41
+ return _regeneratorRuntime().wrap(function _callee$(_context) {
42
+ while (1) switch (_context.prev = _context.next) {
43
+ case 0:
44
+ this.TOTAL_SUMMARY = {
45
+ visits: 0,
46
+ bounce_count: 0,
47
+ visit_length: 0,
48
+ unique_visitors: 0,
49
+ avg_time_on_site: 0
50
+ };
51
+ _context.next = 3;
52
+ return matomoConnect.init(matomoConnect.GetVisitsSummary, 'month', "".concat(this.START_DATE.format('YYYY-MM-DD'), ",").concat(this.CURRENT_DATE.format('YYYY-MM-DD')));
53
+ case 3:
54
+ this.VISITS_SUMMARY = _context.sent;
55
+ console.log('visits summary: ', this.VISITS_SUMMARY);
56
+ Object.keys(this.VISITS_SUMMARY).forEach(function (key) {
57
+ _this.TOTAL_SUMMARY.visits += _this.VISITS_SUMMARY[key].nb_visits || 0;
58
+ _this.TOTAL_SUMMARY.bounce_count += _this.VISITS_SUMMARY[key].bounce_count || 0;
59
+ _this.TOTAL_SUMMARY.visit_length += _this.VISITS_SUMMARY[key].sum_visit_length || 0;
60
+ _this.TOTAL_SUMMARY.unique_visitors += _this.VISITS_SUMMARY[key].nb_uniq_visitors || 0;
61
+ _this.TOTAL_SUMMARY.avg_time_on_site += _this.VISITS_SUMMARY[key].avg_time_on_site || 0;
62
+ });
63
+ case 6:
64
+ case "end":
65
+ return _context.stop();
66
+ }
67
+ }, _callee, this);
68
+ }));
69
+ function getSummary() {
70
+ return _getSummary.apply(this, arguments);
71
+ }
72
+ return getSummary;
73
+ }()
74
+ }, {
75
+ key: "getBasicGraphs",
76
+ value: function () {
77
+ var _getBasicGraphs = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
78
+ return _regeneratorRuntime().wrap(function _callee2$(_context2) {
79
+ while (1) switch (_context2.prev = _context2.next) {
80
+ case 0:
81
+ return _context2.abrupt("return", [this.getTotalVisitsBasicGraph(), this.getBounceRateBasicGraph(), this.getVisitDurationBasicGraph()]);
82
+ case 1:
83
+ case "end":
84
+ return _context2.stop();
85
+ }
86
+ }, _callee2, this);
87
+ }));
88
+ function getBasicGraphs() {
89
+ return _getBasicGraphs.apply(this, arguments);
90
+ }
91
+ return getBasicGraphs;
92
+ }()
93
+ }, {
94
+ key: "getTotalVisitsBasicGraph",
95
+ value: function getTotalVisitsBasicGraph() {
96
+ var _this2 = this;
97
+ var totalVisitsChartData = [];
98
+ Object.keys(this.VISITS_SUMMARY).forEach(function (key) {
99
+ totalVisitsChartData.push({
100
+ date: totalVisitsChartData.length + 1,
101
+ value: _this2.VISITS_SUMMARY[key].nb_visits ? _this2.VISITS_SUMMARY[key].nb_visits : 0
102
+ });
103
+ });
104
+ var visitsSummaryKeys = Object.keys(this.VISITS_SUMMARY);
105
+ var previousMonth = this.VISITS_SUMMARY[visitsSummaryKeys[visitsSummaryKeys.length - 2]];
106
+ var lastMonth = this.VISITS_SUMMARY[visitsSummaryKeys[visitsSummaryKeys.length - 1]];
107
+ var totalVisitsIncrease = Analytic.getIncrease(previousMonth && previousMonth.nb_visits ? previousMonth.nb_visits : 0, lastMonth && lastMonth.nb_visits ? lastMonth.nb_visits : 0);
108
+ return {
109
+ id: 'totalVisitsStat',
110
+ title: 'total visits',
111
+ value: this.TOTAL_SUMMARY.visits.toString(),
112
+ percent: isNaN(totalVisitsIncrease) ? 0 : parseFloat(parseFloat(totalVisitsIncrease).toFixed(1)),
113
+ chart: {
114
+ id: 'totalVisitsGraph',
115
+ fill: '#fee8e8',
116
+ stroke: '#ee220d',
117
+ data: totalVisitsChartData
118
+ }
119
+ };
120
+ }
121
+ }, {
122
+ key: "getBounceRateBasicGraph",
123
+ value: function getBounceRateBasicGraph() {
124
+ var _this3 = this;
125
+ var bounceRateData = [];
126
+ Object.keys(this.VISITS_SUMMARY).forEach(function (key) {
127
+ bounceRateData.push({
128
+ date: bounceRateData.length + 1,
129
+ value: _this3.VISITS_SUMMARY[key].bounce_count ? _this3.VISITS_SUMMARY[key].bounce_count : 0
130
+ });
131
+ });
132
+ var visitsSummaryKeys = Object.keys(this.VISITS_SUMMARY);
133
+ var firstMonth = this.VISITS_SUMMARY[visitsSummaryKeys.shift()];
134
+ var lastMonth = this.VISITS_SUMMARY[visitsSummaryKeys[visitsSummaryKeys.length - 1]];
135
+ var bounceRateIncrease = Analytic.getIncrease(firstMonth && firstMonth.bounce_count ? firstMonth.bounce_count : 0, lastMonth && lastMonth.bounce_count ? lastMonth.bounce_count : 0);
136
+ var bounceRate = Analytic.getPercent(this.TOTAL_SUMMARY.bounce_count, this.TOTAL_SUMMARY.visits);
137
+ return {
138
+ id: 'bounceRateStat',
139
+ title: 'bounce rate',
140
+ value: "".concat(bounceRate, "%"),
141
+ percent: isNaN(bounceRateIncrease) ? 0 : parseFloat(parseFloat(bounceRateIncrease).toFixed(1)),
142
+ chart: {
143
+ id: 'bounceRateGraph',
144
+ fill: '#eff8ec',
145
+ stroke: '#69bd53',
146
+ data: bounceRateData
147
+ }
148
+ };
149
+ }
150
+ }, {
151
+ key: "getVisitDurationBasicGraph",
152
+ value: function getVisitDurationBasicGraph() {
153
+ var _this4 = this;
154
+ var visitDurationData = [];
155
+ Object.keys(this.VISITS_SUMMARY).forEach(function (key) {
156
+ visitDurationData.push({
157
+ date: visitDurationData.length + 1,
158
+ value: _this4.VISITS_SUMMARY[key].avg_time_on_site ? _this4.VISITS_SUMMARY[key].avg_time_on_site : 0
159
+ });
160
+ });
161
+ var visitsSummaryKeys = Object.keys(this.VISITS_SUMMARY);
162
+ var firstMonth = this.VISITS_SUMMARY[visitsSummaryKeys.shift()];
163
+ var lastMonth = this.VISITS_SUMMARY[visitsSummaryKeys[visitsSummaryKeys.length - 1]];
164
+ var visitDurationIncrease = Analytic.getIncrease(firstMonth && firstMonth.avg_time_on_site ? firstMonth.avg_time_on_site : 0, lastMonth && lastMonth.avg_time_on_site ? lastMonth.avg_time_on_site : 0);
165
+ var value = new Moment().startOf('day').seconds(this.TOTAL_SUMMARY.avg_time_on_site);
166
+ return {
167
+ id: 'visitDurationStat',
168
+ title: 'avg. visit duration',
169
+ value: Analytic.getTimeSpent(value),
170
+ percent: isNaN(visitDurationIncrease) ? 0 : parseFloat(parseFloat(visitDurationIncrease).toFixed(1)),
171
+ chart: {
172
+ id: 'visitDurationGraph',
173
+ fill: '#f0f0f0',
174
+ stroke: '#2f2f2f',
175
+ data: visitDurationData
176
+ }
177
+ };
178
+ }
179
+ }, {
180
+ key: "getCountryGraph",
181
+ value: function () {
182
+ var _getCountryGraph = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3() {
183
+ var graphData, countries, countriesByMonth;
184
+ return _regeneratorRuntime().wrap(function _callee3$(_context3) {
185
+ while (1) switch (_context3.prev = _context3.next) {
186
+ case 0:
187
+ graphData = [];
188
+ _context3.next = 3;
189
+ return matomoConnect.init(matomoConnect.GetCountrySummary, 'range', "".concat(this.START_DATE.format('YYYY-MM-DD'), ",").concat(this.CURRENT_DATE.format('YYYY-MM-DD')));
190
+ case 3:
191
+ countries = _context3.sent;
192
+ _context3.next = 6;
193
+ return matomoConnect.init(matomoConnect.GetCountrySummary, 'month', "".concat(this.START_DATE.format('YYYY-MM-DD'), ",").concat(this.CURRENT_DATE.format('YYYY-MM-DD')));
194
+ case 6:
195
+ countriesByMonth = _context3.sent;
196
+ countries.forEach(function (value, key) {
197
+ var bounceRateData = [];
198
+ var bounceRate = value.bounce_count * 100 / value.nb_visits;
199
+ bounceRate = parseFloat(bounceRate).toFixed(2);
200
+ Object.keys(countriesByMonth).forEach(function (byMonthKey) {
201
+ var object = {
202
+ date: bounceRateData.length + 1
203
+ };
204
+ countriesByMonth[byMonthKey].forEach(function (cv) {
205
+ if (cv.code === value.code) {
206
+ object.value = cv && cv.bounce_count ? cv.bounce_count : 0;
207
+ }
208
+ });
209
+ if (!object.value) {
210
+ object.value = 0;
211
+ }
212
+ bounceRateData.push(object);
213
+ });
214
+ graphData.push({
215
+ id: key,
216
+ country: value.code,
217
+ country_name: value.label,
218
+ visits: value.nb_visits,
219
+ unique_visitors: value.sum_daily_nb_uniq_visitors,
220
+ flag_url: "".concat(matomoConnect.MATOMO_API_URL, "/").concat(value.logo),
221
+ bounce_rate: "".concat(bounceRate, "%"),
222
+ chart: {
223
+ id: "countryChart".concat(key),
224
+ fill: '#E4ECF9',
225
+ stroke: '#0050CA',
226
+ data: bounceRateData
227
+ }
228
+ });
229
+ });
230
+ return _context3.abrupt("return", graphData);
231
+ case 9:
232
+ case "end":
233
+ return _context3.stop();
234
+ }
235
+ }, _callee3, this);
236
+ }));
237
+ function getCountryGraph() {
238
+ return _getCountryGraph.apply(this, arguments);
239
+ }
240
+ return getCountryGraph;
241
+ }()
242
+ }, {
243
+ key: "getSocialGraph",
244
+ value: function () {
245
+ var _getSocialGraph = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4() {
246
+ var _this5 = this;
247
+ var graphData, socials;
248
+ return _regeneratorRuntime().wrap(function _callee4$(_context4) {
249
+ while (1) switch (_context4.prev = _context4.next) {
250
+ case 0:
251
+ graphData = [];
252
+ _context4.next = 3;
253
+ return matomoConnect.init(matomoConnect.GetSocialSummary, 'range', "".concat(this.START_DATE.format('YYYY-MM-DD'), ",").concat(this.CURRENT_DATE.format('YYYY-MM-DD')));
254
+ case 3:
255
+ socials = _context4.sent;
256
+ socials.forEach(function (value, key) {
257
+ var progress = value.sum_daily_nb_uniq_visitors * 100 / _this5.TOTAL_SUMMARY.unique_visitors;
258
+ progress = parseFloat(progress).toFixed(2);
259
+ graphData.push({
260
+ id: key,
261
+ network: "".concat(value.label.charAt(0).toUpperCase()).concat(value.label.slice(1)),
262
+ visitors: value.sum_daily_nb_uniq_visitors,
263
+ progress: parseFloat(progress)
264
+ });
265
+ });
266
+ return _context4.abrupt("return", graphData);
267
+ case 6:
268
+ case "end":
269
+ return _context4.stop();
270
+ }
271
+ }, _callee4, this);
272
+ }));
273
+ function getSocialGraph() {
274
+ return _getSocialGraph.apply(this, arguments);
275
+ }
276
+ return getSocialGraph;
277
+ }()
278
+ }, {
279
+ key: "getDeviceGraph",
280
+ value: function () {
281
+ var _getDeviceGraph = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5() {
282
+ var devices, browsers, models, desktop, android, ios, other, total, donutChart, deviceData, desktopBrowsers, desktopBrowsersTotal, iosModels, iosTotal, androidModels, androidTotal;
283
+ return _regeneratorRuntime().wrap(function _callee5$(_context5) {
284
+ while (1) switch (_context5.prev = _context5.next) {
285
+ case 0:
286
+ _context5.next = 2;
287
+ return matomoConnect.init(matomoConnect.GetDeviceOsFamilies, 'range', "".concat(this.START_DATE.format('YYYY-MM-DD'), ",").concat(this.CURRENT_DATE.format('YYYY-MM-DD')));
288
+ case 2:
289
+ devices = _context5.sent;
290
+ _context5.next = 5;
291
+ return matomoConnect.init(matomoConnect.GetDeviceBrowsers, 'range', "".concat(this.START_DATE.format('YYYY-MM-DD'), ",").concat(this.CURRENT_DATE.format('YYYY-MM-DD')));
292
+ case 5:
293
+ browsers = _context5.sent;
294
+ _context5.next = 8;
295
+ return matomoConnect.init(matomoConnect.GetDeviceModels, 'range', "".concat(this.START_DATE.format('YYYY-MM-DD'), ",").concat(this.CURRENT_DATE.format('YYYY-MM-DD')));
296
+ case 8:
297
+ models = _context5.sent;
298
+ desktop = 0;
299
+ android = 0;
300
+ ios = 0;
301
+ other = 0;
302
+ total = 0;
303
+ devices.forEach(function (value, key) {
304
+ if (value.label === 'Android') {
305
+ android += value.nb_visits;
306
+ }
307
+ if (value.label === 'iOS') {
308
+ ios += value.nb_visits;
309
+ }
310
+ if (value.label === 'Windows' || value.label === 'Mac' || value.label === 'GNU/Linux') {
311
+ desktop += value.nb_visits;
312
+ }
313
+ if (!['Windows', 'Mac', 'GNU/Linux', 'Android', 'iOS'].includes(value.label)) {
314
+ other += value.nb_visits;
315
+ }
316
+ });
317
+ total = android + ios + desktop + other;
318
+ donutChart = [{
319
+ name: 'Android',
320
+ value: android,
321
+ color: '#0050CA'
322
+ }, {
323
+ name: 'Other',
324
+ value: other,
325
+ color: '#69BD53'
326
+ }, {
327
+ name: 'IOS',
328
+ value: ios,
329
+ color: '#CEDDF5'
330
+ }, {
331
+ name: 'Desktop',
332
+ value: desktop,
333
+ color: '#EE220D'
334
+ }];
335
+ deviceData = {
336
+ Android: {
337
+ percent: Analytic.getPercent(android, total),
338
+ value: android
339
+ },
340
+ iOS: {
341
+ percent: Analytic.getPercent(ios, total),
342
+ value: ios
343
+ },
344
+ Desktop: {
345
+ percent: Analytic.getPercent(desktop, total),
346
+ value: desktop
347
+ },
348
+ Other: {
349
+ percent: Analytic.getPercent(other, total),
350
+ value: other
351
+ }
352
+ };
353
+ desktopBrowsers = [];
354
+ desktopBrowsersTotal = 0;
355
+ browsers.forEach(function (value, key) {
356
+ if (['Chrome', 'Firefox', 'Safari', 'Opera', 'Internet Explorer', 'Microsoft Edge', 'Vivaldi'].includes(value.label)) {
357
+ desktopBrowsersTotal += value.nb_visits;
358
+ }
359
+ });
360
+ browsers.forEach(function (value, key) {
361
+ if (['Chrome', 'Firefox', 'Safari', 'Opera', 'Internet Explorer', 'Microsoft Edge', 'Vivaldi'].includes(value.label)) {
362
+ desktopBrowsers.push({
363
+ label: value.label,
364
+ value: "".concat(value.nb_visits, " (").concat(Analytic.getPercent(value.nb_visits, desktopBrowsersTotal), "%)")
365
+ });
366
+ }
367
+ });
368
+ iosModels = [];
369
+ iosTotal = 0;
370
+ androidModels = [];
371
+ androidTotal = 0;
372
+ models.forEach(function (value, key) {
373
+ if (!value.label.includes('Generic') && value.label.includes('Apple')) {
374
+ iosTotal += value.nb_visits;
375
+ }
376
+ if (!value.label.includes('Generic') && !value.label.includes('Apple')) {
377
+ androidTotal += value.nb_visits;
378
+ }
379
+ });
380
+ models.forEach(function (value, key) {
381
+ if (!value.label.includes('Generic') && value.label.includes('Apple')) {
382
+ iosModels.push({
383
+ label: value.label,
384
+ value: "".concat(value.nb_visits, " (").concat(Analytic.getPercent(value.nb_visits, iosTotal), "%)")
385
+ });
386
+ }
387
+ if (!value.label.includes('Generic') && !value.label.includes('Apple')) {
388
+ androidModels.push({
389
+ label: value.label,
390
+ value: "".concat(value.nb_visits, " (").concat(Analytic.getPercent(value.nb_visits, androidTotal), "%)")
391
+ });
392
+ }
393
+ });
394
+ return _context5.abrupt("return", {
395
+ donutChart: donutChart,
396
+ deviceData: deviceData,
397
+ desktopBrowsers: desktopBrowsers,
398
+ iosModels: iosModels,
399
+ androidModels: androidModels
400
+ });
401
+ case 29:
402
+ case "end":
403
+ return _context5.stop();
404
+ }
405
+ }, _callee5, this);
406
+ }));
407
+ function getDeviceGraph() {
408
+ return _getDeviceGraph.apply(this, arguments);
409
+ }
410
+ return getDeviceGraph;
411
+ }()
412
+ }, {
413
+ key: "getMonthSlider",
414
+ value: function () {
415
+ var _getMonthSlider = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee6() {
416
+ var response, data;
417
+ return _regeneratorRuntime().wrap(function _callee6$(_context6) {
418
+ while (1) switch (_context6.prev = _context6.next) {
419
+ case 0:
420
+ _context6.next = 2;
421
+ return matomoConnect.init(matomoConnect.GetVisitsSummary, 'day', "".concat(this.START_DATE.format('YYYY-MM-DD'), ",").concat(this.CURRENT_DATE.format('YYYY-MM-DD')));
422
+ case 2:
423
+ response = _context6.sent;
424
+ data = [];
425
+ Object.keys(response).forEach(function (key) {
426
+ var month = key.split('-');
427
+ var check = false;
428
+ data.forEach(function (value, k) {
429
+ if (value.title === "".concat(months[parseInt(month[1], 10) - 1], " ").concat(month[0])) {
430
+ check = true;
431
+ }
432
+ });
433
+ if (!check) {
434
+ data.push({
435
+ title: "".concat(months[parseInt(month[1], 10) - 1], " ").concat(month[0]),
436
+ values: [],
437
+ total: 0
438
+ });
439
+ }
440
+ data.forEach(function (value, k) {
441
+ if (value.title === "".concat(months[parseInt(month[1], 10) - 1], " ").concat(month[0])) {
442
+ value.values.push({
443
+ name: key.split('-')[2],
444
+ value: response[key].nb_uniq_visitors ? response[key].nb_uniq_visitors : 0
445
+ });
446
+ value.total += response[key].nb_uniq_visitors ? response[key].nb_uniq_visitors : 0;
447
+ }
448
+ });
449
+ });
450
+ return _context6.abrupt("return", data.reverse());
451
+ case 6:
452
+ case "end":
453
+ return _context6.stop();
454
+ }
455
+ }, _callee6, this);
456
+ }));
457
+ function getMonthSlider() {
458
+ return _getMonthSlider.apply(this, arguments);
459
+ }
460
+ return getMonthSlider;
461
+ }()
462
+ }, {
463
+ key: "getYearSlider",
464
+ value: function () {
465
+ var _getYearSlider = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee7() {
466
+ var data, response;
467
+ return _regeneratorRuntime().wrap(function _callee7$(_context7) {
468
+ while (1) switch (_context7.prev = _context7.next) {
469
+ case 0:
470
+ data = [];
471
+ _context7.next = 3;
472
+ return this.getMonthSlider();
473
+ case 3:
474
+ response = _context7.sent;
475
+ response && response.reverse().forEach(function (month) {
476
+ var year = month.title.split(' ');
477
+ var check = false;
478
+ data.forEach(function (value, k) {
479
+ if (value.title === "".concat(year[1])) {
480
+ check = true;
481
+ }
482
+ });
483
+ if (!check) {
484
+ data.push({
485
+ title: "".concat(year[1]),
486
+ values: []
487
+ });
488
+ }
489
+ data.forEach(function (value, k) {
490
+ if (value.title === "".concat(year[1])) {
491
+ value.values.push({
492
+ name: "".concat(year[0]),
493
+ value: month.total || 0
494
+ });
495
+ }
496
+ });
497
+ });
498
+ return _context7.abrupt("return", data.reverse());
499
+ case 6:
500
+ case "end":
501
+ return _context7.stop();
502
+ }
503
+ }, _callee7, this);
504
+ }));
505
+ function getYearSlider() {
506
+ return _getYearSlider.apply(this, arguments);
507
+ }
508
+ return getYearSlider;
509
+ }()
510
+ }, {
511
+ key: "getWeekSlider",
512
+ value: function () {
513
+ var _getWeekSlider = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee8() {
514
+ var response, data;
515
+ return _regeneratorRuntime().wrap(function _callee8$(_context8) {
516
+ while (1) switch (_context8.prev = _context8.next) {
517
+ case 0:
518
+ _context8.next = 2;
519
+ return matomoConnect.init(matomoConnect.GetVisitsSummary, 'day', "".concat(this.START_DATE.format('YYYY-MM-DD'), ",").concat(this.CURRENT_DATE.format('YYYY-MM-DD')));
520
+ case 2:
521
+ response = _context8.sent;
522
+ data = [];
523
+ Object.keys(response).forEach(function (key) {
524
+ var startOfWeek = Moment(key).startOf('isoWeek');
525
+ var endOfWeek = Moment(key).endOf('isoWeek');
526
+ var slicedStartOfWeek = startOfWeek.toString().slice(4, 10); //15)
527
+ var slicedEndOfWeek = endOfWeek.toString().slice(4, 10); //15)
528
+
529
+ var day = Moment(key).format('ddd');
530
+ var check = false;
531
+ data.forEach(function (value, k) {
532
+ if (value.title === "".concat(slicedStartOfWeek, " - ").concat(slicedEndOfWeek)) {
533
+ check = true;
534
+ }
535
+ });
536
+ if (!check) {
537
+ data.push({
538
+ title: "".concat(slicedStartOfWeek, " - ").concat(slicedEndOfWeek),
539
+ values: []
540
+ });
541
+ }
542
+ data.forEach(function (value, k) {
543
+ if (value.title === "".concat(slicedStartOfWeek, " - ").concat(slicedEndOfWeek)) {
544
+ value.values.push({
545
+ name: day,
546
+ value: response[key].nb_uniq_visitors ? response[key].nb_uniq_visitors : 0
547
+ });
548
+ }
549
+ });
550
+ });
551
+ return _context8.abrupt("return", data.reverse());
552
+ case 6:
553
+ case "end":
554
+ return _context8.stop();
555
+ }
556
+ }, _callee8, this);
557
+ }));
558
+ function getWeekSlider() {
559
+ return _getWeekSlider.apply(this, arguments);
560
+ }
561
+ return getWeekSlider;
562
+ }()
563
+ }, {
564
+ key: "getHeatmap",
565
+ value: function () {
566
+ var _getHeatmap = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee9() {
567
+ var periods, uniqueData, response, data;
568
+ return _regeneratorRuntime().wrap(function _callee9$(_context9) {
569
+ while (1) switch (_context9.prev = _context9.next) {
570
+ case 0:
571
+ periods = {
572
+ '00': {
573
+ value: '12AM'
574
+ },
575
+ '01': {
576
+ value: '1AM'
577
+ },
578
+ '02': {
579
+ value: '2AM'
580
+ },
581
+ '03': {
582
+ value: '3AM'
583
+ },
584
+ '04': {
585
+ value: '4AM'
586
+ },
587
+ '05': {
588
+ value: '5AM'
589
+ },
590
+ '06': {
591
+ value: '6AM'
592
+ },
593
+ '07': {
594
+ value: '7AM'
595
+ },
596
+ '08': {
597
+ value: '8AM'
598
+ },
599
+ '09': {
600
+ value: '9AM'
601
+ },
602
+ 10: {
603
+ value: '10AM'
604
+ },
605
+ 11: {
606
+ value: '11AM'
607
+ },
608
+ 12: {
609
+ value: '12PM'
610
+ },
611
+ 13: {
612
+ value: '1PM'
613
+ },
614
+ 14: {
615
+ value: '2PM'
616
+ },
617
+ 15: {
618
+ value: '3PM'
619
+ },
620
+ 16: {
621
+ value: '4PM'
622
+ },
623
+ 17: {
624
+ value: '5PM'
625
+ },
626
+ 18: {
627
+ value: '6PM'
628
+ },
629
+ 19: {
630
+ value: '7PM'
631
+ },
632
+ 20: {
633
+ value: '8PM'
634
+ },
635
+ 21: {
636
+ value: '9PM'
637
+ },
638
+ 22: {
639
+ value: '10PM'
640
+ },
641
+ 23: {
642
+ value: '11PM'
643
+ },
644
+ 24: {
645
+ value: '12PM'
646
+ }
647
+ };
648
+ uniqueData = {};
649
+ _context9.next = 4;
650
+ return matomoConnect.init(matomoConnect.GetVisitTimePerLocalTime, 'day', "".concat(this.START_DATE.format('YYYY-MM-DD'), ",").concat(this.CURRENT_DATE.format('YYYY-MM-DD')));
651
+ case 4:
652
+ response = _context9.sent;
653
+ Object.keys(response).forEach(function (key) {
654
+ var time = new Moment(key);
655
+ response[key].forEach(function (hour, k) {
656
+ var day = time.format('ddd').toUpperCase();
657
+ var uniqueId = "".concat(day, "-").concat(hour.label);
658
+ if (uniqueData[uniqueId] !== undefined) {
659
+ var datum = uniqueData[uniqueId];
660
+ // calculate an average value for all redundant data
661
+ datum.value = (datum.dataCount * datum.value + hour.nb_uniq_visitors) / (datum.dataCount + 1);
662
+ datum.dataCount += 1;
663
+ } else {
664
+ uniqueData[uniqueId] = {
665
+ group: day,
666
+ variable: periods[hour.label].value,
667
+ value: hour.nb_uniq_visitors,
668
+ dataCount: 1
669
+ };
670
+ }
671
+ });
672
+ });
673
+ data = Object.keys(uniqueData).map(function (uniqueId) {
674
+ var datum = uniqueData[uniqueId];
675
+ return {
676
+ group: datum.group,
677
+ variable: datum.variable,
678
+ value: datum.value
679
+ };
680
+ });
681
+ return _context9.abrupt("return", data);
682
+ case 8:
683
+ case "end":
684
+ return _context9.stop();
685
+ }
686
+ }, _callee9, this);
687
+ }));
688
+ function getHeatmap() {
689
+ return _getHeatmap.apply(this, arguments);
690
+ }
691
+ return getHeatmap;
692
+ }()
693
+ }], [{
694
+ key: "getRealTimeUsersBasicGraph",
695
+ value: function () {
696
+ var _getRealTimeUsersBasicGraph = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee10() {
697
+ var lastMinute, lastHour, last2Hours, increase, object;
698
+ return _regeneratorRuntime().wrap(function _callee10$(_context10) {
699
+ while (1) switch (_context10.prev = _context10.next) {
700
+ case 0:
701
+ _context10.next = 2;
702
+ return matomoConnect.init(matomoConnect.LiveGetCounters, 10, 'visitors');
703
+ case 2:
704
+ lastMinute = _context10.sent;
705
+ _context10.next = 5;
706
+ return matomoConnect.init(matomoConnect.LiveGetCounters, 60, 'visitors');
707
+ case 5:
708
+ lastHour = _context10.sent;
709
+ _context10.next = 8;
710
+ return matomoConnect.init(matomoConnect.LiveGetCounters, 120, 'visitors');
711
+ case 8:
712
+ last2Hours = _context10.sent;
713
+ increase = Analytic.getIncrease(last2Hours, lastMinute);
714
+ object = {
715
+ id: 'realTimeUsersStat',
716
+ title: 'realtime users',
717
+ value: lastMinute.toString(),
718
+ percent: isNaN(increase) ? 0 : parseFloat(parseFloat(increase).toFixed(1)),
719
+ chart: {
720
+ id: 'realTimeUsersChart',
721
+ fill: '#e4ecf9',
722
+ stroke: '#0050ca',
723
+ data: [{
724
+ date: 1,
725
+ value: last2Hours
726
+ }, {
727
+ date: 2,
728
+ value: lastHour
729
+ }, {
730
+ date: 3,
731
+ value: lastMinute
732
+ }]
733
+ }
734
+ };
735
+ return _context10.abrupt("return", object);
736
+ case 12:
737
+ case "end":
738
+ return _context10.stop();
739
+ }
740
+ }, _callee10);
741
+ }));
742
+ function getRealTimeUsersBasicGraph() {
743
+ return _getRealTimeUsersBasicGraph.apply(this, arguments);
744
+ }
745
+ return getRealTimeUsersBasicGraph;
746
+ }()
747
+ }, {
748
+ key: "getPercent",
749
+ value: function getPercent(number, total) {
750
+ var percent = number * 100 / total;
751
+ percent = parseFloat(percent).toFixed(2);
752
+ return isNaN(parseFloat(percent)) ? 0 : parseFloat(percent);
753
+ }
754
+ }, {
755
+ key: "getIncrease",
756
+ value: function getIncrease() {
757
+ var min = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
758
+ var max = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
759
+ var increase = max - min;
760
+ increase = increase / min * 100;
761
+ return increase === Infinity && increase > 100 ? 100 : increase;
762
+ }
763
+ }, {
764
+ key: "getTimeSpent",
765
+ value: function getTimeSpent(value) {
766
+ var hours = '';
767
+ var minutes = '';
768
+ if (value.format('H') !== 0) {
769
+ hours = "".concat(value.format('H'), "h ");
770
+ }
771
+ if (value.format('m') !== 0) {
772
+ minutes = "".concat(value.format('m'), "m ");
773
+ }
774
+ return "".concat(hours).concat(minutes).concat(value.format('s'), "s");
775
+ }
776
+ }]);
777
+ return Analytic;
778
+ }();
779
+ exports.Analytic = Analytic;
780
+ var _default = Analytic;
781
+ exports.default = _default;