Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
magicmeal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eric Jäkel
magicmeal
Commits
68d91529
Commit
68d91529
authored
6 months ago
by
ericj
Browse files
Options
Downloads
Patches
Plain Diff
add visualization component
parent
14a224fd
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/components/Visualization.tsx
+21
-0
21 additions, 0 deletions
src/components/Visualization.tsx
src/screens/InsightsScreen.tsx
+11
-15
11 additions, 15 deletions
src/screens/InsightsScreen.tsx
with
32 additions
and
15 deletions
src/components/Visualization.tsx
0 → 100644
+
21
−
0
View file @
68d91529
import
React
from
'
react
'
;
import
{
Typography
}
from
'
@mui/material
'
;
import
"
../style/style.scss
"
const
Visualization
:
React
.
FC
<
{
title
:
string
,
children
:
React
.
ReactNode
}
>
=
(
{
title
,
children
,
})
=>
{
return
(<>
<
div
className
=
"graphContainer"
>
<
Typography
align
=
{
"
center
"
}
sx
=
{
{
margin
:
2
}
}
variant
=
{
"
h5
"
}
>
{
title
}
</
Typography
>
{
children
}
</
div
>
</>);
};
export
default
Visualization
;
This diff is collapsed.
Click to expand it.
src/screens/InsightsScreen.tsx
+
11
−
15
View file @
68d91529
...
...
@@ -6,6 +6,7 @@ import {calculateInsights} from "../utils/userServices.ts";
import
{
StarFilled
}
from
"
@ant-design/icons
"
;
import
"
../style/style.scss
"
import
NoRecipes
from
"
../components/NoRecipes.tsx
"
;
import
Visualization
from
"
../components/Visualization.tsx
"
;
const
starColors
=
[
"
#ffad35
"
,
"
#bdbdbd
"
,
"
#bf876b
"
]
...
...
@@ -17,8 +18,7 @@ const InsightsScreen: React.FC = () => {
return
(
<
Container
sx
=
{
{
width
:
"
100%
"
,
display
:
"
flex
"
,
justifyContent
:
"
stretch
"
,
flexDirection
:
"
column
"
}
}
>
<
div
className
=
"graphContainer"
>
<
Typography
align
=
{
"
center
"
}
sx
=
{
{
margin
:
2
}
}
variant
=
{
"
h5
"
}
>
Your Favorite Meals
</
Typography
>
<
Visualization
title
=
{
"
Your Favorite Meals
"
}
>
{
insights
.
favoriteRecipes
.
map
((
recipe
,
i
)
=>
<
Container
key
=
{
i
}
sx
=
{
{
display
:
"
flex
"
,
flexDirection
:
"
column
"
,
alignItems
:
"
center
"
,
marginBottom
:
3
}
}
>
...
...
@@ -32,9 +32,8 @@ const InsightsScreen: React.FC = () => {
<
Typography
variant
=
{
"
body2
"
}
>
Views:
{
recipe
.
viewCount
}
</
Typography
>
</
Container
>
)
}
</
div
>
<
div
className
=
"graphContainer"
>
<
Typography
align
=
{
"
center
"
}
sx
=
{
{
margin
:
2
}
}
variant
=
{
"
h5
"
}
>
Ratio of Custom Recipes
</
Typography
>
</
Visualization
>
<
Visualization
title
=
{
"
Ratio of Custom Recipes
"
}
>
<
PieChart
series
=
{
[{
arcLabel
:
(
item
)
=>
`
${(
item
.
value
*
100
).
toFixed
(
0
)}
%`
,
...
...
@@ -47,9 +46,8 @@ const InsightsScreen: React.FC = () => {
margin
=
{
{
left
:
-
100
}
}
height
=
{
200
}
/>
</
div
>
<
div
className
=
"graphContainer"
>
<
Typography
align
=
{
"
center
"
}
sx
=
{
{
margin
:
2
}
}
variant
=
{
"
h5
"
}
>
Your Favorite Meal Categories
</
Typography
>
</
Visualization
>
<
Visualization
title
=
{
"
Your Favorite Meal Categories
"
}
>
<
BarChart
xAxis
=
{
[{
scaleType
:
'
band
'
,
...
...
@@ -63,9 +61,8 @@ const InsightsScreen: React.FC = () => {
}]
}
height
=
{
200
}
/>
</
div
>
<
div
className
=
"graphContainer"
>
<
Typography
align
=
{
"
center
"
}
sx
=
{
{
margin
:
2
}
}
variant
=
{
"
h5
"
}
>
Your Favorite Ingredients
</
Typography
>
</
Visualization
>
<
Visualization
title
=
{
"
Your Favorite Ingredients
"
}
>
<
BarChart
xAxis
=
{
[{
scaleType
:
'
band
'
,
...
...
@@ -79,9 +76,8 @@ const InsightsScreen: React.FC = () => {
}]
}
height
=
{
200
}
/>
</
div
>
<
div
className
=
"graphContainer"
>
<
Typography
align
=
{
"
center
"
}
sx
=
{
{
margin
:
2
}
}
variant
=
{
"
h5
"
}
>
Vegan / Vegetarian Meals
</
Typography
>
</
Visualization
>
<
Visualization
title
=
{
"
Vegan / Vegetarian Meals
"
}
>
<
Gauge
value
=
{
insights
.
veganVegetarianCount
}
valueMax
=
{
insights
.
recipeCount
}
...
...
@@ -97,7 +93,7 @@ const InsightsScreen: React.FC = () => {
text
=
{
`
${
insights
.
veganVegetarianCount
}
/
${
insights
.
recipeCount
}
`
}
height
=
{
200
}
/>
</
div
>
</
Visualization
>
</
Container
>
);
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment