@ssa-ui-kit/widgets 0.0.9-alpha → 0.0.11-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc.js +4 -4
- package/.env +7 -7
- package/.storybook/main.ts +42 -42
- package/.storybook/preview.tsx +21 -21
- package/.storybook/style.css +31 -31
- package/LICENSE +21 -0
- package/customTest.tsx +35 -35
- package/dist/components/CollapsibleNavBar/CollapsibleNavBar.d.ts +0 -1
- package/dist/components/CollapsibleNavBar/CollapsibleNavBarLink.d.ts +1 -5
- package/dist/components/CollapsibleNavBar/CollapsibleNavContentToggle.d.ts +2 -1
- package/dist/components/CollapsibleNavBar/CollapsibleNavToggle.d.ts +3 -1
- package/dist/components/CollapsibleNavBar/NavBarAccordionContent.d.ts +1 -2
- package/dist/components/CollapsibleNavBar/NavBarItemWithSubMenu.d.ts +1 -2
- package/dist/components/CollapsibleNavBar/NavBarItemWithoutSubMenu.d.ts +1 -2
- package/dist/components/CollapsibleNavBar/styles.d.ts +0 -1
- package/dist/components/CollapsibleNavBar/types.d.ts +1 -1
- package/dist/components/ExchangeAccountKeys/styles.d.ts +1 -1
- package/dist/components/NavBar/NavBar.d.ts +0 -1
- package/dist/components/NavBar/NavBarLink.d.ts +1 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/jest-setup.ts +17 -17
- package/lostpixel.config.ts +29 -29
- package/package.json +3 -3
- package/playwright.config.ts +7 -7
- package/src/components/AccountBalance/AccountBalance.spec.tsx +82 -82
- package/src/components/AccountBalance/AccountBalance.stories.tsx +35 -35
- package/src/components/AccountBalance/AccountBalance.tsx +63 -63
- package/src/components/AccountBalance/BalancePieChart.tsx +77 -77
- package/src/components/AccountBalance/BalancePieChartTitle.tsx +42 -42
- package/src/components/AccountBalance/WithLink.tsx +26 -26
- package/src/components/AccountBalance/index.ts +5 -5
- package/src/components/AccountBalance/stories/fixtures.ts +26 -26
- package/src/components/AccountBalance/types.ts +31 -31
- package/src/components/Activity/Activity.spec.tsx +79 -79
- package/src/components/Activity/Activity.stories.tsx +15 -15
- package/src/components/Activity/Activity.tsx +83 -83
- package/src/components/Activity/ActivityItem.tsx +38 -38
- package/src/components/Activity/index.tsx +2 -2
- package/src/components/Activity/mockActivityRequest.ts +106 -106
- package/src/components/Activity/styles.ts +12 -12
- package/src/components/Activity/types.ts +10 -10
- package/src/components/AddNewAccountCard/AddNewAccountCard.spec.tsx +39 -39
- package/src/components/AddNewAccountCard/AddNewAccountCard.stories.tsx +48 -48
- package/src/components/AddNewAccountCard/AddNewAccountCard.tsx +22 -22
- package/src/components/AddNewAccountCard/index.ts +2 -2
- package/src/components/AddNewAccountCard/styles.ts +29 -29
- package/src/components/AddNewAccountCard/types.ts +7 -7
- package/src/components/Bmi/Bmi.spec.tsx +68 -68
- package/src/components/Bmi/Bmi.stories.tsx +10 -10
- package/src/components/Bmi/Bmi.tsx +96 -96
- package/src/components/Bmi/BmiHeatbar.tsx +18 -18
- package/src/components/Bmi/BmiInfo.tsx +11 -11
- package/src/components/Bmi/BmiLabel.tsx +9 -9
- package/src/components/Bmi/BmiLabels.tsx +33 -33
- package/src/components/Bmi/BmiPointer.tsx +15 -15
- package/src/components/Bmi/index.tsx +2 -2
- package/src/components/Bmi/styles.ts +18 -18
- package/src/components/Bmi/types.ts +4 -4
- package/src/components/BotsTable/BotsTable.e2e.ts +77 -77
- package/src/components/BotsTable/BotsTable.spec.tsx +125 -125
- package/src/components/BotsTable/BotsTable.tsx +32 -32
- package/src/components/BotsTable/BotsTableCell.tsx +13 -10
- package/src/components/BotsTable/BotsTableHead.tsx +13 -9
- package/src/components/BotsTable/BotsTableRow.tsx +17 -17
- package/src/components/BotsTable/BotsTableWrapper.tsx +23 -23
- package/src/components/BotsTable/index.ts +5 -5
- package/src/components/BotsTable/stories/BotsTable/StoryComponent.tsx +59 -59
- package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionIcon.tsx +11 -11
- package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionItem.tsx +40 -40
- package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionMore.tsx +89 -89
- package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionRun.tsx +133 -133
- package/src/components/BotsTable/stories/BotsTable/components/Actions/Actions.tsx +13 -13
- package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionsWrapper.tsx +21 -21
- package/src/components/BotsTable/stories/BotsTable/components/Actions/consts.tsx +118 -118
- package/src/components/BotsTable/stories/BotsTable/components/Actions/index.ts +6 -6
- package/src/components/BotsTable/stories/BotsTable/components/Exchange/Exchange.tsx +26 -26
- package/src/components/BotsTable/stories/BotsTable/components/Exchange/consts.tsx +157 -157
- package/src/components/BotsTable/stories/BotsTable/components/Exchange/index.ts +1 -1
- package/src/components/BotsTable/stories/BotsTable/components/Exchange/types.ts +6 -6
- package/src/components/BotsTable/stories/BotsTable/components/PNL.tsx +27 -27
- package/src/components/BotsTable/stories/BotsTable/components/ROI.tsx +25 -25
- package/src/components/BotsTable/stories/BotsTable/components/TableTag.tsx +22 -22
- package/src/components/BotsTable/stories/BotsTable/components/Trade/Trade.tsx +8 -8
- package/src/components/BotsTable/stories/BotsTable/components/Trade/consts.ts +14 -14
- package/src/components/BotsTable/stories/BotsTable/components/Trade/index.ts +1 -1
- package/src/components/BotsTable/stories/BotsTable/components/Trade/types.ts +5 -5
- package/src/components/BotsTable/stories/BotsTable/components/index.ts +6 -6
- package/src/components/BotsTable/stories/BotsTable/index.ts +1 -1
- package/src/components/BotsTable/stories/BotsTable/mockData.ts +84 -84
- package/src/components/BotsTable/stories/BotsTable.stories.tsx +39 -39
- package/src/components/BotsTable/stories/NoControlOrders/StoryComponent.tsx +35 -35
- package/src/components/BotsTable/stories/NoControlOrders/components/ActionMore.tsx +95 -95
- package/src/components/BotsTable/stories/NoControlOrders/components/Reason.tsx +11 -11
- package/src/components/BotsTable/stories/NoControlOrders/components/TableList.tsx +45 -45
- package/src/components/BotsTable/stories/NoControlOrders/components/TableRow.tsx +31 -31
- package/src/components/BotsTable/stories/NoControlOrders/components/index.ts +4 -4
- package/src/components/BotsTable/stories/NoControlOrders/mockData.ts +23 -23
- package/src/components/BotsTable/stories/NoControlOrders/types.ts +16 -16
- package/src/components/BotsTable/types.ts +31 -31
- package/src/components/Calories/Calories.spec.tsx +11 -11
- package/src/components/Calories/Calories.stories.tsx +26 -26
- package/src/components/Calories/Calories.tsx +54 -54
- package/src/components/Calories/index.tsx +2 -2
- package/src/components/Calories/innerContent.tsx +30 -30
- package/src/components/Calories/types.ts +4 -4
- package/src/components/CardList/CardList.spec.tsx +32 -32
- package/src/components/CardList/CardList.stories.tsx +37 -37
- package/src/components/CardList/CardList.tsx +37 -37
- package/src/components/CardList/index.ts +2 -2
- package/src/components/CardList/types.ts +10 -10
- package/src/components/CollapsibleNavBar/CollapsibleNavBar.e2e.ts +115 -115
- package/src/components/CollapsibleNavBar/CollapsibleNavBar.spec.tsx +49 -54
- package/src/components/CollapsibleNavBar/CollapsibleNavBar.tsx +67 -55
- package/src/components/CollapsibleNavBar/CollapsibleNavBarBase.ts +128 -126
- package/src/components/CollapsibleNavBar/CollapsibleNavBarItem.ts +28 -28
- package/src/components/CollapsibleNavBar/CollapsibleNavBarLink.ts +36 -34
- package/src/components/CollapsibleNavBar/CollapsibleNavBarList.ts +18 -18
- package/src/components/CollapsibleNavBar/CollapsibleNavBarWrapper.ts +24 -24
- package/src/components/CollapsibleNavBar/CollapsibleNavContentToggle.tsx +27 -24
- package/src/components/CollapsibleNavBar/CollapsibleNavToggle.tsx +49 -52
- package/src/components/CollapsibleNavBar/CollapsibleNavToggleWrapper.ts +16 -16
- package/src/components/CollapsibleNavBar/NavBarAccordionContent.tsx +42 -33
- package/src/components/CollapsibleNavBar/NavBarItemWithSubMenu.tsx +108 -84
- package/src/components/CollapsibleNavBar/NavBarItemWithoutSubMenu.tsx +35 -39
- package/src/components/CollapsibleNavBar/NavBarPopover.tsx +124 -124
- package/src/components/CollapsibleNavBar/TriggerIcon.tsx +35 -35
- package/src/components/CollapsibleNavBar/index.ts +2 -2
- package/src/components/CollapsibleNavBar/stories/CollapsibleNavBar.stories.tsx +53 -53
- package/src/components/CollapsibleNavBar/stories/Layout.tsx +53 -53
- package/src/components/CollapsibleNavBar/stories/Logo.tsx +12 -12
- package/src/components/CollapsibleNavBar/stories/StoryComponent.tsx +20 -20
- package/src/components/CollapsibleNavBar/stories/consts.ts +22 -22
- package/src/components/CollapsibleNavBar/stories/styles.ts +21 -21
- package/src/components/CollapsibleNavBar/styles.ts +111 -119
- package/src/components/CollapsibleNavBar/types.ts +14 -14
- package/src/components/ExchangeAccount/ExchangeAccount.spec.tsx +110 -110
- package/src/components/ExchangeAccount/ExchangeAccount.stories.tsx +90 -90
- package/src/components/ExchangeAccount/ExchangeAccount.tsx +73 -73
- package/src/components/ExchangeAccount/helpers.tsx +153 -153
- package/src/components/ExchangeAccount/index.ts +2 -2
- package/src/components/ExchangeAccount/styles.ts +133 -133
- package/src/components/ExchangeAccount/types.ts +12 -12
- package/src/components/ExchangeAccountKeys/ExchangeAccountKeys.spec.tsx +43 -43
- package/src/components/ExchangeAccountKeys/ExchangeAccountKeys.stories.tsx +14 -14
- package/src/components/ExchangeAccountKeys/ExchangeAccountKeys.tsx +73 -71
- package/src/components/ExchangeAccountKeys/helpers.ts +7 -7
- package/src/components/ExchangeAccountKeys/index.ts +2 -2
- package/src/components/ExchangeAccountKeys/stories/StoryComponent.tsx +33 -33
- package/src/components/ExchangeAccountKeys/styles.ts +87 -97
- package/src/components/ExchangeAccountKeys/types.ts +8 -8
- package/src/components/Filters/FilterBlockWrapper.tsx +11 -11
- package/src/components/Filters/Filters.e2e.ts +115 -115
- package/src/components/Filters/Filters.spec.tsx +47 -47
- package/src/components/Filters/Filters.tsx +87 -87
- package/src/components/Filters/FiltersBlock.tsx +76 -69
- package/src/components/Filters/FiltersContext.tsx +44 -44
- package/src/components/Filters/FiltersWrapper.tsx +34 -34
- package/src/components/Filters/hooks/useVisibility.ts +101 -101
- package/src/components/Filters/index.ts +1 -1
- package/src/components/Filters/stories/Filters.stories.tsx +24 -24
- package/src/components/Filters/stories/StoryComponent.tsx +19 -19
- package/src/components/Filters/stories/mockData.ts +421 -421
- package/src/components/Filters/types.ts +4 -4
- package/src/components/HeartRate/BPM.tsx +43 -43
- package/src/components/HeartRate/HeartRate.e2e.ts +78 -78
- package/src/components/HeartRate/HeartRate.spec.tsx +91 -91
- package/src/components/HeartRate/HeartRate.stories.tsx +36 -36
- package/src/components/HeartRate/HeartRate.tsx +105 -105
- package/src/components/HeartRate/HeartRateLineChart.tsx +53 -53
- package/src/components/HeartRate/index.ts +2 -2
- package/src/components/HeartRate/mockHeartRateRequest.ts +15 -15
- package/src/components/HeartRate/types.ts +15 -15
- package/src/components/HeartRate/utils.tsx +8 -8
- package/src/components/LinksTabBar/LinksTabBar.e2e.ts +23 -23
- package/src/components/LinksTabBar/LinksTabBar.spec.tsx +48 -48
- package/src/components/LinksTabBar/LinksTabBar.stories.tsx +45 -45
- package/src/components/LinksTabBar/LinksTabBar.tsx +14 -14
- package/src/components/LinksTabBar/LinksTabBarBase.tsx +36 -36
- package/src/components/LinksTabBar/index.ts +2 -2
- package/src/components/LinksTabBar/stories/decorators.tsx +34 -34
- package/src/components/LinksTabBar/stories/mockData.ts +27 -27
- package/src/components/LinksTabBar/types.ts +12 -12
- package/src/components/ListGoals/ListGoals.spec.tsx +82 -82
- package/src/components/ListGoals/ListGoals.stories.tsx +58 -58
- package/src/components/ListGoals/ListGoals.tsx +29 -29
- package/src/components/ListGoals/ListGoalsCard.tsx +61 -61
- package/src/components/ListGoals/index.ts +2 -2
- package/src/components/ListGoals/styles.tsx +11 -11
- package/src/components/ListGoals/types.ts +25 -25
- package/src/components/MealNutrients/MealNutrients.e2e.ts +68 -68
- package/src/components/MealNutrients/MealNutrients.spec.tsx +134 -134
- package/src/components/MealNutrients/MealNutrients.stories.tsx +37 -37
- package/src/components/MealNutrients/MealNutrients.tsx +84 -84
- package/src/components/MealNutrients/MealNutrientsLineChart.tsx +87 -87
- package/src/components/MealNutrients/MealNutrientsTooltip.tsx +30 -30
- package/src/components/MealNutrients/chartDefaultConfig.tsx +87 -87
- package/src/components/MealNutrients/index.tsx +2 -2
- package/src/components/MealNutrients/mockMealNutrientsRequest.ts +1246 -1246
- package/src/components/MealNutrients/types.ts +37 -37
- package/src/components/MealNutrients/useChartConfig.ts +69 -69
- package/src/components/MealPlanner/MealPlanner.spec.tsx +77 -77
- package/src/components/MealPlanner/MealPlanner.stories.tsx +15 -15
- package/src/components/MealPlanner/MealPlanner.tsx +100 -100
- package/src/components/MealPlanner/MealPlannerBadge.tsx +15 -15
- package/src/components/MealPlanner/MealPlannerBars.tsx +19 -19
- package/src/components/MealPlanner/MealPlannerCard.tsx +73 -73
- package/src/components/MealPlanner/MealPlannerLegends.tsx +22 -22
- package/src/components/MealPlanner/index.ts +2 -2
- package/src/components/MealPlanner/mockMealPlannerRequest.ts +70 -70
- package/src/components/MealPlanner/types.ts +21 -21
- package/src/components/NavBar/NavBar.e2e.ts +64 -64
- package/src/components/NavBar/NavBar.stories.tsx +86 -86
- package/src/components/NavBar/NavBar.tsx +41 -46
- package/src/components/NavBar/NavBarBase.ts +45 -45
- package/src/components/NavBar/NavBarItem.ts +13 -13
- package/src/components/NavBar/NavBarLink.ts +27 -27
- package/src/components/NavBar/NavBarList.ts +16 -16
- package/src/components/NavBar/NavBarWrapper.ts +40 -40
- package/src/components/NavBar/NavToggle.tsx +36 -36
- package/src/components/NavBar/NavToggleWrapper.ts +21 -21
- package/src/components/NavBar/index.ts +2 -2
- package/src/components/NavBar/types.ts +22 -22
- package/src/components/NotificationCard/NotificationCard.spec.tsx +113 -113
- package/src/components/NotificationCard/NotificationCard.stories.tsx +112 -112
- package/src/components/NotificationCard/NotificationCard.tsx +95 -95
- package/src/components/NotificationCard/index.ts +2 -2
- package/src/components/NotificationCard/styles.tsx +134 -134
- package/src/components/NotificationCard/types.ts +12 -12
- package/src/components/NotificationMenu/NotificationMenu.e2e.ts +27 -27
- package/src/components/NotificationMenu/NotificationMenu.spec.tsx +64 -64
- package/src/components/NotificationMenu/NotificationMenu.tsx +77 -77
- package/src/components/NotificationMenu/helpers.ts +91 -91
- package/src/components/NotificationMenu/index.ts +2 -2
- package/src/components/NotificationMenu/stories/NotificationMenu.stories.tsx +14 -14
- package/src/components/NotificationMenu/stories/StoryComponent.tsx +84 -84
- package/src/components/NotificationMenu/stories/StoryContent.tsx +52 -52
- package/src/components/NotificationMenu/styles.ts +125 -125
- package/src/components/NotificationMenu/types.ts +11 -11
- package/src/components/Pagination/ArrowButton.tsx +32 -32
- package/src/components/Pagination/Pagination.e2e.ts +51 -51
- package/src/components/Pagination/Pagination.spec.tsx +228 -228
- package/src/components/Pagination/Pagination.stories.tsx +60 -60
- package/src/components/Pagination/Pagination.tsx +66 -66
- package/src/components/Pagination/PaginationButtons.tsx +63 -63
- package/src/components/Pagination/PaginationContext.tsx +20 -20
- package/src/components/Pagination/index.ts +3 -3
- package/src/components/Pagination/styles.tsx +98 -98
- package/src/components/Pagination/types.ts +38 -38
- package/src/components/PieChart/PieChart.spec.tsx +97 -97
- package/src/components/PieChart/PieChart.stories.tsx +129 -129
- package/src/components/PieChart/PieChart.tsx +40 -40
- package/src/components/PieChart/PieChartBases.tsx +26 -26
- package/src/components/PieChart/PieChartLegend.tsx +51 -51
- package/src/components/PieChart/PieChartLegendList.tsx +19 -19
- package/src/components/PieChart/PieChartLegendMarker.tsx +12 -12
- package/src/components/PieChart/colorPalettes.ts +28 -28
- package/src/components/PieChart/index.ts +4 -4
- package/src/components/PieChart/stories/fixtures.ts +39 -39
- package/src/components/PieChart/types.ts +28 -28
- package/src/components/ProgressInfo/ProgressInfo.e2e.ts +31 -31
- package/src/components/ProgressInfo/ProgressInfo.spec.tsx +91 -91
- package/src/components/ProgressInfo/ProgressInfo.stories.tsx +32 -32
- package/src/components/ProgressInfo/ProgressInfo.tsx +117 -117
- package/src/components/ProgressInfo/ProgressInfoTotals.tsx +60 -60
- package/src/components/ProgressInfo/index.ts +3 -3
- package/src/components/ProgressInfo/mockProgressInfoRequest.ts +166 -166
- package/src/components/ProgressInfo/styles.ts +20 -20
- package/src/components/ProgressInfo/types.ts +29 -29
- package/src/components/SearchBox/SearchBox.e2e.ts +37 -37
- package/src/components/SearchBox/SearchBox.spec.tsx +77 -77
- package/src/components/SearchBox/SearchBox.tsx +70 -70
- package/src/components/SearchBox/SearchBoxCrossIcon.tsx +26 -26
- package/src/components/SearchBox/SearchBoxInput.tsx +42 -42
- package/src/components/SearchBox/SearchBoxWrapper.tsx +9 -9
- package/src/components/SearchBox/index.ts +4 -4
- package/src/components/SearchBox/stories/SearchBox.stories.tsx +16 -16
- package/src/components/SearchBox/stories/StoryComponent.tsx +25 -25
- package/src/components/SearchBox/types.ts +9 -9
- package/src/components/StepsCounter/StepsCounter.spec.tsx +14 -14
- package/src/components/StepsCounter/StepsCounter.stories.tsx +16 -16
- package/src/components/StepsCounter/StepsCounter.tsx +74 -74
- package/src/components/StepsCounter/index.ts +2 -2
- package/src/components/StepsCounter/types.ts +4 -4
- package/src/components/TableFilters/TableFilterCancelButton.tsx +39 -39
- package/src/components/TableFilters/TableFilterCheckbox.tsx +24 -24
- package/src/components/TableFilters/TableFilterClearButton.tsx +47 -47
- package/src/components/TableFilters/TableFilterTrigger.tsx +66 -66
- package/src/components/TableFilters/TableFilterTriggerWithNotification.tsx +44 -44
- package/src/components/TableFilters/TableFilters.e2e.ts +32 -32
- package/src/components/TableFilters/TableFilters.spec.tsx +171 -171
- package/src/components/TableFilters/TableFilters.tsx +187 -187
- package/src/components/TableFilters/TableFiltersAccordion.tsx +14 -14
- package/src/components/TableFilters/TableFiltersAccordionContent.tsx +18 -18
- package/src/components/TableFilters/TableFiltersButtons.tsx +32 -32
- package/src/components/TableFilters/hooks/useTableData.ts +137 -137
- package/src/components/TableFilters/index.ts +9 -9
- package/src/components/TableFilters/stories/StoryComponent.tsx +35 -35
- package/src/components/TableFilters/stories/TableFilters.stories.tsx +17 -17
- package/src/components/TableFilters/stories/TableFiltersWrapper.tsx +7 -7
- package/src/components/TableFilters/stories/mockData.tsx +114 -114
- package/src/components/TableFilters/styles.ts +26 -26
- package/src/components/TableFilters/types.ts +34 -34
- package/src/components/TableFilters/utils/handlers.ts +73 -73
- package/src/components/TradingInfoCard/TradingInfoCard.e2e.ts +16 -16
- package/src/components/TradingInfoCard/TradingInfoCard.spec.tsx +116 -116
- package/src/components/TradingInfoCard/TradingInfoCard.stories.tsx +118 -118
- package/src/components/TradingInfoCard/TradingInfoCard.tsx +43 -43
- package/src/components/TradingInfoCard/TradingInfoCardContent.tsx +32 -32
- package/src/components/TradingInfoCard/TradingInfoCardTooltip.tsx +47 -47
- package/src/components/TradingInfoCard/TradingInfoCardWrapper.tsx +72 -72
- package/src/components/TradingInfoCard/index.ts +3 -3
- package/src/components/TradingInfoCard/types.ts +27 -27
- package/src/components/TradingScoreboard/TradingScoreboard.spec.tsx +119 -119
- package/src/components/TradingScoreboard/TradingScoreboard.stories.tsx +119 -119
- package/src/components/TradingScoreboard/TradingScoreboard.tsx +41 -41
- package/src/components/TradingScoreboard/TradingScoreboardBase.tsx +17 -17
- package/src/components/TradingScoreboard/helpers.tsx +134 -134
- package/src/components/TradingScoreboard/index.ts +2 -2
- package/src/components/TradingScoreboard/types.ts +18 -18
- package/src/components/UpcomingWorkouts/UpcomingWorkoutCard.tsx +64 -64
- package/src/components/UpcomingWorkouts/UpcomingWorkouts.spec.tsx +56 -56
- package/src/components/UpcomingWorkouts/UpcomingWorkouts.stories.tsx +32 -32
- package/src/components/UpcomingWorkouts/UpcomingWorkouts.tsx +27 -27
- package/src/components/UpcomingWorkouts/index.ts +2 -2
- package/src/components/UpcomingWorkouts/style.ts +12 -12
- package/src/components/UpcomingWorkouts/types.ts +23 -23
- package/src/components/UserCard/UserCard.tsx +46 -46
- package/src/components/UserCard/UserCardBMI.tsx +37 -37
- package/src/components/UserCard/UserCardCredentials.tsx +56 -56
- package/src/components/UserCard/UserCardItem.tsx +42 -42
- package/src/components/UserCard/index.tsx +2 -2
- package/src/components/UserCard/types.ts +8 -8
- package/src/components/UserProfile/UserProfile.e2e.ts +21 -21
- package/src/components/UserProfile/UserProfile.spec.tsx +107 -107
- package/src/components/UserProfile/UserProfile.stories.tsx +21 -21
- package/src/components/UserProfile/UserProfile.tsx +53 -53
- package/src/components/UserProfile/index.ts +2 -2
- package/src/components/UserProfile/styles.ts +47 -47
- package/src/components/UserProfile/types.ts +8 -8
- package/src/components/WaterConsume/WaterConsume.spec.tsx +62 -62
- package/src/components/WaterConsume/WaterConsume.stories.tsx +36 -36
- package/src/components/WaterConsume/WaterConsume.tsx +188 -188
- package/src/components/WaterConsume/index.ts +2 -2
- package/src/components/WaterConsume/types.ts +11 -11
- package/src/consts.ts +18 -18
- package/src/index.ts +53 -53
- package/src/injectGlobal.ts +41 -41
- package/tsbuildcache +1 -1
- package/tsconfig.build.json +44 -44
- package/tsconfig.json +17 -17
- package/webpack.config.js +28 -28
- package/custom-shots/widgets-bots-table--no-control-orders--menu-opened_[w1920px].png +0 -0
- package/custom-shots/widgets-bots-table--no-control-orders--run-reason-modal_[w1920px].png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1439px].png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1439px]_statistics_submenu_popover.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px]_side_menu_expanded.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px]_statistics_submenu_expanded.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px]_statistics_submenu_popover.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w899px]_default.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w899px]_menu_opened.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w899px]_statistics_submenu.png +0 -0
- package/custom-shots/widgets-filters--default__[w1920px].png +0 -0
- package/custom-shots/widgets-filters--filter-button-items-not-selected__[w390px].png +0 -0
- package/custom-shots/widgets-filters--filter-button__[w390px].png +0 -0
- package/custom-shots/widgets-filters--filter-button__[w900px].png +0 -0
- package/custom-shots/widgets-filters--more-button-items-selected__[w390px].png +0 -0
- package/custom-shots/widgets-filters--more-button__[w900px].png +0 -0
- package/custom-shots/widgets-heart-rate--hint-opened__[w1440px].png +0 -0
- package/custom-shots/widgets-heart-rate--hint-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-heart-rate--hint-opened__[w390px].png +0 -0
- package/custom-shots/widgets-heart-rate--hint-opened__[w900px].png +0 -0
- package/custom-shots/widgets-linkstabbar--current-focus__[w1920px].png +0 -0
- package/custom-shots/widgets-linkstabbar--non-current-focus__[w1920px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__[w1440px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__[w390px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__[w900px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w1440px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w1920px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w390px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w900px].png +0 -0
- package/custom-shots/widgets-navbar--mobile-opened__[w1440px].png +0 -0
- package/custom-shots/widgets-navbar--mobile-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-navbar--mobile-opened__[w390px].png +0 -0
- package/custom-shots/widgets-navbar--mobile-opened__[w900px].png +0 -0
- package/custom-shots/widgets-navbar-opened__[w1440px].png +0 -0
- package/custom-shots/widgets-navbar-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-navbar-opened__[w390px].png +0 -0
- package/custom-shots/widgets-navbar-opened__[w900px].png +0 -0
- package/custom-shots/widgets-notification-menu--is-opened__[w1440px].png +0 -0
- package/custom-shots/widgets-notification-menu--is-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-notification-menu--is-opened__[w390px].png +0 -0
- package/custom-shots/widgets-notification-menu--is-opened__[w900px].png +0 -0
- package/custom-shots/widgets-pagination--next-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination--not-selected-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination--previous-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination--selected-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination-disabled--next-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination-disabled--not-selected-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination-disabled--previous-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination-disabled--selected-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-progressInfo__[w1440px].png +0 -0
- package/custom-shots/widgets-progressInfo__[w1920px].png +0 -0
- package/custom-shots/widgets-progressInfo__[w390px].png +0 -0
- package/custom-shots/widgets-progressInfo__[w900px].png +0 -0
- package/custom-shots/widgets-progressInfo__dropdown__[w1440px].png +0 -0
- package/custom-shots/widgets-progressInfo__dropdown__[w1920px].png +0 -0
- package/custom-shots/widgets-progressInfo__dropdown__[w390px].png +0 -0
- package/custom-shots/widgets-progressInfo__dropdown__[w900px].png +0 -0
- package/custom-shots/widgets-searchbox--cross-icon__[w1920px].png +0 -0
- package/custom-shots/widgets-searchbox--cross-icon__[w900px].png +0 -0
- package/custom-shots/widgets-searchbox--search-icon__[w1920px].png +0 -0
- package/custom-shots/widgets-searchbox--search-icon__[w900px].png +0 -0
- package/custom-shots/widgets-table-bots--default_[w1920px].png +0 -0
- package/custom-shots/widgets-table-bots--menu-opened_[w1920px].png +0 -0
- package/custom-shots/widgets-table-bots--no-control-orders--menu-opened_[w1920px].png +0 -0
- package/custom-shots/widgets-table-bots--no-control-orders--run-reason-modal_[w1920px].png +0 -0
- package/custom-shots/widgets-table-bots--run-reason-modal_[w1920px].png +0 -0
- package/custom-shots/widgets-table-filters--opened__[w1920px].png +0 -0
- package/custom-shots/widgets-trading-info-card--hover__[w1920px].png +0 -0
- package/custom-shots/widgets-user-profile--is-opened__[w1920px].png +0 -0
- package/storybook-static/106.9e8cbea9.iframe.bundle.js +0 -1
- package/storybook-static/134.2444003c.iframe.bundle.js +0 -1
- package/storybook-static/166.927d7b90.iframe.bundle.js +0 -1
- package/storybook-static/185.4df02b5b.iframe.bundle.js +0 -139
- package/storybook-static/185.4df02b5b.iframe.bundle.js.map +0 -1
- package/storybook-static/251.8c3ebcca.iframe.bundle.js +0 -1
- package/storybook-static/263.0a5aa731.iframe.bundle.js +0 -1
- package/storybook-static/283.258a25c8.iframe.bundle.js +0 -1
- package/storybook-static/326.7772ae66.iframe.bundle.js +0 -1
- package/storybook-static/494.f5410ab1.iframe.bundle.js +0 -2
- package/storybook-static/494.f5410ab1.iframe.bundle.js.LICENSE.txt +0 -18
- package/storybook-static/497.7e0c2fc7.iframe.bundle.js +0 -44
- package/storybook-static/497.7e0c2fc7.iframe.bundle.js.map +0 -1
- package/storybook-static/540.17a57e0e.iframe.bundle.js +0 -1
- package/storybook-static/547.951a46da.iframe.bundle.js +0 -1
- package/storybook-static/609.f12a4891.iframe.bundle.js +0 -1
- package/storybook-static/620.61fd9060.iframe.bundle.js +0 -1
- package/storybook-static/633.947e8b75.iframe.bundle.js +0 -1
- package/storybook-static/661.14057bc5.iframe.bundle.js +0 -1
- package/storybook-static/753.91179890.iframe.bundle.js +0 -1
- package/storybook-static/76.25b4aa80.iframe.bundle.js +0 -1
- package/storybook-static/767.1716b836.iframe.bundle.js +0 -1
- package/storybook-static/781.3faed4b1.iframe.bundle.js +0 -2
- package/storybook-static/781.3faed4b1.iframe.bundle.js.LICENSE.txt +0 -32
- package/storybook-static/906.a25e1330.iframe.bundle.js +0 -402
- package/storybook-static/906.a25e1330.iframe.bundle.js.LICENSE.txt +0 -62
- package/storybook-static/906.a25e1330.iframe.bundle.js.map +0 -1
- package/storybook-static/912.a84a00a8.iframe.bundle.js +0 -1
- package/storybook-static/973.d2780faa.iframe.bundle.js +0 -1
- package/storybook-static/979.9baaf9d9.iframe.bundle.js +0 -1
- package/storybook-static/995.818e1781.iframe.bundle.js +0 -1
- package/storybook-static/components-Activity-Activity-stories.1f2220be.iframe.bundle.js +0 -1
- package/storybook-static/components-Bmi-Bmi-stories.033dba0e.iframe.bundle.js +0 -1
- package/storybook-static/components-Calories-Calories-stories.61da75cb.iframe.bundle.js +0 -1
- package/storybook-static/components-CardList-CardList-stories.caaffeda.iframe.bundle.js +0 -1
- package/storybook-static/components-HeartRate-HeartRate-stories.bd133239.iframe.bundle.js +0 -1
- package/storybook-static/components-ListGoals-ListGoals-stories.e68d5cbf.iframe.bundle.js +0 -1
- package/storybook-static/components-MealNutrients-MealNutrients-stories.7e46bd1e.iframe.bundle.js +0 -1
- package/storybook-static/components-MealPlanner-MealPlanner-stories.4b8341d3.iframe.bundle.js +0 -1
- package/storybook-static/components-NavBar-NavBar-stories.4f37096a.iframe.bundle.js +0 -1
- package/storybook-static/components-Pagination-Pagination-stories.2fd0c446.iframe.bundle.js +0 -1
- package/storybook-static/components-ProgressInfo-ProgressInfo-stories.665cee18.iframe.bundle.js +0 -1
- package/storybook-static/components-StepsCounter-StepsCounter-stories.b87bd065.iframe.bundle.js +0 -1
- package/storybook-static/components-TableFilters-stories-TableFilters-stories.24c4f9e8.iframe.bundle.js +0 -1
- package/storybook-static/components-UpcomingWorkouts-UpcomingWorkouts-stories.fab18fcf.iframe.bundle.js +0 -1
- package/storybook-static/components-WaterConsume-WaterConsume-stories.5dae388e.iframe.bundle.js +0 -1
- package/storybook-static/favicon.svg +0 -7
- package/storybook-static/iframe.html +0 -355
- package/storybook-static/index.html +0 -126
- package/storybook-static/index.json +0 -1
- package/storybook-static/main.c21822d8.iframe.bundle.js +0 -1
- package/storybook-static/project.json +0 -1
- package/storybook-static/runtime~main.b259f462.iframe.bundle.js +0 -1
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +0 -13
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +0 -115
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.LEGAL.txt +0 -18
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js +0 -28
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/links-0/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/links-0/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/links-0/manager-bundle.js.map +0 -7
- package/storybook-static/sb-common-assets/fonts.css +0 -31
- package/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
- package/storybook-static/sb-manager/CRUD-I5EZL2FS-LBZVDZXV.js +0 -1
- package/storybook-static/sb-manager/Communicate-7JXCND2Z-6SIVXWT4.js +0 -1
- package/storybook-static/sb-manager/Devices-SUYACUPO-DMGV6ENX.js +0 -1
- package/storybook-static/sb-manager/Documents-SGWAY3KW-XZRZ6I6S.js +0 -1
- package/storybook-static/sb-manager/Editing-7QFB6ZMG-J5U6QGB6.js +0 -1
- package/storybook-static/sb-manager/Git-DZ2D5ZUL-VKBWYJHE.js +0 -1
- package/storybook-static/sb-manager/GlobalScrollAreaStyles-4LLX2B3H-DOBSPBNW.js +0 -7
- package/storybook-static/sb-manager/Images-S2WTXNGG-NXAYS4VP.js +0 -1
- package/storybook-static/sb-manager/Logos-SJTNNI74-F3IVL4UV.js +0 -1
- package/storybook-static/sb-manager/OS-YZ2Y4VYS-KGSGCOHC.js +0 -1
- package/storybook-static/sb-manager/OverlayScrollbars-OL4C4TVX-FNYA4OIC.js +0 -1
- package/storybook-static/sb-manager/People-OD4EV7WZ-DBPUNUXW.js +0 -1
- package/storybook-static/sb-manager/Wayfinding-BB4H7CHP-N2QAVLVA.js +0 -1
- package/storybook-static/sb-manager/WithTooltip-YBG737T3-GLWUADFI.js +0 -1
- package/storybook-static/sb-manager/chunk-6KNXZZZ5.js +0 -207
- package/storybook-static/sb-manager/chunk-DP4DR4LA.js +0 -15
- package/storybook-static/sb-manager/chunk-GBCXFRBK.js +0 -1
- package/storybook-static/sb-manager/chunk-IFNK3PLJ.js +0 -1
- package/storybook-static/sb-manager/chunk-JMPBYCHU.js +0 -1
- package/storybook-static/sb-manager/chunk-JSPL73I3.js +0 -1
- package/storybook-static/sb-manager/chunk-SJD7EFYL.js +0 -136
- package/storybook-static/sb-manager/chunk-UBXIQABM.js +0 -447
- package/storybook-static/sb-manager/chunk-V7GYLJLR.js +0 -7
- package/storybook-static/sb-manager/chunk-Z4NRYNHR.js +0 -1
- package/storybook-static/sb-manager/formatter-6736J7QO-TGL2ZGQC.js +0 -156
- package/storybook-static/sb-manager/globals.js +0 -1
- package/storybook-static/sb-manager/index.js +0 -1
- package/storybook-static/sb-manager/runtime.js +0 -1
- package/storybook-static/sb-manager/syntaxhighlighter-4OVWVELQ-5IZ45DZY.js +0 -1
- package/storybook-static/sb-preview/globals.js +0 -1
- package/storybook-static/sb-preview/runtime.js +0 -105
- package/storybook-static/stories.json +0 -1
- package/tsconfig.tsbuildinfo +0 -1
|
@@ -1,1246 +1,1246 @@
|
|
|
1
|
-
import { OptionType } from './types';
|
|
2
|
-
|
|
3
|
-
const ONE_DAY_MS = 86400000;
|
|
4
|
-
const ONE_HOUR_MS = 3600000;
|
|
5
|
-
|
|
6
|
-
const getRandomNum = (min: number, max: number) =>
|
|
7
|
-
Math.floor(Math.random() * (max - min + 1)) + min;
|
|
8
|
-
|
|
9
|
-
const generateRandomDataRange = (n = 7, period = ONE_DAY_MS) => {
|
|
10
|
-
const data: Array<{ x: Date; y: number; comp: number; unit?: string }> = [];
|
|
11
|
-
const now = Date.now();
|
|
12
|
-
|
|
13
|
-
for (let i = 0; i < n; ++i) {
|
|
14
|
-
data.push({
|
|
15
|
-
x: new Date(now - period * (n - i - 1)),
|
|
16
|
-
y: getRandomNum(0, 95),
|
|
17
|
-
comp: getRandomNum(-100, 100),
|
|
18
|
-
unit: '%',
|
|
19
|
-
});
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
return data;
|
|
23
|
-
};
|
|
24
|
-
|
|
25
|
-
const randomGeneratorArgsMapping = {
|
|
26
|
-
d: [24, ONE_HOUR_MS], // Daily
|
|
27
|
-
w: [7, ONE_DAY_MS], // Weekly
|
|
28
|
-
m: [30, ONE_DAY_MS], // Monthly
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
const mockDataLoad = {
|
|
32
|
-
getData(timePeriodId: string) {
|
|
33
|
-
const args =
|
|
34
|
-
randomGeneratorArgsMapping[
|
|
35
|
-
timePeriodId as keyof typeof randomGeneratorArgsMapping
|
|
36
|
-
];
|
|
37
|
-
|
|
38
|
-
if (!args) {
|
|
39
|
-
return Promise.resolve([]);
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
const res = [
|
|
43
|
-
{
|
|
44
|
-
id: 'fibre',
|
|
45
|
-
data: generateRandomDataRange(...args),
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
id: 'calories',
|
|
49
|
-
data: generateRandomDataRange(...args),
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
id: 'sugar',
|
|
53
|
-
data: generateRandomDataRange(...args),
|
|
54
|
-
},
|
|
55
|
-
];
|
|
56
|
-
|
|
57
|
-
return Promise.resolve(res);
|
|
58
|
-
},
|
|
59
|
-
getOptions() {
|
|
60
|
-
return Promise.resolve<OptionType[]>([
|
|
61
|
-
{ value: 'd', label: 'Daily', precision: 'hour' },
|
|
62
|
-
{ value: 'w', label: 'Weekly', precision: 'week' },
|
|
63
|
-
{ value: 'm', label: 'Monthly', precision: 'day' },
|
|
64
|
-
]);
|
|
65
|
-
},
|
|
66
|
-
};
|
|
67
|
-
|
|
68
|
-
const FIRST_DATE = 1692799200000;
|
|
69
|
-
|
|
70
|
-
const createMockGraphData = (firstDate: number) => ({
|
|
71
|
-
d: [
|
|
72
|
-
{
|
|
73
|
-
data: [
|
|
74
|
-
{
|
|
75
|
-
comp: -40,
|
|
76
|
-
unit: '%',
|
|
77
|
-
x: new Date(firstDate),
|
|
78
|
-
y: 63,
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
comp: 66,
|
|
82
|
-
unit: '%',
|
|
83
|
-
x: new Date(1692802800000),
|
|
84
|
-
y: 32,
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
comp: 11,
|
|
88
|
-
unit: '%',
|
|
89
|
-
x: new Date(1692806400000),
|
|
90
|
-
y: 2,
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
comp: 49,
|
|
94
|
-
unit: '%',
|
|
95
|
-
x: new Date(1692810000000),
|
|
96
|
-
y: 38,
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
comp: 25,
|
|
100
|
-
unit: '%',
|
|
101
|
-
x: new Date(1692813600000),
|
|
102
|
-
y: 46,
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
comp: -34,
|
|
106
|
-
unit: '%',
|
|
107
|
-
x: new Date(1692817200000),
|
|
108
|
-
y: 42,
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
comp: -3,
|
|
112
|
-
unit: '%',
|
|
113
|
-
x: new Date(1692820800000),
|
|
114
|
-
y: 33,
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
comp: 67,
|
|
118
|
-
unit: '%',
|
|
119
|
-
x: new Date(1692824400000),
|
|
120
|
-
y: 78,
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
comp: -85,
|
|
124
|
-
unit: '%',
|
|
125
|
-
x: new Date(1692828000000),
|
|
126
|
-
y: 24,
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
comp: 66,
|
|
130
|
-
unit: '%',
|
|
131
|
-
x: new Date(1692831600000),
|
|
132
|
-
y: 43,
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
comp: 31,
|
|
136
|
-
unit: '%',
|
|
137
|
-
x: new Date(1692835200000),
|
|
138
|
-
y: 31,
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
comp: -43,
|
|
142
|
-
unit: '%',
|
|
143
|
-
x: new Date(1692838800000),
|
|
144
|
-
y: 30,
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
comp: -77,
|
|
148
|
-
unit: '%',
|
|
149
|
-
x: new Date(1692842400000),
|
|
150
|
-
y: 70,
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
comp: -65,
|
|
154
|
-
unit: '%',
|
|
155
|
-
x: new Date(1692846000000),
|
|
156
|
-
y: 61,
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
comp: 76,
|
|
160
|
-
unit: '%',
|
|
161
|
-
x: new Date(1692849600000),
|
|
162
|
-
y: 91,
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
comp: 5,
|
|
166
|
-
unit: '%',
|
|
167
|
-
x: new Date(1692853200000),
|
|
168
|
-
y: 34,
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
comp: 60,
|
|
172
|
-
unit: '%',
|
|
173
|
-
x: new Date(1692856800000),
|
|
174
|
-
y: 89,
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
comp: 9,
|
|
178
|
-
unit: '%',
|
|
179
|
-
x: new Date(1692860400000),
|
|
180
|
-
y: 26,
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
comp: 65,
|
|
184
|
-
unit: '%',
|
|
185
|
-
x: new Date(1692864000000),
|
|
186
|
-
y: 8,
|
|
187
|
-
},
|
|
188
|
-
{
|
|
189
|
-
comp: -75,
|
|
190
|
-
unit: '%',
|
|
191
|
-
x: new Date(1692867600000),
|
|
192
|
-
y: 53,
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
comp: -52,
|
|
196
|
-
unit: '%',
|
|
197
|
-
x: new Date(1692871200000),
|
|
198
|
-
y: 80,
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
comp: -42,
|
|
202
|
-
unit: '%',
|
|
203
|
-
x: new Date(1692874800000),
|
|
204
|
-
y: 23,
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
comp: 63,
|
|
208
|
-
unit: '%',
|
|
209
|
-
x: new Date(1692878400000),
|
|
210
|
-
y: 83,
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
comp: 79,
|
|
214
|
-
unit: '%',
|
|
215
|
-
x: new Date(1692882000000),
|
|
216
|
-
y: 37,
|
|
217
|
-
},
|
|
218
|
-
],
|
|
219
|
-
id: 'fibre',
|
|
220
|
-
},
|
|
221
|
-
{
|
|
222
|
-
data: [
|
|
223
|
-
{
|
|
224
|
-
comp: 99,
|
|
225
|
-
unit: '%',
|
|
226
|
-
x: new Date(firstDate),
|
|
227
|
-
y: 65,
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
comp: 15,
|
|
231
|
-
unit: '%',
|
|
232
|
-
x: new Date(1692802800000),
|
|
233
|
-
y: 54,
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
comp: 8,
|
|
237
|
-
unit: '%',
|
|
238
|
-
x: new Date(1692806400000),
|
|
239
|
-
y: 31,
|
|
240
|
-
},
|
|
241
|
-
{
|
|
242
|
-
comp: -75,
|
|
243
|
-
unit: '%',
|
|
244
|
-
x: new Date(1692810000000),
|
|
245
|
-
y: 24,
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
comp: 58,
|
|
249
|
-
unit: '%',
|
|
250
|
-
x: new Date(1692813600000),
|
|
251
|
-
y: 94,
|
|
252
|
-
},
|
|
253
|
-
{
|
|
254
|
-
comp: -50,
|
|
255
|
-
unit: '%',
|
|
256
|
-
x: new Date(1692817200000),
|
|
257
|
-
y: 33,
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
comp: 27,
|
|
261
|
-
unit: '%',
|
|
262
|
-
x: new Date(1692820800000),
|
|
263
|
-
y: 35,
|
|
264
|
-
},
|
|
265
|
-
{
|
|
266
|
-
comp: -46,
|
|
267
|
-
unit: '%',
|
|
268
|
-
x: new Date(1692824400000),
|
|
269
|
-
y: 94,
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
comp: 30,
|
|
273
|
-
unit: '%',
|
|
274
|
-
x: new Date(1692828000000),
|
|
275
|
-
y: 95,
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
comp: 63,
|
|
279
|
-
unit: '%',
|
|
280
|
-
x: new Date(1692831600000),
|
|
281
|
-
y: 91,
|
|
282
|
-
},
|
|
283
|
-
{
|
|
284
|
-
comp: -89,
|
|
285
|
-
unit: '%',
|
|
286
|
-
x: new Date(1692835200000),
|
|
287
|
-
y: 95,
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
comp: 92,
|
|
291
|
-
unit: '%',
|
|
292
|
-
x: new Date(1692838800000),
|
|
293
|
-
y: 9,
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
comp: 30,
|
|
297
|
-
unit: '%',
|
|
298
|
-
x: new Date(1692842400000),
|
|
299
|
-
y: 86,
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
comp: 39,
|
|
303
|
-
unit: '%',
|
|
304
|
-
x: new Date(1692846000000),
|
|
305
|
-
y: 2,
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
comp: -44,
|
|
309
|
-
unit: '%',
|
|
310
|
-
x: new Date(1692849600000),
|
|
311
|
-
y: 22,
|
|
312
|
-
},
|
|
313
|
-
{
|
|
314
|
-
comp: -98,
|
|
315
|
-
unit: '%',
|
|
316
|
-
x: new Date(1692853200000),
|
|
317
|
-
y: 91,
|
|
318
|
-
},
|
|
319
|
-
{
|
|
320
|
-
comp: 32,
|
|
321
|
-
unit: '%',
|
|
322
|
-
x: new Date(1692856800000),
|
|
323
|
-
y: 93,
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
comp: -80,
|
|
327
|
-
unit: '%',
|
|
328
|
-
x: new Date(1692860400000),
|
|
329
|
-
y: 80,
|
|
330
|
-
},
|
|
331
|
-
{
|
|
332
|
-
comp: 63,
|
|
333
|
-
unit: '%',
|
|
334
|
-
x: new Date(1692864000000),
|
|
335
|
-
y: 85,
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
comp: 51,
|
|
339
|
-
unit: '%',
|
|
340
|
-
x: new Date(1692867600000),
|
|
341
|
-
y: 53,
|
|
342
|
-
},
|
|
343
|
-
{
|
|
344
|
-
comp: 37,
|
|
345
|
-
unit: '%',
|
|
346
|
-
x: new Date(1692871200000),
|
|
347
|
-
y: 92,
|
|
348
|
-
},
|
|
349
|
-
{
|
|
350
|
-
comp: 80,
|
|
351
|
-
unit: '%',
|
|
352
|
-
x: new Date(1692874800000),
|
|
353
|
-
y: 41,
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
comp: 43,
|
|
357
|
-
unit: '%',
|
|
358
|
-
x: new Date(1692878400000),
|
|
359
|
-
y: 86,
|
|
360
|
-
},
|
|
361
|
-
{
|
|
362
|
-
comp: 61,
|
|
363
|
-
unit: '%',
|
|
364
|
-
x: new Date(1692882000000),
|
|
365
|
-
y: 83,
|
|
366
|
-
},
|
|
367
|
-
],
|
|
368
|
-
id: 'calories',
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
data: [
|
|
372
|
-
{
|
|
373
|
-
comp: 70,
|
|
374
|
-
unit: '%',
|
|
375
|
-
x: new Date(firstDate),
|
|
376
|
-
y: 23,
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
comp: -59,
|
|
380
|
-
unit: '%',
|
|
381
|
-
x: new Date(1692802800000),
|
|
382
|
-
y: 24,
|
|
383
|
-
},
|
|
384
|
-
{
|
|
385
|
-
comp: 6,
|
|
386
|
-
unit: '%',
|
|
387
|
-
x: new Date(1692806400000),
|
|
388
|
-
y: 32,
|
|
389
|
-
},
|
|
390
|
-
{
|
|
391
|
-
comp: -73,
|
|
392
|
-
unit: '%',
|
|
393
|
-
x: new Date(1692810000000),
|
|
394
|
-
y: 76,
|
|
395
|
-
},
|
|
396
|
-
{
|
|
397
|
-
comp: -76,
|
|
398
|
-
unit: '%',
|
|
399
|
-
x: new Date(1692813600000),
|
|
400
|
-
y: 86,
|
|
401
|
-
},
|
|
402
|
-
{
|
|
403
|
-
comp: 4,
|
|
404
|
-
unit: '%',
|
|
405
|
-
x: new Date(1692817200000),
|
|
406
|
-
y: 37,
|
|
407
|
-
},
|
|
408
|
-
{
|
|
409
|
-
comp: 13,
|
|
410
|
-
unit: '%',
|
|
411
|
-
x: new Date(1692820800000),
|
|
412
|
-
y: 45,
|
|
413
|
-
},
|
|
414
|
-
{
|
|
415
|
-
comp: 27,
|
|
416
|
-
unit: '%',
|
|
417
|
-
x: new Date(1692824400000),
|
|
418
|
-
y: 39,
|
|
419
|
-
},
|
|
420
|
-
{
|
|
421
|
-
comp: -26,
|
|
422
|
-
unit: '%',
|
|
423
|
-
x: new Date(1692828000000),
|
|
424
|
-
y: 92,
|
|
425
|
-
},
|
|
426
|
-
{
|
|
427
|
-
comp: 56,
|
|
428
|
-
unit: '%',
|
|
429
|
-
x: new Date(1692831600000),
|
|
430
|
-
y: 94,
|
|
431
|
-
},
|
|
432
|
-
{
|
|
433
|
-
comp: 26,
|
|
434
|
-
unit: '%',
|
|
435
|
-
x: new Date(1692835200000),
|
|
436
|
-
y: 78,
|
|
437
|
-
},
|
|
438
|
-
{
|
|
439
|
-
comp: 84,
|
|
440
|
-
unit: '%',
|
|
441
|
-
x: new Date(1692838800000),
|
|
442
|
-
y: 37,
|
|
443
|
-
},
|
|
444
|
-
{
|
|
445
|
-
comp: 2,
|
|
446
|
-
unit: '%',
|
|
447
|
-
x: new Date(1692842400000),
|
|
448
|
-
y: 93,
|
|
449
|
-
},
|
|
450
|
-
{
|
|
451
|
-
comp: -49,
|
|
452
|
-
unit: '%',
|
|
453
|
-
x: new Date(1692846000000),
|
|
454
|
-
y: 5,
|
|
455
|
-
},
|
|
456
|
-
{
|
|
457
|
-
comp: -81,
|
|
458
|
-
unit: '%',
|
|
459
|
-
x: new Date(1692849600000),
|
|
460
|
-
y: 62,
|
|
461
|
-
},
|
|
462
|
-
{
|
|
463
|
-
comp: 37,
|
|
464
|
-
unit: '%',
|
|
465
|
-
x: new Date(1692853200000),
|
|
466
|
-
y: 16,
|
|
467
|
-
},
|
|
468
|
-
{
|
|
469
|
-
comp: -29,
|
|
470
|
-
unit: '%',
|
|
471
|
-
x: new Date(1692856800000),
|
|
472
|
-
y: 93,
|
|
473
|
-
},
|
|
474
|
-
{
|
|
475
|
-
comp: -43,
|
|
476
|
-
unit: '%',
|
|
477
|
-
x: new Date(1692860400000),
|
|
478
|
-
y: 88,
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
comp: -31,
|
|
482
|
-
unit: '%',
|
|
483
|
-
x: new Date(1692864000000),
|
|
484
|
-
y: 18,
|
|
485
|
-
},
|
|
486
|
-
{
|
|
487
|
-
comp: 60,
|
|
488
|
-
unit: '%',
|
|
489
|
-
x: new Date(1692867600000),
|
|
490
|
-
y: 42,
|
|
491
|
-
},
|
|
492
|
-
{
|
|
493
|
-
comp: -94,
|
|
494
|
-
unit: '%',
|
|
495
|
-
x: new Date(1692871200000),
|
|
496
|
-
y: 70,
|
|
497
|
-
},
|
|
498
|
-
{
|
|
499
|
-
comp: -23,
|
|
500
|
-
unit: '%',
|
|
501
|
-
x: new Date(1692874800000),
|
|
502
|
-
y: 12,
|
|
503
|
-
},
|
|
504
|
-
{
|
|
505
|
-
comp: 24,
|
|
506
|
-
unit: '%',
|
|
507
|
-
x: new Date(1692878400000),
|
|
508
|
-
y: 32,
|
|
509
|
-
},
|
|
510
|
-
{
|
|
511
|
-
comp: -69,
|
|
512
|
-
unit: '%',
|
|
513
|
-
x: new Date(1692882000000),
|
|
514
|
-
y: 11,
|
|
515
|
-
},
|
|
516
|
-
],
|
|
517
|
-
id: 'sugar',
|
|
518
|
-
},
|
|
519
|
-
],
|
|
520
|
-
m: [
|
|
521
|
-
{
|
|
522
|
-
data: [
|
|
523
|
-
{
|
|
524
|
-
comp: -9,
|
|
525
|
-
unit: '%',
|
|
526
|
-
x: new Date(1690318800000),
|
|
527
|
-
y: 59,
|
|
528
|
-
},
|
|
529
|
-
{
|
|
530
|
-
comp: -51,
|
|
531
|
-
unit: '%',
|
|
532
|
-
x: new Date(1690405200000),
|
|
533
|
-
y: 28,
|
|
534
|
-
},
|
|
535
|
-
{
|
|
536
|
-
comp: -5,
|
|
537
|
-
unit: '%',
|
|
538
|
-
x: new Date(1690491600000),
|
|
539
|
-
y: 47,
|
|
540
|
-
},
|
|
541
|
-
{
|
|
542
|
-
comp: -40,
|
|
543
|
-
unit: '%',
|
|
544
|
-
x: new Date(1690578000000),
|
|
545
|
-
y: 90,
|
|
546
|
-
},
|
|
547
|
-
{
|
|
548
|
-
comp: -3,
|
|
549
|
-
unit: '%',
|
|
550
|
-
x: new Date(1690664400000),
|
|
551
|
-
y: 84,
|
|
552
|
-
},
|
|
553
|
-
{
|
|
554
|
-
comp: 32,
|
|
555
|
-
unit: '%',
|
|
556
|
-
x: new Date(1690750800000),
|
|
557
|
-
y: 53,
|
|
558
|
-
},
|
|
559
|
-
{
|
|
560
|
-
comp: 57,
|
|
561
|
-
unit: '%',
|
|
562
|
-
x: new Date(1690837200000),
|
|
563
|
-
y: 47,
|
|
564
|
-
},
|
|
565
|
-
{
|
|
566
|
-
comp: 5,
|
|
567
|
-
unit: '%',
|
|
568
|
-
x: new Date(1690923600000),
|
|
569
|
-
y: 54,
|
|
570
|
-
},
|
|
571
|
-
{
|
|
572
|
-
comp: -12,
|
|
573
|
-
unit: '%',
|
|
574
|
-
x: new Date(1691010000000),
|
|
575
|
-
y: 40,
|
|
576
|
-
},
|
|
577
|
-
{
|
|
578
|
-
comp: 44,
|
|
579
|
-
unit: '%',
|
|
580
|
-
x: new Date(1691096400000),
|
|
581
|
-
y: 5,
|
|
582
|
-
},
|
|
583
|
-
{
|
|
584
|
-
comp: -100,
|
|
585
|
-
unit: '%',
|
|
586
|
-
x: new Date(1691182800000),
|
|
587
|
-
y: 32,
|
|
588
|
-
},
|
|
589
|
-
{
|
|
590
|
-
comp: -94,
|
|
591
|
-
unit: '%',
|
|
592
|
-
x: new Date(1691269200000),
|
|
593
|
-
y: 43,
|
|
594
|
-
},
|
|
595
|
-
{
|
|
596
|
-
comp: 12,
|
|
597
|
-
unit: '%',
|
|
598
|
-
x: new Date(1691355600000),
|
|
599
|
-
y: 70,
|
|
600
|
-
},
|
|
601
|
-
{
|
|
602
|
-
comp: -42,
|
|
603
|
-
unit: '%',
|
|
604
|
-
x: new Date(1691442000000),
|
|
605
|
-
y: 89,
|
|
606
|
-
},
|
|
607
|
-
{
|
|
608
|
-
comp: -7,
|
|
609
|
-
unit: '%',
|
|
610
|
-
x: new Date(1691528400000),
|
|
611
|
-
y: 39,
|
|
612
|
-
},
|
|
613
|
-
{
|
|
614
|
-
comp: -34,
|
|
615
|
-
unit: '%',
|
|
616
|
-
x: new Date(1691614800000),
|
|
617
|
-
y: 42,
|
|
618
|
-
},
|
|
619
|
-
{
|
|
620
|
-
comp: -70,
|
|
621
|
-
unit: '%',
|
|
622
|
-
x: new Date(1691701200000),
|
|
623
|
-
y: 69,
|
|
624
|
-
},
|
|
625
|
-
{
|
|
626
|
-
comp: -97,
|
|
627
|
-
unit: '%',
|
|
628
|
-
x: new Date(1691787600000),
|
|
629
|
-
y: 8,
|
|
630
|
-
},
|
|
631
|
-
{
|
|
632
|
-
comp: 96,
|
|
633
|
-
unit: '%',
|
|
634
|
-
x: new Date(1691874000000),
|
|
635
|
-
y: 78,
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
comp: -6,
|
|
639
|
-
unit: '%',
|
|
640
|
-
x: new Date(1691960400000),
|
|
641
|
-
y: 25,
|
|
642
|
-
},
|
|
643
|
-
{
|
|
644
|
-
comp: -86,
|
|
645
|
-
unit: '%',
|
|
646
|
-
x: new Date(1692046800000),
|
|
647
|
-
y: 63,
|
|
648
|
-
},
|
|
649
|
-
{
|
|
650
|
-
comp: 46,
|
|
651
|
-
unit: '%',
|
|
652
|
-
x: new Date(1692133200000),
|
|
653
|
-
y: 81,
|
|
654
|
-
},
|
|
655
|
-
{
|
|
656
|
-
comp: -7,
|
|
657
|
-
unit: '%',
|
|
658
|
-
x: new Date(1692219600000),
|
|
659
|
-
y: 50,
|
|
660
|
-
},
|
|
661
|
-
{
|
|
662
|
-
comp: 22,
|
|
663
|
-
unit: '%',
|
|
664
|
-
x: new Date(1692306000000),
|
|
665
|
-
y: 57,
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
comp: 14,
|
|
669
|
-
unit: '%',
|
|
670
|
-
x: new Date(1692392400000),
|
|
671
|
-
y: 61,
|
|
672
|
-
},
|
|
673
|
-
{
|
|
674
|
-
comp: -61,
|
|
675
|
-
unit: '%',
|
|
676
|
-
x: new Date(1692478800000),
|
|
677
|
-
y: 87,
|
|
678
|
-
},
|
|
679
|
-
{
|
|
680
|
-
comp: 81,
|
|
681
|
-
unit: '%',
|
|
682
|
-
x: new Date(1692565200000),
|
|
683
|
-
y: 11,
|
|
684
|
-
},
|
|
685
|
-
{
|
|
686
|
-
comp: -56,
|
|
687
|
-
unit: '%',
|
|
688
|
-
x: new Date(1692651600000),
|
|
689
|
-
y: 73,
|
|
690
|
-
},
|
|
691
|
-
{
|
|
692
|
-
comp: 74,
|
|
693
|
-
unit: '%',
|
|
694
|
-
x: new Date(1692738000000),
|
|
695
|
-
y: 47,
|
|
696
|
-
},
|
|
697
|
-
{
|
|
698
|
-
comp: 94,
|
|
699
|
-
unit: '%',
|
|
700
|
-
x: new Date(1692824400000),
|
|
701
|
-
y: 42,
|
|
702
|
-
},
|
|
703
|
-
],
|
|
704
|
-
id: 'fibre',
|
|
705
|
-
},
|
|
706
|
-
{
|
|
707
|
-
data: [
|
|
708
|
-
{
|
|
709
|
-
comp: 62,
|
|
710
|
-
unit: '%',
|
|
711
|
-
x: new Date(1690318800000),
|
|
712
|
-
y: 42,
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
comp: -29,
|
|
716
|
-
unit: '%',
|
|
717
|
-
x: new Date(1690405200000),
|
|
718
|
-
y: 67,
|
|
719
|
-
},
|
|
720
|
-
{
|
|
721
|
-
comp: -90,
|
|
722
|
-
unit: '%',
|
|
723
|
-
x: new Date(1690491600000),
|
|
724
|
-
y: 52,
|
|
725
|
-
},
|
|
726
|
-
{
|
|
727
|
-
comp: -53,
|
|
728
|
-
unit: '%',
|
|
729
|
-
x: new Date(1690578000000),
|
|
730
|
-
y: 48,
|
|
731
|
-
},
|
|
732
|
-
{
|
|
733
|
-
comp: -38,
|
|
734
|
-
unit: '%',
|
|
735
|
-
x: new Date(1690664400000),
|
|
736
|
-
y: 88,
|
|
737
|
-
},
|
|
738
|
-
{
|
|
739
|
-
comp: -70,
|
|
740
|
-
unit: '%',
|
|
741
|
-
x: new Date(1690750800000),
|
|
742
|
-
y: 94,
|
|
743
|
-
},
|
|
744
|
-
{
|
|
745
|
-
comp: -78,
|
|
746
|
-
unit: '%',
|
|
747
|
-
x: new Date(1690837200000),
|
|
748
|
-
y: 76,
|
|
749
|
-
},
|
|
750
|
-
{
|
|
751
|
-
comp: -40,
|
|
752
|
-
unit: '%',
|
|
753
|
-
x: new Date(1690923600000),
|
|
754
|
-
y: 77,
|
|
755
|
-
},
|
|
756
|
-
{
|
|
757
|
-
comp: -31,
|
|
758
|
-
unit: '%',
|
|
759
|
-
x: new Date(1691010000000),
|
|
760
|
-
y: 21,
|
|
761
|
-
},
|
|
762
|
-
{
|
|
763
|
-
comp: -36,
|
|
764
|
-
unit: '%',
|
|
765
|
-
x: new Date(1691096400000),
|
|
766
|
-
y: 21,
|
|
767
|
-
},
|
|
768
|
-
{
|
|
769
|
-
comp: -45,
|
|
770
|
-
unit: '%',
|
|
771
|
-
x: new Date(1691182800000),
|
|
772
|
-
y: 89,
|
|
773
|
-
},
|
|
774
|
-
{
|
|
775
|
-
comp: 13,
|
|
776
|
-
unit: '%',
|
|
777
|
-
x: new Date(1691269200000),
|
|
778
|
-
y: 88,
|
|
779
|
-
},
|
|
780
|
-
{
|
|
781
|
-
comp: -75,
|
|
782
|
-
unit: '%',
|
|
783
|
-
x: new Date(1691355600000),
|
|
784
|
-
y: 92,
|
|
785
|
-
},
|
|
786
|
-
{
|
|
787
|
-
comp: 28,
|
|
788
|
-
unit: '%',
|
|
789
|
-
x: new Date(1691442000000),
|
|
790
|
-
y: 91,
|
|
791
|
-
},
|
|
792
|
-
{
|
|
793
|
-
comp: 92,
|
|
794
|
-
unit: '%',
|
|
795
|
-
x: new Date(1691528400000),
|
|
796
|
-
y: 94,
|
|
797
|
-
},
|
|
798
|
-
{
|
|
799
|
-
comp: -41,
|
|
800
|
-
unit: '%',
|
|
801
|
-
x: new Date(1691614800000),
|
|
802
|
-
y: 47,
|
|
803
|
-
},
|
|
804
|
-
{
|
|
805
|
-
comp: 58,
|
|
806
|
-
unit: '%',
|
|
807
|
-
x: new Date(1691701200000),
|
|
808
|
-
y: 89,
|
|
809
|
-
},
|
|
810
|
-
{
|
|
811
|
-
comp: 42,
|
|
812
|
-
unit: '%',
|
|
813
|
-
x: new Date(1691787600000),
|
|
814
|
-
y: 63,
|
|
815
|
-
},
|
|
816
|
-
{
|
|
817
|
-
comp: 72,
|
|
818
|
-
unit: '%',
|
|
819
|
-
x: new Date(1691874000000),
|
|
820
|
-
y: 56,
|
|
821
|
-
},
|
|
822
|
-
{
|
|
823
|
-
comp: -82,
|
|
824
|
-
unit: '%',
|
|
825
|
-
x: new Date(1691960400000),
|
|
826
|
-
y: 83,
|
|
827
|
-
},
|
|
828
|
-
{
|
|
829
|
-
comp: -100,
|
|
830
|
-
unit: '%',
|
|
831
|
-
x: new Date(1692046800000),
|
|
832
|
-
y: 8,
|
|
833
|
-
},
|
|
834
|
-
{
|
|
835
|
-
comp: 40,
|
|
836
|
-
unit: '%',
|
|
837
|
-
x: new Date(1692133200000),
|
|
838
|
-
y: 51,
|
|
839
|
-
},
|
|
840
|
-
{
|
|
841
|
-
comp: 34,
|
|
842
|
-
unit: '%',
|
|
843
|
-
x: new Date(1692219600000),
|
|
844
|
-
y: 38,
|
|
845
|
-
},
|
|
846
|
-
{
|
|
847
|
-
comp: 55,
|
|
848
|
-
unit: '%',
|
|
849
|
-
x: new Date(1692306000000),
|
|
850
|
-
y: 36,
|
|
851
|
-
},
|
|
852
|
-
{
|
|
853
|
-
comp: -85,
|
|
854
|
-
unit: '%',
|
|
855
|
-
x: new Date(1692392400000),
|
|
856
|
-
y: 19,
|
|
857
|
-
},
|
|
858
|
-
{
|
|
859
|
-
comp: 35,
|
|
860
|
-
unit: '%',
|
|
861
|
-
x: new Date(1692478800000),
|
|
862
|
-
y: 46,
|
|
863
|
-
},
|
|
864
|
-
{
|
|
865
|
-
comp: 65,
|
|
866
|
-
unit: '%',
|
|
867
|
-
x: new Date(1692565200000),
|
|
868
|
-
y: 95,
|
|
869
|
-
},
|
|
870
|
-
{
|
|
871
|
-
comp: 81,
|
|
872
|
-
unit: '%',
|
|
873
|
-
x: new Date(1692651600000),
|
|
874
|
-
y: 67,
|
|
875
|
-
},
|
|
876
|
-
{
|
|
877
|
-
comp: 77,
|
|
878
|
-
unit: '%',
|
|
879
|
-
x: new Date(1692738000000),
|
|
880
|
-
y: 64,
|
|
881
|
-
},
|
|
882
|
-
{
|
|
883
|
-
comp: -79,
|
|
884
|
-
unit: '%',
|
|
885
|
-
x: new Date(1692824400000),
|
|
886
|
-
y: 72,
|
|
887
|
-
},
|
|
888
|
-
],
|
|
889
|
-
id: 'calories',
|
|
890
|
-
},
|
|
891
|
-
{
|
|
892
|
-
data: [
|
|
893
|
-
{
|
|
894
|
-
comp: -36,
|
|
895
|
-
unit: '%',
|
|
896
|
-
x: new Date(1690318800000),
|
|
897
|
-
y: 6,
|
|
898
|
-
},
|
|
899
|
-
{
|
|
900
|
-
comp: 90,
|
|
901
|
-
unit: '%',
|
|
902
|
-
x: new Date(1690405200000),
|
|
903
|
-
y: 42,
|
|
904
|
-
},
|
|
905
|
-
{
|
|
906
|
-
comp: -6,
|
|
907
|
-
unit: '%',
|
|
908
|
-
x: new Date(1690491600000),
|
|
909
|
-
y: 76,
|
|
910
|
-
},
|
|
911
|
-
{
|
|
912
|
-
comp: 64,
|
|
913
|
-
unit: '%',
|
|
914
|
-
x: new Date(1690578000000),
|
|
915
|
-
y: 78,
|
|
916
|
-
},
|
|
917
|
-
{
|
|
918
|
-
comp: 47,
|
|
919
|
-
unit: '%',
|
|
920
|
-
x: new Date(1690664400000),
|
|
921
|
-
y: 30,
|
|
922
|
-
},
|
|
923
|
-
{
|
|
924
|
-
comp: -62,
|
|
925
|
-
unit: '%',
|
|
926
|
-
x: new Date(1690750800000),
|
|
927
|
-
y: 95,
|
|
928
|
-
},
|
|
929
|
-
{
|
|
930
|
-
comp: -37,
|
|
931
|
-
unit: '%',
|
|
932
|
-
x: new Date(1690837200000),
|
|
933
|
-
y: 61,
|
|
934
|
-
},
|
|
935
|
-
{
|
|
936
|
-
comp: -36,
|
|
937
|
-
unit: '%',
|
|
938
|
-
x: new Date(1690923600000),
|
|
939
|
-
y: 31,
|
|
940
|
-
},
|
|
941
|
-
{
|
|
942
|
-
comp: 63,
|
|
943
|
-
unit: '%',
|
|
944
|
-
x: new Date(1691010000000),
|
|
945
|
-
y: 37,
|
|
946
|
-
},
|
|
947
|
-
{
|
|
948
|
-
comp: -61,
|
|
949
|
-
unit: '%',
|
|
950
|
-
x: new Date(1691096400000),
|
|
951
|
-
y: 17,
|
|
952
|
-
},
|
|
953
|
-
{
|
|
954
|
-
comp: 28,
|
|
955
|
-
unit: '%',
|
|
956
|
-
x: new Date(1691182800000),
|
|
957
|
-
y: 20,
|
|
958
|
-
},
|
|
959
|
-
{
|
|
960
|
-
comp: -94,
|
|
961
|
-
unit: '%',
|
|
962
|
-
x: new Date(1691269200000),
|
|
963
|
-
y: 91,
|
|
964
|
-
},
|
|
965
|
-
{
|
|
966
|
-
comp: -10,
|
|
967
|
-
unit: '%',
|
|
968
|
-
x: new Date(1691355600000),
|
|
969
|
-
y: 15,
|
|
970
|
-
},
|
|
971
|
-
{
|
|
972
|
-
comp: -55,
|
|
973
|
-
unit: '%',
|
|
974
|
-
x: new Date(1691442000000),
|
|
975
|
-
y: 82,
|
|
976
|
-
},
|
|
977
|
-
{
|
|
978
|
-
comp: -29,
|
|
979
|
-
unit: '%',
|
|
980
|
-
x: new Date(1691528400000),
|
|
981
|
-
y: 34,
|
|
982
|
-
},
|
|
983
|
-
{
|
|
984
|
-
comp: 80,
|
|
985
|
-
unit: '%',
|
|
986
|
-
x: new Date(1691614800000),
|
|
987
|
-
y: 83,
|
|
988
|
-
},
|
|
989
|
-
{
|
|
990
|
-
comp: -83,
|
|
991
|
-
unit: '%',
|
|
992
|
-
x: new Date(1691701200000),
|
|
993
|
-
y: 47,
|
|
994
|
-
},
|
|
995
|
-
{
|
|
996
|
-
comp: 0,
|
|
997
|
-
unit: '%',
|
|
998
|
-
x: new Date(1691787600000),
|
|
999
|
-
y: 52,
|
|
1000
|
-
},
|
|
1001
|
-
{
|
|
1002
|
-
comp: 2,
|
|
1003
|
-
unit: '%',
|
|
1004
|
-
x: new Date(1691874000000),
|
|
1005
|
-
y: 74,
|
|
1006
|
-
},
|
|
1007
|
-
{
|
|
1008
|
-
comp: -8,
|
|
1009
|
-
unit: '%',
|
|
1010
|
-
x: new Date(1691960400000),
|
|
1011
|
-
y: 27,
|
|
1012
|
-
},
|
|
1013
|
-
{
|
|
1014
|
-
comp: 41,
|
|
1015
|
-
unit: '%',
|
|
1016
|
-
x: new Date(1692046800000),
|
|
1017
|
-
y: 50,
|
|
1018
|
-
},
|
|
1019
|
-
{
|
|
1020
|
-
comp: -50,
|
|
1021
|
-
unit: '%',
|
|
1022
|
-
x: new Date(1692133200000),
|
|
1023
|
-
y: 21,
|
|
1024
|
-
},
|
|
1025
|
-
{
|
|
1026
|
-
comp: 29,
|
|
1027
|
-
unit: '%',
|
|
1028
|
-
x: new Date(1692219600000),
|
|
1029
|
-
y: 55,
|
|
1030
|
-
},
|
|
1031
|
-
{
|
|
1032
|
-
comp: 17,
|
|
1033
|
-
unit: '%',
|
|
1034
|
-
x: new Date(1692306000000),
|
|
1035
|
-
y: 89,
|
|
1036
|
-
},
|
|
1037
|
-
{
|
|
1038
|
-
comp: 48,
|
|
1039
|
-
unit: '%',
|
|
1040
|
-
x: new Date(1692392400000),
|
|
1041
|
-
y: 79,
|
|
1042
|
-
},
|
|
1043
|
-
{
|
|
1044
|
-
comp: -43,
|
|
1045
|
-
unit: '%',
|
|
1046
|
-
x: new Date(1692478800000),
|
|
1047
|
-
y: 2,
|
|
1048
|
-
},
|
|
1049
|
-
{
|
|
1050
|
-
comp: 38,
|
|
1051
|
-
unit: '%',
|
|
1052
|
-
x: new Date(1692565200000),
|
|
1053
|
-
y: 65,
|
|
1054
|
-
},
|
|
1055
|
-
{
|
|
1056
|
-
comp: -77,
|
|
1057
|
-
unit: '%',
|
|
1058
|
-
x: new Date(1692651600000),
|
|
1059
|
-
y: 85,
|
|
1060
|
-
},
|
|
1061
|
-
{
|
|
1062
|
-
comp: -55,
|
|
1063
|
-
unit: '%',
|
|
1064
|
-
x: new Date(1692738000000),
|
|
1065
|
-
y: 24,
|
|
1066
|
-
},
|
|
1067
|
-
{
|
|
1068
|
-
comp: -31,
|
|
1069
|
-
unit: '%',
|
|
1070
|
-
x: new Date(1692824400000),
|
|
1071
|
-
y: 45,
|
|
1072
|
-
},
|
|
1073
|
-
],
|
|
1074
|
-
id: 'sugar',
|
|
1075
|
-
},
|
|
1076
|
-
],
|
|
1077
|
-
w: [
|
|
1078
|
-
{
|
|
1079
|
-
data: [
|
|
1080
|
-
{
|
|
1081
|
-
comp: 33,
|
|
1082
|
-
unit: '%',
|
|
1083
|
-
x: new Date(1692306000000),
|
|
1084
|
-
y: 78,
|
|
1085
|
-
},
|
|
1086
|
-
{
|
|
1087
|
-
comp: -33,
|
|
1088
|
-
unit: '%',
|
|
1089
|
-
x: new Date(1692392400000),
|
|
1090
|
-
y: 87,
|
|
1091
|
-
},
|
|
1092
|
-
{
|
|
1093
|
-
comp: -47,
|
|
1094
|
-
unit: '%',
|
|
1095
|
-
x: new Date(1692478800000),
|
|
1096
|
-
y: 27,
|
|
1097
|
-
},
|
|
1098
|
-
{
|
|
1099
|
-
comp: -20,
|
|
1100
|
-
unit: '%',
|
|
1101
|
-
x: new Date(1692565200000),
|
|
1102
|
-
y: 83,
|
|
1103
|
-
},
|
|
1104
|
-
{
|
|
1105
|
-
comp: -17,
|
|
1106
|
-
unit: '%',
|
|
1107
|
-
x: new Date(1692651600000),
|
|
1108
|
-
y: 87,
|
|
1109
|
-
},
|
|
1110
|
-
{
|
|
1111
|
-
comp: 97,
|
|
1112
|
-
unit: '%',
|
|
1113
|
-
x: new Date(1692738000000),
|
|
1114
|
-
y: 42,
|
|
1115
|
-
},
|
|
1116
|
-
{
|
|
1117
|
-
comp: -89,
|
|
1118
|
-
unit: '%',
|
|
1119
|
-
x: new Date(1692824400000),
|
|
1120
|
-
y: 54,
|
|
1121
|
-
},
|
|
1122
|
-
],
|
|
1123
|
-
id: 'fibre',
|
|
1124
|
-
},
|
|
1125
|
-
{
|
|
1126
|
-
data: [
|
|
1127
|
-
{
|
|
1128
|
-
comp: 65,
|
|
1129
|
-
unit: '%',
|
|
1130
|
-
x: new Date(1692306000000),
|
|
1131
|
-
y: 71,
|
|
1132
|
-
},
|
|
1133
|
-
{
|
|
1134
|
-
comp: -16,
|
|
1135
|
-
unit: '%',
|
|
1136
|
-
x: new Date(1692392400000),
|
|
1137
|
-
y: 74,
|
|
1138
|
-
},
|
|
1139
|
-
{
|
|
1140
|
-
comp: 31,
|
|
1141
|
-
unit: '%',
|
|
1142
|
-
x: new Date(1692478800000),
|
|
1143
|
-
y: 43,
|
|
1144
|
-
},
|
|
1145
|
-
{
|
|
1146
|
-
comp: 45,
|
|
1147
|
-
unit: '%',
|
|
1148
|
-
x: new Date(1692565200000),
|
|
1149
|
-
y: 71,
|
|
1150
|
-
},
|
|
1151
|
-
{
|
|
1152
|
-
comp: 17,
|
|
1153
|
-
unit: '%',
|
|
1154
|
-
x: new Date(1692651600000),
|
|
1155
|
-
y: 85,
|
|
1156
|
-
},
|
|
1157
|
-
{
|
|
1158
|
-
comp: -99,
|
|
1159
|
-
unit: '%',
|
|
1160
|
-
x: new Date(1692738000000),
|
|
1161
|
-
y: 13,
|
|
1162
|
-
},
|
|
1163
|
-
{
|
|
1164
|
-
comp: -6,
|
|
1165
|
-
unit: '%',
|
|
1166
|
-
x: new Date(1692824400000),
|
|
1167
|
-
y: 26,
|
|
1168
|
-
},
|
|
1169
|
-
],
|
|
1170
|
-
id: 'calories',
|
|
1171
|
-
},
|
|
1172
|
-
{
|
|
1173
|
-
data: [
|
|
1174
|
-
{
|
|
1175
|
-
comp: -71,
|
|
1176
|
-
unit: '%',
|
|
1177
|
-
x: new Date(1692306000000),
|
|
1178
|
-
y: 1,
|
|
1179
|
-
},
|
|
1180
|
-
{
|
|
1181
|
-
comp: 91,
|
|
1182
|
-
unit: '%',
|
|
1183
|
-
x: new Date(1692392400000),
|
|
1184
|
-
y: 7,
|
|
1185
|
-
},
|
|
1186
|
-
{
|
|
1187
|
-
comp: 3,
|
|
1188
|
-
unit: '%',
|
|
1189
|
-
x: new Date(1692478800000),
|
|
1190
|
-
y: 24,
|
|
1191
|
-
},
|
|
1192
|
-
{
|
|
1193
|
-
comp: 92,
|
|
1194
|
-
unit: '%',
|
|
1195
|
-
x: new Date(1692565200000),
|
|
1196
|
-
y: 31,
|
|
1197
|
-
},
|
|
1198
|
-
{
|
|
1199
|
-
comp: 55,
|
|
1200
|
-
unit: '%',
|
|
1201
|
-
x: new Date(1692651600000),
|
|
1202
|
-
y: 36,
|
|
1203
|
-
},
|
|
1204
|
-
{
|
|
1205
|
-
comp: -21,
|
|
1206
|
-
unit: '%',
|
|
1207
|
-
x: new Date(1692738000000),
|
|
1208
|
-
y: 89,
|
|
1209
|
-
},
|
|
1210
|
-
{
|
|
1211
|
-
comp: -24,
|
|
1212
|
-
unit: '%',
|
|
1213
|
-
x: new Date(1692824400000),
|
|
1214
|
-
y: 27,
|
|
1215
|
-
},
|
|
1216
|
-
],
|
|
1217
|
-
id: 'sugar',
|
|
1218
|
-
},
|
|
1219
|
-
],
|
|
1220
|
-
});
|
|
1221
|
-
|
|
1222
|
-
const getMockGraphData = (timePeriodId: 'd' | 'm' | 'w') => {
|
|
1223
|
-
const firstDate = FIRST_DATE + Math.floor(Math.random() * 3600);
|
|
1224
|
-
const mockGraphData = createMockGraphData(firstDate);
|
|
1225
|
-
return [...mockGraphData[timePeriodId]];
|
|
1226
|
-
};
|
|
1227
|
-
|
|
1228
|
-
export const mockStaticApi = {
|
|
1229
|
-
getData(timePeriodId: 'd' | 'm' | 'w') {
|
|
1230
|
-
const res = getMockGraphData(timePeriodId);
|
|
1231
|
-
if (!res) {
|
|
1232
|
-
return Promise.resolve([]);
|
|
1233
|
-
}
|
|
1234
|
-
|
|
1235
|
-
return Promise.resolve(res);
|
|
1236
|
-
},
|
|
1237
|
-
getOptions() {
|
|
1238
|
-
return Promise.resolve<OptionType[]>([
|
|
1239
|
-
{ value: 'd', label: 'Daily', precision: 'hour' },
|
|
1240
|
-
{ value: 'w', label: 'Weekly', precision: 'week' },
|
|
1241
|
-
{ value: 'm', label: 'Monthly', precision: 'day' },
|
|
1242
|
-
]);
|
|
1243
|
-
},
|
|
1244
|
-
};
|
|
1245
|
-
|
|
1246
|
-
export default mockDataLoad;
|
|
1
|
+
import { OptionType } from './types';
|
|
2
|
+
|
|
3
|
+
const ONE_DAY_MS = 86400000;
|
|
4
|
+
const ONE_HOUR_MS = 3600000;
|
|
5
|
+
|
|
6
|
+
const getRandomNum = (min: number, max: number) =>
|
|
7
|
+
Math.floor(Math.random() * (max - min + 1)) + min;
|
|
8
|
+
|
|
9
|
+
const generateRandomDataRange = (n = 7, period = ONE_DAY_MS) => {
|
|
10
|
+
const data: Array<{ x: Date; y: number; comp: number; unit?: string }> = [];
|
|
11
|
+
const now = Date.now();
|
|
12
|
+
|
|
13
|
+
for (let i = 0; i < n; ++i) {
|
|
14
|
+
data.push({
|
|
15
|
+
x: new Date(now - period * (n - i - 1)),
|
|
16
|
+
y: getRandomNum(0, 95),
|
|
17
|
+
comp: getRandomNum(-100, 100),
|
|
18
|
+
unit: '%',
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return data;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
const randomGeneratorArgsMapping = {
|
|
26
|
+
d: [24, ONE_HOUR_MS], // Daily
|
|
27
|
+
w: [7, ONE_DAY_MS], // Weekly
|
|
28
|
+
m: [30, ONE_DAY_MS], // Monthly
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
const mockDataLoad = {
|
|
32
|
+
getData(timePeriodId: string) {
|
|
33
|
+
const args =
|
|
34
|
+
randomGeneratorArgsMapping[
|
|
35
|
+
timePeriodId as keyof typeof randomGeneratorArgsMapping
|
|
36
|
+
];
|
|
37
|
+
|
|
38
|
+
if (!args) {
|
|
39
|
+
return Promise.resolve([]);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
const res = [
|
|
43
|
+
{
|
|
44
|
+
id: 'fibre',
|
|
45
|
+
data: generateRandomDataRange(...args),
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
id: 'calories',
|
|
49
|
+
data: generateRandomDataRange(...args),
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
id: 'sugar',
|
|
53
|
+
data: generateRandomDataRange(...args),
|
|
54
|
+
},
|
|
55
|
+
];
|
|
56
|
+
|
|
57
|
+
return Promise.resolve(res);
|
|
58
|
+
},
|
|
59
|
+
getOptions() {
|
|
60
|
+
return Promise.resolve<OptionType[]>([
|
|
61
|
+
{ value: 'd', label: 'Daily', precision: 'hour' },
|
|
62
|
+
{ value: 'w', label: 'Weekly', precision: 'week' },
|
|
63
|
+
{ value: 'm', label: 'Monthly', precision: 'day' },
|
|
64
|
+
]);
|
|
65
|
+
},
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
const FIRST_DATE = 1692799200000;
|
|
69
|
+
|
|
70
|
+
const createMockGraphData = (firstDate: number) => ({
|
|
71
|
+
d: [
|
|
72
|
+
{
|
|
73
|
+
data: [
|
|
74
|
+
{
|
|
75
|
+
comp: -40,
|
|
76
|
+
unit: '%',
|
|
77
|
+
x: new Date(firstDate),
|
|
78
|
+
y: 63,
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
comp: 66,
|
|
82
|
+
unit: '%',
|
|
83
|
+
x: new Date(1692802800000),
|
|
84
|
+
y: 32,
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
comp: 11,
|
|
88
|
+
unit: '%',
|
|
89
|
+
x: new Date(1692806400000),
|
|
90
|
+
y: 2,
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
comp: 49,
|
|
94
|
+
unit: '%',
|
|
95
|
+
x: new Date(1692810000000),
|
|
96
|
+
y: 38,
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
comp: 25,
|
|
100
|
+
unit: '%',
|
|
101
|
+
x: new Date(1692813600000),
|
|
102
|
+
y: 46,
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
comp: -34,
|
|
106
|
+
unit: '%',
|
|
107
|
+
x: new Date(1692817200000),
|
|
108
|
+
y: 42,
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
comp: -3,
|
|
112
|
+
unit: '%',
|
|
113
|
+
x: new Date(1692820800000),
|
|
114
|
+
y: 33,
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
comp: 67,
|
|
118
|
+
unit: '%',
|
|
119
|
+
x: new Date(1692824400000),
|
|
120
|
+
y: 78,
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
comp: -85,
|
|
124
|
+
unit: '%',
|
|
125
|
+
x: new Date(1692828000000),
|
|
126
|
+
y: 24,
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
comp: 66,
|
|
130
|
+
unit: '%',
|
|
131
|
+
x: new Date(1692831600000),
|
|
132
|
+
y: 43,
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
comp: 31,
|
|
136
|
+
unit: '%',
|
|
137
|
+
x: new Date(1692835200000),
|
|
138
|
+
y: 31,
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
comp: -43,
|
|
142
|
+
unit: '%',
|
|
143
|
+
x: new Date(1692838800000),
|
|
144
|
+
y: 30,
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
comp: -77,
|
|
148
|
+
unit: '%',
|
|
149
|
+
x: new Date(1692842400000),
|
|
150
|
+
y: 70,
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
comp: -65,
|
|
154
|
+
unit: '%',
|
|
155
|
+
x: new Date(1692846000000),
|
|
156
|
+
y: 61,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
comp: 76,
|
|
160
|
+
unit: '%',
|
|
161
|
+
x: new Date(1692849600000),
|
|
162
|
+
y: 91,
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
comp: 5,
|
|
166
|
+
unit: '%',
|
|
167
|
+
x: new Date(1692853200000),
|
|
168
|
+
y: 34,
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
comp: 60,
|
|
172
|
+
unit: '%',
|
|
173
|
+
x: new Date(1692856800000),
|
|
174
|
+
y: 89,
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
comp: 9,
|
|
178
|
+
unit: '%',
|
|
179
|
+
x: new Date(1692860400000),
|
|
180
|
+
y: 26,
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
comp: 65,
|
|
184
|
+
unit: '%',
|
|
185
|
+
x: new Date(1692864000000),
|
|
186
|
+
y: 8,
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
comp: -75,
|
|
190
|
+
unit: '%',
|
|
191
|
+
x: new Date(1692867600000),
|
|
192
|
+
y: 53,
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
comp: -52,
|
|
196
|
+
unit: '%',
|
|
197
|
+
x: new Date(1692871200000),
|
|
198
|
+
y: 80,
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
comp: -42,
|
|
202
|
+
unit: '%',
|
|
203
|
+
x: new Date(1692874800000),
|
|
204
|
+
y: 23,
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
comp: 63,
|
|
208
|
+
unit: '%',
|
|
209
|
+
x: new Date(1692878400000),
|
|
210
|
+
y: 83,
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
comp: 79,
|
|
214
|
+
unit: '%',
|
|
215
|
+
x: new Date(1692882000000),
|
|
216
|
+
y: 37,
|
|
217
|
+
},
|
|
218
|
+
],
|
|
219
|
+
id: 'fibre',
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
data: [
|
|
223
|
+
{
|
|
224
|
+
comp: 99,
|
|
225
|
+
unit: '%',
|
|
226
|
+
x: new Date(firstDate),
|
|
227
|
+
y: 65,
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
comp: 15,
|
|
231
|
+
unit: '%',
|
|
232
|
+
x: new Date(1692802800000),
|
|
233
|
+
y: 54,
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
comp: 8,
|
|
237
|
+
unit: '%',
|
|
238
|
+
x: new Date(1692806400000),
|
|
239
|
+
y: 31,
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
comp: -75,
|
|
243
|
+
unit: '%',
|
|
244
|
+
x: new Date(1692810000000),
|
|
245
|
+
y: 24,
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
comp: 58,
|
|
249
|
+
unit: '%',
|
|
250
|
+
x: new Date(1692813600000),
|
|
251
|
+
y: 94,
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
comp: -50,
|
|
255
|
+
unit: '%',
|
|
256
|
+
x: new Date(1692817200000),
|
|
257
|
+
y: 33,
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
comp: 27,
|
|
261
|
+
unit: '%',
|
|
262
|
+
x: new Date(1692820800000),
|
|
263
|
+
y: 35,
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
comp: -46,
|
|
267
|
+
unit: '%',
|
|
268
|
+
x: new Date(1692824400000),
|
|
269
|
+
y: 94,
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
comp: 30,
|
|
273
|
+
unit: '%',
|
|
274
|
+
x: new Date(1692828000000),
|
|
275
|
+
y: 95,
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
comp: 63,
|
|
279
|
+
unit: '%',
|
|
280
|
+
x: new Date(1692831600000),
|
|
281
|
+
y: 91,
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
comp: -89,
|
|
285
|
+
unit: '%',
|
|
286
|
+
x: new Date(1692835200000),
|
|
287
|
+
y: 95,
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
comp: 92,
|
|
291
|
+
unit: '%',
|
|
292
|
+
x: new Date(1692838800000),
|
|
293
|
+
y: 9,
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
comp: 30,
|
|
297
|
+
unit: '%',
|
|
298
|
+
x: new Date(1692842400000),
|
|
299
|
+
y: 86,
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
comp: 39,
|
|
303
|
+
unit: '%',
|
|
304
|
+
x: new Date(1692846000000),
|
|
305
|
+
y: 2,
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
comp: -44,
|
|
309
|
+
unit: '%',
|
|
310
|
+
x: new Date(1692849600000),
|
|
311
|
+
y: 22,
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
comp: -98,
|
|
315
|
+
unit: '%',
|
|
316
|
+
x: new Date(1692853200000),
|
|
317
|
+
y: 91,
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
comp: 32,
|
|
321
|
+
unit: '%',
|
|
322
|
+
x: new Date(1692856800000),
|
|
323
|
+
y: 93,
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
comp: -80,
|
|
327
|
+
unit: '%',
|
|
328
|
+
x: new Date(1692860400000),
|
|
329
|
+
y: 80,
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
comp: 63,
|
|
333
|
+
unit: '%',
|
|
334
|
+
x: new Date(1692864000000),
|
|
335
|
+
y: 85,
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
comp: 51,
|
|
339
|
+
unit: '%',
|
|
340
|
+
x: new Date(1692867600000),
|
|
341
|
+
y: 53,
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
comp: 37,
|
|
345
|
+
unit: '%',
|
|
346
|
+
x: new Date(1692871200000),
|
|
347
|
+
y: 92,
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
comp: 80,
|
|
351
|
+
unit: '%',
|
|
352
|
+
x: new Date(1692874800000),
|
|
353
|
+
y: 41,
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
comp: 43,
|
|
357
|
+
unit: '%',
|
|
358
|
+
x: new Date(1692878400000),
|
|
359
|
+
y: 86,
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
comp: 61,
|
|
363
|
+
unit: '%',
|
|
364
|
+
x: new Date(1692882000000),
|
|
365
|
+
y: 83,
|
|
366
|
+
},
|
|
367
|
+
],
|
|
368
|
+
id: 'calories',
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
data: [
|
|
372
|
+
{
|
|
373
|
+
comp: 70,
|
|
374
|
+
unit: '%',
|
|
375
|
+
x: new Date(firstDate),
|
|
376
|
+
y: 23,
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
comp: -59,
|
|
380
|
+
unit: '%',
|
|
381
|
+
x: new Date(1692802800000),
|
|
382
|
+
y: 24,
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
comp: 6,
|
|
386
|
+
unit: '%',
|
|
387
|
+
x: new Date(1692806400000),
|
|
388
|
+
y: 32,
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
comp: -73,
|
|
392
|
+
unit: '%',
|
|
393
|
+
x: new Date(1692810000000),
|
|
394
|
+
y: 76,
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
comp: -76,
|
|
398
|
+
unit: '%',
|
|
399
|
+
x: new Date(1692813600000),
|
|
400
|
+
y: 86,
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
comp: 4,
|
|
404
|
+
unit: '%',
|
|
405
|
+
x: new Date(1692817200000),
|
|
406
|
+
y: 37,
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
comp: 13,
|
|
410
|
+
unit: '%',
|
|
411
|
+
x: new Date(1692820800000),
|
|
412
|
+
y: 45,
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
comp: 27,
|
|
416
|
+
unit: '%',
|
|
417
|
+
x: new Date(1692824400000),
|
|
418
|
+
y: 39,
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
comp: -26,
|
|
422
|
+
unit: '%',
|
|
423
|
+
x: new Date(1692828000000),
|
|
424
|
+
y: 92,
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
comp: 56,
|
|
428
|
+
unit: '%',
|
|
429
|
+
x: new Date(1692831600000),
|
|
430
|
+
y: 94,
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
comp: 26,
|
|
434
|
+
unit: '%',
|
|
435
|
+
x: new Date(1692835200000),
|
|
436
|
+
y: 78,
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
comp: 84,
|
|
440
|
+
unit: '%',
|
|
441
|
+
x: new Date(1692838800000),
|
|
442
|
+
y: 37,
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
comp: 2,
|
|
446
|
+
unit: '%',
|
|
447
|
+
x: new Date(1692842400000),
|
|
448
|
+
y: 93,
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
comp: -49,
|
|
452
|
+
unit: '%',
|
|
453
|
+
x: new Date(1692846000000),
|
|
454
|
+
y: 5,
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
comp: -81,
|
|
458
|
+
unit: '%',
|
|
459
|
+
x: new Date(1692849600000),
|
|
460
|
+
y: 62,
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
comp: 37,
|
|
464
|
+
unit: '%',
|
|
465
|
+
x: new Date(1692853200000),
|
|
466
|
+
y: 16,
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
comp: -29,
|
|
470
|
+
unit: '%',
|
|
471
|
+
x: new Date(1692856800000),
|
|
472
|
+
y: 93,
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
comp: -43,
|
|
476
|
+
unit: '%',
|
|
477
|
+
x: new Date(1692860400000),
|
|
478
|
+
y: 88,
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
comp: -31,
|
|
482
|
+
unit: '%',
|
|
483
|
+
x: new Date(1692864000000),
|
|
484
|
+
y: 18,
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
comp: 60,
|
|
488
|
+
unit: '%',
|
|
489
|
+
x: new Date(1692867600000),
|
|
490
|
+
y: 42,
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
comp: -94,
|
|
494
|
+
unit: '%',
|
|
495
|
+
x: new Date(1692871200000),
|
|
496
|
+
y: 70,
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
comp: -23,
|
|
500
|
+
unit: '%',
|
|
501
|
+
x: new Date(1692874800000),
|
|
502
|
+
y: 12,
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
comp: 24,
|
|
506
|
+
unit: '%',
|
|
507
|
+
x: new Date(1692878400000),
|
|
508
|
+
y: 32,
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
comp: -69,
|
|
512
|
+
unit: '%',
|
|
513
|
+
x: new Date(1692882000000),
|
|
514
|
+
y: 11,
|
|
515
|
+
},
|
|
516
|
+
],
|
|
517
|
+
id: 'sugar',
|
|
518
|
+
},
|
|
519
|
+
],
|
|
520
|
+
m: [
|
|
521
|
+
{
|
|
522
|
+
data: [
|
|
523
|
+
{
|
|
524
|
+
comp: -9,
|
|
525
|
+
unit: '%',
|
|
526
|
+
x: new Date(1690318800000),
|
|
527
|
+
y: 59,
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
comp: -51,
|
|
531
|
+
unit: '%',
|
|
532
|
+
x: new Date(1690405200000),
|
|
533
|
+
y: 28,
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
comp: -5,
|
|
537
|
+
unit: '%',
|
|
538
|
+
x: new Date(1690491600000),
|
|
539
|
+
y: 47,
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
comp: -40,
|
|
543
|
+
unit: '%',
|
|
544
|
+
x: new Date(1690578000000),
|
|
545
|
+
y: 90,
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
comp: -3,
|
|
549
|
+
unit: '%',
|
|
550
|
+
x: new Date(1690664400000),
|
|
551
|
+
y: 84,
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
comp: 32,
|
|
555
|
+
unit: '%',
|
|
556
|
+
x: new Date(1690750800000),
|
|
557
|
+
y: 53,
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
comp: 57,
|
|
561
|
+
unit: '%',
|
|
562
|
+
x: new Date(1690837200000),
|
|
563
|
+
y: 47,
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
comp: 5,
|
|
567
|
+
unit: '%',
|
|
568
|
+
x: new Date(1690923600000),
|
|
569
|
+
y: 54,
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
comp: -12,
|
|
573
|
+
unit: '%',
|
|
574
|
+
x: new Date(1691010000000),
|
|
575
|
+
y: 40,
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
comp: 44,
|
|
579
|
+
unit: '%',
|
|
580
|
+
x: new Date(1691096400000),
|
|
581
|
+
y: 5,
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
comp: -100,
|
|
585
|
+
unit: '%',
|
|
586
|
+
x: new Date(1691182800000),
|
|
587
|
+
y: 32,
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
comp: -94,
|
|
591
|
+
unit: '%',
|
|
592
|
+
x: new Date(1691269200000),
|
|
593
|
+
y: 43,
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
comp: 12,
|
|
597
|
+
unit: '%',
|
|
598
|
+
x: new Date(1691355600000),
|
|
599
|
+
y: 70,
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
comp: -42,
|
|
603
|
+
unit: '%',
|
|
604
|
+
x: new Date(1691442000000),
|
|
605
|
+
y: 89,
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
comp: -7,
|
|
609
|
+
unit: '%',
|
|
610
|
+
x: new Date(1691528400000),
|
|
611
|
+
y: 39,
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
comp: -34,
|
|
615
|
+
unit: '%',
|
|
616
|
+
x: new Date(1691614800000),
|
|
617
|
+
y: 42,
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
comp: -70,
|
|
621
|
+
unit: '%',
|
|
622
|
+
x: new Date(1691701200000),
|
|
623
|
+
y: 69,
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
comp: -97,
|
|
627
|
+
unit: '%',
|
|
628
|
+
x: new Date(1691787600000),
|
|
629
|
+
y: 8,
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
comp: 96,
|
|
633
|
+
unit: '%',
|
|
634
|
+
x: new Date(1691874000000),
|
|
635
|
+
y: 78,
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
comp: -6,
|
|
639
|
+
unit: '%',
|
|
640
|
+
x: new Date(1691960400000),
|
|
641
|
+
y: 25,
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
comp: -86,
|
|
645
|
+
unit: '%',
|
|
646
|
+
x: new Date(1692046800000),
|
|
647
|
+
y: 63,
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
comp: 46,
|
|
651
|
+
unit: '%',
|
|
652
|
+
x: new Date(1692133200000),
|
|
653
|
+
y: 81,
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
comp: -7,
|
|
657
|
+
unit: '%',
|
|
658
|
+
x: new Date(1692219600000),
|
|
659
|
+
y: 50,
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
comp: 22,
|
|
663
|
+
unit: '%',
|
|
664
|
+
x: new Date(1692306000000),
|
|
665
|
+
y: 57,
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
comp: 14,
|
|
669
|
+
unit: '%',
|
|
670
|
+
x: new Date(1692392400000),
|
|
671
|
+
y: 61,
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
comp: -61,
|
|
675
|
+
unit: '%',
|
|
676
|
+
x: new Date(1692478800000),
|
|
677
|
+
y: 87,
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
comp: 81,
|
|
681
|
+
unit: '%',
|
|
682
|
+
x: new Date(1692565200000),
|
|
683
|
+
y: 11,
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
comp: -56,
|
|
687
|
+
unit: '%',
|
|
688
|
+
x: new Date(1692651600000),
|
|
689
|
+
y: 73,
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
comp: 74,
|
|
693
|
+
unit: '%',
|
|
694
|
+
x: new Date(1692738000000),
|
|
695
|
+
y: 47,
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
comp: 94,
|
|
699
|
+
unit: '%',
|
|
700
|
+
x: new Date(1692824400000),
|
|
701
|
+
y: 42,
|
|
702
|
+
},
|
|
703
|
+
],
|
|
704
|
+
id: 'fibre',
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
data: [
|
|
708
|
+
{
|
|
709
|
+
comp: 62,
|
|
710
|
+
unit: '%',
|
|
711
|
+
x: new Date(1690318800000),
|
|
712
|
+
y: 42,
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
comp: -29,
|
|
716
|
+
unit: '%',
|
|
717
|
+
x: new Date(1690405200000),
|
|
718
|
+
y: 67,
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
comp: -90,
|
|
722
|
+
unit: '%',
|
|
723
|
+
x: new Date(1690491600000),
|
|
724
|
+
y: 52,
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
comp: -53,
|
|
728
|
+
unit: '%',
|
|
729
|
+
x: new Date(1690578000000),
|
|
730
|
+
y: 48,
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
comp: -38,
|
|
734
|
+
unit: '%',
|
|
735
|
+
x: new Date(1690664400000),
|
|
736
|
+
y: 88,
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
comp: -70,
|
|
740
|
+
unit: '%',
|
|
741
|
+
x: new Date(1690750800000),
|
|
742
|
+
y: 94,
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
comp: -78,
|
|
746
|
+
unit: '%',
|
|
747
|
+
x: new Date(1690837200000),
|
|
748
|
+
y: 76,
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
comp: -40,
|
|
752
|
+
unit: '%',
|
|
753
|
+
x: new Date(1690923600000),
|
|
754
|
+
y: 77,
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
comp: -31,
|
|
758
|
+
unit: '%',
|
|
759
|
+
x: new Date(1691010000000),
|
|
760
|
+
y: 21,
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
comp: -36,
|
|
764
|
+
unit: '%',
|
|
765
|
+
x: new Date(1691096400000),
|
|
766
|
+
y: 21,
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
comp: -45,
|
|
770
|
+
unit: '%',
|
|
771
|
+
x: new Date(1691182800000),
|
|
772
|
+
y: 89,
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
comp: 13,
|
|
776
|
+
unit: '%',
|
|
777
|
+
x: new Date(1691269200000),
|
|
778
|
+
y: 88,
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
comp: -75,
|
|
782
|
+
unit: '%',
|
|
783
|
+
x: new Date(1691355600000),
|
|
784
|
+
y: 92,
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
comp: 28,
|
|
788
|
+
unit: '%',
|
|
789
|
+
x: new Date(1691442000000),
|
|
790
|
+
y: 91,
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
comp: 92,
|
|
794
|
+
unit: '%',
|
|
795
|
+
x: new Date(1691528400000),
|
|
796
|
+
y: 94,
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
comp: -41,
|
|
800
|
+
unit: '%',
|
|
801
|
+
x: new Date(1691614800000),
|
|
802
|
+
y: 47,
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
comp: 58,
|
|
806
|
+
unit: '%',
|
|
807
|
+
x: new Date(1691701200000),
|
|
808
|
+
y: 89,
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
comp: 42,
|
|
812
|
+
unit: '%',
|
|
813
|
+
x: new Date(1691787600000),
|
|
814
|
+
y: 63,
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
comp: 72,
|
|
818
|
+
unit: '%',
|
|
819
|
+
x: new Date(1691874000000),
|
|
820
|
+
y: 56,
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
comp: -82,
|
|
824
|
+
unit: '%',
|
|
825
|
+
x: new Date(1691960400000),
|
|
826
|
+
y: 83,
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
comp: -100,
|
|
830
|
+
unit: '%',
|
|
831
|
+
x: new Date(1692046800000),
|
|
832
|
+
y: 8,
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
comp: 40,
|
|
836
|
+
unit: '%',
|
|
837
|
+
x: new Date(1692133200000),
|
|
838
|
+
y: 51,
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
comp: 34,
|
|
842
|
+
unit: '%',
|
|
843
|
+
x: new Date(1692219600000),
|
|
844
|
+
y: 38,
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
comp: 55,
|
|
848
|
+
unit: '%',
|
|
849
|
+
x: new Date(1692306000000),
|
|
850
|
+
y: 36,
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
comp: -85,
|
|
854
|
+
unit: '%',
|
|
855
|
+
x: new Date(1692392400000),
|
|
856
|
+
y: 19,
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
comp: 35,
|
|
860
|
+
unit: '%',
|
|
861
|
+
x: new Date(1692478800000),
|
|
862
|
+
y: 46,
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
comp: 65,
|
|
866
|
+
unit: '%',
|
|
867
|
+
x: new Date(1692565200000),
|
|
868
|
+
y: 95,
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
comp: 81,
|
|
872
|
+
unit: '%',
|
|
873
|
+
x: new Date(1692651600000),
|
|
874
|
+
y: 67,
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
comp: 77,
|
|
878
|
+
unit: '%',
|
|
879
|
+
x: new Date(1692738000000),
|
|
880
|
+
y: 64,
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
comp: -79,
|
|
884
|
+
unit: '%',
|
|
885
|
+
x: new Date(1692824400000),
|
|
886
|
+
y: 72,
|
|
887
|
+
},
|
|
888
|
+
],
|
|
889
|
+
id: 'calories',
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
data: [
|
|
893
|
+
{
|
|
894
|
+
comp: -36,
|
|
895
|
+
unit: '%',
|
|
896
|
+
x: new Date(1690318800000),
|
|
897
|
+
y: 6,
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
comp: 90,
|
|
901
|
+
unit: '%',
|
|
902
|
+
x: new Date(1690405200000),
|
|
903
|
+
y: 42,
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
comp: -6,
|
|
907
|
+
unit: '%',
|
|
908
|
+
x: new Date(1690491600000),
|
|
909
|
+
y: 76,
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
comp: 64,
|
|
913
|
+
unit: '%',
|
|
914
|
+
x: new Date(1690578000000),
|
|
915
|
+
y: 78,
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
comp: 47,
|
|
919
|
+
unit: '%',
|
|
920
|
+
x: new Date(1690664400000),
|
|
921
|
+
y: 30,
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
comp: -62,
|
|
925
|
+
unit: '%',
|
|
926
|
+
x: new Date(1690750800000),
|
|
927
|
+
y: 95,
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
comp: -37,
|
|
931
|
+
unit: '%',
|
|
932
|
+
x: new Date(1690837200000),
|
|
933
|
+
y: 61,
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
comp: -36,
|
|
937
|
+
unit: '%',
|
|
938
|
+
x: new Date(1690923600000),
|
|
939
|
+
y: 31,
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
comp: 63,
|
|
943
|
+
unit: '%',
|
|
944
|
+
x: new Date(1691010000000),
|
|
945
|
+
y: 37,
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
comp: -61,
|
|
949
|
+
unit: '%',
|
|
950
|
+
x: new Date(1691096400000),
|
|
951
|
+
y: 17,
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
comp: 28,
|
|
955
|
+
unit: '%',
|
|
956
|
+
x: new Date(1691182800000),
|
|
957
|
+
y: 20,
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
comp: -94,
|
|
961
|
+
unit: '%',
|
|
962
|
+
x: new Date(1691269200000),
|
|
963
|
+
y: 91,
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
comp: -10,
|
|
967
|
+
unit: '%',
|
|
968
|
+
x: new Date(1691355600000),
|
|
969
|
+
y: 15,
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
comp: -55,
|
|
973
|
+
unit: '%',
|
|
974
|
+
x: new Date(1691442000000),
|
|
975
|
+
y: 82,
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
comp: -29,
|
|
979
|
+
unit: '%',
|
|
980
|
+
x: new Date(1691528400000),
|
|
981
|
+
y: 34,
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
comp: 80,
|
|
985
|
+
unit: '%',
|
|
986
|
+
x: new Date(1691614800000),
|
|
987
|
+
y: 83,
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
comp: -83,
|
|
991
|
+
unit: '%',
|
|
992
|
+
x: new Date(1691701200000),
|
|
993
|
+
y: 47,
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
comp: 0,
|
|
997
|
+
unit: '%',
|
|
998
|
+
x: new Date(1691787600000),
|
|
999
|
+
y: 52,
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
comp: 2,
|
|
1003
|
+
unit: '%',
|
|
1004
|
+
x: new Date(1691874000000),
|
|
1005
|
+
y: 74,
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
comp: -8,
|
|
1009
|
+
unit: '%',
|
|
1010
|
+
x: new Date(1691960400000),
|
|
1011
|
+
y: 27,
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
comp: 41,
|
|
1015
|
+
unit: '%',
|
|
1016
|
+
x: new Date(1692046800000),
|
|
1017
|
+
y: 50,
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
comp: -50,
|
|
1021
|
+
unit: '%',
|
|
1022
|
+
x: new Date(1692133200000),
|
|
1023
|
+
y: 21,
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
comp: 29,
|
|
1027
|
+
unit: '%',
|
|
1028
|
+
x: new Date(1692219600000),
|
|
1029
|
+
y: 55,
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
comp: 17,
|
|
1033
|
+
unit: '%',
|
|
1034
|
+
x: new Date(1692306000000),
|
|
1035
|
+
y: 89,
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
comp: 48,
|
|
1039
|
+
unit: '%',
|
|
1040
|
+
x: new Date(1692392400000),
|
|
1041
|
+
y: 79,
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
comp: -43,
|
|
1045
|
+
unit: '%',
|
|
1046
|
+
x: new Date(1692478800000),
|
|
1047
|
+
y: 2,
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
comp: 38,
|
|
1051
|
+
unit: '%',
|
|
1052
|
+
x: new Date(1692565200000),
|
|
1053
|
+
y: 65,
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
comp: -77,
|
|
1057
|
+
unit: '%',
|
|
1058
|
+
x: new Date(1692651600000),
|
|
1059
|
+
y: 85,
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
comp: -55,
|
|
1063
|
+
unit: '%',
|
|
1064
|
+
x: new Date(1692738000000),
|
|
1065
|
+
y: 24,
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
comp: -31,
|
|
1069
|
+
unit: '%',
|
|
1070
|
+
x: new Date(1692824400000),
|
|
1071
|
+
y: 45,
|
|
1072
|
+
},
|
|
1073
|
+
],
|
|
1074
|
+
id: 'sugar',
|
|
1075
|
+
},
|
|
1076
|
+
],
|
|
1077
|
+
w: [
|
|
1078
|
+
{
|
|
1079
|
+
data: [
|
|
1080
|
+
{
|
|
1081
|
+
comp: 33,
|
|
1082
|
+
unit: '%',
|
|
1083
|
+
x: new Date(1692306000000),
|
|
1084
|
+
y: 78,
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
comp: -33,
|
|
1088
|
+
unit: '%',
|
|
1089
|
+
x: new Date(1692392400000),
|
|
1090
|
+
y: 87,
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
comp: -47,
|
|
1094
|
+
unit: '%',
|
|
1095
|
+
x: new Date(1692478800000),
|
|
1096
|
+
y: 27,
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
comp: -20,
|
|
1100
|
+
unit: '%',
|
|
1101
|
+
x: new Date(1692565200000),
|
|
1102
|
+
y: 83,
|
|
1103
|
+
},
|
|
1104
|
+
{
|
|
1105
|
+
comp: -17,
|
|
1106
|
+
unit: '%',
|
|
1107
|
+
x: new Date(1692651600000),
|
|
1108
|
+
y: 87,
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
comp: 97,
|
|
1112
|
+
unit: '%',
|
|
1113
|
+
x: new Date(1692738000000),
|
|
1114
|
+
y: 42,
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
comp: -89,
|
|
1118
|
+
unit: '%',
|
|
1119
|
+
x: new Date(1692824400000),
|
|
1120
|
+
y: 54,
|
|
1121
|
+
},
|
|
1122
|
+
],
|
|
1123
|
+
id: 'fibre',
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
data: [
|
|
1127
|
+
{
|
|
1128
|
+
comp: 65,
|
|
1129
|
+
unit: '%',
|
|
1130
|
+
x: new Date(1692306000000),
|
|
1131
|
+
y: 71,
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
comp: -16,
|
|
1135
|
+
unit: '%',
|
|
1136
|
+
x: new Date(1692392400000),
|
|
1137
|
+
y: 74,
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
comp: 31,
|
|
1141
|
+
unit: '%',
|
|
1142
|
+
x: new Date(1692478800000),
|
|
1143
|
+
y: 43,
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
comp: 45,
|
|
1147
|
+
unit: '%',
|
|
1148
|
+
x: new Date(1692565200000),
|
|
1149
|
+
y: 71,
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
comp: 17,
|
|
1153
|
+
unit: '%',
|
|
1154
|
+
x: new Date(1692651600000),
|
|
1155
|
+
y: 85,
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
comp: -99,
|
|
1159
|
+
unit: '%',
|
|
1160
|
+
x: new Date(1692738000000),
|
|
1161
|
+
y: 13,
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
comp: -6,
|
|
1165
|
+
unit: '%',
|
|
1166
|
+
x: new Date(1692824400000),
|
|
1167
|
+
y: 26,
|
|
1168
|
+
},
|
|
1169
|
+
],
|
|
1170
|
+
id: 'calories',
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
data: [
|
|
1174
|
+
{
|
|
1175
|
+
comp: -71,
|
|
1176
|
+
unit: '%',
|
|
1177
|
+
x: new Date(1692306000000),
|
|
1178
|
+
y: 1,
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
comp: 91,
|
|
1182
|
+
unit: '%',
|
|
1183
|
+
x: new Date(1692392400000),
|
|
1184
|
+
y: 7,
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
comp: 3,
|
|
1188
|
+
unit: '%',
|
|
1189
|
+
x: new Date(1692478800000),
|
|
1190
|
+
y: 24,
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
comp: 92,
|
|
1194
|
+
unit: '%',
|
|
1195
|
+
x: new Date(1692565200000),
|
|
1196
|
+
y: 31,
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
comp: 55,
|
|
1200
|
+
unit: '%',
|
|
1201
|
+
x: new Date(1692651600000),
|
|
1202
|
+
y: 36,
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
comp: -21,
|
|
1206
|
+
unit: '%',
|
|
1207
|
+
x: new Date(1692738000000),
|
|
1208
|
+
y: 89,
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
comp: -24,
|
|
1212
|
+
unit: '%',
|
|
1213
|
+
x: new Date(1692824400000),
|
|
1214
|
+
y: 27,
|
|
1215
|
+
},
|
|
1216
|
+
],
|
|
1217
|
+
id: 'sugar',
|
|
1218
|
+
},
|
|
1219
|
+
],
|
|
1220
|
+
});
|
|
1221
|
+
|
|
1222
|
+
const getMockGraphData = (timePeriodId: 'd' | 'm' | 'w') => {
|
|
1223
|
+
const firstDate = FIRST_DATE + Math.floor(Math.random() * 3600);
|
|
1224
|
+
const mockGraphData = createMockGraphData(firstDate);
|
|
1225
|
+
return [...mockGraphData[timePeriodId]];
|
|
1226
|
+
};
|
|
1227
|
+
|
|
1228
|
+
export const mockStaticApi = {
|
|
1229
|
+
getData(timePeriodId: 'd' | 'm' | 'w') {
|
|
1230
|
+
const res = getMockGraphData(timePeriodId);
|
|
1231
|
+
if (!res) {
|
|
1232
|
+
return Promise.resolve([]);
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
return Promise.resolve(res);
|
|
1236
|
+
},
|
|
1237
|
+
getOptions() {
|
|
1238
|
+
return Promise.resolve<OptionType[]>([
|
|
1239
|
+
{ value: 'd', label: 'Daily', precision: 'hour' },
|
|
1240
|
+
{ value: 'w', label: 'Weekly', precision: 'week' },
|
|
1241
|
+
{ value: 'm', label: 'Monthly', precision: 'day' },
|
|
1242
|
+
]);
|
|
1243
|
+
},
|
|
1244
|
+
};
|
|
1245
|
+
|
|
1246
|
+
export default mockDataLoad;
|