mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-05 20:10:57 +00:00
These are all the files from the Tabler react repos, made to work with laravel and webpack.
This commit is contained in:
619
resources/js/interface/ChartsPage.react.js
vendored
Normal file
619
resources/js/interface/ChartsPage.react.js
vendored
Normal file
@@ -0,0 +1,619 @@
|
||||
// @flow
|
||||
|
||||
import * as React from "react";
|
||||
|
||||
import { Page, Grid, Card, colors } from "tabler-react";
|
||||
|
||||
import C3Chart from "react-c3js";
|
||||
|
||||
import SiteWrapper from "../SiteWrapper.react";
|
||||
function ChartsPage(): React.Node {
|
||||
const cards = [
|
||||
{
|
||||
title: "Employment Growth",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
["data1", 2, 8, 6, 7, 14, 11],
|
||||
["data2", 5, 15, 11, 15, 21, 25],
|
||||
["data3", 17, 18, 21, 20, 30, 29],
|
||||
],
|
||||
type: "line", // default type of chart
|
||||
colors: {
|
||||
data1: colors.orange,
|
||||
data2: colors.blue,
|
||||
data3: colors.green,
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "Development",
|
||||
data2: "Marketing",
|
||||
data3: "Sales",
|
||||
},
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
type: "category",
|
||||
// name of each category
|
||||
categories: ["2013", "2014", "2015", "2016", "2017", "2018"],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Monthly Average Temperature",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
[
|
||||
"data1",
|
||||
7.0,
|
||||
6.9,
|
||||
9.5,
|
||||
14.5,
|
||||
18.4,
|
||||
21.5,
|
||||
25.2,
|
||||
26.5,
|
||||
23.3,
|
||||
18.3,
|
||||
13.9,
|
||||
9.6,
|
||||
],
|
||||
[
|
||||
"data2",
|
||||
3.9,
|
||||
4.2,
|
||||
5.7,
|
||||
8.5,
|
||||
11.9,
|
||||
15.2,
|
||||
17.0,
|
||||
16.6,
|
||||
14.2,
|
||||
10.3,
|
||||
6.6,
|
||||
4.8,
|
||||
],
|
||||
],
|
||||
labels: true,
|
||||
type: "line", // default type of chart
|
||||
colors: {
|
||||
data1: colors.blue,
|
||||
data2: colors.green,
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "Tokyo",
|
||||
data2: "London",
|
||||
},
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
type: "category",
|
||||
// name of each category
|
||||
categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Lorem ipsum",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
["data1", 11, 8, 15, 18, 19, 17],
|
||||
["data2", 7, 7, 5, 7, 9, 12],
|
||||
],
|
||||
type: "area", // default type of chart
|
||||
colors: {
|
||||
data1: colors["blue"],
|
||||
data2: colors["pink"],
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "Maximum",
|
||||
data2: "Minimum",
|
||||
},
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
type: "category",
|
||||
// name of each category
|
||||
categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Lorem ipsum",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
["data1", 11, 8, 15, 18, 19, 17],
|
||||
["data2", 7, 7, 5, 7, 9, 12],
|
||||
],
|
||||
type: "area-spline", // default type of chart
|
||||
colors: {
|
||||
data1: colors["blue"],
|
||||
data2: colors["pink"],
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "Maximum",
|
||||
data2: "Minimum",
|
||||
},
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
type: "category",
|
||||
// name of each category
|
||||
categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Lorem ipsum",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
["data1", 11, 8, 15, 18, 19, 17],
|
||||
["data2", 7, 7, 5, 7, 9, 12],
|
||||
],
|
||||
type: "area-spline", // default type of chart
|
||||
groups: [["data1", "data2"]],
|
||||
colors: {
|
||||
data1: colors["blue"],
|
||||
data2: colors["pink"],
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "Maximum",
|
||||
data2: "Minimum",
|
||||
},
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
type: "category",
|
||||
// name of each category
|
||||
categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Wind speed during 2 days",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
[
|
||||
"data1",
|
||||
0.2,
|
||||
0.8,
|
||||
0.8,
|
||||
0.8,
|
||||
1,
|
||||
1.3,
|
||||
1.5,
|
||||
2.9,
|
||||
1.9,
|
||||
2.6,
|
||||
1.6,
|
||||
3,
|
||||
4,
|
||||
3.6,
|
||||
4.5,
|
||||
4.2,
|
||||
4.5,
|
||||
4.5,
|
||||
4,
|
||||
3.1,
|
||||
2.7,
|
||||
4,
|
||||
2.7,
|
||||
2.3,
|
||||
2.3,
|
||||
4.1,
|
||||
7.7,
|
||||
7.1,
|
||||
5.6,
|
||||
6.1,
|
||||
5.8,
|
||||
8.6,
|
||||
7.2,
|
||||
9,
|
||||
10.9,
|
||||
11.5,
|
||||
11.6,
|
||||
11.1,
|
||||
12,
|
||||
12.3,
|
||||
10.7,
|
||||
9.4,
|
||||
9.8,
|
||||
9.6,
|
||||
9.8,
|
||||
9.5,
|
||||
8.5,
|
||||
7.4,
|
||||
7.6,
|
||||
],
|
||||
[
|
||||
"data2",
|
||||
0,
|
||||
0,
|
||||
0.6,
|
||||
0.9,
|
||||
0.8,
|
||||
0.2,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0.1,
|
||||
0.6,
|
||||
0.7,
|
||||
0.8,
|
||||
0.6,
|
||||
0.2,
|
||||
0,
|
||||
0.1,
|
||||
0.3,
|
||||
0.3,
|
||||
0,
|
||||
0.1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0.2,
|
||||
0.1,
|
||||
0,
|
||||
0.3,
|
||||
0,
|
||||
0.1,
|
||||
0.2,
|
||||
0.1,
|
||||
0.3,
|
||||
0.3,
|
||||
0,
|
||||
3.1,
|
||||
3.1,
|
||||
2.5,
|
||||
1.5,
|
||||
1.9,
|
||||
2.1,
|
||||
1,
|
||||
2.3,
|
||||
1.9,
|
||||
1.2,
|
||||
0.7,
|
||||
1.3,
|
||||
0.4,
|
||||
0.3,
|
||||
],
|
||||
],
|
||||
labels: true,
|
||||
type: "spline", // default type of chart
|
||||
colors: {
|
||||
data1: colors["blue"],
|
||||
data2: colors["green"],
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "Hestavollane",
|
||||
data2: "Vik",
|
||||
},
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
type: "category",
|
||||
// name of each category
|
||||
categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Lorem ipsum",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
["data1", 11, 8, 15, 18, 19, 17],
|
||||
["data2", 7, 7, 5, 7, 9, 12],
|
||||
],
|
||||
type: "spline", // default type of chart
|
||||
colors: {
|
||||
data1: colors["blue"],
|
||||
data2: colors["pink"],
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "Maximum",
|
||||
data2: "Minimum",
|
||||
},
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
type: "category",
|
||||
// name of each category
|
||||
categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
|
||||
},
|
||||
rotated: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Lorem ipsum",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
["data1", 11, 8, 15, 18, 19, 17],
|
||||
["data2", 7, 7, 5, 7, 9, 12],
|
||||
],
|
||||
type: "step", // default type of chart
|
||||
colors: {
|
||||
data1: colors["blue"],
|
||||
data2: colors["pink"],
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "Maximum",
|
||||
data2: "Minimum",
|
||||
},
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
type: "category",
|
||||
// name of each category
|
||||
categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Lorem ipsum",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
["data1", 11, 8, 15, 18, 19, 17],
|
||||
["data2", 7, 7, 5, 7, 9, 12],
|
||||
],
|
||||
type: "area-step", // default type of chart
|
||||
colors: {
|
||||
data1: colors["blue"],
|
||||
data2: colors["pink"],
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "Maximum",
|
||||
data2: "Minimum",
|
||||
},
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
type: "category",
|
||||
// name of each category
|
||||
categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Lorem ipsum",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
["data1", 11, 8, 15, 18, 19, 17],
|
||||
["data2", 7, 7, 5, 7, 9, 12],
|
||||
],
|
||||
type: "bar", // default type of chart
|
||||
colors: {
|
||||
data1: colors["blue"],
|
||||
data2: colors["pink"],
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "Maximum",
|
||||
data2: "Minimum",
|
||||
},
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
type: "category",
|
||||
// name of each category
|
||||
categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Lorem ipsum",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
["data1", 11, 8, 15, 18, 19, 17],
|
||||
["data2", 7, 7, 5, 7, 9, 12],
|
||||
],
|
||||
type: "bar", // default type of chart
|
||||
colors: {
|
||||
data1: colors["blue"],
|
||||
data2: colors["pink"],
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "Maximum",
|
||||
data2: "Minimum",
|
||||
},
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
type: "category",
|
||||
// name of each category
|
||||
categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
|
||||
},
|
||||
rotated: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Lorem ipsum",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
["data1", 11, 8, 15, 18, 19, 17],
|
||||
["data2", 7, 7, 5, 7, 9, 12],
|
||||
],
|
||||
type: "bar", // default type of chart
|
||||
groups: [["data1", "data2"]],
|
||||
colors: {
|
||||
data1: colors["blue"],
|
||||
data2: colors["pink"],
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "Maximum",
|
||||
data2: "Minimum",
|
||||
},
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
type: "category",
|
||||
// name of each category
|
||||
categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Lorem ipsum",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
["data1", 63],
|
||||
["data2", 44],
|
||||
["data3", 12],
|
||||
["data4", 14],
|
||||
],
|
||||
type: "pie", // default type of chart
|
||||
colors: {
|
||||
data1: colors["blue-darker"],
|
||||
data2: colors["blue"],
|
||||
data3: colors["blue-light"],
|
||||
data4: colors["blue-lighter"],
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "A",
|
||||
data2: "B",
|
||||
data3: "C",
|
||||
data4: "D",
|
||||
},
|
||||
},
|
||||
axis: {},
|
||||
},
|
||||
{
|
||||
title: "Lorem ipsum",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
["data1", 63],
|
||||
["data2", 37],
|
||||
],
|
||||
type: "donut", // default type of chart
|
||||
colors: {
|
||||
data1: colors["green"],
|
||||
data2: colors["green-light"],
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "Maximum",
|
||||
data2: "Minimum",
|
||||
},
|
||||
},
|
||||
axis: {},
|
||||
},
|
||||
{
|
||||
title: "Lorem ipsum",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
["data1", 11, 8, 15, 18, 19, 17],
|
||||
["data2", 7, 7, 5, 7, 9, 12],
|
||||
],
|
||||
type: "scatter", // default type of chart
|
||||
colors: {
|
||||
data1: colors["blue"],
|
||||
data2: colors["pink"],
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "Maximum",
|
||||
data2: "Minimum",
|
||||
},
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
type: "category",
|
||||
// name of each category
|
||||
categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "Lorem ipsum",
|
||||
data: {
|
||||
columns: [
|
||||
// each columns data
|
||||
["data1", 30, 20, 50, 40, 60, 50],
|
||||
["data2", 200, 130, 90, 240, 130, 220],
|
||||
["data3", 300, 200, 160, 400, 250, 250],
|
||||
["data4", 200, 130, 90, 240, 130, 220],
|
||||
],
|
||||
type: "bar", // default type of chart
|
||||
types: {
|
||||
data2: "line",
|
||||
data3: "spline",
|
||||
},
|
||||
groups: [["data1", "data4"]],
|
||||
colors: {
|
||||
data1: colors["green"],
|
||||
data2: colors["pink"],
|
||||
data3: colors["green"],
|
||||
data4: colors["blue"],
|
||||
},
|
||||
names: {
|
||||
// name of each serie
|
||||
data1: "Development",
|
||||
data2: "Marketing",
|
||||
data3: "Sales",
|
||||
data4: "Sales",
|
||||
},
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
type: "category",
|
||||
// name of each category
|
||||
categories: ["2013", "2014", "2015", "2016", "2017", "2018"],
|
||||
},
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<SiteWrapper>
|
||||
<Page.Content>
|
||||
<Grid.Row>
|
||||
{cards.map((chart, i) => (
|
||||
<Grid.Col key={i} md={6} xl={4}>
|
||||
<Card title={chart.title}>
|
||||
<Card.Body>
|
||||
<C3Chart
|
||||
data={chart.data}
|
||||
axis={chart.axis}
|
||||
legend={{
|
||||
show: false, //hide legend
|
||||
}}
|
||||
padding={{
|
||||
bottom: 0,
|
||||
top: 0,
|
||||
}}
|
||||
/>
|
||||
</Card.Body>
|
||||
</Card>
|
||||
</Grid.Col>
|
||||
))}
|
||||
</Grid.Row>
|
||||
</Page.Content>
|
||||
</SiteWrapper>
|
||||
);
|
||||
}
|
||||
|
||||
export default ChartsPage;
|
Reference in New Issue
Block a user