mirror of
https://github.com/Sosokker/HomieCare.git
synced 2025-12-19 02:04:03 +01:00
202 lines
4.8 KiB
TypeScript
202 lines
4.8 KiB
TypeScript
import { ApexOptions } from 'apexcharts';
|
|
import React, { useState } from 'react';
|
|
import ReactApexChart from 'react-apexcharts';
|
|
|
|
const options: ApexOptions = {
|
|
legend: {
|
|
show: false,
|
|
position: 'top',
|
|
horizontalAlign: 'left',
|
|
},
|
|
colors: ['#3C50E0', '#80CAEE'],
|
|
chart: {
|
|
fontFamily: 'Satoshi, sans-serif',
|
|
height: 335,
|
|
type: 'area',
|
|
dropShadow: {
|
|
enabled: true,
|
|
color: '#623CEA14',
|
|
top: 10,
|
|
blur: 4,
|
|
left: 0,
|
|
opacity: 0.1,
|
|
},
|
|
|
|
toolbar: {
|
|
show: false,
|
|
},
|
|
},
|
|
responsive: [
|
|
{
|
|
breakpoint: 1024,
|
|
options: {
|
|
chart: {
|
|
height: 300,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
breakpoint: 1366,
|
|
options: {
|
|
chart: {
|
|
height: 350,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
stroke: {
|
|
width: [2, 2],
|
|
curve: 'straight',
|
|
},
|
|
// labels: {
|
|
// show: false,
|
|
// position: "top",
|
|
// },
|
|
grid: {
|
|
xaxis: {
|
|
lines: {
|
|
show: true,
|
|
},
|
|
},
|
|
yaxis: {
|
|
lines: {
|
|
show: true,
|
|
},
|
|
},
|
|
},
|
|
dataLabels: {
|
|
enabled: false,
|
|
},
|
|
markers: {
|
|
size: 4,
|
|
colors: '#fff',
|
|
strokeColors: ['#3056D3', '#80CAEE'],
|
|
strokeWidth: 3,
|
|
strokeOpacity: 0.9,
|
|
strokeDashArray: 0,
|
|
fillOpacity: 1,
|
|
discrete: [],
|
|
hover: {
|
|
size: undefined,
|
|
sizeOffset: 5,
|
|
},
|
|
},
|
|
xaxis: {
|
|
type: 'category',
|
|
categories: [
|
|
'Current',
|
|
'3 Hour',
|
|
'6 Hour',
|
|
'9 Hour',
|
|
'12 Hour',
|
|
'15 Hour',
|
|
'18 Hour',
|
|
'21 Hour',
|
|
'24 Hour',
|
|
'27 Hour',
|
|
'30 Hour',
|
|
'33 Hour',
|
|
],
|
|
axisBorder: {
|
|
show: false,
|
|
},
|
|
axisTicks: {
|
|
show: false,
|
|
},
|
|
},
|
|
yaxis: {
|
|
title: {
|
|
style: {
|
|
fontSize: '0px',
|
|
},
|
|
},
|
|
min: 0,
|
|
max: 100,
|
|
},
|
|
};
|
|
|
|
interface ChartOneState {
|
|
series: {
|
|
name: string;
|
|
data: number[];
|
|
}[];
|
|
}
|
|
|
|
const LineChart: React.FC = () => {
|
|
const [state, setState] = useState<ChartOneState>({
|
|
series: [
|
|
{
|
|
name: 'Indoor Temperature',
|
|
data: [23, 11, 22, 27, 13, 22, 37, 21, 44, 22, 30, 45],
|
|
},
|
|
|
|
{
|
|
name: 'Outdoor Temperature',
|
|
data: [30, 25, 36, 30, 45, 35, 64, 52, 59, 36, 39, 51],
|
|
},
|
|
],
|
|
});
|
|
|
|
const handleReset = () => {
|
|
setState((prevState) => ({
|
|
...prevState,
|
|
}));
|
|
};
|
|
handleReset;
|
|
|
|
return (
|
|
<div className="col-span-12 rounded-sm border border-stroke bg-white px-5 pt-7.5 pb-5 shadow-default dark:border-strokedark dark:bg-boxdark sm:px-7.5 xl:col-span-8">
|
|
<div className="flex flex-wrap items-start justify-between gap-3 sm:flex-nowrap">
|
|
<div className="flex w-full flex-wrap gap-3 sm:gap-5">
|
|
<div className="flex min-w-47.5">
|
|
<span className="mt-1 mr-2 flex h-4 w-full max-w-4 items-center justify-center rounded-full border border-primary">
|
|
<span className="block h-2.5 w-full max-w-2.5 rounded-full bg-primary"></span>
|
|
</span>
|
|
<div className="w-full">
|
|
<p className="font-semibold text-primary">Indoor Temperature</p>
|
|
<p className="text-sm font-medium">3 Hour Interval</p>
|
|
</div>
|
|
</div>
|
|
<div className="flex min-w-47.5">
|
|
<span className="mt-1 mr-2 flex h-4 w-full max-w-4 items-center justify-center rounded-full border border-secondary">
|
|
<span className="block h-2.5 w-full max-w-2.5 rounded-full bg-secondary"></span>
|
|
</span>
|
|
<div className="w-full">
|
|
<p className="font-semibold text-secondary">
|
|
Outdoor Temperature
|
|
</p>
|
|
<p className="text-sm font-medium">3 Hour Interval</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="flex w-full max-w-45 justify-end">
|
|
<div className="inline-flex items-center rounded-md bg-whiter p-1.5 dark:bg-meta-4">
|
|
<button className="rounded bg-white py-1 px-3 text-xs font-medium text-black shadow-card hover:bg-white hover:shadow-card dark:bg-boxdark dark:text-white dark:hover:bg-boxdark">
|
|
Day
|
|
</button>
|
|
<button className="rounded py-1 px-3 text-xs font-medium text-black hover:bg-white hover:shadow-card dark:text-white dark:hover:bg-boxdark">
|
|
Week
|
|
</button>
|
|
<button className="rounded py-1 px-3 text-xs font-medium text-black hover:bg-white hover:shadow-card dark:text-white dark:hover:bg-boxdark">
|
|
Month
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<div id="chartOne" className="-ml-5">
|
|
<ReactApexChart
|
|
options={options}
|
|
series={state.series}
|
|
type="area"
|
|
height={350}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default LineChart;
|