Compare commits
2 Commits
7df322d1ab
...
024c6920af
Author | SHA1 | Date |
---|---|---|
willian-pessoa | 024c6920af | |
willian-pessoa | d827e72b7c |
|
@ -1,37 +1,24 @@
|
||||||
import { Box } from '@material-ui/core';
|
import { Box } from '@material-ui/core';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import FiberManualRecordIcon from '@material-ui/icons/FiberManualRecord';
|
import FiberManualRecordIcon from '@material-ui/icons/FiberManualRecord';
|
||||||
import { PieChart as RechartsPieChart, Pie, Sector, Cell, ResponsiveContainer } from 'recharts';
|
import { PieChart as RechartsPieChart, Pie, Cell, ResponsiveContainer, Tooltip } from 'recharts';
|
||||||
|
|
||||||
import Title from './Title';
|
import Title from './Title';
|
||||||
|
|
||||||
const dataExample = [
|
const generateDataExample = (amount) => {
|
||||||
{
|
const arr = []
|
||||||
"id": 3366,
|
for (let i = 1; i <= amount; i++) {
|
||||||
"name": "FINALIZADO",
|
arr.push({
|
||||||
"count": 5
|
"id": i,
|
||||||
},
|
"name": `Exemplo ${i}`,
|
||||||
{
|
"count": Math.floor(Math.random() * 10 + 2)
|
||||||
"id": 3369,
|
})
|
||||||
"name": "LEMBRETE",
|
}
|
||||||
"count": 1
|
|
||||||
},
|
return arr
|
||||||
{
|
}
|
||||||
"id": 3367,
|
|
||||||
"name": "EXEMPLO",
|
const dataExample = generateDataExample(20)
|
||||||
"count": 3
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 3364,
|
|
||||||
"name": "EXEMPLO 2",
|
|
||||||
"count": 3
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 3364,
|
|
||||||
"name": "EXEMPLO 3",
|
|
||||||
"count": 6
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
const COLORS = [
|
const COLORS = [
|
||||||
'#0088FE', // Azul escuro
|
'#0088FE', // Azul escuro
|
||||||
|
@ -44,12 +31,22 @@ const COLORS = [
|
||||||
'#C0FFC0', // Verde Claro
|
'#C0FFC0', // Verde Claro
|
||||||
'#C4E538', // Verde-amarelo vibrante
|
'#C4E538', // Verde-amarelo vibrante
|
||||||
'#A2A2A2', // Cinza claro
|
'#A2A2A2', // Cinza claro
|
||||||
];;
|
'#FFF700', // Amarelo Canário
|
||||||
|
'#FF69B4', // Rosa Flamingo
|
||||||
|
'#87CEEB', // Azul Celeste
|
||||||
|
'#228B22', // Verde Esmeralda
|
||||||
|
'#9B59B6', // Roxo Ametista
|
||||||
|
'#FF9933', // Laranja Tangerina
|
||||||
|
'#FF7F50', // Coral Vivo
|
||||||
|
'#00CED1', // Verde Água
|
||||||
|
'#000080', // Azul Marinho
|
||||||
|
'#FFDB58', // Amarelo Mostarda
|
||||||
|
];
|
||||||
|
|
||||||
const RADIAN = Math.PI / 180;
|
const RADIAN = Math.PI / 180;
|
||||||
|
|
||||||
const renderCustomizedLabel = ({ cx, cy, midAngle, innerRadius, outerRadius, count }) => {
|
const renderCustomizedLabel = ({ cx, cy, midAngle, innerRadius, outerRadius, count }) => {
|
||||||
const radius = innerRadius + (outerRadius - innerRadius) * 0.75;
|
const radius = innerRadius + (outerRadius - innerRadius) * 0.80;
|
||||||
const x = cx + radius * Math.cos(-midAngle * RADIAN);
|
const x = cx + radius * Math.cos(-midAngle * RADIAN);
|
||||||
const y = cy + radius * Math.sin(-midAngle * RADIAN);
|
const y = cy + radius * Math.sin(-midAngle * RADIAN);
|
||||||
|
|
||||||
|
@ -70,9 +67,36 @@ const renderCustomizedLabel = ({ cx, cy, midAngle, innerRadius, outerRadius, cou
|
||||||
*/
|
*/
|
||||||
const PieChart = ({ data = dataExample }) => {
|
const PieChart = ({ data = dataExample }) => {
|
||||||
return (
|
return (
|
||||||
<Box width="100%" height="100%" position="relative" display="flex">
|
<Box
|
||||||
<Box sx={{ position: "absolute" }}>
|
width="100%"
|
||||||
<Title>Tickets encerramento</Title>
|
height="100%"
|
||||||
|
position="relative"
|
||||||
|
display="flex"
|
||||||
|
sx={{ overflowY: "scroll" }}
|
||||||
|
>
|
||||||
|
<Box width="100%" height="100%" position="sticky" top="0" zIndex={1000}>
|
||||||
|
<Box sx={{ position: "absolute" }}>
|
||||||
|
<Title>Tickets encerramento</Title>
|
||||||
|
</Box>
|
||||||
|
<ResponsiveContainer width="100%" height="100%">
|
||||||
|
<RechartsPieChart width={400} height={400}>
|
||||||
|
<Pie
|
||||||
|
data={data}
|
||||||
|
cx="25%"
|
||||||
|
cy="60%"
|
||||||
|
labelLine={false}
|
||||||
|
label={renderCustomizedLabel}
|
||||||
|
outerRadius={100}
|
||||||
|
fill="#8884d8"
|
||||||
|
dataKey="count"
|
||||||
|
>
|
||||||
|
{data.map((entry, index) => (
|
||||||
|
<Cell key={`cell-${entry.id}`} fill={COLORS[index % COLORS.length]} />
|
||||||
|
))}
|
||||||
|
</Pie>
|
||||||
|
<Tooltip />
|
||||||
|
</RechartsPieChart>
|
||||||
|
</ResponsiveContainer>
|
||||||
</Box>
|
</Box>
|
||||||
<Box
|
<Box
|
||||||
component="ul"
|
component="ul"
|
||||||
|
@ -81,7 +105,10 @@ const PieChart = ({ data = dataExample }) => {
|
||||||
top: 0, right: 0,
|
top: 0, right: 0,
|
||||||
display: "flex",
|
display: "flex",
|
||||||
flexDirection: "column",
|
flexDirection: "column",
|
||||||
gap: "4px"
|
gap: "4px",
|
||||||
|
maxWidth: "60%",
|
||||||
|
minWidth: "50%",
|
||||||
|
zIndex: 0,
|
||||||
}}>
|
}}>
|
||||||
{data.map((entry, index) => {
|
{data.map((entry, index) => {
|
||||||
return (
|
return (
|
||||||
|
@ -99,26 +126,6 @@ const PieChart = ({ data = dataExample }) => {
|
||||||
)
|
)
|
||||||
})}
|
})}
|
||||||
</Box>
|
</Box>
|
||||||
<Box width="100%" height="100%" alignSelf="flex-end">
|
|
||||||
<ResponsiveContainer width="100%" height="100%">
|
|
||||||
<RechartsPieChart width={400} height={400}>
|
|
||||||
<Pie
|
|
||||||
data={data}
|
|
||||||
cx="40%"
|
|
||||||
cy="60%"
|
|
||||||
labelLine={false}
|
|
||||||
label={renderCustomizedLabel}
|
|
||||||
outerRadius={100}
|
|
||||||
fill="#8884d8"
|
|
||||||
dataKey="count"
|
|
||||||
>
|
|
||||||
{data.map((entry, index) => (
|
|
||||||
<Cell key={`cell-${entry.id}`} fill={COLORS[index % COLORS.length]} />
|
|
||||||
))}
|
|
||||||
</Pie>
|
|
||||||
</RechartsPieChart>
|
|
||||||
</ResponsiveContainer>
|
|
||||||
</Box>
|
|
||||||
</Box >
|
</Box >
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue