cs-2022-class-profile/data/mocks.ts

94 lines
2.0 KiB
TypeScript
Raw Normal View History

2022-06-03 02:15:22 -04:00
/* Use this mock data to showcase your components in the playground,
2022-06-03 02:11:48 -04:00
* or add your own data that fits your component's props
*/
export const mockCategoricalData = [
{
category: "Roboto",
2022-06-03 02:11:48 -04:00
value: 88,
},
{
category: "Open Sans",
2022-06-03 02:11:48 -04:00
value: 16,
},
{
category: "Lato",
2022-06-03 02:11:48 -04:00
value: 14,
},
{
category: "Montserrat",
2022-06-03 02:11:48 -04:00
value: 73,
},
{
category: "Oswald",
2022-06-03 02:11:48 -04:00
value: 14,
},
{
category: "Source Sans Pro",
2022-06-03 02:11:48 -04:00
value: 8,
},
{
category: "Slabo 27px",
2022-06-03 02:11:48 -04:00
value: 41,
},
{
category: "Raleway",
2022-06-03 02:11:48 -04:00
value: 29,
},
];
2022-08-04 02:17:19 -04:00
export const moreMockCategoricalData = [
{ key: "Python", value: 29.53 },
{ key: "Java", value: 17.06 },
{ key: "JavaScript", value: 8.56 },
{ key: "C", value: 6.49 },
{ key: "Assembly", value: 6.31 },
{ key: "R", value: 5.83 },
{ key: "Objective C", value: 4.43 },
{ key: "Swift", value: 3.89 },
{ key: "PHP", value: 3.85 },
{ key: "Rust", value: 3.33 },
{ key: "Ruby", value: 3.25 },
{ key: "Matlab", value: 3.06 },
{ key: "TypeScript", value: 3.98 },
{ key: "Go", value: 3.85 },
{ key: "Haskell", value: 3.28 },
{ key: "VBA", value: 3.11 },
{ key: "Scala", value: 2.79 },
{ key: "Lua", value: 2.79 },
{ key: "Julia", value: 2.77 },
{ key: "Kotlin", value: 2.7 },
{ key: "Perl", value: 2.41 },
{ key: "Groovy", value: 2.4 },
{ key: "Abap", value: 2.24 },
{ key: "Cobol", value: 2.23 },
{ key: "Ada", value: 2.21 },
{ key: "Dart", value: 2.21 },
];
2022-08-09 18:38:28 -04:00
export const mockTimelineData = [
{
2022-08-17 22:45:06 -04:00
time: "Problem 1",
text: "Overflow-y scroll text not supported by svg",
2022-08-09 18:38:28 -04:00
},
{
2022-08-17 22:45:06 -04:00
time: "Problem 2",
text: "Hover effects don't seem to work with <foreignObject>",
2022-08-09 18:38:28 -04:00
},
{
2022-08-17 22:45:06 -04:00
time: "Problem 3",
text: "Need to add a max-height to these boxes",
2022-08-09 18:38:28 -04:00
},
{
2022-08-17 22:45:06 -04:00
time: "Problem 4",
text: "Styling",
2022-08-09 18:38:28 -04:00
},
{
time: "Winter 2020",
text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit,",
},
{
time: "Spring 2020",
2022-08-17 22:45:06 -04:00
text: "Lorem ipsum doldolor in repre",
2022-08-09 18:38:28 -04:00
},
];