pdf generation
This commit is contained in:
484
src/app/api/export-report/route.js
Normal file
484
src/app/api/export-report/route.js
Normal file
@@ -0,0 +1,484 @@
|
||||
import { NextResponse } from 'next/server'
|
||||
import { connectToDatabase } from '@/lib/mongodb'
|
||||
import { PDFDocument, rgb, StandardFonts } from 'pdf-lib'
|
||||
import QuickChart from 'quickchart-js'
|
||||
|
||||
function calculateStatistics(data) {
|
||||
const stats = {
|
||||
battery: {
|
||||
avgCapacity: 0,
|
||||
minCapacity: Infinity,
|
||||
maxCapacity: 0,
|
||||
avgVoltage: 0,
|
||||
chargingTime: 0,
|
||||
totalChargingTime: 0
|
||||
},
|
||||
power: {
|
||||
avgPvInput: 0,
|
||||
maxPvInput: 0,
|
||||
totalPvEnergy: 0,
|
||||
avgAcOutput: 0,
|
||||
maxAcOutput: 0,
|
||||
totalAcEnergy: 0
|
||||
},
|
||||
temperature: {
|
||||
avgTemp: 0,
|
||||
maxTemp: 0,
|
||||
minTemp: Infinity
|
||||
}
|
||||
}
|
||||
|
||||
let lastTimestamp = null
|
||||
let isCharging = false
|
||||
let chargingStart = null
|
||||
|
||||
data.forEach((item, index) => {
|
||||
const currentData = item.data
|
||||
const timestamp = new Date(item.timestamp.$date || item.timestamp)
|
||||
|
||||
// Battery statistics
|
||||
stats.battery.avgCapacity += currentData.battery_capacity
|
||||
stats.battery.minCapacity = Math.min(stats.battery.minCapacity, currentData.battery_capacity)
|
||||
stats.battery.maxCapacity = Math.max(stats.battery.maxCapacity, currentData.battery_capacity)
|
||||
stats.battery.avgVoltage += currentData.battery_voltage
|
||||
|
||||
// Power statistics
|
||||
stats.power.avgPvInput += currentData.pv_input_power
|
||||
stats.power.maxPvInput = Math.max(stats.power.maxPvInput, currentData.pv_input_power)
|
||||
stats.power.avgAcOutput += currentData.ac_output_active_power
|
||||
stats.power.maxAcOutput = Math.max(stats.power.maxAcOutput, currentData.ac_output_active_power)
|
||||
|
||||
// Temperature statistics
|
||||
stats.temperature.avgTemp += currentData.inverter_heat_sink_temperature
|
||||
stats.temperature.maxTemp = Math.max(stats.temperature.maxTemp, currentData.inverter_heat_sink_temperature)
|
||||
stats.temperature.minTemp = Math.min(stats.temperature.minTemp, currentData.inverter_heat_sink_temperature)
|
||||
|
||||
// Calculate energy (power * time)
|
||||
if (lastTimestamp) {
|
||||
const timeDiff = (timestamp - lastTimestamp) / (1000 * 60 * 60) // hours
|
||||
stats.power.totalPvEnergy += (currentData.pv_input_power * timeDiff)
|
||||
stats.power.totalAcEnergy += (currentData.ac_output_active_power * timeDiff)
|
||||
}
|
||||
|
||||
// Calculate charging time
|
||||
if (currentData.battery_charging_current > 0) {
|
||||
if (!isCharging) {
|
||||
chargingStart = timestamp
|
||||
isCharging = true
|
||||
}
|
||||
} else {
|
||||
if (isCharging && chargingStart) {
|
||||
stats.battery.chargingTime += (timestamp - chargingStart) / (1000 * 60) // minutes
|
||||
isCharging = false
|
||||
chargingStart = null
|
||||
}
|
||||
}
|
||||
|
||||
lastTimestamp = timestamp
|
||||
})
|
||||
|
||||
// Calculate averages
|
||||
const count = data.length
|
||||
stats.battery.avgCapacity /= count
|
||||
stats.battery.avgVoltage /= count
|
||||
stats.power.avgPvInput /= count
|
||||
stats.power.avgAcOutput /= count
|
||||
stats.temperature.avgTemp /= count
|
||||
|
||||
return stats
|
||||
}
|
||||
|
||||
async function generateCharts(data) {
|
||||
const timestamps = data.map(item => new Date(item.timestamp.$date || item.timestamp).toLocaleTimeString())
|
||||
|
||||
// Battery Capacity Chart
|
||||
const batteryCapacityChart = new QuickChart()
|
||||
batteryCapacityChart.setWidth(800)
|
||||
batteryCapacityChart.setHeight(400)
|
||||
batteryCapacityChart.setConfig({
|
||||
type: 'line',
|
||||
data: {
|
||||
labels: timestamps,
|
||||
datasets: [{
|
||||
label: 'Battery Capacity (%)',
|
||||
data: data.map(item => item.data.battery_capacity),
|
||||
borderColor: '#1E40AF',
|
||||
backgroundColor: 'rgba(30, 64, 175, 0.1)',
|
||||
fill: true,
|
||||
tension: 0.4
|
||||
}]
|
||||
},
|
||||
options: {
|
||||
plugins: {
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Battery Capacity Over Time',
|
||||
font: { size: 16 }
|
||||
}
|
||||
},
|
||||
scales: {
|
||||
y: {
|
||||
beginAtZero: true,
|
||||
max: 100
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
// Power Chart
|
||||
const powerChart = new QuickChart()
|
||||
powerChart.setWidth(800)
|
||||
powerChart.setHeight(400)
|
||||
powerChart.setConfig({
|
||||
type: 'line',
|
||||
data: {
|
||||
labels: timestamps,
|
||||
datasets: [
|
||||
{
|
||||
label: 'PV Input Power (W)',
|
||||
data: data.map(item => item.data.pv_input_power),
|
||||
borderColor: '#059669',
|
||||
backgroundColor: 'rgba(5, 150, 105, 0.1)',
|
||||
fill: true,
|
||||
tension: 0.4
|
||||
},
|
||||
{
|
||||
label: 'AC Output Power (W)',
|
||||
data: data.map(item => item.data.ac_output_active_power),
|
||||
borderColor: '#DC2626',
|
||||
backgroundColor: 'rgba(220, 38, 38, 0.1)',
|
||||
fill: true,
|
||||
tension: 0.4
|
||||
}
|
||||
]
|
||||
},
|
||||
options: {
|
||||
plugins: {
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Power Generation and Consumption',
|
||||
font: { size: 16 }
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
// Temperature Chart
|
||||
const temperatureChart = new QuickChart()
|
||||
temperatureChart.setWidth(800)
|
||||
temperatureChart.setHeight(400)
|
||||
temperatureChart.setConfig({
|
||||
type: 'line',
|
||||
data: {
|
||||
labels: timestamps,
|
||||
datasets: [{
|
||||
label: 'Inverter Temperature (°C)',
|
||||
data: data.map(item => item.data.inverter_heat_sink_temperature),
|
||||
borderColor: '#D97706',
|
||||
backgroundColor: 'rgba(217, 119, 6, 0.1)',
|
||||
fill: true,
|
||||
tension: 0.4
|
||||
}]
|
||||
},
|
||||
options: {
|
||||
plugins: {
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Inverter Temperature Over Time',
|
||||
font: { size: 16 }
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
// Generate chart images
|
||||
const batteryCapacityUrl = batteryCapacityChart.getUrl()
|
||||
const powerUrl = powerChart.getUrl()
|
||||
const temperatureUrl = temperatureChart.getUrl()
|
||||
|
||||
// Fetch chart images
|
||||
const batteryCapacityResponse = await fetch(batteryCapacityUrl)
|
||||
const powerResponse = await fetch(powerUrl)
|
||||
const temperatureResponse = await fetch(temperatureUrl)
|
||||
|
||||
const batteryCapacityBuffer = Buffer.from(await batteryCapacityResponse.arrayBuffer())
|
||||
const powerBuffer = Buffer.from(await powerResponse.arrayBuffer())
|
||||
const temperatureBuffer = Buffer.from(await temperatureResponse.arrayBuffer())
|
||||
|
||||
return {
|
||||
batteryCapacityImage: batteryCapacityBuffer,
|
||||
powerImage: powerBuffer,
|
||||
temperatureImage: temperatureBuffer
|
||||
}
|
||||
}
|
||||
|
||||
async function generatePDF(stats, timeRange, data) {
|
||||
// Create a new PDF document
|
||||
const pdfDoc = await PDFDocument.create()
|
||||
|
||||
// Embed the standard font
|
||||
const font = await pdfDoc.embedFont(StandardFonts.Helvetica)
|
||||
const boldFont = await pdfDoc.embedFont(StandardFonts.HelveticaBold)
|
||||
|
||||
// Add pages
|
||||
const page1 = pdfDoc.addPage([595.28, 841.89]) // A4 size
|
||||
const page2 = pdfDoc.addPage([595.28, 841.89])
|
||||
const page3 = pdfDoc.addPage([595.28, 841.89])
|
||||
|
||||
const { width, height } = page1.getSize()
|
||||
|
||||
// Common text properties
|
||||
const titleFontSize = 24
|
||||
const headerFontSize = 18
|
||||
const textFontSize = 12
|
||||
const footerFontSize = 10
|
||||
const margin = 50
|
||||
const lineHeight = 20
|
||||
|
||||
// Function to draw header on each page
|
||||
const drawHeader = (page, title) => {
|
||||
// Draw background gradient
|
||||
page.drawRectangle({
|
||||
x: 0,
|
||||
y: 0,
|
||||
width,
|
||||
height,
|
||||
color: rgb(0.95, 0.95, 0.95)
|
||||
})
|
||||
|
||||
// Draw title
|
||||
page.drawText(title, {
|
||||
x: width / 2 - 100,
|
||||
y: height - 50,
|
||||
size: titleFontSize,
|
||||
font: boldFont,
|
||||
color: rgb(0.12, 0.25, 0.67) // #1E40AF
|
||||
})
|
||||
|
||||
// Draw time period
|
||||
page.drawText(`Time Period: ${timeRange.charAt(0).toUpperCase() + timeRange.slice(1)}`, {
|
||||
x: width / 2 - 80,
|
||||
y: height - 80,
|
||||
size: textFontSize,
|
||||
font,
|
||||
color: rgb(0.29, 0.34, 0.39) // #4B5563
|
||||
})
|
||||
}
|
||||
|
||||
// Function to draw footer on each page
|
||||
const drawFooter = (page) => {
|
||||
page.drawText(`Generated on ${new Date().toLocaleString()}`, {
|
||||
x: width / 2 - 100,
|
||||
y: 50,
|
||||
size: footerFontSize,
|
||||
font,
|
||||
color: rgb(0.42, 0.45, 0.5) // #6B7280
|
||||
})
|
||||
}
|
||||
|
||||
// Page 1: Overview and Battery Statistics
|
||||
drawHeader(page1, 'UTM Solar Panel Report')
|
||||
|
||||
// Draw battery capacity chart
|
||||
const charts = await generateCharts(data)
|
||||
const batteryCapacityPdfImage = await pdfDoc.embedPng(charts.batteryCapacityImage)
|
||||
page1.drawImage(batteryCapacityPdfImage, {
|
||||
x: margin,
|
||||
y: height - 400,
|
||||
width: width - (2 * margin),
|
||||
height: 300
|
||||
})
|
||||
|
||||
// Draw battery statistics
|
||||
const batteryStats = [
|
||||
`Average Battery Capacity: ${stats.battery.avgCapacity.toFixed(1)}%`,
|
||||
`Minimum Battery Capacity: ${stats.battery.minCapacity.toFixed(1)}%`,
|
||||
`Maximum Battery Capacity: ${stats.battery.maxCapacity.toFixed(1)}%`,
|
||||
`Average Battery Voltage: ${stats.battery.avgVoltage.toFixed(1)}V`,
|
||||
`Total Charging Time: ${(stats.battery.chargingTime / 60).toFixed(1)} hours`
|
||||
]
|
||||
|
||||
page1.drawText('Battery Statistics', {
|
||||
x: margin,
|
||||
y: height - 450,
|
||||
size: headerFontSize,
|
||||
font: boldFont,
|
||||
color: rgb(0.12, 0.25, 0.67)
|
||||
})
|
||||
|
||||
batteryStats.forEach((text, index) => {
|
||||
page1.drawText(text, {
|
||||
x: margin,
|
||||
y: height - 500 - (index * lineHeight),
|
||||
size: textFontSize,
|
||||
font,
|
||||
color: rgb(0.29, 0.34, 0.39)
|
||||
})
|
||||
})
|
||||
|
||||
drawFooter(page1)
|
||||
|
||||
// Page 2: Power Generation and Consumption
|
||||
drawHeader(page2, 'Power Analysis')
|
||||
|
||||
// Draw power chart
|
||||
const powerPdfImage = await pdfDoc.embedPng(charts.powerImage)
|
||||
page2.drawImage(powerPdfImage, {
|
||||
x: margin,
|
||||
y: height - 400,
|
||||
width: width - (2 * margin),
|
||||
height: 300
|
||||
})
|
||||
|
||||
// Draw power statistics
|
||||
const powerStats = [
|
||||
`Average PV Input Power: ${stats.power.avgPvInput.toFixed(1)}W`,
|
||||
`Maximum PV Input Power: ${stats.power.maxPvInput.toFixed(1)}W`,
|
||||
`Total PV Energy Generated: ${stats.power.totalPvEnergy.toFixed(1)}Wh`,
|
||||
`Average AC Output Power: ${stats.power.avgAcOutput.toFixed(1)}W`,
|
||||
`Maximum AC Output Power: ${stats.power.maxAcOutput.toFixed(1)}W`,
|
||||
`Total AC Energy Consumed: ${stats.power.totalAcEnergy.toFixed(1)}Wh`
|
||||
]
|
||||
|
||||
page2.drawText('Power Statistics', {
|
||||
x: margin,
|
||||
y: height - 450,
|
||||
size: headerFontSize,
|
||||
font: boldFont,
|
||||
color: rgb(0.12, 0.25, 0.67)
|
||||
})
|
||||
|
||||
powerStats.forEach((text, index) => {
|
||||
page2.drawText(text, {
|
||||
x: margin,
|
||||
y: height - 500 - (index * lineHeight),
|
||||
size: textFontSize,
|
||||
font,
|
||||
color: rgb(0.29, 0.34, 0.39)
|
||||
})
|
||||
})
|
||||
|
||||
drawFooter(page2)
|
||||
|
||||
// Page 3: Temperature and System Health
|
||||
drawHeader(page3, 'System Health')
|
||||
|
||||
// Draw temperature chart
|
||||
const temperaturePdfImage = await pdfDoc.embedPng(charts.temperatureImage)
|
||||
page3.drawImage(temperaturePdfImage, {
|
||||
x: margin,
|
||||
y: height - 400,
|
||||
width: width - (2 * margin),
|
||||
height: 300
|
||||
})
|
||||
|
||||
// Draw temperature statistics
|
||||
const tempStats = [
|
||||
`Average Inverter Temperature: ${stats.temperature.avgTemp.toFixed(1)}°C`,
|
||||
`Maximum Inverter Temperature: ${stats.temperature.maxTemp.toFixed(1)}°C`,
|
||||
`Minimum Inverter Temperature: ${stats.temperature.minTemp.toFixed(1)}°C`
|
||||
]
|
||||
|
||||
page3.drawText('Temperature Statistics', {
|
||||
x: margin,
|
||||
y: height - 450,
|
||||
size: headerFontSize,
|
||||
font: boldFont,
|
||||
color: rgb(0.12, 0.25, 0.67)
|
||||
})
|
||||
|
||||
tempStats.forEach((text, index) => {
|
||||
page3.drawText(text, {
|
||||
x: margin,
|
||||
y: height - 500 - (index * lineHeight),
|
||||
size: textFontSize,
|
||||
font,
|
||||
color: rgb(0.29, 0.34, 0.39)
|
||||
})
|
||||
})
|
||||
|
||||
// Draw system health summary
|
||||
const healthSummary = [
|
||||
'System Health Summary:',
|
||||
`• Battery Health: ${stats.battery.avgCapacity > 80 ? 'Excellent' : stats.battery.avgCapacity > 60 ? 'Good' : 'Needs Attention'}`,
|
||||
`• Power Generation: ${stats.power.totalPvEnergy > 1000 ? 'High' : stats.power.totalPvEnergy > 500 ? 'Moderate' : 'Low'}`,
|
||||
`• Temperature Status: ${stats.temperature.avgTemp < 40 ? 'Normal' : stats.temperature.avgTemp < 50 ? 'Warning' : 'Critical'}`
|
||||
]
|
||||
|
||||
page3.drawText('System Health Summary', {
|
||||
x: margin,
|
||||
y: height - 600,
|
||||
size: headerFontSize,
|
||||
font: boldFont,
|
||||
color: rgb(0.12, 0.25, 0.67)
|
||||
})
|
||||
|
||||
healthSummary.forEach((text, index) => {
|
||||
page3.drawText(text, {
|
||||
x: margin,
|
||||
y: height - 650 - (index * lineHeight),
|
||||
size: textFontSize,
|
||||
font,
|
||||
color: rgb(0.29, 0.34, 0.39)
|
||||
})
|
||||
})
|
||||
|
||||
drawFooter(page3)
|
||||
|
||||
// Save the PDF
|
||||
return await pdfDoc.save()
|
||||
}
|
||||
|
||||
export async function GET(request) {
|
||||
const { searchParams } = new URL(request.url)
|
||||
const timeRange = searchParams.get('timeRange') || 'today'
|
||||
|
||||
try {
|
||||
const { db } = await connectToDatabase()
|
||||
const collection = db.collection('solar_data')
|
||||
|
||||
const now = new Date()
|
||||
let startDate = new Date()
|
||||
let endDate = new Date()
|
||||
|
||||
switch (timeRange) {
|
||||
case 'today':
|
||||
startDate.setHours(0, 0, 0, 0)
|
||||
endDate = now
|
||||
break
|
||||
case 'week':
|
||||
startDate.setDate(now.getDate() - 7)
|
||||
startDate.setHours(0, 0, 0, 0)
|
||||
endDate = now
|
||||
break
|
||||
case 'month':
|
||||
startDate.setMonth(now.getMonth() - 1)
|
||||
startDate.setHours(0, 0, 0, 0)
|
||||
endDate = now
|
||||
break
|
||||
default:
|
||||
startDate.setHours(0, 0, 0, 0)
|
||||
endDate = now
|
||||
}
|
||||
|
||||
const data = await collection.find({
|
||||
timestamp: {
|
||||
$gte: startDate,
|
||||
$lte: endDate
|
||||
}
|
||||
}).sort({ timestamp: 1 }).toArray()
|
||||
|
||||
const stats = calculateStatistics(data)
|
||||
const pdfBytes = await generatePDF(stats, timeRange, data)
|
||||
|
||||
return new NextResponse(pdfBytes, {
|
||||
headers: {
|
||||
'Content-Type': 'application/pdf',
|
||||
'Content-Disposition': `attachment; filename=solar-report-${timeRange}.pdf`
|
||||
}
|
||||
})
|
||||
} catch (error) {
|
||||
console.error('Error generating report:', error)
|
||||
return NextResponse.json({ error: 'Failed to generate report' }, { status: 500 })
|
||||
}
|
||||
}
|
||||
@@ -2,6 +2,23 @@ import { LastRefresh } from './LastRefresh'
|
||||
import Image from 'next/image'
|
||||
|
||||
export function Navbar({ lastUpdateTime }) {
|
||||
const handleExport = async (timeRange) => {
|
||||
try {
|
||||
const response = await fetch(`/api/export-report?timeRange=${timeRange}`)
|
||||
const blob = await response.blob()
|
||||
const url = window.URL.createObjectURL(blob)
|
||||
const a = document.createElement('a')
|
||||
a.href = url
|
||||
a.download = `solar-report-${timeRange}-${new Date().toISOString().split('T')[0]}.pdf`
|
||||
document.body.appendChild(a)
|
||||
a.click()
|
||||
window.URL.revokeObjectURL(url)
|
||||
document.body.removeChild(a)
|
||||
} catch (error) {
|
||||
console.error('Error exporting report:', error)
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<nav className="bg-gray-800/50 backdrop-blur-sm border-b border-gray-700">
|
||||
<div className="max-w-[1400px] mx-auto px-4 sm:px-6 py-4">
|
||||
@@ -20,11 +37,33 @@ export function Navbar({ lastUpdateTime }) {
|
||||
UTM Solar Panels
|
||||
</h1>
|
||||
</div>
|
||||
{lastUpdateTime && (
|
||||
<div className="flex items-center gap-2 text-gray-400">
|
||||
<LastRefresh timestamp={lastUpdateTime} />
|
||||
<div className="flex items-center gap-4">
|
||||
<div className="flex gap-2">
|
||||
<button
|
||||
onClick={() => handleExport('today')}
|
||||
className="px-3 py-1.5 text-sm font-medium rounded-lg bg-gray-700/50 text-gray-300 hover:bg-gray-600/50 hover:text-white transition-all duration-200 hover:shadow-lg hover:shadow-gray-500/10"
|
||||
>
|
||||
Export Today
|
||||
</button>
|
||||
<button
|
||||
onClick={() => handleExport('week')}
|
||||
className="px-3 py-1.5 text-sm font-medium rounded-lg bg-gray-700/50 text-gray-300 hover:bg-gray-600/50 hover:text-white transition-all duration-200 hover:shadow-lg hover:shadow-gray-500/10"
|
||||
>
|
||||
Export Week
|
||||
</button>
|
||||
<button
|
||||
onClick={() => handleExport('month')}
|
||||
className="px-3 py-1.5 text-sm font-medium rounded-lg bg-gray-700/50 text-gray-300 hover:bg-gray-600/50 hover:text-white transition-all duration-200 hover:shadow-lg hover:shadow-gray-500/10"
|
||||
>
|
||||
Export Month
|
||||
</button>
|
||||
</div>
|
||||
)}
|
||||
{lastUpdateTime && (
|
||||
<div className="flex items-center gap-2 text-gray-400">
|
||||
<LastRefresh timestamp={lastUpdateTime} />
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
@@ -150,8 +150,8 @@ export function SolarChart({ data, type, timeRange, onTimeRangeChange }) {
|
||||
onClick={() => onTimeRangeChange('today')}
|
||||
className={`px-4 py-1.5 text-sm font-medium rounded-lg transition-all duration-200 ${
|
||||
timeRange === 'today'
|
||||
? 'bg-gradient-to-r from-blue-500 to-blue-600 text-white shadow-lg shadow-blue-500/20'
|
||||
: 'bg-gray-700/50 text-gray-300 hover:bg-gray-600/50 hover:text-white'
|
||||
? 'bg-gradient-to-r from-blue-500 to-blue-600 text-white shadow-lg shadow-blue-500/20 hover:shadow-blue-500/30'
|
||||
: 'bg-gray-700/50 text-gray-300 hover:bg-gray-600/50 hover:text-white hover:shadow-lg hover:shadow-gray-500/10'
|
||||
}`}
|
||||
>
|
||||
Today
|
||||
@@ -160,8 +160,8 @@ export function SolarChart({ data, type, timeRange, onTimeRangeChange }) {
|
||||
onClick={() => onTimeRangeChange('yesterday')}
|
||||
className={`px-4 py-1.5 text-sm font-medium rounded-lg transition-all duration-200 ${
|
||||
timeRange === 'yesterday'
|
||||
? 'bg-gradient-to-r from-blue-500 to-blue-600 text-white shadow-lg shadow-blue-500/20'
|
||||
: 'bg-gray-700/50 text-gray-300 hover:bg-gray-600/50 hover:text-white'
|
||||
? 'bg-gradient-to-r from-blue-500 to-blue-600 text-white shadow-lg shadow-blue-500/20 hover:shadow-blue-500/30'
|
||||
: 'bg-gray-700/50 text-gray-300 hover:bg-gray-600/50 hover:text-white hover:shadow-lg hover:shadow-gray-500/10'
|
||||
}`}
|
||||
>
|
||||
Yesterday
|
||||
@@ -170,8 +170,8 @@ export function SolarChart({ data, type, timeRange, onTimeRangeChange }) {
|
||||
onClick={() => onTimeRangeChange('week')}
|
||||
className={`px-4 py-1.5 text-sm font-medium rounded-lg transition-all duration-200 ${
|
||||
timeRange === 'week'
|
||||
? 'bg-gradient-to-r from-blue-500 to-blue-600 text-white shadow-lg shadow-blue-500/20'
|
||||
: 'bg-gray-700/50 text-gray-300 hover:bg-gray-600/50 hover:text-white'
|
||||
? 'bg-gradient-to-r from-blue-500 to-blue-600 text-white shadow-lg shadow-blue-500/20 hover:shadow-blue-500/30'
|
||||
: 'bg-gray-700/50 text-gray-300 hover:bg-gray-600/50 hover:text-white hover:shadow-lg hover:shadow-gray-500/10'
|
||||
}`}
|
||||
>
|
||||
Week
|
||||
@@ -180,21 +180,22 @@ export function SolarChart({ data, type, timeRange, onTimeRangeChange }) {
|
||||
onClick={() => onTimeRangeChange('month')}
|
||||
className={`px-4 py-1.5 text-sm font-medium rounded-lg transition-all duration-200 ${
|
||||
timeRange === 'month'
|
||||
? 'bg-gradient-to-r from-blue-500 to-blue-600 text-white shadow-lg shadow-blue-500/20'
|
||||
: 'bg-gray-700/50 text-gray-300 hover:bg-gray-600/50 hover:text-white'
|
||||
? 'bg-gradient-to-r from-blue-500 to-blue-600 text-white shadow-lg shadow-blue-500/20 hover:shadow-blue-500/30'
|
||||
: 'bg-gray-700/50 text-gray-300 hover:bg-gray-600/50 hover:text-white hover:shadow-lg hover:shadow-gray-500/10'
|
||||
}`}
|
||||
>
|
||||
Month
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div className="h-[400px] w-full">
|
||||
<div className="h-[400px] w-full relative">
|
||||
<div className="absolute inset-0 bg-gradient-to-b from-transparent via-gray-900/5 to-transparent pointer-events-none" />
|
||||
<ResponsiveContainer width="100%" height="100%">
|
||||
<LineChart data={formattedData} margin={{ top: 10, right: 20, left: 0, bottom: 10 }}>
|
||||
<defs>
|
||||
{config.lines.map(line => (
|
||||
<linearGradient key={line.key} id={`gradient-${line.key}`} x1="0" y1="0" x2="0" y2="1">
|
||||
<stop offset="5%" stopColor={line.color} stopOpacity={0.3}/>
|
||||
<stop offset="5%" stopColor={line.color} stopOpacity={0.4}/>
|
||||
<stop offset="95%" stopColor={line.color} stopOpacity={0}/>
|
||||
</linearGradient>
|
||||
))}
|
||||
@@ -225,12 +226,13 @@ export function SolarChart({ data, type, timeRange, onTimeRangeChange }) {
|
||||
/>
|
||||
<Tooltip
|
||||
contentStyle={{
|
||||
backgroundColor: '#1F2937',
|
||||
backgroundColor: 'rgba(31, 41, 55, 0.95)',
|
||||
border: 'none',
|
||||
borderRadius: '0.5rem',
|
||||
color: '#F3F4F6',
|
||||
boxShadow: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)',
|
||||
fontSize: '11px'
|
||||
fontSize: '11px',
|
||||
backdropFilter: 'blur(8px)'
|
||||
}}
|
||||
labelStyle={{ color: '#F3F4F6', fontSize: '11px' }}
|
||||
/>
|
||||
@@ -250,9 +252,14 @@ export function SolarChart({ data, type, timeRange, onTimeRangeChange }) {
|
||||
stroke={line.color}
|
||||
strokeWidth={2}
|
||||
dot={false}
|
||||
activeDot={{ r: 6, fill: line.color }}
|
||||
activeDot={{ r: 6, fill: line.color, strokeWidth: 2, stroke: 'rgba(255, 255, 255, 0.2)' }}
|
||||
animationDuration={1500}
|
||||
animationBegin={0}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
isAnimationActive={true}
|
||||
animationEasing="ease-out"
|
||||
fill={`url(#gradient-${line.key})`}
|
||||
/>
|
||||
))}
|
||||
</LineChart>
|
||||
|
||||
Reference in New Issue
Block a user